@siemens/ix-angular 0.0.0-pr-1318-20240627080522 → 0.0.0-pr-1373-20240705054533

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.
Files changed (33) hide show
  1. package/boolean-value-accessor.d.ts +9 -0
  2. package/components.d.ts +12 -180
  3. package/declare-components.d.ts +1 -1
  4. package/esm2020/app-initialize.mjs +2 -2
  5. package/esm2020/boolean-value-accessor.mjs +38 -0
  6. package/esm2020/components.mjs +33 -320
  7. package/esm2020/declare-components.mjs +2 -13
  8. package/esm2020/index.mjs +3 -2
  9. package/esm2020/module.mjs +10 -22
  10. package/esm2020/select-value-accessor.mjs +35 -0
  11. package/esm2020/value-accessor.mjs +40 -0
  12. package/fesm2015/siemens-ix-angular.mjs +150 -692
  13. package/fesm2015/siemens-ix-angular.mjs.map +1 -1
  14. package/fesm2020/siemens-ix-angular.mjs +150 -692
  15. package/fesm2020/siemens-ix-angular.mjs.map +1 -1
  16. package/index.d.ts +2 -1
  17. package/module.d.ts +3 -6
  18. package/package.json +2 -2
  19. package/select-value-accessor.d.ts +8 -0
  20. package/{control-value-accessors/value-accessor.d.ts → value-accessor.d.ts} +6 -12
  21. package/control-value-accessors/boolean-value-accessor.d.ts +0 -10
  22. package/control-value-accessors/date-value-accessor.d.ts +0 -9
  23. package/control-value-accessors/index.d.ts +0 -5
  24. package/control-value-accessors/radio-value-accessor.d.ts +0 -10
  25. package/control-value-accessors/select-value-accessor.d.ts +0 -9
  26. package/control-value-accessors/text-value-accessor.d.ts +0 -9
  27. package/esm2020/control-value-accessors/boolean-value-accessor.mjs +0 -49
  28. package/esm2020/control-value-accessors/date-value-accessor.mjs +0 -45
  29. package/esm2020/control-value-accessors/index.mjs +0 -14
  30. package/esm2020/control-value-accessors/radio-value-accessor.mjs +0 -51
  31. package/esm2020/control-value-accessors/select-value-accessor.mjs +0 -45
  32. package/esm2020/control-value-accessors/text-value-accessor.mjs +0 -48
  33. package/esm2020/control-value-accessors/value-accessor.mjs +0 -125
@@ -1,13 +1,85 @@
1
1
  import { closeModal, dismissModal, showModal, themeSwitcher, getToastContainer, toast } from '@siemens/ix';
2
2
  export * from '@siemens/ix';
3
- import { __decorate, __awaiter } from 'tslib';
4
3
  import * as i0 from '@angular/core';
5
- import { Component, ChangeDetectionStrategy, Directive, Input, Type, Injector, ElementRef, Injectable, HostListener, EventEmitter, Output, APP_INITIALIZER, NgZone, NgModule } from '@angular/core';
4
+ import { Directive, HostListener, Component, ChangeDetectionStrategy, Input, Type, Injector, ElementRef, Injectable, EventEmitter, Output, APP_INITIALIZER, NgZone, NgModule } from '@angular/core';
5
+ import { NG_VALUE_ACCESSOR } from '@angular/forms';
6
+ import { __decorate, __awaiter } from 'tslib';
6
7
  import { fromEvent } from 'rxjs';
7
- import { NgControl, NG_VALUE_ACCESSOR } from '@angular/forms';
8
8
  import { DOCUMENT } from '@angular/common';
