@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, __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) => {
@@ -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 {
@@ -2788,172 +2585,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
2788
2585
  * LICENSE file in the root directory of this source tree.
2789
2586
  */
2790
2587
 
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
2588
  let didInitialize = false;
2958
2589
  const appInitialize = (doc) => {
2959
2590
  return () => __awaiter(void 0, void 0, void 0, function* () {
@@ -2963,8 +2594,8 @@ const appInitialize = (doc) => {
2963
2594
  return;
2964
2595
  }
2965
2596
  didInitialize = true;
2966
- yield defineCustomElements();
2967
- defineCustomElements$1();
2597
+ defineCustomElements();
2598
+ yield defineCustomElements$1();
2968
2599
  }
2969
2600
  });
2970
2601
  };
@@ -2985,15 +2616,11 @@ const DIRECTIVES = [
2985
2616
  IxCardList,
2986
2617
  IxCardTitle,
2987
2618
  IxCategoryFilter,
2988
- IxCheckbox,
2989
- IxCheckboxGroup,
2990
2619
  IxChip,
2991
2620
  IxCol,
2992
2621
  IxContent,
2993
2622
  IxContentHeader,
2994
- IxCustomField,
2995
2623
  IxDateDropdown,
2996
- IxDateField,
2997
2624
  IxDatePicker,
2998
2625
  IxDatetimePicker,
2999
2626
  IxDivider,
@@ -3007,21 +2634,19 @@ const DIRECTIVES = [
3007
2634
  IxEventList,
3008
2635
  IxEventListItem,
3009
2636
  IxExpandingSearch,
3010
- IxFieldLabel,
3011
2637
  IxFilterChip,
3012
2638
  IxFlipTile,
3013
2639
  IxFlipTileContent,
2640
+ IxFormField,
3014
2641
  IxGroup,
3015
2642
  IxGroupContextMenu,
3016
2643
  IxGroupItem,
3017
- IxHelperText,
3018
2644
  IxIconButton,
3019
2645
  IxIconToggleButton,
3020
2646
  IxInputGroup,
3021
2647
  IxKeyValue,
3022
2648
  IxKeyValueList,
3023
2649
  IxKpi,
3024
- IxLayoutForm,
3025
2650
  IxLayoutGrid,
3026
2651
  IxLinkButton,
3027
2652
  IxMapNavigation,
@@ -3042,14 +2667,11 @@ const DIRECTIVES = [
3042
2667
  IxModalExample,
3043
2668
  IxModalFooter,
3044
2669
  IxModalHeader,
3045
- IxNumberField,
3046
2670
  IxPagination,
3047
2671
  IxPane,
3048
2672
  IxPaneLayout,
3049
2673
  IxPill,
3050
2674
  IxPushCard,
3051
- IxRadio,
3052
- IxRadioGroup,
3053
2675
  IxRow,
3054
2676
  IxSelect,
3055
2677
  IxSelectItem,
@@ -3059,8 +2681,6 @@ const DIRECTIVES = [
3059
2681
  IxSplitButtonItem,
3060
2682
  IxTabItem,
3061
2683
  IxTabs,
3062
- IxTextField,
3063
- IxTextareaField,
3064
2684
  IxTile,
3065
2685
  IxTimePicker,
3066
2686
  IxToast,
@@ -3076,6 +2696,37 @@ const DIRECTIVES = [
3076
2696
  IxWorkflowSteps
3077
2697
  ];
3078
2698
 
2699
+ class SelectValueAccessor extends ValueAccessor {
2700
+ constructor(el) {
2701
+ super(el);
2702
+ }
2703
+ }
2704
+ /** @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 });
2705
+ /** @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: [
2706
+ {
2707
+ provide: NG_VALUE_ACCESSOR,
2708
+ useExisting: SelectValueAccessor,
2709
+ multi: true
2710
+ }
2711
+ ], usesInheritance: true, ngImport: i0 });
2712
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SelectValueAccessor, decorators: [{
2713
+ type: Directive,
2714
+ args: [{
2715
+ /* tslint:disable-next-line:directive-selector */
2716
+ selector: 'ix-select[ngModel],ix-select[formControlName],ix-select[formControl]',
2717
+ host: {
2718
+ '(valueChange)': 'handleChangeEvent($event.target.value)'
2719
+ },
2720
+ providers: [
2721
+ {
2722
+ provide: NG_VALUE_ACCESSOR,
2723
+ useExisting: SelectValueAccessor,
2724
+ multi: true
2725
+ }
2726
+ ]
2727
+ }]
2728
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
2729
+
3079
2730
  /*
3080
2731
  * SPDX-FileCopyrightText: 2024 Siemens AG
3081
2732
  *
@@ -3248,189 +2899,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
3248
2899
  * LICENSE file in the root directory of this source tree.
3249
2900
  */
3250
2901
 
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
2902
  /*
3435
2903
  * SPDX-FileCopyrightText: 2024 Siemens AG
3436
2904
  *
@@ -3444,11 +2912,8 @@ const DECLARATIONS = [
3444
2912
  IxTree,
3445
2913
  IxDropdownTriggerDirective,
3446
2914
  IxIcon,
3447
- TextValueAccessorDirective,
3448
- SelectValueAccessorDirective,
3449
- RadioValueAccessorDirective,
3450
- BooleanValueAccessorDirective,
3451
- DateValueAccessorDirective,
2915
+ SelectValueAccessor,
2916
+ BooleanValueAccessor
3452
2917
  ];
3453
2918
  class IxModule {
3454
2919
  static forRoot() {
@@ -3469,19 +2934,13 @@ class IxModule {
3469
2934
  }
3470
2935
  }
3471
2936
  /** @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,
2937
+ /** @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
2938
  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,
2939
+ SelectValueAccessor,
2940
+ 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
2941
  IxIcon,
3480
- TextValueAccessorDirective,
3481
- SelectValueAccessorDirective,
3482
- RadioValueAccessorDirective,
3483
- BooleanValueAccessorDirective,
3484
- DateValueAccessorDirective] });
2942
+ SelectValueAccessor,
2943
+ BooleanValueAccessor] });
3485
2944
  /** @nocollapse */ IxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule });
3486
2945
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule, decorators: [{
3487
2946
  type: NgModule,
@@ -3504,5 +2963,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
3504
2963
  * Generated bundle index. Do not edit.
3505
2964
  */
3506
2965
 
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 };
2966
+ 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
2967
  //# sourceMappingURL=siemens-ix-angular.mjs.map