Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [7.2.1] - 2026-05-27
### Fixed
- Internal library metadata issue

## [7.2.0] - 2026-05-27
### Added
- #### Date Range Picker
Expand Down Expand Up @@ -1355,6 +1359,7 @@ Initial release of Ignite UI Web Components
- Ripple component
- Switch component

[7.2.1]: https://github.com/IgniteUI/igniteui-webcomponents/compare/7.2.0...7.2.1
[7.2.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/7.1.3...7.2.0
[7.1.3]: https://github.com/IgniteUI/igniteui-webcomponents/compare/7.1.2...7.1.3
[7.1.2]: https://github.com/IgniteUI/igniteui-webcomponents/compare/7.1.1...7.1.2
Expand Down
14 changes: 7 additions & 7 deletions src/components/date-time-input/date-time-input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@ import {
} from './datetime-mask-parser.js';
import { dateTimeInputValidators } from './validators.js';

export interface IgcDateTimeInputEventMap extends Omit<
IgcDateTimeInputComponentEventMap,
'igcChange'
> {
igcChange: CustomEvent<Date | null>;
}

/**
* A date time input is an input field that lets you set and edit the date and time in a chosen input element
* using customizable display and input formats.
Expand All @@ -51,13 +58,6 @@ import { dateTimeInputValidators } from './validators.js';
* @csspart suffix - The suffix wrapper.
* @csspart helper-text - The helper text wrapper.
*/
export interface IgcDateTimeInputEventMap extends Omit<
IgcDateTimeInputComponentEventMap,
'igcChange'
> {
igcChange: CustomEvent<Date | null>;
}

export default class IgcDateTimeInputComponent extends IgcDateTimeInputBaseComponent {
public static readonly tagName = 'igc-date-time-input';
public static styles = [styles, shared];
Expand Down
Loading