@siemens/ix-angular 4.3.0 → 4.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -3,7 +3,7 @@ export * from '@siemens/ix';
3
3
  import * as i0 from '@angular/core';
4
4
  import { NgZone, ChangeDetectorRef, ElementRef, EventEmitter, ApplicationRef, ComponentFactoryResolver, Injector, ModuleWithProviders } from '@angular/core';
5
5
  import { Components as Components$1 } from '@siemens/ix-icons';
6
- import { TreeBaseDirective, ModalService as ModalService$1, ModalConfig, ToastService as ToastService$1, ToastConfig, MessageService as MessageService$1, LoadingService as LoadingService$1, BooleanValueAccessorBaseDirective, RadioValueAccessorBaseDirective, SelectValueAccessorBaseDirective, TextValueAccessorBaseDirective, DateValueAccessorBaseDirective, DropdownTriggerBaseDirective } from '@siemens/ix-angular/common';
6
+ import { TreeBaseDirective, ModalService as ModalService$1, ModalConfig, ToastService as ToastService$1, ToastConfig, MessageService as MessageService$1, LoadingService as LoadingService$1, BooleanValueAccessorBaseDirective, RadioValueAccessorBaseDirective, SelectValueAccessorBaseDirective, TextValueAccessorBaseDirective, DateValueAccessorBaseDirective, TimeValueAccessorBaseDirective, DropdownTriggerBaseDirective } from '@siemens/ix-angular/common';
7
7
  export { IxActiveModal, ModalConfig, ModalContext, ToastConfig } from '@siemens/ix-angular/common';
8
8
 
