From 21acaf7b94efb515f55a1a38b725ceaf5f29651c Mon Sep 17 00:00:00 2001 From: Radoslav Karaivanov Date: Wed, 27 May 2026 19:48:10 +0300 Subject: [PATCH] fix: 7.2.1 metadata issue --- CHANGELOG.md | 5 +++++ src/components/date-time-input/date-time-input.ts | 14 +++++++------- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 376baea03..85c29e416 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/src/components/date-time-input/date-time-input.ts b/src/components/date-time-input/date-time-input.ts index d3f3202cc..977c3e322 100644 --- a/src/components/date-time-input/date-time-input.ts +++ b/src/components/date-time-input/date-time-input.ts @@ -26,6 +26,13 @@ import { } from './datetime-mask-parser.js'; import { dateTimeInputValidators } from './validators.js'; +export interface IgcDateTimeInputEventMap extends Omit< + IgcDateTimeInputComponentEventMap, + 'igcChange' +> { + igcChange: CustomEvent; +} + /** * 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. @@ -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; -} - export default class IgcDateTimeInputComponent extends IgcDateTimeInputBaseComponent { public static readonly tagName = 'igc-date-time-input'; public static styles = [styles, shared];