@siemens/ix-angular 0.0.0-pr-1318-20240627080522 → 0.0.0-pr-1522-20241021144048

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 +19 -183
  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 +37 -323
  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 +154 -695
  13. package/fesm2015/siemens-ix-angular.mjs.map +1 -1
  14. package/fesm2020/siemens-ix-angular.mjs +154 -695
  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 } 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 } 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) => {
@@ -119,13 +191,14 @@ let IxApplicationHeader = class IxApplicationHeader {
119
191
  this.z = z;
120
192
  c.detach();
121
193
  this.el = r.nativeElement;
194
+ proxyOutputs(this, this.el, ['menuToggle']);
122
195
  }
123
196
  };
124
197
  /** @nocollapse */ IxApplicationHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxApplicationHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
125
- /** @nocollapse */ IxApplicationHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxApplicationHeader, selector: "ix-application-header", inputs: { name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
198
+ /** @nocollapse */ IxApplicationHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxApplicationHeader, selector: "ix-application-header", inputs: { name: "name", showMenu: "showMenu" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
126
199
  IxApplicationHeader = __decorate([
127
200
  ProxyCmp({
128
- inputs: ['name']
201
+ inputs: ['name', 'showMenu']
129
202
  })
130
203
  ], IxApplicationHeader);
131
204
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxApplicationHeader, decorators: [{
@@ -135,7 +208,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
135
208
  changeDetection: ChangeDetectionStrategy.OnPush,
136
209
  template: '<ng-content></ng-content>',
137
210
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
138
- inputs: ['name'],
211
+ inputs: ['name', 'showMenu'],
139
212
  }]
140
213
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
141
214
  let IxAvatar = class IxAvatar {
@@ -426,55 +499,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
426
499
  inputs: ['categories', 'disabled', 'filterState', 'hideIcon', 'i18nPlainText', 'icon', 'labelCategories', 'nonSelectableCategories', 'placeholder', 'readonly', 'repeatCategories', 'staticOperator', 'suggestions'],
427
500
  }]
428
501
  }], 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
502
  let IxChip = class IxChip {
479
503
  constructor(c, r, z) {
480
504
  this.z = z;
@@ -571,30 +595,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
571
595
  inputs: ['hasBackButton', 'headerSubtitle', 'headerTitle', 'variant'],
572
596
  }]
573
597
  }], 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
598
  let IxDateDropdown = class IxDateDropdown {
599
599
  constructor(c, r, z) {
600
600
  this.z = z;
@@ -621,32 +621,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
621
621
  inputs: ['customRangeAllowed', 'dateRangeId', 'dateRangeOptions', 'disabled', 'format', 'from', 'i18nCustomItem', 'i18nDone', 'i18nNoRange', 'maxDate', 'minDate', 'range', 'to'],
622
622
  }]
623
623
  }], 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
624
  let IxDatePicker = class IxDatePicker {
651
625
  constructor(c, r, z) {
652
626
  this.z = z;
@@ -966,30 +940,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
966
940
  inputs: ['fullWidth', 'icon', 'placeholder', 'value'],
967
941
  }]
968
942
  }], 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
943
  let IxFilterChip = class IxFilterChip {
994
944
  constructor(c, r, z) {
995
945
  this.z = z;
@@ -1061,6 +1011,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
1061
1011
  inputs: [],
1062
1012
  }]