9
9
  declare class IxActionCard {
@@ -316,19 +316,24 @@ declare class IxDateInput {
316
316
  protected el: HTMLIxDateInputElement;
317
317
  valueChange: EventEmitter<CustomEvent<string | undefined>>;
318
318
  validityStateChange: EventEmitter<CustomEvent<DateInputValidityState>>;
319
+ ixChange: EventEmitter<CustomEvent<string | undefined>>;
319
320
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
320
321
  static ɵfac: i0.ɵɵFactoryDeclaration<IxDateInput, never>;
321
- static ɵcmp: i0.ɵɵComponentDeclaration<IxDateInput, "ix-date-input", never, { "ariaLabelCalendarButton": { "alias": "ariaLabelCalendarButton"; "required": false; }; "ariaLabelNextMonthButton": { "alias": "ariaLabelNextMonthButton"; "required": false; }; "ariaLabelPreviousMonthButton": { "alias": "ariaLabelPreviousMonthButton"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "enableTopLayer": { "alias": "enableTopLayer"; "required": false; }; "format": { "alias": "format"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "i18nErrorDateUnparsable": { "alias": "i18nErrorDateUnparsable"; "required": false; }; "infoText": { "alias": "infoText"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "showTextAsTooltip": { "alias": "showTextAsTooltip"; "required": false; }; "showWeekNumbers": { "alias": "showWeekNumbers"; "required": false; }; "suppressSubmitOnEnter": { "alias": "suppressSubmitOnEnter"; "required": false; }; "textAlignment": { "alias": "textAlignment"; "required": false; }; "validText": { "alias": "validText"; "required": false; }; "value": { "alias": "value"; "required": false; }; "warningText": { "alias": "warningText"; "required": false; }; "weekStartIndex": { "alias": "weekStartIndex"; "required": false; }; }, { "valueChange": "valueChange"; "validityStateChange": "validityStateChange"; }, never, ["*"], false, never>;
322
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxDateInput, "ix-date-input", never, { "ariaLabelCalendarButton": { "alias": "ariaLabelCalendarButton"; "required": false; }; "ariaLabelNextMonthButton": { "alias": "ariaLabelNextMonthButton"; "required": false; }; "ariaLabelPreviousMonthButton": { "alias": "ariaLabelPreviousMonthButton"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "enableTopLayer": { "alias": "enableTopLayer"; "required": false; }; "format": { "alias": "format"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "i18nErrorDateUnparsable": { "alias": "i18nErrorDateUnparsable"; "required": false; }; "infoText": { "alias": "infoText"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "showTextAsTooltip": { "alias": "showTextAsTooltip"; "required": false; }; "showWeekNumbers": { "alias": "showWeekNumbers"; "required": false; }; "suppressSubmitOnEnter": { "alias": "suppressSubmitOnEnter"; "required": false; }; "textAlignment": { "alias": "textAlignment"; "required": false; }; "validText": { "alias": "validText"; "required": false; }; "value": { "alias": "value"; "required": false; }; "warningText": { "alias": "warningText"; "required": false; }; "weekStartIndex": { "alias": "weekStartIndex"; "required": false; }; }, { "valueChange": "valueChange"; "validityStateChange": "validityStateChange"; "ixChange": "ixChange"; }, never, ["*"], false, never>;
322
323
  }
323
324
  declare interface IxDateInput extends Components.IxDateInput {
324
325
  /**
325
- * Input change event.
326
+ * Value change event. Emitted when the input value changes.
326
327
  */
327
328
  valueChange: EventEmitter<CustomEvent<string | undefined>>;
328
329
  /**
329
- * Validation state change event.
330
+ * Validation state change event. Emitted when the validation state changes.
330
331
  */
331
332
  validityStateChange: EventEmitter<CustomEvent<DateInputValidityState>>;
333
+ /**
334
+ * Change event. Emitted when the date input loses focus and the value has changed. @since 4.4.0
335
+ */
336
+ ixChange: EventEmitter<CustomEvent<string | undefined>>;
332
337
  }
333
338
  declare class IxDatePicker {
334
339
  protected z: NgZone;
@@ -349,13 +354,13 @@ declare interface IxDatePicker extends Components.IxDatePicker {
349
354
  */
350
355
  dateChange: EventEmitter<CustomEvent<DateChangeEvent>>;
351
356
  /**
352
- * Emitted when the date range selection changes and the component is in range mode. The `DateChangeEvent` contains `from` and `to` properties.
357
+ * Date range change event. Emitted when the date range selection changes and the component is in range mode. The `DateChangeEvent` contains `from` and `to` properties.
353
358
  The property strings are formatted according to the `format` property and not affected by the `locale` property.
354
359
  The locale applied is always `en-US`.
355
360
  */
356
361
  dateRangeChange: EventEmitter<CustomEvent<DateChangeEvent>>;
357
362
  /**
358
- * Emitted when the selection is confirmed via the date select button. The `DateChangeEvent` contains `from` and `to` properties.
363
+ * Date selection event. Emitted when the selection is confirmed via the date select button. The `DateChangeEvent` contains `from` and `to` properties.
359
364
  The property strings are formatted according to the `format` property and not affected by the `locale` property.
360
365
  The locale applied is always `en-US`.
361
366
  */
@@ -373,15 +378,15 @@ declare class IxDatetimePicker {
373
378
  }
374
379
  declare interface IxDatetimePicker extends Components.IxDatetimePicker {
375
380
  /**
376
- * Time change
381
+ * Time change event. Emitted when the time changes in the embedded time picker.
377
382
  */
378
383
  timeChange: EventEmitter<CustomEvent<string>>;
379
384
  /**
380
- * Date change
385
+ * Date change event. Emitted when the date changes in the embedded date picker.
381
386
  */
382
387
  dateChange: EventEmitter<CustomEvent<DateTimeDateChangeEvent>>;
383
388
  /**
384
- * Datetime selection event is fired after confirm button is pressed
389
+ * Datetime selection event. Emitted when the user confirms the selection.
385
390
  */
386
391
  dateSelect: EventEmitter<CustomEvent<DateTimeSelectEvent>>;
387
392
  }
@@ -645,9 +650,10 @@ declare class IxInput {
645
650
  valueChange: EventEmitter<CustomEvent<string>>;
646
651
  validityStateChange: EventEmitter<CustomEvent<ValidityState>>;
647
652
  ixBlur: EventEmitter<CustomEvent<void>>;
653
+ ixChange: EventEmitter<CustomEvent<string>>;
648
654
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
649
655
  static ɵfac: i0.ɵɵFactoryDeclaration<IxInput, never>;
650
- static ɵcmp: i0.ɵɵComponentDeclaration<IxInput, "ix-input", never, { "allowedCharactersPattern": { "alias": "allowedCharactersPattern"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "infoText": { "alias": "infoText"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "showTextAsTooltip": { "alias": "showTextAsTooltip"; "required": false; }; "suppressSubmitOnEnter": { "alias": "suppressSubmitOnEnter"; "required": false; }; "textAlignment": { "alias": "textAlignment"; "required": false; }; "type": { "alias": "type"; "required": false; }; "validText": { "alias": "validText"; "required": false; }; "value": { "alias": "value"; "required": false; }; "warningText": { "alias": "warningText"; "required": false; }; }, { "valueChange": "valueChange"; "validityStateChange": "validityStateChange"; "ixBlur": "ixBlur"; }, never, ["*"], false, never>;
656
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxInput, "ix-input", never, { "allowedCharactersPattern": { "alias": "allowedCharactersPattern"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "infoText": { "alias": "infoText"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "showTextAsTooltip": { "alias": "showTextAsTooltip"; "required": false; }; "suppressSubmitOnEnter": { "alias": "suppressSubmitOnEnter"; "required": false; }; "textAlignment": { "alias": "textAlignment"; "required": false; }; "type": { "alias": "type"; "required": false; }; "validText": { "alias": "validText"; "required": false; }; "value": { "alias": "value"; "required": false; }; "warningText": { "alias": "warningText"; "required": false; }; }, { "valueChange": "valueChange"; "validityStateChange": "validityStateChange"; "ixBlur": "ixBlur"; "ixChange": "ixChange"; }, never, ["*"], false, never>;
651
657
  }
652
658
  declare interface IxInput extends Components.IxInput {
653
659
  /**
@@ -662,6 +668,10 @@ declare interface IxInput extends Components.IxInput {
662
668
  * Event emitted when the text field loses focus.
663
669
  */
664
670
  ixBlur: EventEmitter<CustomEvent<void>>;
671
+ /**
672
+ * Event emitted when the text field loses focus and the value has changed. @since 4.4.0
673
+ */
674
+ ixChange: EventEmitter<CustomEvent<string>>;
665
675
  }
666
676
  declare class IxInputGroup {
667
677
  protected z: NgZone;
@@ -968,9 +978,10 @@ declare class IxNumberInput {
968
978
  valueChange: EventEmitter<CustomEvent<number>>;
969
979
  validityStateChange: EventEmitter<CustomEvent<ValidityState>>;
970
980
  ixBlur: EventEmitter<CustomEvent<void>>;
981
+ ixChange: EventEmitter<CustomEvent<number>>;
971
982
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
972
983
  static ɵfac: i0.ɵɵFactoryDeclaration<IxNumberInput, never>;
973
- static ɵcmp: i0.ɵɵComponentDeclaration<IxNumberInput, "ix-number-input", never, { "allowEmptyValueChange": { "alias": "allowEmptyValueChange"; "required": false; }; "allowedCharactersPattern": { "alias": "allowedCharactersPattern"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "infoText": { "alias": "infoText"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "name": { "alias": "name"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "showStepperButtons": { "alias": "showStepperButtons"; "required": false; }; "showTextAsTooltip": { "alias": "showTextAsTooltip"; "required": false; }; "step": { "alias": "step"; "required": false; }; "suppressSubmitOnEnter": { "alias": "suppressSubmitOnEnter"; "required": false; }; "textAlignment": { "alias": "textAlignment"; "required": false; }; "validText": { "alias": "validText"; "required": false; }; "value": { "alias": "value"; "required": false; }; "warningText": { "alias": "warningText"; "required": false; }; }, { "valueChange": "valueChange"; "validityStateChange": "validityStateChange"; "ixBlur": "ixBlur"; }, never, ["*"], false, never>;
984
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxNumberInput, "ix-number-input", never, { "allowEmptyValueChange": { "alias": "allowEmptyValueChange"; "required": false; }; "allowedCharactersPattern": { "alias": "allowedCharactersPattern"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "infoText": { "alias": "infoText"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "name": { "alias": "name"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "showStepperButtons": { "alias": "showStepperButtons"; "required": false; }; "showTextAsTooltip": { "alias": "showTextAsTooltip"; "required": false; }; "step": { "alias": "step"; "required": false; }; "suppressSubmitOnEnter": { "alias": "suppressSubmitOnEnter"; "required": false; }; "textAlignment": { "alias": "textAlignment"; "required": false; }; "validText": { "alias": "validText"; "required": false; }; "value": { "alias": "value"; "required": false; }; "warningText": { "alias": "warningText"; "required": false; }; }, { "valueChange": "valueChange"; "validityStateChange": "validityStateChange"; "ixBlur": "ixBlur"; "ixChange": "ixChange"; }, never, ["*"], false, never>;
974
985
  }
975
986
  declare interface IxNumberInput extends Components.IxNumberInput {
976
987
  /**
@@ -985,6 +996,10 @@ declare interface IxNumberInput extends Components.IxNumberInput {
985
996
  * Event emitted when the input field loses focus
986
997
  */
987
998
  ixBlur: EventEmitter<CustomEvent<void>>;
999
+ /**
1000
+ * Event emitted when the input field loses focus and the value has changed @since 4.4.0
1001
+ */
1002
+ ixChange: EventEmitter<CustomEvent<number>>;
988
1003
  }
989
1004
  declare class IxPagination {
990
1005
  protected z: NgZone;
@@ -993,7 +1008,7 @@ declare class IxPagination {
993
1008
  itemCountChanged: EventEmitter<CustomEvent<number>>;
994
1009
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
995
1010
  static ɵfac: i0.ɵɵFactoryDeclaration<IxPagination, never>;
996
- static ɵcmp: i0.ɵɵComponentDeclaration<IxPagination, "ix-pagination", never, { "advanced": { "alias": "advanced"; "required": false; }; "ariaLabelChevronLeftIconButton": { "alias": "ariaLabelChevronLeftIconButton"; "required": false; }; "ariaLabelChevronRightIconButton": { "alias": "ariaLabelChevronRightIconButton"; "required": false; }; "ariaLabelPageSelection": { "alias": "ariaLabelPageSelection"; "required": false; }; "count": { "alias": "count"; "required": false; }; "hideItemCount": { "alias": "hideItemCount"; "required": false; }; "i18nItems": { "alias": "i18nItems"; "required": false; }; "i18nOf": { "alias": "i18nOf"; "required": false; }; "i18nPage": { "alias": "i18nPage"; "required": false; }; "itemCount": { "alias": "itemCount"; "required": false; }; "selectedPage": { "alias": "selectedPage"; "required": false; }; }, { "pageSelected": "pageSelected"; "itemCountChanged": "itemCountChanged"; }, never, ["*"], false, never>;
1011
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxPagination, "ix-pagination", never, { "advanced": { "alias": "advanced"; "required": false; }; "ariaLabelChevronLeftIconButton": { "alias": "ariaLabelChevronLeftIconButton"; "required": false; }; "ariaLabelChevronRightIconButton": { "alias": "ariaLabelChevronRightIconButton"; "required": false; }; "ariaLabelPageSelection": { "alias": "ariaLabelPageSelection"; "required": false; }; "count": { "alias": "count"; "required": false; }; "hideItemCount": { "alias": "hideItemCount"; "required": false; }; "i18nItems": { "alias": "i18nItems"; "required": false; }; "i18nOf": { "alias": "i18nOf"; "required": false; }; "i18nPage": { "alias": "i18nPage"; "required": false; }; "itemCount": { "alias": "itemCount"; "required": false; }; "itemCountOptions": { "alias": "itemCountOptions"; "required": false; }; "selectedPage": { "alias": "selectedPage"; "required": false; }; }, { "pageSelected": "pageSelected"; "itemCountChanged": "itemCountChanged"; }, never, ["*"], false, never>;
997
1012
  }
998
1013
  declare interface IxPagination extends Components.IxPagination {
999
1014
  /**
@@ -1216,7 +1231,9 @@ declare class IxTabs {
1216
1231
  }
1217
1232
  declare interface IxTabs extends Components.IxTabs {
1218
1233
  /**
1219
- * `selected` property changed
1234
+ * Tab selection event. Event detail is the zero-based tab index. Fires when
1235
+ the user selects a tab, or when the tab list changes and the selected index
1236
+ is adjusted. Not emitted when `selected` is set from outside.
1220
1237
  */
1221
1238
  selectedChange: EventEmitter<CustomEvent<number>>;
1222
1239
  }
@@ -1226,9 +1243,10 @@ declare class IxTextarea {
1226
1243
  valueChange: EventEmitter<CustomEvent<string>>;
1227
1244
  validityStateChange: EventEmitter<CustomEvent<ValidityState>>;
1228
1245
  ixBlur: EventEmitter<CustomEvent<void>>;
1246
+ ixChange: EventEmitter<CustomEvent<string>>;
1229
1247
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1230
1248
  static ɵfac: i0.ɵɵFactoryDeclaration<IxTextarea, never>;
1231
- static ɵcmp: i0.ɵɵComponentDeclaration<IxTextarea, "ix-textarea", never, { "disabled": { "alias": "disabled"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "infoText": { "alias": "infoText"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "resizeBehavior": { "alias": "resizeBehavior"; "required": false; }; "showTextAsTooltip": { "alias": "showTextAsTooltip"; "required": false; }; "textareaCols": { "alias": "textareaCols"; "required": false; }; "textareaHeight": { "alias": "textareaHeight"; "required": false; }; "textareaRows": { "alias": "textareaRows"; "required": false; }; "textareaWidth": { "alias": "textareaWidth"; "required": false; }; "validText": { "alias": "validText"; "required": false; }; "value": { "alias": "value"; "required": false; }; "warningText": { "alias": "warningText"; "required": false; }; }, { "valueChange": "valueChange"; "validityStateChange": "validityStateChange"; "ixBlur": "ixBlur"; }, never, ["*"], false, never>;
1249
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxTextarea, "ix-textarea", never, { "disabled": { "alias": "disabled"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "infoText": { "alias": "infoText"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "resizeBehavior": { "alias": "resizeBehavior"; "required": false; }; "showTextAsTooltip": { "alias": "showTextAsTooltip"; "required": false; }; "textareaCols": { "alias": "textareaCols"; "required": false; }; "textareaHeight": { "alias": "textareaHeight"; "required": false; }; "textareaRows": { "alias": "textareaRows"; "required": false; }; "textareaWidth": { "alias": "textareaWidth"; "required": false; }; "validText": { "alias": "validText"; "required": false; }; "value": { "alias": "value"; "required": false; }; "warningText": { "alias": "warningText"; "required": false; }; }, { "valueChange": "valueChange"; "validityStateChange": "validityStateChange"; "ixBlur": "ixBlur"; "ixChange": "ixChange"; }, never, ["*"], false, never>;
1232
1250
  }
1233
1251
  declare interface IxTextarea extends Components.IxTextarea {
1234
1252
  /**
@@ -1243,6 +1261,10 @@ declare interface IxTextarea extends Components.IxTextarea {
1243
1261
  * Event emitted when the textarea field loses focus.
1244
1262
  */
1245
1263
  ixBlur: EventEmitter<CustomEvent<void>>;
1264
+ /**
1265
+ * Event emitted when the textarea field loses focus and the value has changed. @since 4.4.0
1266
+ */
1267
+ ixChange: EventEmitter<CustomEvent<string>>;
1246
1268
  }
1247
1269
  declare class IxTile {
1248
1270
  protected z: NgZone;
@@ -1258,19 +1280,24 @@ declare class IxTimeInput {
1258
1280
  protected el: HTMLIxTimeInputElement;
1259
1281
  valueChange: EventEmitter<CustomEvent<string>>;
1260
1282
  validityStateChange: EventEmitter<CustomEvent<TimeInputValidityState>>;
1283
+ ixChange: EventEmitter<CustomEvent<string>>;
1261
1284
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1262
1285
  static ɵfac: i0.ɵɵFactoryDeclaration<IxTimeInput, never>;
1263
- static ɵcmp: i0.ɵɵComponentDeclaration<IxTimeInput, "ix-time-input", never, { "disabled": { "alias": "disabled"; "required": false; }; "enableTopLayer": { "alias": "enableTopLayer"; "required": false; }; "format": { "alias": "format"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "hideHeader": { "alias": "hideHeader"; "required": false; }; "hourInterval": { "alias": "hourInterval"; "required": false; }; "i18nErrorTimeUnparsable": { "alias": "i18nErrorTimeUnparsable"; "required": false; }; "i18nHourColumnHeader": { "alias": "i18nHourColumnHeader"; "required": false; }; "i18nMillisecondColumnHeader": { "alias": "i18nMillisecondColumnHeader"; "required": false; }; "i18nMinuteColumnHeader": { "alias": "i18nMinuteColumnHeader"; "required": false; }; "i18nSecondColumnHeader": { "alias": "i18nSecondColumnHeader"; "required": false; }; "i18nSelectTime": { "alias": "i18nSelectTime"; "required": false; }; "i18nTime": { "alias": "i18nTime"; "required": false; }; "infoText": { "alias": "infoText"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "millisecondInterval": { "alias": "millisecondInterval"; "required": false; }; "minuteInterval": { "alias": "minuteInterval"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "secondInterval": { "alias": "secondInterval"; "required": false; }; "showTextAsTooltip": { "alias": "showTextAsTooltip"; "required": false; }; "suppressSubmitOnEnter": { "alias": "suppressSubmitOnEnter"; "required": false; }; "textAlignment": { "alias": "textAlignment"; "required": false; }; "validText": { "alias": "validText"; "required": false; }; "value": { "alias": "value"; "required": false; }; "warningText": { "alias": "warningText"; "required": false; }; }, { "valueChange": "valueChange"; "validityStateChange": "validityStateChange"; }, never, ["*"], false, never>;
1286
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxTimeInput, "ix-time-input", never, { "disabled": { "alias": "disabled"; "required": false; }; "enableTopLayer": { "alias": "enableTopLayer"; "required": false; }; "format": { "alias": "format"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "hideHeader": { "alias": "hideHeader"; "required": false; }; "hourInterval": { "alias": "hourInterval"; "required": false; }; "i18nErrorTimeUnparsable": { "alias": "i18nErrorTimeUnparsable"; "required": false; }; "i18nHourColumnHeader": { "alias": "i18nHourColumnHeader"; "required": false; }; "i18nMillisecondColumnHeader": { "alias": "i18nMillisecondColumnHeader"; "required": false; }; "i18nMinuteColumnHeader": { "alias": "i18nMinuteColumnHeader"; "required": false; }; "i18nSecondColumnHeader": { "alias": "i18nSecondColumnHeader"; "required": false; }; "i18nSelectTime": { "alias": "i18nSelectTime"; "required": false; }; "i18nTime": { "alias": "i18nTime"; "required": false; }; "infoText": { "alias": "infoText"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "millisecondInterval": { "alias": "millisecondInterval"; "required": false; }; "minuteInterval": { "alias": "minuteInterval"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "secondInterval": { "alias": "secondInterval"; "required": false; }; "showTextAsTooltip": { "alias": "showTextAsTooltip"; "required": false; }; "suppressSubmitOnEnter": { "alias": "suppressSubmitOnEnter"; "required": false; }; "textAlignment": { "alias": "textAlignment"; "required": false; }; "validText": { "alias": "validText"; "required": false; }; "value": { "alias": "value"; "required": false; }; "warningText": { "alias": "warningText"; "required": false; }; }, { "valueChange": "valueChange"; "validityStateChange": "validityStateChange"; "ixChange": "ixChange"; }, never, ["*"], false, never>;
1264
1287
  }
1265
1288
  declare interface IxTimeInput extends Components.IxTimeInput {
1266
1289
  /**
1267
- * Input change event.
1290
+ * Value change event. Emitted when the input value changes.
1268
1291
  */
1269
1292
  valueChange: EventEmitter<CustomEvent<string>>;
1270
1293
  /**
1271
- * Validation state change event.
1294
+ * Validation state change event. Emitted when the validation state changes.
1272
1295
  */
1273
1296
  validityStateChange: EventEmitter<CustomEvent<TimeInputValidityState>>;
1297
+ /**
1298
+ * Change event. Emitted when the time input loses focus and the value has changed. @since 4.4.0
1299
+ */
1300
+ ixChange: EventEmitter<CustomEvent<string>>;
1274
1301
  }
1275
1302
  declare class IxTimePicker {
1276
1303
  protected z: NgZone;
@@ -1283,11 +1310,11 @@ declare class IxTimePicker {
1283
1310
  }
1284
1311
  declare interface IxTimePicker extends Components.IxTimePicker {
1285
1312
  /**
1286
- * Time event
1313
+ * Time event. Emitted when the user confirms the selected time.
1287
1314
  */
1288
1315
  timeSelect: EventEmitter<CustomEvent<string>>;
1289
1316
  /**
1290
- * Time change event
1317
+ * Time change event. Emitted when the selected time changes while interacting with the picker.
1291
1318
  */
1292
1319
  timeChange: EventEmitter<CustomEvent<string>>;
1293
1320
  }
@@ -1520,6 +1547,12 @@ declare class IxDateValueAccessorDirective extends DateValueAccessorBaseDirectiv
1520
1547
  static ɵdir: i0.ɵɵDirectiveDeclaration<IxDateValueAccessorDirective, "ix-date-input", never, {}, {}, never, never, false, never>;
1521
1548
  }
1522
1549
 
1550
+ declare class IxTimeValueAccessorDirective extends TimeValueAccessorBaseDirective {
1551
+ constructor(injector: Injector, el: ElementRef);
1552
+ static ɵfac: i0.ɵɵFactoryDeclaration<IxTimeValueAccessorDirective, never>;
1553
+ static ɵdir: i0.ɵɵDirectiveDeclaration<IxTimeValueAccessorDirective, "ix-time-input", never, {}, {}, never, never, false, never>;
1554
+ }
1555
+
1523
1556
  declare class IxDropdownTriggerDirective extends DropdownTriggerBaseDirective {
1524
1557
  ixDropdownTrigger: any;
1525
1558
  constructor(element: ElementRef);
@@ -1531,8 +1564,8 @@ declare class IxDropdownTriggerDirective extends DropdownTriggerBaseDirective {
1531
1564
  declare class IxModule {
1532
1565
  static forRoot(): ModuleWithProviders<IxModule>;
1533
1566
  static ɵfac: i0.ɵɵFactoryDeclaration<IxModule, never>;
1534
- static ɵmod: i0.ɵɵNgModuleDeclaration<IxModule, [typeof IxActionCard, typeof IxApplication, typeof IxApplicationHeader, typeof IxAvatar, typeof IxBlind, typeof IxBreadcrumb, typeof IxBreadcrumbItem, typeof IxButton, typeof IxCard, typeof IxCardAccordion, typeof IxCardContent, typeof IxCardList, typeof IxCardTitle, typeof IxCategoryFilter, typeof IxCheckbox, typeof IxCheckboxGroup, typeof IxChip, typeof IxCol, typeof IxContent, typeof IxContentHeader, typeof IxCustomField, typeof IxDateDropdown, typeof IxDateInput, typeof IxDatePicker, typeof IxDatetimePicker, typeof IxDivider, typeof IxDrawer, typeof IxDropdown, typeof IxDropdownButton, typeof IxDropdownHeader, typeof IxDropdownItem, typeof IxDropdownQuickActions, typeof IxEmptyState, typeof IxEventList, typeof IxEventListItem, typeof IxExpandingSearch, typeof IxFieldLabel, typeof IxFilterChip, typeof IxFlipTile, typeof IxFlipTileContent, typeof IxGroup, typeof IxGroupContextMenu, typeof IxGroupItem, typeof IxHelperText, typeof IxIconButton, typeof IxIconToggleButton, typeof IxInput, typeof IxInputGroup, typeof IxKeyValue, typeof IxKeyValueList, typeof IxKpi, typeof IxLayoutAuto, typeof IxLayoutGrid, typeof IxLinkButton, typeof IxMenu, typeof IxMenuAbout, typeof IxMenuAboutItem, typeof IxMenuAboutNews, typeof IxMenuAvatar, typeof IxMenuAvatarItem, typeof IxMenuCategory, typeof IxMenuItem, typeof IxMenuSettings, typeof IxMenuSettingsItem, typeof IxMessageBar, typeof IxModal, typeof IxModalContent, typeof IxModalFooter, typeof IxModalHeader, typeof IxNumberInput, typeof IxPagination, typeof IxPane, typeof IxPaneLayout, typeof IxPill, typeof IxProgressIndicator, typeof IxPushCard, typeof IxRadio, typeof IxRadioGroup, typeof IxRow, typeof IxSelect, typeof IxSelectItem, typeof IxSlider, typeof IxSpinner, typeof IxSplitButton, typeof IxTabItem, typeof IxTabs, typeof IxTextarea, typeof IxTile, typeof IxTimeInput, typeof IxTimePicker, typeof IxToast, typeof IxToastContainer, typeof IxToggle, typeof IxToggleButton, typeof IxTooltip, typeof IxTreeItem, typeof IxTypography, typeof IxUpload, typeof IxValidationTooltip, typeof IxWorkflowStep, typeof IxWorkflowSteps, typeof IxTree, typeof IxIcon, typeof IxDropdownTriggerDirective, typeof IxTextValueAccessorDirective, typeof IxSelectValueAccessorDirective, typeof IxRadioValueAccessorDirective, typeof IxBooleanValueAccessorDirective, typeof IxDateValueAccessorDirective], never, [typeof IxActionCard, typeof IxApplication, typeof IxApplicationHeader, typeof IxAvatar, typeof IxBlind, typeof IxBreadcrumb, typeof IxBreadcrumbItem, typeof IxButton, typeof IxCard, typeof IxCardAccordion, typeof IxCardContent, typeof IxCardList, typeof IxCardTitle, typeof IxCategoryFilter, typeof IxCheckbox, typeof IxCheckboxGroup, typeof IxChip, typeof IxCol, typeof IxContent, typeof IxContentHeader, typeof IxCustomField, typeof IxDateDropdown, typeof IxDateInput, typeof IxDatePicker, typeof IxDatetimePicker, typeof IxDivider, typeof IxDrawer, typeof IxDropdown, typeof IxDropdownButton, typeof IxDropdownHeader, typeof IxDropdownItem, typeof IxDropdownQuickActions, typeof IxEmptyState, typeof IxEventList, typeof IxEventListItem, typeof IxExpandingSearch, typeof IxFieldLabel, typeof IxFilterChip, typeof IxFlipTile, typeof IxFlipTileContent, typeof IxGroup, typeof IxGroupContextMenu, typeof IxGroupItem, typeof IxHelperText, typeof IxIconButton, typeof IxIconToggleButton, typeof IxInput, typeof IxInputGroup, typeof IxKeyValue, typeof IxKeyValueList, typeof IxKpi, typeof IxLayoutAuto, typeof IxLayoutGrid, typeof IxLinkButton, typeof IxMenu, typeof IxMenuAbout, typeof IxMenuAboutItem, typeof IxMenuAboutNews, typeof IxMenuAvatar, typeof IxMenuAvatarItem, typeof IxMenuCategory, typeof IxMenuItem, typeof IxMenuSettings, typeof IxMenuSettingsItem, typeof IxMessageBar, typeof IxModal, typeof IxModalContent, typeof IxModalFooter, typeof IxModalHeader, typeof IxNumberInput, typeof IxPagination, typeof IxPane, typeof IxPaneLayout, typeof IxPill, typeof IxProgressIndicator, typeof IxPushCard, typeof IxRadio, typeof IxRadioGroup, typeof IxRow, typeof IxSelect, typeof IxSelectItem, typeof IxSlider, typeof IxSpinner, typeof IxSplitButton, typeof IxTabItem, typeof IxTabs, typeof IxTextarea, typeof IxTile, typeof IxTimeInput, typeof IxTimePicker, typeof IxToast, typeof IxToastContainer, typeof IxToggle, typeof IxToggleButton, typeof IxTooltip, typeof IxTreeItem, typeof IxTypography, typeof IxUpload, typeof IxValidationTooltip, typeof IxWorkflowStep, typeof IxWorkflowSteps, typeof IxTree, typeof IxIcon, typeof IxDropdownTriggerDirective, typeof IxTextValueAccessorDirective, typeof IxSelectValueAccessorDirective, typeof IxRadioValueAccessorDirective, typeof IxBooleanValueAccessorDirective, typeof IxDateValueAccessorDirective]>;
1567
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IxModule, [typeof IxActionCard, typeof IxApplication, typeof IxApplicationHeader, typeof IxAvatar, typeof IxBlind, typeof IxBreadcrumb, typeof IxBreadcrumbItem, typeof IxButton, typeof IxCard, typeof IxCardAccordion, typeof IxCardContent, typeof IxCardList, typeof IxCardTitle, typeof IxCategoryFilter, typeof IxCheckbox, typeof IxCheckboxGroup, typeof IxChip, typeof IxCol, typeof IxContent, typeof IxContentHeader, typeof IxCustomField, typeof IxDateDropdown, typeof IxDateInput, typeof IxDatePicker, typeof IxDatetimePicker, typeof IxDivider, typeof IxDrawer, typeof IxDropdown, typeof IxDropdownButton, typeof IxDropdownHeader, typeof IxDropdownItem, typeof IxDropdownQuickActions, typeof IxEmptyState, typeof IxEventList, typeof IxEventListItem, typeof IxExpandingSearch, typeof IxFieldLabel, typeof IxFilterChip, typeof IxFlipTile, typeof IxFlipTileContent, typeof IxGroup, typeof IxGroupContextMenu, typeof IxGroupItem, typeof IxHelperText, typeof IxIconButton, typeof IxIconToggleButton, typeof IxInput, typeof IxInputGroup, typeof IxKeyValue, typeof IxKeyValueList, typeof IxKpi, typeof IxLayoutAuto, typeof IxLayoutGrid, typeof IxLinkButton, typeof IxMenu, typeof IxMenuAbout, typeof IxMenuAboutItem, typeof IxMenuAboutNews, typeof IxMenuAvatar, typeof IxMenuAvatarItem, typeof IxMenuCategory, typeof IxMenuItem, typeof IxMenuSettings, typeof IxMenuSettingsItem, typeof IxMessageBar, typeof IxModal, typeof IxModalContent, typeof IxModalFooter, typeof IxModalHeader, typeof IxNumberInput, typeof IxPagination, typeof IxPane, typeof IxPaneLayout, typeof IxPill, typeof IxProgressIndicator, typeof IxPushCard, typeof IxRadio, typeof IxRadioGroup, typeof IxRow, typeof IxSelect, typeof IxSelectItem, typeof IxSlider, typeof IxSpinner, typeof IxSplitButton, typeof IxTabItem, typeof IxTabs, typeof IxTextarea, typeof IxTile, typeof IxTimeInput, typeof IxTimePicker, typeof IxToast, typeof IxToastContainer, typeof IxToggle, typeof IxToggleButton, typeof IxTooltip, typeof IxTreeItem, typeof IxTypography, typeof IxUpload, typeof IxValidationTooltip, typeof IxWorkflowStep, typeof IxWorkflowSteps, typeof IxTree, typeof IxIcon, typeof IxDropdownTriggerDirective, typeof IxTextValueAccessorDirective, typeof IxSelectValueAccessorDirective, typeof IxRadioValueAccessorDirective, typeof IxBooleanValueAccessorDirective, typeof IxDateValueAccessorDirective, typeof IxTimeValueAccessorDirective], never, [typeof IxActionCard, typeof IxApplication, typeof IxApplicationHeader, typeof IxAvatar, typeof IxBlind, typeof IxBreadcrumb, typeof IxBreadcrumbItem, typeof IxButton, typeof IxCard, typeof IxCardAccordion, typeof IxCardContent, typeof IxCardList, typeof IxCardTitle, typeof IxCategoryFilter, typeof IxCheckbox, typeof IxCheckboxGroup, typeof IxChip, typeof IxCol, typeof IxContent, typeof IxContentHeader, typeof IxCustomField, typeof IxDateDropdown, typeof IxDateInput, typeof IxDatePicker, typeof IxDatetimePicker, typeof IxDivider, typeof IxDrawer, typeof IxDropdown, typeof IxDropdownButton, typeof IxDropdownHeader, typeof IxDropdownItem, typeof IxDropdownQuickActions, typeof IxEmptyState, typeof IxEventList, typeof IxEventListItem, typeof IxExpandingSearch, typeof IxFieldLabel, typeof IxFilterChip, typeof IxFlipTile, typeof IxFlipTileContent, typeof IxGroup, typeof IxGroupContextMenu, typeof IxGroupItem, typeof IxHelperText, typeof IxIconButton, typeof IxIconToggleButton, typeof IxInput, typeof IxInputGroup, typeof IxKeyValue, typeof IxKeyValueList, typeof IxKpi, typeof IxLayoutAuto, typeof IxLayoutGrid, typeof IxLinkButton, typeof IxMenu, typeof IxMenuAbout, typeof IxMenuAboutItem, typeof IxMenuAboutNews, typeof IxMenuAvatar, typeof IxMenuAvatarItem, typeof IxMenuCategory, typeof IxMenuItem, typeof IxMenuSettings, typeof IxMenuSettingsItem, typeof IxMessageBar, typeof IxModal, typeof IxModalContent, typeof IxModalFooter, typeof IxModalHeader, typeof IxNumberInput, typeof IxPagination, typeof IxPane, typeof IxPaneLayout, typeof IxPill, typeof IxProgressIndicator, typeof IxPushCard, typeof IxRadio, typeof IxRadioGroup, typeof IxRow, typeof IxSelect, typeof IxSelectItem, typeof IxSlider, typeof IxSpinner, typeof IxSplitButton, typeof IxTabItem, typeof IxTabs, typeof IxTextarea, typeof IxTile, typeof IxTimeInput, typeof IxTimePicker, typeof IxToast, typeof IxToastContainer, typeof IxToggle, typeof IxToggleButton, typeof IxTooltip, typeof IxTreeItem, typeof IxTypography, typeof IxUpload, typeof IxValidationTooltip, typeof IxWorkflowStep, typeof IxWorkflowSteps, typeof IxTree, typeof IxIcon, typeof IxDropdownTriggerDirective, typeof IxTextValueAccessorDirective, typeof IxSelectValueAccessorDirective, typeof IxRadioValueAccessorDirective, typeof IxBooleanValueAccessorDirective, typeof IxDateValueAccessorDirective, typeof IxTimeValueAccessorDirective]>;
1535
1568
  static ɵinj: i0.ɵɵInjectorDeclaration<IxModule>;
1536
1569
  }
1537
1570
 
1538
- export { IxActionCard, IxApplication, IxApplicationHeader, IxAvatar, IxBlind, IxBooleanValueAccessorDirective, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxCheckbox, IxCheckboxGroup, IxChip, IxCol, IxContent, IxContentHeader, IxCustomField, IxDateDropdown, IxDateInput, IxDatePicker, IxDateValueAccessorDirective, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxDropdownTriggerDirective, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFieldLabel, IxFilterChip, IxFlipTile, IxFlipTileContent, IxGroup, IxGroupContextMenu, IxGroupItem, IxHelperText, IxIcon, IxIconButton, IxIconToggleButton, IxInput, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLayoutAuto, IxLayoutGrid, IxLinkButton, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalFooter, IxModalHeader, IxModule, IxNumberInput, IxPagination, IxPane, IxPaneLayout, IxPill, IxProgressIndicator, IxPushCard, IxRadio, IxRadioGroup, IxRadioValueAccessorDirective, IxRow, IxSelect, IxSelectItem, IxSelectValueAccessorDirective, IxSlider, IxSpinner, IxSplitButton, IxTabItem, IxTabs, IxTextValueAccessorDirective, IxTextarea, IxTile, IxTimeInput, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTree, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, LoadingService, MessageService, ModalService, ToastService };
1571
+ export { IxActionCard, IxApplication, IxApplicationHeader, IxAvatar, IxBlind, IxBooleanValueAccessorDirective, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxCheckbox, IxCheckboxGroup, IxChip, IxCol, IxContent, IxContentHeader, IxCustomField, IxDateDropdown, IxDateInput, IxDatePicker, IxDateValueAccessorDirective, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxDropdownTriggerDirective, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFieldLabel, IxFilterChip, IxFlipTile, IxFlipTileContent, IxGroup, IxGroupContextMenu, IxGroupItem, IxHelperText, IxIcon, IxIconButton, IxIconToggleButton, IxInput, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLayoutAuto, IxLayoutGrid, IxLinkButton, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalFooter, IxModalHeader, IxModule, IxNumberInput, IxPagination, IxPane, IxPaneLayout, IxPill, IxProgressIndicator, IxPushCard, IxRadio, IxRadioGroup, IxRadioValueAccessorDirective, IxRow, IxSelect, IxSelectItem, IxSelectValueAccessorDirective, IxSlider, IxSpinner, IxSplitButton, IxTabItem, IxTabs, IxTextValueAccessorDirective, IxTextarea, IxTile, IxTimeInput, IxTimePicker, IxTimeValueAccessorDirective, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTree, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, LoadingService, MessageService, ModalService, ToastService };
package/package.json CHANGED
@@ -7,16 +7,16 @@
7
7
  "url": "https://github.com/siemens/ix",
8
8
  "directory": "packages/angular"
9
9
  },
10
- "version": "4.3.0",
10
+ "version": "4.4.0",
11
11
  "description": "Siemens iX for Angular",
12
12
  "license": "MIT",
13
13
  "dependencies": {
14
- "@siemens/ix": "~4.3.0",
14
+ "@siemens/ix": "~4.4.0",
15
15
  "tslib": "^2.3.0"
16
16
  },
17
17
  "peerDependencies": {
18
- "@angular/core": ">=20",
19
- "@angular/forms": ">=20",
18
+ "@angular/core": ">=20.0.0",
19
+ "@angular/forms": ">=20.0.0",
20
20
  "@siemens/ix-icons": "^3.2.0"
21
21
  },
22
22
  "publishConfig": {