9
- import { defineCustomElements } from '@siemens/ix-icons/loader';
10
- import { defineCustomElements as defineCustomElements$1 } from '@siemens/ix/loader';
9
+ import { defineCustomElements as defineCustomElements$1 } from '@siemens/ix-icons/loader';
10
+ import { defineCustomElements } from '@siemens/ix/loader';
11
+
12
+ class ValueAccessor {
13
+ constructor(el) {
14
+ this.el = el;
15
+ this.onChange = () => { };
16
+ this.onTouched = () => { };
17
+ }
18
+ writeValue(value) {
19
+ this.el.nativeElement.value = this.lastValue = value == null ? '' : value;
20
+ }
21
+ handleChangeEvent(value) {
22
+ if (value !== this.lastValue) {
23
+ this.lastValue = value;
24
+ this.onChange(value);
25
+ }
26
+ }
27
+ _handleBlurEvent() {
28
+ this.onTouched();
29
+ }
30
+ registerOnChange(fn) {
31
+ this.onChange = fn;
32
+ }
33
+ registerOnTouched(fn) {
34
+ this.onTouched = fn;
35
+ }
36
+ setDisabledState(isDisabled) {
37
+ this.el.nativeElement.disabled = isDisabled;
38
+ }
39
+ }
40
+ /** @nocollapse */ ValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
41
+ /** @nocollapse */ ValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 });
42
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ValueAccessor, decorators: [{
43
+ type: Directive,
44
+ args: [{}]
45
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { _handleBlurEvent: [{
46
+ type: HostListener,
47
+ args: ['focusout']
48
+ }] } });
49
+
50
+ class BooleanValueAccessor extends ValueAccessor {
51
+ constructor(el) {
52
+ super(el);
53
+ }
54
+ writeValue(value) {
55
+ this.el.nativeElement.checked = this.lastValue = value == null ? false : value;
56
+ }
57
+ }
58
+ /** @nocollapse */ BooleanValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: BooleanValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
59
+ /** @nocollapse */ BooleanValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: BooleanValueAccessor, selector: "ix-toggle[ngModel],ix-toggle[formControlName],ix-toggle[formControl]", host: { listeners: { "checkedChange": "handleChangeEvent($event.target.checked)" } }, providers: [
60
+ {
61
+ provide: NG_VALUE_ACCESSOR,
62
+ useExisting: BooleanValueAccessor,
63
+ multi: true
64
+ }
65
+ ], usesInheritance: true, ngImport: i0 });
66
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: BooleanValueAccessor, decorators: [{
67
+ type: Directive,
68
+ args: [{
69
+ /* tslint:disable-next-line:directive-selector */
70
+ selector: 'ix-toggle[ngModel],ix-toggle[formControlName],ix-toggle[formControl]',
71
+ host: {
72
+ '(checkedChange)': 'handleChangeEvent($event.target.checked)'
73
+ },
74
+ providers: [
75
+ {
76
+ provide: NG_VALUE_ACCESSOR,
77
+ useExisting: BooleanValueAccessor,
78
+ multi: true
79
+ }
80
+ ]
81
+ }]
82
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
11
83
 
12
84
  /* eslint-disable */
13
85
  const proxyInputs = (Cmp, inputs) => {
@@ -426,55 +498,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
426
498
  inputs: ['categories', 'disabled', 'filterState', 'hideIcon', 'i18nPlainText', 'icon', 'labelCategories', 'nonSelectableCategories', 'placeholder', 'readonly', 'repeatCategories', 'staticOperator', 'suggestions'],
427
499
  }]
428
500
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
429
- let IxCheckbox = class IxCheckbox {
430
- constructor(c, r, z) {
431
- this.z = z;
432
- c.detach();
433
- this.el = r.nativeElement;
434
- proxyOutputs(this, this.el, ['checkedChange', 'valueChange']);
435
- }
436
- };
437
- /** @nocollapse */ IxCheckbox.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
438
- /** @nocollapse */ IxCheckbox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxCheckbox, selector: "ix-checkbox", inputs: { checked: "checked", disabled: "disabled", indeterminate: "indeterminate", label: "label", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
439
- IxCheckbox = __decorate([
440
- ProxyCmp({
441
- inputs: ['checked', 'disabled', 'indeterminate', 'label', 'name', 'required', 'value']
442
- })
443
- ], IxCheckbox);
444
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCheckbox, decorators: [{
445
- type: Component,
446
- args: [{
447
- selector: 'ix-checkbox',
448
- changeDetection: ChangeDetectionStrategy.OnPush,
449
- template: '<ng-content></ng-content>',
450
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
451
- inputs: ['checked', 'disabled', 'indeterminate', 'label', 'name', 'required', 'value'],
452
- }]
453
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
454
- let IxCheckboxGroup = class IxCheckboxGroup {
455
- constructor(c, r, z) {
456
- this.z = z;
457
- c.detach();
458
- this.el = r.nativeElement;
459
- }
460
- };
461
- /** @nocollapse */ IxCheckboxGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCheckboxGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
462
- /** @nocollapse */ IxCheckboxGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxCheckboxGroup, selector: "ix-checkbox-group", inputs: { helperText: "helperText", infoText: "infoText", invalidText: "invalidText", label: "label", validText: "validText", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
463
- IxCheckboxGroup = __decorate([
464
- ProxyCmp({
465
- inputs: ['helperText', 'infoText', 'invalidText', 'label', 'validText', 'warningText']
466
- })
467
- ], IxCheckboxGroup);
468
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCheckboxGroup, decorators: [{
469
- type: Component,
470
- args: [{
471
- selector: 'ix-checkbox-group',
472
- changeDetection: ChangeDetectionStrategy.OnPush,
473
- template: '<ng-content></ng-content>',
474
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
475
- inputs: ['helperText', 'infoText', 'invalidText', 'label', 'validText', 'warningText'],
476
- }]
477
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
478
501
  let IxChip = class IxChip {
479
502
  constructor(c, r, z) {
480
503
  this.z = z;
@@ -571,30 +594,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
571
594
  inputs: ['hasBackButton', 'headerSubtitle', 'headerTitle', 'variant'],
572
595
  }]
573
596
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
574
- let IxCustomField = class IxCustomField {
575
- constructor(c, r, z) {
576
- this.z = z;
577
- c.detach();
578
- this.el = r.nativeElement;
579
- }
580
- };
581
- /** @nocollapse */ IxCustomField.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCustomField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
582
- /** @nocollapse */ IxCustomField.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxCustomField, selector: "ix-custom-field", inputs: { helperText: "helperText", infoText: "infoText", invalidText: "invalidText", label: "label", required: "required", showTextAsTooltip: "showTextAsTooltip", validText: "validText", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
583
- IxCustomField = __decorate([
584
- ProxyCmp({
585
- inputs: ['helperText', 'infoText', 'invalidText', 'label', 'required', 'showTextAsTooltip', 'validText', 'warningText']
586
- })
587
- ], IxCustomField);
588
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCustomField, decorators: [{
589
- type: Component,
590
- args: [{
591
- selector: 'ix-custom-field',
592
- changeDetection: ChangeDetectionStrategy.OnPush,
593
- template: '<ng-content></ng-content>',
594
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
595
- inputs: ['helperText', 'infoText', 'invalidText', 'label', 'required', 'showTextAsTooltip', 'validText', 'warningText'],
596
- }]
597
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
598
597
  let IxDateDropdown = class IxDateDropdown {
599
598
  constructor(c, r, z) {
600
599
  this.z = z;
@@ -621,32 +620,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
621
620
  inputs: ['customRangeAllowed', 'dateRangeId', 'dateRangeOptions', 'disabled', 'format', 'from', 'i18nCustomItem', 'i18nDone', 'i18nNoRange', 'maxDate', 'minDate', 'range', 'to'],
622
621
  }]
623
622
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
624
- let IxDateField = class IxDateField {
625
- constructor(c, r, z) {
626
- this.z = z;
627
- c.detach();
628
- this.el = r.nativeElement;
629
- proxyOutputs(this, this.el, ['valueChange', 'validityStateChange']);
630
- }
631
- };
632
- /** @nocollapse */ IxDateField.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDateField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
633
- /** @nocollapse */ IxDateField.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxDateField, selector: "ix-date-field", inputs: { disabled: "disabled", format: "format", helperText: "helperText", i18nErrorDateUnparsable: "i18nErrorDateUnparsable", infoText: "infoText", invalidText: "invalidText", label: "label", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", showTextAsTooltip: "showTextAsTooltip", validText: "validText", value: "value", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
634
- IxDateField = __decorate([
635
- ProxyCmp({
636
- inputs: ['disabled', 'format', 'helperText', 'i18nErrorDateUnparsable', 'infoText', 'invalidText', 'label', 'name', 'placeholder', 'readonly', 'required', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
637
- methods: ['getNativeInputElement']
638
- })
639
- ], IxDateField);
640
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDateField, decorators: [{
641
- type: Component,
642
- args: [{
643
- selector: 'ix-date-field',
644
- changeDetection: ChangeDetectionStrategy.OnPush,
645
- template: '<ng-content></ng-content>',
646
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
647
- inputs: ['disabled', 'format', 'helperText', 'i18nErrorDateUnparsable', 'infoText', 'invalidText', 'label', 'name', 'placeholder', 'readonly', 'required', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
648
- }]
649
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
650
623
  let IxDatePicker = class IxDatePicker {
651
624
  constructor(c, r, z) {
652
625
  this.z = z;
@@ -966,30 +939,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
966
939
  inputs: ['fullWidth', 'icon', 'placeholder', 'value'],
967
940
  }]
968
941
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
969
- let IxFieldLabel = class IxFieldLabel {
970
- constructor(c, r, z) {
971
- this.z = z;
972
- c.detach();
973
- this.el = r.nativeElement;
974
- }
975
- };
976
- /** @nocollapse */ IxFieldLabel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFieldLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
977
- /** @nocollapse */ IxFieldLabel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxFieldLabel, selector: "ix-field-label", inputs: { htmlFor: "htmlFor", required: "required" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
978
- IxFieldLabel = __decorate([
979
- ProxyCmp({
980
- inputs: ['htmlFor', 'required']
981
- })
982
- ], IxFieldLabel);
983
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFieldLabel, decorators: [{
984
- type: Component,
985
- args: [{
986
- selector: 'ix-field-label',
987
- changeDetection: ChangeDetectionStrategy.OnPush,
988
- template: '<ng-content></ng-content>',
989
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
990
- inputs: ['htmlFor', 'required'],
991
- }]
992
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
993
942
  let IxFilterChip = class IxFilterChip {
994
943
  constructor(c, r, z) {
995
944
  this.z = z;
@@ -1061,6 +1010,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
1061
1010
  inputs: [],
1062
1011
  }]
1063
1012
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1013
+ let IxFormField = class IxFormField {
1014
+ constructor(c, r, z) {
1015
+ this.z = z;
1016
+ c.detach();
1017
+ this.el = r.nativeElement;
1018
+ }
1019
+ };
1020
+ /** @nocollapse */ IxFormField.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFormField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1021
+ /** @nocollapse */ IxFormField.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxFormField, selector: "ix-form-field", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1022
+ IxFormField = __decorate([
1023
+ ProxyCmp({
1024
+ inputs: ['label']
1025
+ })
1026
+ ], IxFormField);
1027
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFormField, decorators: [{
1028
+ type: Component,
1029
+ args: [{
1030
+ selector: 'ix-form-field',
1031
+ changeDetection: ChangeDetectionStrategy.OnPush,
1032
+ template: '<ng-content></ng-content>',
1033
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1034
+ inputs: ['label'],
1035
+ }]
1036
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1064
1037
  let IxGroup = class IxGroup {
1065
1038
  constructor(c, r, z) {
1066
1039
  this.z = z;
@@ -1133,30 +1106,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
1133
1106
  inputs: ['focusable', 'icon', 'index', 'secondaryText', 'selected', 'suppressSelection', 'text'],
1134
1107
  }]
1135
1108
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1136
- let IxHelperText = class IxHelperText {
1137
- constructor(c, r, z) {
1138
- this.z = z;
1139
- c.detach();
1140
- this.el = r.nativeElement;
1141
- }
1142
- };
1143
- /** @nocollapse */ IxHelperText.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxHelperText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1144
- /** @nocollapse */ IxHelperText.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxHelperText, selector: "ix-helper-text", inputs: { helperText: "helperText", htmlFor: "htmlFor", infoText: "infoText", invalidText: "invalidText", validText: "validText", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1145
- IxHelperText = __decorate([
1146
- ProxyCmp({
1147
- inputs: ['helperText', 'htmlFor', 'infoText', 'invalidText', 'validText', 'warningText']
1148
- })
1149
- ], IxHelperText);
1150
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxHelperText, decorators: [{
1151
- type: Component,
1152
- args: [{
1153
- selector: 'ix-helper-text',
1154
- changeDetection: ChangeDetectionStrategy.OnPush,
1155
- template: '<ng-content></ng-content>',
1156
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1157
- inputs: ['helperText', 'htmlFor', 'infoText', 'invalidText', 'validText', 'warningText'],
1158
- }]
1159
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1160
1109
  let IxIconButton = class IxIconButton {
1161
1110
  constructor(c, r, z) {
1162
1111
  this.z = z;
@@ -1300,30 +1249,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
1300
1249
  inputs: ['label', 'orientation', 'state', 'unit', 'value'],
1301
1250
  }]
1302
1251
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1303
- let IxLayoutForm = class IxLayoutForm {
1304
- constructor(c, r, z) {
1305
- this.z = z;
1306
- c.detach();
1307
- this.el = r.nativeElement;
1308
- }
1309
- };
1310
- /** @nocollapse */ IxLayoutForm.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxLayoutForm, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1311
- /** @nocollapse */ IxLayoutForm.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxLayoutForm, selector: "ix-layout-form", inputs: { layout: "layout" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1312
- IxLayoutForm = __decorate([
1313
- ProxyCmp({
1314
- inputs: ['layout']
1315
- })
1316
- ], IxLayoutForm);
1317
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxLayoutForm, decorators: [{
1318
- type: Component,
1319
- args: [{
1320
- selector: 'ix-layout-form',
1321
- changeDetection: ChangeDetectionStrategy.OnPush,
1322
- template: '<ng-content></ng-content>',
1323
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1324
- inputs: ['layout'],
1325
- }]
1326
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1327
1252
  let IxLayoutGrid = class IxLayoutGrid {
1328
1253
  constructor(c, r, z) {
1329
1254
  this.z = z;
@@ -1814,32 +1739,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
1814
1739
  inputs: ['hideClose', 'icon', 'iconColor'],
1815
1740
  }]
1816
1741
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1817
- let IxNumberField = class IxNumberField {
1818
- constructor(c, r, z) {
1819
- this.z = z;
1820
- c.detach();
1821
- this.el = r.nativeElement;
1822
- proxyOutputs(this, this.el, ['valueChange', 'validityStateChange', 'ixBlur']);
1823
- }
1824
- };
1825
- /** @nocollapse */ IxNumberField.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxNumberField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1826
- /** @nocollapse */ IxNumberField.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxNumberField, selector: "ix-number-field", inputs: { allowedCharactersPattern: "allowedCharactersPattern", disabled: "disabled", helperText: "helperText", infoText: "infoText", invalidText: "invalidText", label: "label", max: "max", min: "min", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", showStepperButtons: "showStepperButtons", showTextAsTooltip: "showTextAsTooltip", validText: "validText", value: "value", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1827
- IxNumberField = __decorate([
1828
- ProxyCmp({
1829
- inputs: ['allowedCharactersPattern', 'disabled', 'helperText', 'infoText', 'invalidText', 'label', 'max', 'min', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showStepperButtons', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
1830
- methods: ['getNativeInputElement']
1831
- })
1832
- ], IxNumberField);
1833
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxNumberField, decorators: [{
1834
- type: Component,
1835
- args: [{
1836
- selector: 'ix-number-field',
1837
- changeDetection: ChangeDetectionStrategy.OnPush,
1838
- template: '<ng-content></ng-content>',
1839
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1840
- inputs: ['allowedCharactersPattern', 'disabled', 'helperText', 'infoText', 'invalidText', 'label', 'max', 'min', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showStepperButtons', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
1841
- }]
1842
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1843
1742
  let IxPagination = class IxPagination {
1844
1743
  constructor(c, r, z) {
1845
1744
  this.z = z;
@@ -1962,56 +1861,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
1962
1861
  inputs: ['collapse', 'heading', 'icon', 'notification', 'subheading', 'variant'],
1963
1862
  }]
1964
1863
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1965
- let IxRadio = class IxRadio {
1966
- constructor(c, r, z) {
1967
- this.z = z;
1968
- c.detach();
1969
- this.el = r.nativeElement;
1970
- proxyOutputs(this, this.el, ['checkedChange', 'valueChange']);
1971
- }
1972
- };
1973
- /** @nocollapse */ IxRadio.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1974
- /** @nocollapse */ IxRadio.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxRadio, selector: "ix-radio", inputs: { checked: "checked", disabled: "disabled", label: "label", name: "name", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1975
- IxRadio = __decorate([
1976
- ProxyCmp({
1977
- inputs: ['checked', 'disabled', 'label', 'name', 'value']
1978
- })
1979
- ], IxRadio);
1980
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxRadio, decorators: [{
1981
- type: Component,
1982
- args: [{
1983
- selector: 'ix-radio',
1984
- changeDetection: ChangeDetectionStrategy.OnPush,
1985
- template: '<ng-content></ng-content>',
1986
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1987
- inputs: ['checked', 'disabled', 'label', 'name', 'value'],
1988
- }]
1989
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1990
- let IxRadioGroup = class IxRadioGroup {
1991
- constructor(c, r, z) {
1992
- this.z = z;
1993
- c.detach();
1994
- this.el = r.nativeElement;
1995
- proxyOutputs(this, this.el, ['valueChange']);
1996
- }
1997
- };
1998
- /** @nocollapse */ IxRadioGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1999
- /** @nocollapse */ IxRadioGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxRadioGroup, selector: "ix-radio-group", inputs: { helperText: "helperText", infoText: "infoText", invalidText: "invalidText", label: "label", showTextAsTooltip: "showTextAsTooltip", validText: "validText", value: "value", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2000
- IxRadioGroup = __decorate([
2001
- ProxyCmp({
2002
- inputs: ['helperText', 'infoText', 'invalidText', 'label', 'showTextAsTooltip', 'validText', 'value', 'warningText']
2003
- })
2004
- ], IxRadioGroup);
2005
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxRadioGroup, decorators: [{
2006
- type: Component,
2007
- args: [{
2008
- selector: 'ix-radio-group',
2009
- changeDetection: ChangeDetectionStrategy.OnPush,
2010
- template: '<ng-content></ng-content>',
2011
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2012
- inputs: ['helperText', 'infoText', 'invalidText', 'label', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
2013
- }]
2014
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2015
1864
  let IxRow = class IxRow {
2016
1865
  constructor(c, r, z) {
2017
1866
  this.z = z;
@@ -2039,15 +1888,14 @@ let IxSelect = class IxSelect {
2039
1888
  this.z = z;
2040
1889
  c.detach();
2041
1890
  this.el = r.nativeElement;
2042
- proxyOutputs(this, this.el, ['valueChange', 'itemSelectionChange', 'inputChange', 'addItem', 'ixBlur']);
1891
+ proxyOutputs(this, this.el, ['valueChange', 'itemSelectionChange', 'inputChange', 'addItem']);
2043
1892
  }
2044
1893
  };
2045
1894
  /** @nocollapse */ IxSelect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2046
- /** @nocollapse */ IxSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxSelect, selector: "ix-select", inputs: { allowClear: "allowClear", disabled: "disabled", editable: "editable", helperText: "helperText", hideListHeader: "hideListHeader", i18nNoMatches: "i18nNoMatches", i18nPlaceholder: "i18nPlaceholder", i18nPlaceholderEditable: "i18nPlaceholderEditable", i18nSelectListHeader: "i18nSelectListHeader", infoText: "infoText", invalidText: "invalidText", label: "label", mode: "mode", name: "name", readonly: "readonly", required: "required", selectedIndices: "selectedIndices", showTextAsTooltip: "showTextAsTooltip", validText: "validText", value: "value", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1895
+ /** @nocollapse */ IxSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxSelect, selector: "ix-select", inputs: { allowClear: "allowClear", disabled: "disabled", editable: "editable", hideListHeader: "hideListHeader", i18nNoMatches: "i18nNoMatches", i18nPlaceholder: "i18nPlaceholder", i18nPlaceholderEditable: "i18nPlaceholderEditable", i18nSelectListHeader: "i18nSelectListHeader", mode: "mode", readonly: "readonly", selectedIndices: "selectedIndices", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2047
1896
  IxSelect = __decorate([
2048
1897
  ProxyCmp({
2049
- inputs: ['allowClear', 'disabled', 'editable', 'helperText', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'infoText', 'invalidText', 'label', 'mode', 'name', 'readonly', 'required', 'selectedIndices', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
2050
- methods: ['getNativeInputElement']
1898
+ inputs: ['allowClear', 'disabled', 'editable', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'mode', 'readonly', 'selectedIndices', 'value']
2051
1899
  })
2052
1900
  ], IxSelect);
2053
1901
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSelect, decorators: [{
@@ -2057,7 +1905,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
2057
1905
  changeDetection: ChangeDetectionStrategy.OnPush,
2058
1906
  template: '<ng-content></ng-content>',
2059
1907
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2060
- inputs: ['allowClear', 'disabled', 'editable', 'helperText', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'infoText', 'invalidText', 'label', 'mode', 'name', 'readonly', 'required', 'selectedIndices', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
1908
+ inputs: ['allowClear', 'disabled', 'editable', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'mode', 'readonly', 'selectedIndices', 'value'],
2061
1909
  }]
2062
1910
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2063
1911
  let IxSelectItem = class IxSelectItem {
@@ -2234,58 +2082,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
2234
2082
  inputs: ['layout', 'placement', 'rounded', 'selected', 'small'],
2235
2083
  }]
2236
2084
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2237
- let IxTextField = class IxTextField {
2238
- constructor(c, r, z) {
2239
- this.z = z;
2240
- c.detach();
2241
- this.el = r.nativeElement;
2242
- proxyOutputs(this, this.el, ['valueChange', 'validityStateChange', 'ixBlur']);
2243
- }
2244
- };
2245
- /** @nocollapse */ IxTextField.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTextField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2246
- /** @nocollapse */ IxTextField.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxTextField, selector: "ix-text-field", inputs: { allowedCharactersPattern: "allowedCharactersPattern", disabled: "disabled", helperText: "helperText", infoText: "infoText", invalidText: "invalidText", label: "label", maxLength: "maxLength", minLength: "minLength", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", showTextAsTooltip: "showTextAsTooltip", type: "type", validText: "validText", value: "value", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2247
- IxTextField = __decorate([
2248
- ProxyCmp({
2249
- inputs: ['allowedCharactersPattern', 'disabled', 'helperText', 'infoText', 'invalidText', 'label', 'maxLength', 'minLength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showTextAsTooltip', 'type', 'validText', 'value', 'warningText'],
2250
- methods: ['getNativeInputElement']
2251
- })
2252
- ], IxTextField);
2253
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTextField, decorators: [{
2254
- type: Component,
2255
- args: [{
2256
- selector: 'ix-text-field',
2257
- changeDetection: ChangeDetectionStrategy.OnPush,
2258
- template: '<ng-content></ng-content>',
2259
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2260
- inputs: ['allowedCharactersPattern', 'disabled', 'helperText', 'infoText', 'invalidText', 'label', 'maxLength', 'minLength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showTextAsTooltip', 'type', 'validText', 'value', 'warningText'],
2261
- }]
2262
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2263
- let IxTextareaField = class IxTextareaField {
2264
- constructor(c, r, z) {
2265
- this.z = z;
2266
- c.detach();
2267
- this.el = r.nativeElement;
2268
- proxyOutputs(this, this.el, ['valueChange', 'validityStateChange', 'ixBlur']);
2269
- }
2270
- };
2271
- /** @nocollapse */ IxTextareaField.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTextareaField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2272
- /** @nocollapse */ IxTextareaField.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxTextareaField, selector: "ix-textarea-field", inputs: { disabled: "disabled", helperText: "helperText", infoText: "infoText", invalidText: "invalidText", label: "label", maxLength: "maxLength", minLength: "minLength", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", resizeBehavior: "resizeBehavior", showTextAsTooltip: "showTextAsTooltip", textareaCols: "textareaCols", textareaHeight: "textareaHeight", textareaRows: "textareaRows", textareaWidth: "textareaWidth", validText: "validText", value: "value", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2273
- IxTextareaField = __decorate([
2274
- ProxyCmp({
2275
- inputs: ['disabled', 'helperText', 'infoText', 'invalidText', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'readonly', 'required', 'resizeBehavior', 'showTextAsTooltip', 'textareaCols', 'textareaHeight', 'textareaRows', 'textareaWidth', 'validText', 'value', 'warningText'],
2276
- methods: ['getNativeInputElement']
2277
- })
2278
- ], IxTextareaField);
2279
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTextareaField, decorators: [{
2280
- type: Component,
2281
- args: [{
2282
- selector: 'ix-textarea-field',
2283
- changeDetection: ChangeDetectionStrategy.OnPush,
2284
- template: '<ng-content></ng-content>',
2285
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2286
- inputs: ['disabled', 'helperText', 'infoText', 'invalidText', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'readonly', 'required', 'resizeBehavior', 'showTextAsTooltip', 'textareaCols', 'textareaHeight', 'textareaRows', 'textareaWidth', 'validText', 'value', 'warningText'],
2287
- }]
2288
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2289
2085
  let IxTile = class IxTile {
2290
2086
  constructor(c, r, z) {
2291
2087
  this.z = z;
@@ -2395,10 +2191,10 @@ let IxToggle = class IxToggle {
2395
2191
  }
2396
2192
  };
2397
2193
  /** @nocollapse */ IxToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2398
- /** @nocollapse */ IxToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxToggle, selector: "ix-toggle", inputs: { checked: "checked", disabled: "disabled", hideText: "hideText", indeterminate: "indeterminate", name: "name", required: "required", textIndeterminate: "textIndeterminate", textOff: "textOff", textOn: "textOn", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2194
+ /** @nocollapse */ IxToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxToggle, selector: "ix-toggle", inputs: { checked: "checked", disabled: "disabled", hideText: "hideText", indeterminate: "indeterminate", textIndeterminate: "textIndeterminate", textOff: "textOff", textOn: "textOn" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2399
2195
  IxToggle = __decorate([
2400
2196
  ProxyCmp({
2401
- inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'name', 'required', 'textIndeterminate', 'textOff', 'textOn', 'value']
2197
+ inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'textIndeterminate', 'textOff', 'textOn']
2402
2198
  })
2403
2199
  ], IxToggle);
2404
2200
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxToggle, decorators: [{
@@ -2408,7 +2204,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
2408
2204
  changeDetection: ChangeDetectionStrategy.OnPush,
2409
2205
  template: '<ng-content></ng-content>',
2410
2206
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2411
- inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'name', 'required', 'textIndeterminate', 'textOff', 'textOn', 'value'],
2207
+ inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'textIndeterminate', 'textOff', 'textOn'],
2412
2208
  }]
2413
2209
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2414
2210
  let IxToggleButton = class IxToggleButton {
@@ -2788,172 +2584,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
2788
2584
  * LICENSE file in the root directory of this source tree.
2789
2585
  */
2790
2586
 
2791
- /*
2792
- * SPDX-FileCopyrightText: 2024 Siemens AG
2793
- *
2794
- * SPDX-License-Identifier: MIT
2795
- *
2796
- * This source code is licensed under the MIT license found in the
2797
- * LICENSE file in the root directory of this source tree.
2798
- */
2799
- class ValueAccessor {
2800
- constructor(injector, elementRef) {
2801
- this.injector = injector;
2802
- this.elementRef = elementRef;
2803
- this.onChange = () => {
2804
- /**/
2805
- };
2806
- this.onTouched = () => {
2807
- /**/
2808
- };
2809
- }
2810
- writeValue(value) {
2811
- this.elementRef.nativeElement.value = this.lastValue = value;
2812
- mapNgToIxClassNames(this.elementRef);
2813
- }
2814
- handleValueChange(el, value) {
2815
- if (el === this.elementRef.nativeElement) {
2816
- if (value !== this.lastValue) {
2817
- this.lastValue = value;
2818
- this.onChange(value);
2819
- }
2820
- mapNgToIxClassNames(this.elementRef);
2821
- }
2822
- }
2823
- _handleBlurEvent(el) {
2824
- if (el === this.elementRef.nativeElement) {
2825
- this.onTouched();
2826
- mapNgToIxClassNames(this.elementRef);
2827
- }
2828
- }
2829
- registerOnChange(fn) {
2830
- this.onChange = fn;
2831
- }
2832
- registerOnTouched(fn) {
2833
- this.onTouched = fn;
2834
- }
2835
- setDisabledState(isDisabled) {
2836
- this.elementRef.nativeElement.disabled = isDisabled;
2837
- }
2838
- ngOnDestroy() {
2839
- if (this.statusChanges) {
2840
- this.statusChanges.unsubscribe();
2841
- }
2842
- }
2843
- ngAfterViewInit() {
2844
- let ngControl;
2845
- try {
2846
- ngControl = this.injector.get(NgControl);
2847
- }
2848
- catch (_a) {
2849
- /* No FormControl or ngModel binding */
2850
- }
2851
- if (!ngControl) {
2852
- return;
2853
- }
2854
- if (ngControl.statusChanges) {
2855
- this.statusChanges = ngControl.statusChanges.subscribe(() => {
2856
- mapNgToIxClassNames(this.elementRef);
2857
- });
2858
- }
2859
- detourFormControlMethods(ngControl, this.elementRef);
2860
- }
2861
- }
2862
- ValueAccessor.ANGULAR_CLASS_REFIX = 'ng-';
2863
- /** @nocollapse */ ValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2864
- /** @nocollapse */ ValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: ValueAccessor, host: { listeners: { "ixBlur": "_handleBlurEvent($event.target)" } }, ngImport: i0 });
2865
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ValueAccessor, decorators: [{
2866
- type: Directive
2867
- }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { _handleBlurEvent: [{
2868
- type: HostListener,
2869
- args: ['ixBlur', ['$event.target']]
2870
- }] } });
2871
- const detourFormControlMethods = (ngControl, elementRef) => {
2872
- const formControl = ngControl.control;
2873
- if (formControl) {
2874
- const methodsToPatch = [
2875
- 'markAsTouched',
2876
- 'markAllAsTouched',
2877
- 'markAsUntouched',
2878
- 'markAsDirty',
2879
- 'markAsPristine',
2880
- ];
2881
- methodsToPatch.forEach((method) => {
2882
- if (typeof formControl[method] !== 'undefined') {
2883
- const oldFn = formControl[method].bind(formControl);
2884
- formControl[method] = (...params) => {
2885
- oldFn(...params);
2886
- mapNgToIxClassNames(elementRef);
2887
- };
2888
- }
2889
- });
2890
- }
2891
- };
2892
- const mapNgToIxClassNames = (element) => {
2893
- setTimeout(() => {
2894
- const input = element.nativeElement;
2895
- const classes = getClasses(input);
2896
- const classList = input.classList;
2897
- classList.remove('ix-valid', 'ix-invalid', 'ix-touched', 'ix-untouched', 'ix-dirty', 'ix-pristine');
2898
- classList.add(...classes);
2899
- });
2900
- };
2901
- const getClasses = (element) => {
2902
- const classList = element.classList;
2903
- const classes = [];
2904
- for (let i = 0; i < classList.length; i++) {
2905
- const item = classList.item(i);
2906
- if (item !== null && item.startsWith(ValueAccessor.ANGULAR_CLASS_REFIX)) {
2907
- classes.push(`ix-${item.substring(3)}`);
2908
- }
2909
- }
2910
- return classes;
2911
- };
2912
-
2913
- /*
2914
- * SPDX-FileCopyrightText: 2024 Siemens AG
2915
- *
2916
- * SPDX-License-Identifier: MIT
2917
- *
2918
- * This source code is licensed under the MIT license found in the
2919
- * LICENSE file in the root directory of this source tree.
2920
- */
2921
- class TextValueAccessorDirective extends ValueAccessor {
2922
- constructor(injector, el) {
2923
- super(injector, el);
2924
- }
2925
- handleInputEvent(el) {
2926
- super.handleValueChange(el, el.value);
2927
- }
2928
- }
2929
- /** @nocollapse */ TextValueAccessorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: TextValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2930
- /** @nocollapse */ TextValueAccessorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: TextValueAccessorDirective, selector: "ix-text-field,ix-number-field,ix-textarea-field", host: { listeners: { "input": "handleInputEvent($event.target)", "valueChange": "handleInputEvent($event.target)" } }, providers: [
2931
- {
2932
- provide: NG_VALUE_ACCESSOR,
2933
- useExisting: TextValueAccessorDirective,
2934
- multi: true,
2935
- },
2936
- ], usesInheritance: true, ngImport: i0 });
2937
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: TextValueAccessorDirective, decorators: [{
2938
- type: Directive,
2939
- args: [{
2940
- selector: 'ix-text-field,ix-number-field,ix-textarea-field',
2941
- providers: [
2942
- {
2943
- provide: NG_VALUE_ACCESSOR,
2944
- useExisting: TextValueAccessorDirective,
2945
- multi: true,
2946
- },
2947
- ],
2948
- }]
2949
- }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleInputEvent: [{
2950
- type: HostListener,
2951
- args: ['input', ['$event.target']]
2952
- }, {
2953
- type: HostListener,
2954
- args: ['valueChange', ['$event.target']]
2955
- }] } });
2956
-
2957
2587
  let didInitialize = false;
2958
2588
  const appInitialize = (doc) => {
2959
2589
  return () => __awaiter(void 0, void 0, void 0, function* () {
@@ -2963,8 +2593,8 @@ const appInitialize = (doc) => {
2963
2593
  return;
2964
2594
  }
2965
2595
  didInitialize = true;
2966
- yield defineCustomElements();
2967
- defineCustomElements$1();
2596
+ defineCustomElements();
2597
+ yield defineCustomElements$1();
2968
2598
  }
2969
2599
  });
2970
2600
  };
@@ -2985,15 +2615,11 @@ const DIRECTIVES = [
2985
2615
  IxCardList,
2986
2616
  IxCardTitle,
2987
2617
  IxCategoryFilter,
2988
- IxCheckbox,
2989
- IxCheckboxGroup,
2990
2618
  IxChip,
2991
2619
  IxCol,
2992
2620
  IxContent,
2993
2621
  IxContentHeader,
2994
- IxCustomField,
2995
2622
  IxDateDropdown,
2996
- IxDateField,
2997
2623
  IxDatePicker,
2998
2624
  IxDatetimePicker,
2999
2625
  IxDivider,
@@ -3007,21 +2633,19 @@ const DIRECTIVES = [
3007
2633
  IxEventList,
3008
2634
  IxEventListItem,
3009
2635
  IxExpandingSearch,
3010
- IxFieldLabel,
3011
2636
  IxFilterChip,
3012
2637
  IxFlipTile,
3013
2638
  IxFlipTileContent,
2639
+ IxFormField,
3014
2640
  IxGroup,
3015
2641
  IxGroupContextMenu,
3016
2642
  IxGroupItem,
3017
- IxHelperText,
3018
2643
  IxIconButton,
3019
2644
  IxIconToggleButton,
3020
2645
  IxInputGroup,
3021
2646
  IxKeyValue,
3022
2647
  IxKeyValueList,
3023
2648
  IxKpi,
3024
- IxLayoutForm,
3025
2649
  IxLayoutGrid,
3026
2650
  IxLinkButton,
3027
2651
  IxMapNavigation,
@@ -3042,14 +2666,11 @@ const DIRECTIVES = [
3042
2666
  IxModalExample,
3043
2667
  IxModalFooter,
3044
2668
  IxModalHeader,
3045
- IxNumberField,
3046
2669
  IxPagination,
3047
2670
  IxPane,
3048
2671
  IxPaneLayout,
3049
2672
  IxPill,
3050
2673
  IxPushCard,
3051
- IxRadio,
3052
- IxRadioGroup,
3053
2674
  IxRow,
3054
2675
  IxSelect,
3055
2676
  IxSelectItem,
@@ -3059,8 +2680,6 @@ const DIRECTIVES = [
3059
2680
  IxSplitButtonItem,
3060
2681
  IxTabItem,
3061
2682
  IxTabs,
3062
- IxTextField,
3063
- IxTextareaField,
3064
2683
  IxTile,
3065
2684
  IxTimePicker,
3066
2685
  IxToast,
@@ -3076,6 +2695,37 @@ const DIRECTIVES = [
3076
2695
  IxWorkflowSteps
3077
2696
  ];
3078
2697
 
2698
+ class SelectValueAccessor extends ValueAccessor {
2699
+ constructor(el) {
2700
+ super(el);
2701
+ }
2702
+ }
2703
+ /** @nocollapse */ SelectValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SelectValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
2704
+ /** @nocollapse */ SelectValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: SelectValueAccessor, selector: "ix-select[ngModel],ix-select[formControlName],ix-select[formControl]", host: { listeners: { "valueChange": "handleChangeEvent($event.target.value)" } }, providers: [
2705
+ {
2706
+ provide: NG_VALUE_ACCESSOR,
2707
+ useExisting: SelectValueAccessor,
2708
+ multi: true
2709
+ }
2710
+ ], usesInheritance: true, ngImport: i0 });
2711
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SelectValueAccessor, decorators: [{
2712
+ type: Directive,
2713
+ args: [{
2714
+ /* tslint:disable-next-line:directive-selector */
2715
+ selector: 'ix-select[ngModel],ix-select[formControlName],ix-select[formControl]',
2716
+ host: {
2717
+ '(valueChange)': 'handleChangeEvent($event.target.value)'
2718
+ },
2719
+ providers: [
2720
+ {
2721
+ provide: NG_VALUE_ACCESSOR,
2722
+ useExisting: SelectValueAccessor,
2723
+ multi: true
2724
+ }
2725
+ ]
2726
+ }]
2727
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
2728
+
3079
2729
  /*
3080
2730
  * SPDX-FileCopyrightText: 2024 Siemens AG
3081
2731
  *
@@ -3248,189 +2898,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
3248
2898
  * LICENSE file in the root directory of this source tree.
3249
2899
  */
3250
2900
 
3251
- /*
3252
- * SPDX-FileCopyrightText: 2024 Siemens AG
3253
- *
3254
- * SPDX-License-Identifier: MIT
3255
- *
3256
- * This source code is licensed under the MIT license found in the
3257
- * LICENSE file in the root directory of this source tree.
3258
- */
3259
- class SelectValueAccessorDirective extends ValueAccessor {
3260
- constructor(injector, el) {
3261
- super(injector, el);
3262
- }
3263
- handleChangeEvent(el) {
3264
- super.handleValueChange(el, el.value);
3265
- }
3266
- }
3267
- /** @nocollapse */ SelectValueAccessorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SelectValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
3268
- /** @nocollapse */ SelectValueAccessorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: SelectValueAccessorDirective, selector: "ix-select", host: { listeners: { "valueChange": "handleChangeEvent($event.target)" } }, providers: [
3269
- {
3270
- provide: NG_VALUE_ACCESSOR,
3271
- useExisting: SelectValueAccessorDirective,
3272
- multi: true,
3273
- },
3274
- ], usesInheritance: true, ngImport: i0 });
3275
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SelectValueAccessorDirective, decorators: [{
3276
- type: Directive,
3277
- args: [{
3278
- selector: 'ix-select',
3279
- providers: [
3280
- {
3281
- provide: NG_VALUE_ACCESSOR,
3282
- useExisting: SelectValueAccessorDirective,
3283
- multi: true,
3284
- },
3285
- ],
3286
- }]
3287
- }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleChangeEvent: [{
3288
- type: HostListener,
3289
- args: ['valueChange', ['$event.target']]
3290
- }] } });
3291
-
3292
- /*
3293
- * SPDX-FileCopyrightText: 2024 Siemens AG
3294
- *
3295
- * SPDX-License-Identifier: MIT
3296
- *
3297
- * This source code is licensed under the MIT license found in the
3298
- * LICENSE file in the root directory of this source tree.
3299
- */
3300
- class RadioValueAccessorDirective extends ValueAccessor {
3301
- constructor(injector, el) {
3302
- super(injector, el);
3303
- }
3304
- writeValue(value) {
3305
- this.lastValue = value;
3306
- this.elementRef.nativeElement.checked =
3307
- this.elementRef.nativeElement.value === value;
3308
- mapNgToIxClassNames(this.elementRef);
3309
- }
3310
- handleChangeEvent(el) {
3311
- super.handleValueChange(el, el.value);
3312
- }
3313
- }
3314
- /** @nocollapse */ RadioValueAccessorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: RadioValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
3315
- /** @nocollapse */ RadioValueAccessorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: RadioValueAccessorDirective, selector: "ix-radio", host: { listeners: { "checkedChange": "handleChangeEvent($event.target)" } }, providers: [
3316
- {
3317
- provide: NG_VALUE_ACCESSOR,
3318
- useExisting: RadioValueAccessorDirective,
3319
- multi: true,
3320
- },
3321
- ], usesInheritance: true, ngImport: i0 });
3322
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: RadioValueAccessorDirective, decorators: [{
3323
- type: Directive,
3324
- args: [{
3325
- selector: 'ix-radio',
3326
- providers: [
3327
- {
3328
- provide: NG_VALUE_ACCESSOR,
3329
- useExisting: RadioValueAccessorDirective,
3330
- multi: true,
3331
- },
3332
- ],
3333
- }]
3334
- }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleChangeEvent: [{
3335
- type: HostListener,
3336
- args: ['checkedChange', ['$event.target']]
3337
- }] } });
3338
-
3339
- /*
3340
- * SPDX-FileCopyrightText: 2024 Siemens AG
3341
- *
3342
- * SPDX-License-Identifier: MIT
3343
- *
3344
- * This source code is licensed under the MIT license found in the
3345
- * LICENSE file in the root directory of this source tree.
3346
- */
3347
- class BooleanValueAccessorDirective extends ValueAccessor {
3348
- constructor(injector, el) {
3349
- super(injector, el);
3350
- }
3351
- writeValue(value) {
3352
- this.elementRef.nativeElement.checked = this.lastValue = value;
3353
- mapNgToIxClassNames(this.elementRef);
3354
- }
3355
- handleChangeEvent(el) {
3356
- super.handleValueChange(el, el.checked);
3357
- }
3358
- }
3359
- /** @nocollapse */ BooleanValueAccessorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: BooleanValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
3360
- /** @nocollapse */ BooleanValueAccessorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: BooleanValueAccessorDirective, selector: "ix-checkbox,ix-toggle", host: { listeners: { "checkedChange": "handleChangeEvent($event.target)" } }, providers: [
3361
- {
3362
- provide: NG_VALUE_ACCESSOR,
3363
- useExisting: BooleanValueAccessorDirective,
3364
- multi: true,
3365
- },
3366
- ], usesInheritance: true, ngImport: i0 });
3367
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: BooleanValueAccessorDirective, decorators: [{
3368
- type: Directive,
3369
- args: [{
3370
- selector: 'ix-checkbox,ix-toggle',
3371
- providers: [
3372
- {
3373
- provide: NG_VALUE_ACCESSOR,
3374
- useExisting: BooleanValueAccessorDirective,
3375
- multi: true,
3376
- },
3377
- ],
3378
- }]
3379
- }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleChangeEvent: [{
3380
- type: HostListener,
3381
- args: ['checkedChange', ['$event.target']]
3382
- }] } });
3383
-
3384
- /*
3385
- * SPDX-FileCopyrightText: 2024 Siemens AG
3386
- *
3387
- * SPDX-License-Identifier: MIT
3388
- *
3389
- * This source code is licensed under the MIT license found in the
3390
- * LICENSE file in the root directory of this source tree.
3391
- */
3392
- class DateValueAccessorDirective extends ValueAccessor {
3393
- constructor(injector, el) {
3394
- super(injector, el);
3395
- }
3396
- handleInputEvent(el) {
3397
- super.handleValueChange(el, el.value);
3398
- }
3399
- }
3400
- /** @nocollapse */ DateValueAccessorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: DateValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
3401
- /** @nocollapse */ DateValueAccessorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: DateValueAccessorDirective, selector: "ix-date-field", host: { listeners: { "valueChange": "handleInputEvent($event.target)" } }, providers: [
3402
- {
3403
- provide: NG_VALUE_ACCESSOR,
3404
- useExisting: DateValueAccessorDirective,
3405
- multi: true,
3406
- },
3407
- ], usesInheritance: true, ngImport: i0 });
3408
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: DateValueAccessorDirective, decorators: [{
3409
- type: Directive,
3410
- args: [{
3411
- selector: 'ix-date-field',
3412
- providers: [
3413
- {
3414
- provide: NG_VALUE_ACCESSOR,
3415
- useExisting: DateValueAccessorDirective,
3416
- multi: true,
3417
- },
3418
- ],
3419
- }]
3420
- }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleInputEvent: [{
3421
- type: HostListener,
3422
- args: ['valueChange', ['$event.target']]
3423
- }] } });
3424
-
3425
- /*
3426
- * SPDX-FileCopyrightText: 2024 Siemens AG
3427
- *
3428
- * SPDX-License-Identifier: MIT
3429
- *
3430
- * This source code is licensed under the MIT license found in the
3431
- * LICENSE file in the root directory of this source tree.
3432
- */
3433
-
3434
2901
  /*
3435
2902
  * SPDX-FileCopyrightText: 2024 Siemens AG
3436
2903
  *
@@ -3444,11 +2911,8 @@ const DECLARATIONS = [
3444
2911
  IxTree,
3445
2912
  IxDropdownTriggerDirective,
3446
2913
  IxIcon,
3447
- TextValueAccessorDirective,
3448
- SelectValueAccessorDirective,
3449
- RadioValueAccessorDirective,
3450
- BooleanValueAccessorDirective,
3451
- DateValueAccessorDirective,
2914
+ SelectValueAccessor,
2915
+ BooleanValueAccessor
3452
2916
  ];
3453
2917
  class IxModule {
3454
2918
  static forRoot() {
@@ -3469,19 +2933,13 @@ class IxModule {
3469
2933
  }
3470
2934
  }
3471
2935
  /** @nocollapse */ IxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
3472
- /** @nocollapse */ IxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule, declarations: [IxActionCard, IxApplication, IxApplicationHeader, IxAvatar, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxCheckbox, IxCheckboxGroup, IxChip, IxCol, IxContent, IxContentHeader, IxCustomField, IxDateDropdown, IxDateField, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFieldLabel, IxFilterChip, IxFlipTile, IxFlipTileContent, IxGroup, IxGroupContextMenu, IxGroupItem, IxHelperText, IxIconButton, IxIconToggleButton, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLayoutForm, IxLayoutGrid, IxLinkButton, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalExample, IxModalFooter, IxModalHeader, IxNumberField, IxPagination, IxPane, IxPaneLayout, IxPill, IxPushCard, IxRadio, IxRadioGroup, IxRow, IxSelect, IxSelectItem, IxSlider, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTextField, IxTextareaField, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree, IxDropdownTriggerDirective,
2936
+ /** @nocollapse */ IxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule, declarations: [IxActionCard, IxApplication, IxApplicationHeader, IxAvatar, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxChip, IxCol, IxContent, IxContentHeader, IxDateDropdown, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent, IxFormField, IxGroup, IxGroupContextMenu, IxGroupItem, IxIconButton, IxIconToggleButton, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLayoutGrid, IxLinkButton, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalExample, IxModalFooter, IxModalHeader, IxPagination, IxPane, IxPaneLayout, IxPill, IxPushCard, IxRow, IxSelect, IxSelectItem, IxSlider, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree, IxDropdownTriggerDirective,
3473
2937
  IxIcon,
3474
- TextValueAccessorDirective,
3475
- SelectValueAccessorDirective,
3476
- RadioValueAccessorDirective,
3477
- BooleanValueAccessorDirective,
3478
- DateValueAccessorDirective], exports: [IxActionCard, IxApplication, IxApplicationHeader, IxAvatar, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxCheckbox, IxCheckboxGroup, IxChip, IxCol, IxContent, IxContentHeader, IxCustomField, IxDateDropdown, IxDateField, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFieldLabel, IxFilterChip, IxFlipTile, IxFlipTileContent, IxGroup, IxGroupContextMenu, IxGroupItem, IxHelperText, IxIconButton, IxIconToggleButton, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLayoutForm, IxLayoutGrid, IxLinkButton, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalExample, IxModalFooter, IxModalHeader, IxNumberField, IxPagination, IxPane, IxPaneLayout, IxPill, IxPushCard, IxRadio, IxRadioGroup, IxRow, IxSelect, IxSelectItem, IxSlider, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTextField, IxTextareaField, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree, IxDropdownTriggerDirective,
2938
+ SelectValueAccessor,
2939
+ BooleanValueAccessor], exports: [IxActionCard, IxApplication, IxApplicationHeader, IxAvatar, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxChip, IxCol, IxContent, IxContentHeader, IxDateDropdown, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent, IxFormField, IxGroup, IxGroupContextMenu, IxGroupItem, IxIconButton, IxIconToggleButton, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLayoutGrid, IxLinkButton, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalExample, IxModalFooter, IxModalHeader, IxPagination, IxPane, IxPaneLayout, IxPill, IxPushCard, IxRow, IxSelect, IxSelectItem, IxSlider, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree, IxDropdownTriggerDirective,
3479
2940
  IxIcon,
3480
- TextValueAccessorDirective,
3481
- SelectValueAccessorDirective,
3482
- RadioValueAccessorDirective,
3483
- BooleanValueAccessorDirective,
3484
- DateValueAccessorDirective] });
2941
+ SelectValueAccessor,
2942
+ BooleanValueAccessor] });
3485
2943
  /** @nocollapse */ IxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule });
3486
2944
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule, decorators: [{
3487
2945
  type: NgModule,
@@ -3504,5 +2962,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
3504
2962
  * Generated bundle index. Do not edit.
3505
2963
  */
3506
2964
 
3507
- export { BooleanValueAccessorDirective, DateValueAccessorDirective, IxActionCard, IxActiveModal, IxApplication, IxApplicationHeader, IxAvatar, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxCheckbox, IxCheckboxGroup, IxChip, IxCol, IxContent, IxContentHeader, IxCustomField, IxDateDropdown, IxDateField, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxDropdownTriggerDirective, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFieldLabel, IxFilterChip, IxFlipTile, IxFlipTileContent, IxGroup, IxGroupContextMenu, IxGroupItem, IxHelperText, IxIcon, IxIconButton, IxIconToggleButton, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLayoutForm, IxLayoutGrid, IxLinkButton, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalExample, IxModalFooter, IxModalHeader, IxModule, IxNumberField, IxPagination, IxPane, IxPaneLayout, IxPill, IxPushCard, IxRadio, IxRadioGroup, IxRow, IxSelect, IxSelectItem, IxSlider, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTextField, IxTextareaField, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTree, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, ModalService, RadioValueAccessorDirective, SelectValueAccessorDirective, TextValueAccessorDirective, ThemeService, ToastService };
2965
+ export { BooleanValueAccessor, IxActionCard, IxActiveModal, IxApplication, IxApplicationHeader, IxAvatar, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxChip, IxCol, IxContent, IxContentHeader, IxDateDropdown, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxDropdownTriggerDirective, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent, IxFormField, IxGroup, IxGroupContextMenu, IxGroupItem, IxIcon, IxIconButton, IxIconToggleButton, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLayoutGrid, IxLinkButton, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalExample, IxModalFooter, IxModalHeader, IxModule, IxPagination, IxPane, IxPaneLayout, IxPill, IxPushCard, IxRow, IxSelect, IxSelectItem, IxSlider, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTree, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, ModalService, SelectValueAccessor, ThemeService, ToastService };
3508
2966
  //# sourceMappingURL=siemens-ix-angular.mjs.map