1063
1013
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1014
+ let IxFormField = class IxFormField {
1015
+ constructor(c, r, z) {
1016
+ this.z = z;
1017
+ c.detach();
1018
+ this.el = r.nativeElement;
1019
+ }
1020
+ };
1021
+ /** @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 });
1022
+ /** @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 });
1023
+ IxFormField = __decorate([
1024
+ ProxyCmp({
1025
+ inputs: ['label']
1026
+ })
1027
+ ], IxFormField);
1028
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFormField, decorators: [{
1029
+ type: Component,
1030
+ args: [{
1031
+ selector: 'ix-form-field',
1032
+ changeDetection: ChangeDetectionStrategy.OnPush,
1033
+ template: '<ng-content></ng-content>',
1034
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1035
+ inputs: ['label'],
1036
+ }]
1037
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1064
1038
  let IxGroup = class IxGroup {
1065
1039
  constructor(c, r, z) {
1066
1040
  this.z = z;
@@ -1133,30 +1107,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
1133
1107
  inputs: ['focusable', 'icon', 'index', 'secondaryText', 'selected', 'suppressSelection', 'text'],
1134
1108
  }]
1135
1109
  }], 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
1110
  let IxIconButton = class IxIconButton {
1161
1111
  constructor(c, r, z) {
1162
1112
  this.z = z;
@@ -1300,30 +1250,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
1300
1250
  inputs: ['label', 'orientation', 'state', 'unit', 'value'],
1301
1251
  }]
1302
1252
  }], 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
1253
  let IxLayoutGrid = class IxLayoutGrid {
1328
1254
  constructor(c, r, z) {
1329
1255
  this.z = z;
@@ -1814,32 +1740,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
1814
1740
  inputs: ['hideClose', 'icon', 'iconColor'],
1815
1741
  }]
1816
1742
  }], 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
1743
  let IxPagination = class IxPagination {
1844
1744
  constructor(c, r, z) {
1845
1745
  this.z = z;
@@ -1962,56 +1862,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
1962
1862
  inputs: ['collapse', 'heading', 'icon', 'notification', 'subheading', 'variant'],
1963
1863
  }]
1964
1864
  }], 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
1865
  let IxRow = class IxRow {
2016
1866
  constructor(c, r, z) {
2017
1867
  this.z = z;
@@ -2039,15 +1889,14 @@ let IxSelect = class IxSelect {
2039
1889
  this.z = z;
2040
1890
  c.detach();
2041
1891
  this.el = r.nativeElement;
2042
- proxyOutputs(this, this.el, ['valueChange', 'itemSelectionChange', 'inputChange', 'addItem', 'ixBlur']);
1892
+ proxyOutputs(this, this.el, ['valueChange', 'itemSelectionChange', 'inputChange', 'addItem']);
2043
1893
  }
2044
1894
  };
2045
1895
  /** @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 });
1896
+ /** @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
1897
  IxSelect = __decorate([
2048
1898
  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']
1899
+ inputs: ['allowClear', 'disabled', 'editable', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'mode', 'readonly', 'selectedIndices', 'value']
2051
1900
  })
2052
1901
  ], IxSelect);
2053
1902
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSelect, decorators: [{
@@ -2057,7 +1906,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
2057
1906
  changeDetection: ChangeDetectionStrategy.OnPush,
2058
1907
  template: '<ng-content></ng-content>',
2059
1908
  // 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'],
1909
+ inputs: ['allowClear', 'disabled', 'editable', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'mode', 'readonly', 'selectedIndices', 'value'],
2061
1910
  }]
2062
1911
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2063
1912
  let IxSelectItem = class IxSelectItem {
@@ -2234,58 +2083,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
2234
2083
  inputs: ['layout', 'placement', 'rounded', 'selected', 'small'],
2235
2084
  }]
2236
2085
  }], 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
2086
  let IxTile = class IxTile {
2290
2087
  constructor(c, r, z) {
2291
2088
  this.z = z;
@@ -2395,10 +2192,10 @@ let IxToggle = class IxToggle {
2395
2192
  }
2396
2193
  };
2397
2194
  /** @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 });
2195
+ /** @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
2196
  IxToggle = __decorate([
2400
2197
  ProxyCmp({
2401
- inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'name', 'required', 'textIndeterminate', 'textOff', 'textOn', 'value']
2198
+ inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'textIndeterminate', 'textOff', 'textOn']
2402
2199
  })
2403
2200
  ], IxToggle);
2404
2201
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxToggle, decorators: [{
@@ -2408,7 +2205,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
2408
2205
  changeDetection: ChangeDetectionStrategy.OnPush,
2409
2206
  template: '<ng-content></ng-content>',
2410
2207
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2411
- inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'name', 'required', 'textIndeterminate', 'textOff', 'textOn', 'value'],
2208
+ inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'textIndeterminate', 'textOff', 'textOn'],
2412
2209
  }]
2413
2210
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2414
2211
  let IxToggleButton = class IxToggleButton {
@@ -2791,172 +2588,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
2791
2588
  * LICENSE file in the root directory of this source tree.
2792
2589
  */
2793
2590
 
2794
- /*
2795
- * SPDX-FileCopyrightText: 2024 Siemens AG
2796
- *
2797
- * SPDX-License-Identifier: MIT
2798
- *
2799
- * This source code is licensed under the MIT license found in the
2800
- * LICENSE file in the root directory of this source tree.
2801
- */
2802
- class ValueAccessor {
2803
- constructor(injector, elementRef) {
2804
- this.injector = injector;
2805
- this.elementRef = elementRef;
2806
- this.onChange = () => {
2807
- /**/
2808
- };
2809
- this.onTouched = () => {
2810
- /**/
2811
- };
2812
- }
2813
- writeValue(value) {
2814
- this.elementRef.nativeElement.value = this.lastValue = value;
2815
- mapNgToIxClassNames(this.elementRef);
2816
- }
2817
- handleValueChange(el, value) {
2818
- if (el === this.elementRef.nativeElement) {
2819
- if (value !== this.lastValue) {
2820
- this.lastValue = value;
2821
- this.onChange(value);
2822
- }
2823
- mapNgToIxClassNames(this.elementRef);
2824
- }
2825
- }
2826
- _handleBlurEvent(el) {
2827
- if (el === this.elementRef.nativeElement) {
2828
- this.onTouched();
2829
- mapNgToIxClassNames(this.elementRef);
2830
- }
2831
- }
2832
- registerOnChange(fn) {
2833
- this.onChange = fn;
2834
- }
2835
- registerOnTouched(fn) {
2836
- this.onTouched = fn;
2837
- }
2838
- setDisabledState(isDisabled) {
2839
- this.elementRef.nativeElement.disabled = isDisabled;
2840
- }
2841
- ngOnDestroy() {
2842
- if (this.statusChanges) {
2843
- this.statusChanges.unsubscribe();
2844
- }
2845
- }
2846
- ngAfterViewInit() {
2847
- let ngControl;
2848
- try {
2849
- ngControl = this.injector.get(NgControl);
2850
- }
2851
- catch {
2852
- /* No FormControl or ngModel binding */
2853
- }
2854
- if (!ngControl) {
2855
- return;
2856
- }
2857
- if (ngControl.statusChanges) {
2858
- this.statusChanges = ngControl.statusChanges.subscribe(() => {
2859
- mapNgToIxClassNames(this.elementRef);
2860
- });
2861
- }
2862
- detourFormControlMethods(ngControl, this.elementRef);
2863
- }
2864
- }
2865
- ValueAccessor.ANGULAR_CLASS_REFIX = 'ng-';
2866
- /** @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 });
2867
- /** @nocollapse */ ValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: ValueAccessor, host: { listeners: { "ixBlur": "_handleBlurEvent($event.target)" } }, ngImport: i0 });
2868
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ValueAccessor, decorators: [{
2869
- type: Directive
2870
- }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { _handleBlurEvent: [{
2871
- type: HostListener,
2872
- args: ['ixBlur', ['$event.target']]
2873
- }] } });
2874
- const detourFormControlMethods = (ngControl, elementRef) => {
2875
- const formControl = ngControl.control;
2876
- if (formControl) {
2877
- const methodsToPatch = [
2878
- 'markAsTouched',
2879
- 'markAllAsTouched',
2880
- 'markAsUntouched',
2881
- 'markAsDirty',
2882
- 'markAsPristine',
2883
- ];
2884
- methodsToPatch.forEach((method) => {
2885
- if (typeof formControl[method] !== 'undefined') {
2886
- const oldFn = formControl[method].bind(formControl);
2887
- formControl[method] = (...params) => {
2888
- oldFn(...params);
2889
- mapNgToIxClassNames(elementRef);
2890
- };
2891
- }
2892
- });
2893
- }
2894
- };
2895
- const mapNgToIxClassNames = (element) => {
2896
- setTimeout(() => {
2897
- const input = element.nativeElement;
2898
- const classes = getClasses(input);
2899
- const classList = input.classList;
2900
- classList.remove('ix-valid', 'ix-invalid', 'ix-touched', 'ix-untouched', 'ix-dirty', 'ix-pristine');
2901
- classList.add(...classes);
2902
- });
2903
- };
2904
- const getClasses = (element) => {
2905
- const classList = element.classList;
2906
- const classes = [];
2907
- for (let i = 0; i < classList.length; i++) {
2908
- const item = classList.item(i);
2909
- if (item !== null && item.startsWith(ValueAccessor.ANGULAR_CLASS_REFIX)) {
2910
- classes.push(`ix-${item.substring(3)}`);
2911
- }
2912
- }
2913
- return classes;
2914
- };
2915
-
2916
- /*
2917
- * SPDX-FileCopyrightText: 2024 Siemens AG
2918
- *
2919
- * SPDX-License-Identifier: MIT
2920
- *
2921
- * This source code is licensed under the MIT license found in the
2922
- * LICENSE file in the root directory of this source tree.
2923
- */
2924
- class TextValueAccessorDirective extends ValueAccessor {
2925
- constructor(injector, el) {
2926
- super(injector, el);
2927
- }
2928
- handleInputEvent(el) {
2929
- super.handleValueChange(el, el.value);
2930
- }
2931
- }
2932
- /** @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 });
2933
- /** @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: [
2934
- {
2935
- provide: NG_VALUE_ACCESSOR,
2936
- useExisting: TextValueAccessorDirective,
2937
- multi: true,
2938
- },
2939
- ], usesInheritance: true, ngImport: i0 });
2940
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: TextValueAccessorDirective, decorators: [{
2941
- type: Directive,
2942
- args: [{
2943
- selector: 'ix-text-field,ix-number-field,ix-textarea-field',
2944
- providers: [
2945
- {
2946
- provide: NG_VALUE_ACCESSOR,
2947
- useExisting: TextValueAccessorDirective,
2948
- multi: true,
2949
- },
2950
- ],
2951
- }]
2952
- }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleInputEvent: [{
2953
- type: HostListener,
2954
- args: ['input', ['$event.target']]
2955
- }, {
2956
- type: HostListener,
2957
- args: ['valueChange', ['$event.target']]
2958
- }] } });
2959
-
2960
2591
  /*
2961
2592
  * SPDX-FileCopyrightText: 2024 Siemens AG
2962
2593
  *
@@ -2974,8 +2605,8 @@ const appInitialize = (doc) => {
2974
2605
  return;
2975
2606
  }
2976
2607
  didInitialize = true;
2977
- await defineCustomElements();
2978
- defineCustomElements$1();
2608
+ defineCustomElements();
2609
+ await defineCustomElements$1();
2979
2610
  }
2980
2611
  };
2981
2612
  };
@@ -2996,15 +2627,11 @@ const DIRECTIVES = [
2996
2627
  IxCardList,
2997
2628
  IxCardTitle,
2998
2629
  IxCategoryFilter,
2999
- IxCheckbox,
3000
- IxCheckboxGroup,
3001
2630
  IxChip,
3002
2631
  IxCol,
3003
2632
  IxContent,
3004
2633
  IxContentHeader,
3005
- IxCustomField,
3006
2634
  IxDateDropdown,
3007
- IxDateField,
3008
2635
  IxDatePicker,
3009
2636
  IxDatetimePicker,
3010
2637
  IxDivider,
@@ -3018,21 +2645,19 @@ const DIRECTIVES = [
3018
2645
  IxEventList,
3019
2646
  IxEventListItem,
3020
2647
  IxExpandingSearch,
3021
- IxFieldLabel,
3022
2648
  IxFilterChip,
3023
2649
  IxFlipTile,
3024
2650
  IxFlipTileContent,
2651
+ IxFormField,
3025
2652
  IxGroup,
3026
2653
  IxGroupContextMenu,
3027
2654
  IxGroupItem,
3028
- IxHelperText,
3029
2655
  IxIconButton,
3030
2656
  IxIconToggleButton,
3031
2657
  IxInputGroup,
3032
2658
  IxKeyValue,
3033
2659
  IxKeyValueList,
3034
2660
  IxKpi,
3035
- IxLayoutForm,
3036
2661
  IxLayoutGrid,
3037
2662
  IxLinkButton,
3038
2663
  IxMapNavigation,
@@ -3053,14 +2678,11 @@ const DIRECTIVES = [
3053
2678
  IxModalExample,
3054
2679
  IxModalFooter,
3055
2680
  IxModalHeader,
3056
- IxNumberField,
3057
2681
  IxPagination,
3058
2682
  IxPane,
3059
2683
  IxPaneLayout,
3060
2684
  IxPill,
3061
2685
  IxPushCard,
3062
- IxRadio,
3063
- IxRadioGroup,
3064
2686
  IxRow,
3065
2687
  IxSelect,
3066
2688
  IxSelectItem,
@@ -3070,8 +2692,6 @@ const DIRECTIVES = [
3070
2692
  IxSplitButtonItem,
3071
2693
  IxTabItem,
3072
2694
  IxTabs,
3073
- IxTextField,
3074
- IxTextareaField,
3075
2695
  IxTile,
3076
2696
  IxTimePicker,
3077
2697
  IxToast,
@@ -3087,6 +2707,37 @@ const DIRECTIVES = [
3087
2707
  IxWorkflowSteps
3088
2708
  ];
3089
2709
 
2710
+ class SelectValueAccessor extends ValueAccessor {
2711
+ constructor(el) {
2712
+ super(el);
2713
+ }
2714
+ }
2715
+ /** @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 });
2716
+ /** @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: [
2717
+ {
2718
+ provide: NG_VALUE_ACCESSOR,
2719
+ useExisting: SelectValueAccessor,
2720
+ multi: true
2721
+ }
2722
+ ], usesInheritance: true, ngImport: i0 });
2723
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SelectValueAccessor, decorators: [{
2724
+ type: Directive,
2725
+ args: [{
2726
+ /* tslint:disable-next-line:directive-selector */
2727
+ selector: 'ix-select[ngModel],ix-select[formControlName],ix-select[formControl]',
2728
+ host: {
2729
+ '(valueChange)': 'handleChangeEvent($event.target.value)'
2730
+ },
2731
+ providers: [
2732
+ {
2733
+ provide: NG_VALUE_ACCESSOR,
2734
+ useExisting: SelectValueAccessor,
2735
+ multi: true
2736
+ }
2737
+ ]
2738
+ }]
2739
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
2740
+
3090
2741
  /*
3091
2742
  * SPDX-FileCopyrightText: 2024 Siemens AG
3092
2743
  *
@@ -3266,189 +2917,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
3266
2917
  * LICENSE file in the root directory of this source tree.
3267
2918
  */
3268
2919
 
3269
- /*
3270
- * SPDX-FileCopyrightText: 2024 Siemens AG
3271
- *
3272
- * SPDX-License-Identifier: MIT
3273
- *
3274
- * This source code is licensed under the MIT license found in the
3275
- * LICENSE file in the root directory of this source tree.
3276
- */
3277
- class SelectValueAccessorDirective extends ValueAccessor {
3278
- constructor(injector, el) {
3279
- super(injector, el);
3280
- }
3281
- handleChangeEvent(el) {
3282
- super.handleValueChange(el, el.value);
3283
- }
3284
- }
3285
- /** @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 });
3286
- /** @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: [
3287
- {
3288
- provide: NG_VALUE_ACCESSOR,
3289
- useExisting: SelectValueAccessorDirective,
3290
- multi: true,
3291
- },
3292
- ], usesInheritance: true, ngImport: i0 });
3293
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SelectValueAccessorDirective, decorators: [{
3294
- type: Directive,
3295
- args: [{
3296
- selector: 'ix-select',
3297
- providers: [
3298
- {
3299
- provide: NG_VALUE_ACCESSOR,
3300
- useExisting: SelectValueAccessorDirective,
3301
- multi: true,
3302
- },
3303
- ],
3304
- }]
3305
- }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleChangeEvent: [{
3306
- type: HostListener,
3307
- args: ['valueChange', ['$event.target']]
3308
- }] } });
3309
-
3310
- /*
3311
- * SPDX-FileCopyrightText: 2024 Siemens AG
3312
- *
3313
- * SPDX-License-Identifier: MIT
3314
- *
3315
- * This source code is licensed under the MIT license found in the
3316
- * LICENSE file in the root directory of this source tree.
3317
- */
3318
- class RadioValueAccessorDirective extends ValueAccessor {
3319
- constructor(injector, el) {
3320
- super(injector, el);
3321
- }
3322
- writeValue(value) {
3323
- this.lastValue = value;
3324
- this.elementRef.nativeElement.checked =
3325
- this.elementRef.nativeElement.value === value;
3326
- mapNgToIxClassNames(this.elementRef);
3327
- }
3328
- handleChangeEvent(el) {
3329
- super.handleValueChange(el, el.value);
3330
- }
3331
- }
3332
- /** @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 });
3333
- /** @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: [
3334
- {
3335
- provide: NG_VALUE_ACCESSOR,
3336
- useExisting: RadioValueAccessorDirective,
3337
- multi: true,
3338
- },
3339
- ], usesInheritance: true, ngImport: i0 });
3340
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: RadioValueAccessorDirective, decorators: [{
3341
- type: Directive,
3342
- args: [{
3343
- selector: 'ix-radio',
3344
- providers: [
3345
- {
3346
- provide: NG_VALUE_ACCESSOR,
3347
- useExisting: RadioValueAccessorDirective,
3348
- multi: true,
3349
- },
3350
- ],
3351
- }]
3352
- }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleChangeEvent: [{
3353
- type: HostListener,
3354
- args: ['checkedChange', ['$event.target']]
3355
- }] } });
3356
-
3357
- /*
3358
- * SPDX-FileCopyrightText: 2024 Siemens AG
3359
- *
3360
- * SPDX-License-Identifier: MIT
3361
- *
3362
- * This source code is licensed under the MIT license found in the
3363
- * LICENSE file in the root directory of this source tree.
3364
- */
3365
- class BooleanValueAccessorDirective extends ValueAccessor {
3366
- constructor(injector, el) {
3367
- super(injector, el);
3368
- }
3369
- writeValue(value) {
3370
- this.elementRef.nativeElement.checked = this.lastValue = value;
3371
- mapNgToIxClassNames(this.elementRef);
3372
- }
3373
- handleChangeEvent(el) {
3374
- super.handleValueChange(el, el.checked);
3375
- }
3376
- }
3377
- /** @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 });
3378
- /** @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: [
3379
- {
3380
- provide: NG_VALUE_ACCESSOR,
3381
- useExisting: BooleanValueAccessorDirective,
3382
- multi: true,
3383
- },
3384
- ], usesInheritance: true, ngImport: i0 });
3385
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: BooleanValueAccessorDirective, decorators: [{
3386
- type: Directive,
3387
- args: [{
3388
- selector: 'ix-checkbox,ix-toggle',
3389
- providers: [
3390
- {
3391
- provide: NG_VALUE_ACCESSOR,
3392
- useExisting: BooleanValueAccessorDirective,
3393
- multi: true,
3394
- },
3395
- ],
3396
- }]
3397
- }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleChangeEvent: [{
3398
- type: HostListener,
3399
- args: ['checkedChange', ['$event.target']]
3400
- }] } });
3401
-
3402
- /*
3403
- * SPDX-FileCopyrightText: 2024 Siemens AG
3404
- *
3405
- * SPDX-License-Identifier: MIT
3406
- *
3407
- * This source code is licensed under the MIT license found in the
3408
- * LICENSE file in the root directory of this source tree.
3409
- */
3410
- class DateValueAccessorDirective extends ValueAccessor {
3411
- constructor(injector, el) {
3412
- super(injector, el);
3413
- }
3414
- handleInputEvent(el) {
3415
- super.handleValueChange(el, el.value);
3416
- }
3417
- }
3418
- /** @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 });
3419
- /** @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: [
3420
- {
3421
- provide: NG_VALUE_ACCESSOR,
3422
- useExisting: DateValueAccessorDirective,
3423
- multi: true,
3424
- },
3425
- ], usesInheritance: true, ngImport: i0 });
3426
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: DateValueAccessorDirective, decorators: [{
3427
- type: Directive,
3428
- args: [{
3429
- selector: 'ix-date-field',
3430
- providers: [
3431
- {
3432
- provide: NG_VALUE_ACCESSOR,
3433
- useExisting: DateValueAccessorDirective,
3434
- multi: true,
3435
- },
3436
- ],
3437
- }]
3438
- }], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.ElementRef }]; }, propDecorators: { handleInputEvent: [{
3439
- type: HostListener,
3440
- args: ['valueChange', ['$event.target']]
3441
- }] } });
3442
-
3443
- /*
3444
- * SPDX-FileCopyrightText: 2024 Siemens AG
3445
- *
3446
- * SPDX-License-Identifier: MIT
3447
- *
3448
- * This source code is licensed under the MIT license found in the
3449
- * LICENSE file in the root directory of this source tree.
3450
- */
3451
-
3452
2920
  /*
3453
2921
  * SPDX-FileCopyrightText: 2024 Siemens AG
3454
2922
  *
@@ -3462,11 +2930,8 @@ const DECLARATIONS = [
3462
2930
  IxTree,
3463
2931
  IxDropdownTriggerDirective,
3464
2932
  IxIcon,
3465
- TextValueAccessorDirective,
3466
- SelectValueAccessorDirective,
3467
- RadioValueAccessorDirective,
3468
- BooleanValueAccessorDirective,
3469
- DateValueAccessorDirective,
2933
+ SelectValueAccessor,
2934
+ BooleanValueAccessor
3470
2935
  ];
3471
2936
  class IxModule {
3472
2937
  static forRoot() {
@@ -3487,19 +2952,13 @@ class IxModule {
3487
2952
  }
3488
2953
  }
3489
2954
  /** @nocollapse */ IxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
3490
- /** @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,
2955
+ /** @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,
3491
2956
  IxIcon,
3492
- TextValueAccessorDirective,
3493
- SelectValueAccessorDirective,
3494
- RadioValueAccessorDirective,
3495
- BooleanValueAccessorDirective,
3496
- 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,
2957
+ SelectValueAccessor,
2958
+ 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,
3497
2959
  IxIcon,
3498
- TextValueAccessorDirective,
3499
- SelectValueAccessorDirective,
3500
- RadioValueAccessorDirective,
3501
- BooleanValueAccessorDirective,
3502
- DateValueAccessorDirective] });
2960
+ SelectValueAccessor,
2961
+ BooleanValueAccessor] });
3503
2962
  /** @nocollapse */ IxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule });
3504
2963
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule, decorators: [{
3505
2964
  type: NgModule,
@@ -3522,5 +2981,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
3522
2981
  * Generated bundle index. Do not edit.
3523
2982
  */
3524
2983
 
3525
- 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 };
2984
+ 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 };
3526
2985
  //# sourceMappingURL=siemens-ix-angular.mjs.map