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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/boolean-value-accessor.d.ts +9 -0
  2. package/components.d.ts +12 -180
  3. package/declare-components.d.ts +1 -1
  4. package/esm2020/app-initialize.mjs +2 -2
  5. package/esm2020/boolean-value-accessor.mjs +38 -0
  6. package/esm2020/components.mjs +33 -320
  7. package/esm2020/declare-components.mjs +2 -13
  8. package/esm2020/index.mjs +3 -2
  9. package/esm2020/module.mjs +10 -22
  10. package/esm2020/select-value-accessor.mjs +35 -0
  11. package/esm2020/value-accessor.mjs +40 -0
  12. package/fesm2015/siemens-ix-angular.mjs +150 -692
  13. package/fesm2015/siemens-ix-angular.mjs.map +1 -1
  14. package/fesm2020/siemens-ix-angular.mjs +150 -692
  15. package/fesm2020/siemens-ix-angular.mjs.map +1 -1
  16. package/index.d.ts +2 -1
  17. package/module.d.ts +3 -6
  18. package/package.json +2 -2
  19. package/select-value-accessor.d.ts +8 -0
  20. package/{control-value-accessors/value-accessor.d.ts → value-accessor.d.ts} +6 -12
  21. package/control-value-accessors/boolean-value-accessor.d.ts +0 -10
  22. package/control-value-accessors/date-value-accessor.d.ts +0 -9
  23. package/control-value-accessors/index.d.ts +0 -5
  24. package/control-value-accessors/radio-value-accessor.d.ts +0 -10
  25. package/control-value-accessors/select-value-accessor.d.ts +0 -9
  26. package/control-value-accessors/text-value-accessor.d.ts +0 -9
  27. package/esm2020/control-value-accessors/boolean-value-accessor.mjs +0 -49
  28. package/esm2020/control-value-accessors/date-value-accessor.mjs +0 -45
  29. package/esm2020/control-value-accessors/index.mjs +0 -14
  30. package/esm2020/control-value-accessors/radio-value-accessor.mjs +0 -51
  31. package/esm2020/control-value-accessors/select-value-accessor.mjs +0 -45
  32. package/esm2020/control-value-accessors/text-value-accessor.mjs +0 -48
  33. package/esm2020/control-value-accessors/value-accessor.mjs +0 -125
@@ -1,13 +1,85 @@
1
1
  import { closeModal, dismissModal, showModal, themeSwitcher, getToastContainer, toast } from '@siemens/ix';
2
2
  export * from '@siemens/ix';
3
- import { __decorate } 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) => {
@@ -426,55 +498,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
426
498
  inputs: ['categories', 'disabled', 'filterState', 'hideIcon', 'i18nPlainText', 'icon', 'labelCategories', 'nonSelectableCategories', 'placeholder', 'readonly', 'repeatCategories', 'staticOperator', 'suggestions'],
427
499
  }]
428
500
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
429
- let IxCheckbox = class IxCheckbox {
430
- constructor(c, r, z) {
431
- this.z = z;
432
- c.detach();
433
- this.el = r.nativeElement;
434
- proxyOutputs(this, this.el, ['checkedChange', 'valueChange']);
435
- }
436
- };
437
- /** @nocollapse */ IxCheckbox.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
438
- /** @nocollapse */ IxCheckbox.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxCheckbox, selector: "ix-checkbox", inputs: { checked: "checked", disabled: "disabled", indeterminate: "indeterminate", label: "label", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
439
- IxCheckbox = __decorate([
440
- ProxyCmp({
441
- inputs: ['checked', 'disabled', 'indeterminate', 'label', 'name', 'required', 'value']
442
- })
443
- ], IxCheckbox);
444
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCheckbox, decorators: [{
445
- type: Component,
446
- args: [{
447
- selector: 'ix-checkbox',
448
- changeDetection: ChangeDetectionStrategy.OnPush,
449
- template: '<ng-content></ng-content>',
450
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
451
- inputs: ['checked', 'disabled', 'indeterminate', 'label', 'name', 'required', 'value'],
452
- }]
453
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
454
- let IxCheckboxGroup = class IxCheckboxGroup {
455
- constructor(c, r, z) {
456
- this.z = z;
457
- c.detach();
458
- this.el = r.nativeElement;
459
- }
460
- };
461
- /** @nocollapse */ IxCheckboxGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCheckboxGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
462
- /** @nocollapse */ IxCheckboxGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxCheckboxGroup, selector: "ix-checkbox-group", inputs: { helperText: "helperText", infoText: "infoText", invalidText: "invalidText", label: "label", validText: "validText", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
463
- IxCheckboxGroup = __decorate([
464
- ProxyCmp({
465
- inputs: ['helperText', 'infoText', 'invalidText', 'label', 'validText', 'warningText']
466
- })
467
- ], IxCheckboxGroup);
468
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCheckboxGroup, decorators: [{
469
- type: Component,
470
- args: [{
471
- selector: 'ix-checkbox-group',
472
- changeDetection: ChangeDetectionStrategy.OnPush,
473
- template: '<ng-content></ng-content>',
474
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
475
- inputs: ['helperText', 'infoText', 'invalidText', 'label', 'validText', 'warningText'],
476
- }]
477
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
478
501
  let IxChip = class IxChip {
479
502
  constructor(c, r, z) {
480
503
  this.z = z;
@@ -571,30 +594,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
571
594
  inputs: ['hasBackButton', 'headerSubtitle', 'headerTitle', 'variant'],
572
595
  }]
573
596
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
574
- let IxCustomField = class IxCustomField {
575
- constructor(c, r, z) {
576
- this.z = z;
577
- c.detach();
578
- this.el = r.nativeElement;
579
- }
580
- };
581
- /** @nocollapse */ IxCustomField.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCustomField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
582
- /** @nocollapse */ IxCustomField.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxCustomField, selector: "ix-custom-field", inputs: { helperText: "helperText", infoText: "infoText", invalidText: "invalidText", label: "label", required: "required", showTextAsTooltip: "showTextAsTooltip", validText: "validText", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
583
- IxCustomField = __decorate([
584
- ProxyCmp({
585
- inputs: ['helperText', 'infoText', 'invalidText', 'label', 'required', 'showTextAsTooltip', 'validText', 'warningText']
586
- })
587
- ], IxCustomField);
588
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCustomField, decorators: [{
589
- type: Component,
590
- args: [{
591
- selector: 'ix-custom-field',
592
- changeDetection: ChangeDetectionStrategy.OnPush,
593
- template: '<ng-content></ng-content>',
594
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
595
- inputs: ['helperText', 'infoText', 'invalidText', 'label', 'required', 'showTextAsTooltip', 'validText', 'warningText'],
596
- }]
597
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
598
597
  let IxDateDropdown = class IxDateDropdown {
599
598
  constructor(c, r, z) {
600
599
  this.z = z;
@@ -621,32 +620,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
621
620
  inputs: ['customRangeAllowed', 'dateRangeId', 'dateRangeOptions', 'disabled', 'format', 'from', 'i18nCustomItem', 'i18nDone', 'i18nNoRange', 'maxDate', 'minDate', 'range', 'to'],
622
621
  }]
623
622
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
624
- let IxDateField = class IxDateField {
625
- constructor(c, r, z) {
626
- this.z = z;
627
- c.detach();
628
- this.el = r.nativeElement;
629
- proxyOutputs(this, this.el, ['valueChange', 'validityStateChange']);
630
- }
631
- };
632
- /** @nocollapse */ IxDateField.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDateField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
633
- /** @nocollapse */ IxDateField.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxDateField, selector: "ix-date-field", inputs: { disabled: "disabled", format: "format", helperText: "helperText", i18nErrorDateUnparsable: "i18nErrorDateUnparsable", infoText: "infoText", invalidText: "invalidText", label: "label", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", showTextAsTooltip: "showTextAsTooltip", validText: "validText", value: "value", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
634
- IxDateField = __decorate([
635
- ProxyCmp({
636
- inputs: ['disabled', 'format', 'helperText', 'i18nErrorDateUnparsable', 'infoText', 'invalidText', 'label', 'name', 'placeholder', 'readonly', 'required', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
637
- methods: ['getNativeInputElement']
638
- })
639
- ], IxDateField);
640
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDateField, decorators: [{
641
- type: Component,
642
- args: [{
643
- selector: 'ix-date-field',
644
- changeDetection: ChangeDetectionStrategy.OnPush,
645
- template: '<ng-content></ng-content>',
646
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
647
- inputs: ['disabled', 'format', 'helperText', 'i18nErrorDateUnparsable', 'infoText', 'invalidText', 'label', 'name', 'placeholder', 'readonly', 'required', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
648
- }]
649
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
650
623
  let IxDatePicker = class IxDatePicker {
651
624
  constructor(c, r, z) {
652
625
  this.z = z;
@@ -966,30 +939,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
966
939
  inputs: ['fullWidth', 'icon', 'placeholder', 'value'],
967
940
  }]
968
941
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
969
- let IxFieldLabel = class IxFieldLabel {
970
- constructor(c, r, z) {
971
- this.z = z;
972
- c.detach();
973
- this.el = r.nativeElement;
974
- }
975
- };
976
- /** @nocollapse */ IxFieldLabel.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFieldLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
977
- /** @nocollapse */ IxFieldLabel.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxFieldLabel, selector: "ix-field-label", inputs: { htmlFor: "htmlFor", required: "required" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
978
- IxFieldLabel = __decorate([
979
- ProxyCmp({
980
- inputs: ['htmlFor', 'required']
981
- })
982
- ], IxFieldLabel);
983
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFieldLabel, decorators: [{
984
- type: Component,
985
- args: [{
986
- selector: 'ix-field-label',
987
- changeDetection: ChangeDetectionStrategy.OnPush,
988
- template: '<ng-content></ng-content>',
989
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
990
- inputs: ['htmlFor', 'required'],
991
- }]
992
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
993
942
  let IxFilterChip = class IxFilterChip {
994
943
  constructor(c, r, z) {
995
944
  this.z = z;
@@ -1061,6 +1010,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
1061
1010
  inputs: [],
1062
1011
  }]
1063
1012
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1013
+ let IxFormField = class IxFormField {
1014
+ constructor(c, r, z) {
1015
+ this.z = z;
1016
+ c.detach();
1017
+ this.el = r.nativeElement;
1018
+ }
1019
+ };
1020
+ /** @nocollapse */ IxFormField.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFormField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1021
+ /** @nocollapse */ IxFormField.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxFormField, selector: "ix-form-field", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1022
+ IxFormField = __decorate([
1023
+ ProxyCmp({
1024
+ inputs: ['label']
1025
+ })
1026
+ ], IxFormField);
1027
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFormField, decorators: [{
1028
+ type: Component,
1029
+ args: [{
1030
+ selector: 'ix-form-field',
1031
+ changeDetection: ChangeDetectionStrategy.OnPush,
1032
+ template: '<ng-content></ng-content>',
1033
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1034
+ inputs: ['label'],
1035
+ }]
1036
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1064
1037
  let IxGroup = class IxGroup {
1065
1038
  constructor(c, r, z) {
1066
1039
  this.z = z;
@@ -1133,30 +1106,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
1133
1106
  inputs: ['focusable', 'icon', 'index', 'secondaryText', 'selected', 'suppressSelection', 'text'],
1134
1107
  }]
1135
1108
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1136
- let IxHelperText = class IxHelperText {
1137
- constructor(c, r, z) {
1138
- this.z = z;
1139
- c.detach();
1140
- this.el = r.nativeElement;
1141
- }
1142
- };
1143
- /** @nocollapse */ IxHelperText.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxHelperText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1144
- /** @nocollapse */ IxHelperText.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxHelperText, selector: "ix-helper-text", inputs: { helperText: "helperText", htmlFor: "htmlFor", infoText: "infoText", invalidText: "invalidText", validText: "validText", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1145
- IxHelperText = __decorate([
1146
- ProxyCmp({
1147
- inputs: ['helperText', 'htmlFor', 'infoText', 'invalidText', 'validText', 'warningText']
1148
- })
1149
- ], IxHelperText);
1150
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxHelperText, decorators: [{
1151
- type: Component,
1152
- args: [{
1153
- selector: 'ix-helper-text',
1154
- changeDetection: ChangeDetectionStrategy.OnPush,
1155
- template: '<ng-content></ng-content>',
1156
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1157
- inputs: ['helperText', 'htmlFor', 'infoText', 'invalidText', 'validText', 'warningText'],
1158
- }]
1159
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1160
1109
  let IxIconButton = class IxIconButton {
1161
1110
  constructor(c, r, z) {
1162
1111
  this.z = z;
@@ -1300,30 +1249,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
1300
1249
  inputs: ['label', 'orientation', 'state', 'unit', 'value'],
1301
1250
  }]
1302
1251
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1303
- let IxLayoutForm = class IxLayoutForm {
1304
- constructor(c, r, z) {
1305
- this.z = z;
1306
- c.detach();
1307
- this.el = r.nativeElement;
1308
- }
1309
- };
1310
- /** @nocollapse */ IxLayoutForm.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxLayoutForm, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1311
- /** @nocollapse */ IxLayoutForm.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxLayoutForm, selector: "ix-layout-form", inputs: { layout: "layout" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1312
- IxLayoutForm = __decorate([
1313
- ProxyCmp({
1314
- inputs: ['layout']
1315
- })
1316
- ], IxLayoutForm);
1317
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxLayoutForm, decorators: [{
1318
- type: Component,
1319
- args: [{
1320
- selector: 'ix-layout-form',
1321
- changeDetection: ChangeDetectionStrategy.OnPush,
1322
- template: '<ng-content></ng-content>',
1323
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1324
- inputs: ['layout'],
1325
- }]
1326
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1327
1252
  let IxLayoutGrid = class IxLayoutGrid {
1328
1253
  constructor(c, r, z) {
1329
1254
  this.z = z;
@@ -1814,32 +1739,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
1814
1739
  inputs: ['hideClose', 'icon', 'iconColor'],
1815
1740
  }]
1816
1741
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1817
- let IxNumberField = class IxNumberField {
1818
- constructor(c, r, z) {
1819
- this.z = z;
1820
- c.detach();
1821
- this.el = r.nativeElement;
1822
- proxyOutputs(this, this.el, ['valueChange', 'validityStateChange', 'ixBlur']);
1823
- }
1824
- };
1825
- /** @nocollapse */ IxNumberField.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxNumberField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1826
- /** @nocollapse */ IxNumberField.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxNumberField, selector: "ix-number-field", inputs: { allowedCharactersPattern: "allowedCharactersPattern", disabled: "disabled", helperText: "helperText", infoText: "infoText", invalidText: "invalidText", label: "label", max: "max", min: "min", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", showStepperButtons: "showStepperButtons", showTextAsTooltip: "showTextAsTooltip", validText: "validText", value: "value", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1827
- IxNumberField = __decorate([
1828
- ProxyCmp({
1829
- inputs: ['allowedCharactersPattern', 'disabled', 'helperText', 'infoText', 'invalidText', 'label', 'max', 'min', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showStepperButtons', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
1830
- methods: ['getNativeInputElement']
1831
- })
1832
- ], IxNumberField);
1833
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxNumberField, decorators: [{
1834
- type: Component,
1835
- args: [{
1836
- selector: 'ix-number-field',
1837
- changeDetection: ChangeDetectionStrategy.OnPush,
1838
- template: '<ng-content></ng-content>',
1839
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1840
- inputs: ['allowedCharactersPattern', 'disabled', 'helperText', 'infoText', 'invalidText', 'label', 'max', 'min', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showStepperButtons', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
1841
- }]
1842
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1843
1742
  let IxPagination = class IxPagination {
1844
1743
  constructor(c, r, z) {
1845
1744
  this.z = z;
@@ -1962,56 +1861,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
1962
1861
  inputs: ['collapse', 'heading', 'icon', 'notification', 'subheading', 'variant'],
1963
1862
  }]
1964
1863
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1965
- let IxRadio = class IxRadio {
1966
- constructor(c, r, z) {
1967
- this.z = z;
1968
- c.detach();
1969
- this.el = r.nativeElement;
1970
- proxyOutputs(this, this.el, ['checkedChange', 'valueChange']);
1971
- }
1972
- };
1973
- /** @nocollapse */ IxRadio.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1974
- /** @nocollapse */ IxRadio.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxRadio, selector: "ix-radio", inputs: { checked: "checked", disabled: "disabled", label: "label", name: "name", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1975
- IxRadio = __decorate([
1976
- ProxyCmp({
1977
- inputs: ['checked', 'disabled', 'label', 'name', 'value']
1978
- })
1979
- ], IxRadio);
1980
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxRadio, decorators: [{
1981
- type: Component,
1982
- args: [{
1983
- selector: 'ix-radio',
1984
- changeDetection: ChangeDetectionStrategy.OnPush,
1985
- template: '<ng-content></ng-content>',
1986
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1987
- inputs: ['checked', 'disabled', 'label', 'name', 'value'],
1988
- }]
1989
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1990
- let IxRadioGroup = class IxRadioGroup {
1991
- constructor(c, r, z) {
1992
- this.z = z;
1993
- c.detach();
1994
- this.el = r.nativeElement;
1995
- proxyOutputs(this, this.el, ['valueChange']);
1996
- }
1997
- };
1998
- /** @nocollapse */ IxRadioGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1999
- /** @nocollapse */ IxRadioGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxRadioGroup, selector: "ix-radio-group", inputs: { helperText: "helperText", infoText: "infoText", invalidText: "invalidText", label: "label", showTextAsTooltip: "showTextAsTooltip", validText: "validText", value: "value", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2000
- IxRadioGroup = __decorate([
2001
- ProxyCmp({
2002
- inputs: ['helperText', 'infoText', 'invalidText', 'label', 'showTextAsTooltip', 'validText', 'value', 'warningText']
2003
- })
2004
- ], IxRadioGroup);
2005
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxRadioGroup, decorators: [{
2006
- type: Component,
2007
- args: [{
2008
- selector: 'ix-radio-group',
2009
- changeDetection: ChangeDetectionStrategy.OnPush,
2010
- template: '<ng-content></ng-content>',
2011
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2012
- inputs: ['helperText', 'infoText', 'invalidText', 'label', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
2013
- }]
2014
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2015
1864
  let IxRow = class IxRow {
2016
1865
  constructor(c, r, z) {
2017
1866
  this.z = z;
@@ -2039,15 +1888,14 @@ let IxSelect = class IxSelect {
2039
1888
  this.z = z;
2040
1889
  c.detach();
2041
1890
  this.el = r.nativeElement;
2042
- proxyOutputs(this, this.el, ['valueChange', 'itemSelectionChange', 'inputChange', 'addItem', 'ixBlur']);
1891
+ proxyOutputs(this, this.el, ['valueChange', 'itemSelectionChange', 'inputChange', 'addItem']);
2043
1892
  }
2044
1893
  };
2045
1894
  /** @nocollapse */ IxSelect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2046
- /** @nocollapse */ IxSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxSelect, selector: "ix-select", inputs: { allowClear: "allowClear", disabled: "disabled", editable: "editable", helperText: "helperText", hideListHeader: "hideListHeader", i18nNoMatches: "i18nNoMatches", i18nPlaceholder: "i18nPlaceholder", i18nPlaceholderEditable: "i18nPlaceholderEditable", i18nSelectListHeader: "i18nSelectListHeader", infoText: "infoText", invalidText: "invalidText", label: "label", mode: "mode", name: "name", readonly: "readonly", required: "required", selectedIndices: "selectedIndices", showTextAsTooltip: "showTextAsTooltip", validText: "validText", value: "value", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1895
+ /** @nocollapse */ IxSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxSelect, selector: "ix-select", inputs: { allowClear: "allowClear", disabled: "disabled", editable: "editable", hideListHeader: "hideListHeader", i18nNoMatches: "i18nNoMatches", i18nPlaceholder: "i18nPlaceholder", i18nPlaceholderEditable: "i18nPlaceholderEditable", i18nSelectListHeader: "i18nSelectListHeader", mode: "mode", readonly: "readonly", selectedIndices: "selectedIndices", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2047
1896
  IxSelect = __decorate([
2048
1897
  ProxyCmp({
2049
- inputs: ['allowClear', 'disabled', 'editable', 'helperText', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'infoText', 'invalidText', 'label', 'mode', 'name', 'readonly', 'required', 'selectedIndices', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
2050
- methods: ['getNativeInputElement']
1898
+ inputs: ['allowClear', 'disabled', 'editable', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'mode', 'readonly', 'selectedIndices', 'value']
2051
1899
  })
2052
1900
  ], IxSelect);
2053
1901
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSelect, decorators: [{
@@ -2057,7 +1905,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
2057
1905
  changeDetection: ChangeDetectionStrategy.OnPush,
2058
1906
  template: '<ng-content></ng-content>',
2059
1907
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2060
- inputs: ['allowClear', 'disabled', 'editable', 'helperText', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'infoText', 'invalidText', 'label', 'mode', 'name', 'readonly', 'required', 'selectedIndices', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
1908
+ inputs: ['allowClear', 'disabled', 'editable', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'mode', 'readonly', 'selectedIndices', 'value'],
2061
1909
  }]
2062
1910
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2063
1911
  let IxSelectItem = class IxSelectItem {
@@ -2234,58 +2082,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
2234
2082
  inputs: ['layout', 'placement', 'rounded', 'selected', 'small'],
2235
2083
  }]
2236
2084
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2237
- let IxTextField = class IxTextField {
2238
- constructor(c, r, z) {
2239
- this.z = z;
2240
- c.detach();
2241
- this.el = r.nativeElement;
2242
- proxyOutputs(this, this.el, ['valueChange', 'validityStateChange', 'ixBlur']);
2243
- }
2244
- };
2245
- /** @nocollapse */ IxTextField.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTextField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2246
- /** @nocollapse */ IxTextField.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxTextField, selector: "ix-text-field", inputs: { allowedCharactersPattern: "allowedCharactersPattern", disabled: "disabled", helperText: "helperText", infoText: "infoText", invalidText: "invalidText", label: "label", maxLength: "maxLength", minLength: "minLength", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", showTextAsTooltip: "showTextAsTooltip", type: "type", validText: "validText", value: "value", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2247
- IxTextField = __decorate([
2248
- ProxyCmp({
2249
- inputs: ['allowedCharactersPattern', 'disabled', 'helperText', 'infoText', 'invalidText', 'label', 'maxLength', 'minLength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showTextAsTooltip', 'type', 'validText', 'value', 'warningText'],
2250
- methods: ['getNativeInputElement']
2251
- })
2252
- ], IxTextField);
2253
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTextField, decorators: [{
2254
- type: Component,
2255
- args: [{
2256
- selector: 'ix-text-field',
2257
- changeDetection: ChangeDetectionStrategy.OnPush,
2258
- template: '<ng-content></ng-content>',
2259
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2260
- inputs: ['allowedCharactersPattern', 'disabled', 'helperText', 'infoText', 'invalidText', 'label', 'maxLength', 'minLength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showTextAsTooltip', 'type', 'validText', 'value', 'warningText'],
2261
- }]
2262
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2263
- let IxTextareaField = class IxTextareaField {
2264
- constructor(c, r, z) {
2265
- this.z = z;
2266
- c.detach();
2267
- this.el = r.nativeElement;
2268
- proxyOutputs(this, this.el, ['valueChange', 'validityStateChange', 'ixBlur']);
2269
- }
2270
- };
2271
- /** @nocollapse */ IxTextareaField.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTextareaField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2272
- /** @nocollapse */ IxTextareaField.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxTextareaField, selector: "ix-textarea-field", inputs: { disabled: "disabled", helperText: "helperText", infoText: "infoText", invalidText: "invalidText", label: "label", maxLength: "maxLength", minLength: "minLength", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", resizeBehavior: "resizeBehavior", showTextAsTooltip: "showTextAsTooltip", textareaCols: "textareaCols", textareaHeight: "textareaHeight", textareaRows: "textareaRows", textareaWidth: "textareaWidth", validText: "validText", value: "value", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2273
- IxTextareaField = __decorate([
2274
- ProxyCmp({
2275
- inputs: ['disabled', 'helperText', 'infoText', 'invalidText', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'readonly', 'required', 'resizeBehavior', 'showTextAsTooltip', 'textareaCols', 'textareaHeight', 'textareaRows', 'textareaWidth', 'validText', 'value', 'warningText'],
2276
- methods: ['getNativeInputElement']
2277
- })
2278
- ], IxTextareaField);
2279
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTextareaField, decorators: [{
2280
- type: Component,
2281
- args: [{
2282
- selector: 'ix-textarea-field',
2283
- changeDetection: ChangeDetectionStrategy.OnPush,
2284
- template: '<ng-content></ng-content>',
2285
- // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2286
- inputs: ['disabled', 'helperText', 'infoText', 'invalidText', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'readonly', 'required', 'resizeBehavior', 'showTextAsTooltip', 'textareaCols', 'textareaHeight', 'textareaRows', 'textareaWidth', 'validText', 'value', 'warningText'],
2287
- }]
2288
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2289
2085
  let IxTile = class IxTile {
2290
2086
  constructor(c, r, z) {
2291
2087
  this.z = z;
@@ -2395,10 +2191,10 @@ let IxToggle = class IxToggle {
2395
2191
  }
2396
2192
  };
2397
2193
  /** @nocollapse */ IxToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2398
- /** @nocollapse */ IxToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxToggle, selector: "ix-toggle", inputs: { checked: "checked", disabled: "disabled", hideText: "hideText", indeterminate: "indeterminate", name: "name", required: "required", textIndeterminate: "textIndeterminate", textOff: "textOff", textOn: "textOn", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2194
+ /** @nocollapse */ IxToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxToggle, selector: "ix-toggle", inputs: { checked: "checked", disabled: "disabled", hideText: "hideText", indeterminate: "indeterminate", textIndeterminate: "textIndeterminate", textOff: "textOff", textOn: "textOn" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2399
2195
  IxToggle = __decorate([
2400
2196
  ProxyCmp({
2401
- inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'name', 'required', 'textIndeterminate', 'textOff', 'textOn', 'value']
2197
+ inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'textIndeterminate', 'textOff', 'textOn']
2402
2198
  })
2403
2199
  ], IxToggle);
2404
2200
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxToggle, decorators: [{
@@ -2408,7 +2204,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
2408
2204
  changeDetection: ChangeDetectionStrategy.OnPush,
2409
2205
  template: '<ng-content></ng-content>',
2410
2206
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2411
- inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'name', 'required', 'textIndeterminate', 'textOff', 'textOn', 'value'],
2207
+ inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'textIndeterminate', 'textOff', 'textOn'],
2412
2208
  }]
2413
2209
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2414
2210
  let IxToggleButton = class IxToggleButton {
@@ -2791,172 +2587,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
2791
2587
  * LICENSE file in the root directory of this source tree.
2792
2588
  */
2793
2589
 
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
2590
  /*
2961
2591
  * SPDX-FileCopyrightText: 2024 Siemens AG
2962
2592
  *
@@ -2974,8 +2604,8 @@ const appInitialize = (doc) => {
2974
2604
  return;
2975
2605
  }
2976
2606
  didInitialize = true;
2977
- await defineCustomElements();
2978
- defineCustomElements$1();
2607
+ defineCustomElements();
2608
+ await defineCustomElements$1();
2979
2609
  }
2980
2610
  };
2981
2611
  };
@@ -2996,15 +2626,11 @@ const DIRECTIVES = [
2996
2626
  IxCardList,
2997
2627
  IxCardTitle,
2998
2628
  IxCategoryFilter,
2999
- IxCheckbox,
3000
- IxCheckboxGroup,
3001
2629
  IxChip,
3002
2630
  IxCol,
3003
2631
  IxContent,
3004
2632
  IxContentHeader,
3005
- IxCustomField,
3006
2633
  IxDateDropdown,
3007
- IxDateField,
3008
2634
  IxDatePicker,
3009
2635
  IxDatetimePicker,
3010
2636
  IxDivider,
@@ -3018,21 +2644,19 @@ const DIRECTIVES = [
3018
2644
  IxEventList,
3019
2645
  IxEventListItem,
3020
2646
  IxExpandingSearch,
3021
- IxFieldLabel,
3022
2647
  IxFilterChip,
3023
2648
  IxFlipTile,
3024
2649
  IxFlipTileContent,
2650
+ IxFormField,
3025
2651
  IxGroup,
3026
2652
  IxGroupContextMenu,
3027
2653
  IxGroupItem,
3028
- IxHelperText,
3029
2654
  IxIconButton,
3030
2655
  IxIconToggleButton,
3031
2656
  IxInputGroup,
3032
2657
  IxKeyValue,
3033
2658
  IxKeyValueList,
3034
2659
  IxKpi,
3035
- IxLayoutForm,
3036
2660
  IxLayoutGrid,
3037
2661
  IxLinkButton,
3038
2662
  IxMapNavigation,
@@ -3053,14 +2677,11 @@ const DIRECTIVES = [
3053
2677
  IxModalExample,
3054
2678
  IxModalFooter,
3055
2679
  IxModalHeader,
3056
- IxNumberField,
3057
2680
  IxPagination,
3058
2681
  IxPane,
3059
2682
  IxPaneLayout,
3060
2683
  IxPill,
3061
2684
  IxPushCard,
3062
- IxRadio,
3063
- IxRadioGroup,
3064
2685
  IxRow,
3065
2686
  IxSelect,
3066
2687
  IxSelectItem,
@@ -3070,8 +2691,6 @@ const DIRECTIVES = [
3070
2691
  IxSplitButtonItem,
3071
2692
  IxTabItem,
3072
2693
  IxTabs,
3073
- IxTextField,
3074
- IxTextareaField,
3075
2694
  IxTile,
3076
2695
  IxTimePicker,
3077
2696
  IxToast,
@@ -3087,6 +2706,37 @@ const DIRECTIVES = [
3087
2706
  IxWorkflowSteps
3088
2707
  ];
3089
2708
 
2709
+ class SelectValueAccessor extends ValueAccessor {
2710
+ constructor(el) {
2711
+ super(el);
2712
+ }
2713
+ }
2714
+ /** @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 });
2715
+ /** @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: [
2716
+ {
2717
+ provide: NG_VALUE_ACCESSOR,
2718
+ useExisting: SelectValueAccessor,
2719
+ multi: true
2720
+ }
2721
+ ], usesInheritance: true, ngImport: i0 });
2722
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SelectValueAccessor, decorators: [{
2723
+ type: Directive,
2724
+ args: [{
2725
+ /* tslint:disable-next-line:directive-selector */
2726
+ selector: 'ix-select[ngModel],ix-select[formControlName],ix-select[formControl]',
2727
+ host: {
2728
+ '(valueChange)': 'handleChangeEvent($event.target.value)'
2729
+ },
2730
+ providers: [
2731
+ {
2732
+ provide: NG_VALUE_ACCESSOR,
2733
+ useExisting: SelectValueAccessor,
2734
+ multi: true
2735
+ }
2736
+ ]
2737
+ }]
2738
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
2739
+
3090
2740
  /*
3091
2741
  * SPDX-FileCopyrightText: 2024 Siemens AG
3092
2742
  *
@@ -3266,189 +2916,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
3266
2916
  * LICENSE file in the root directory of this source tree.
3267
2917
  */
3268
2918
 
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
2919
  /*
3453
2920
  * SPDX-FileCopyrightText: 2024 Siemens AG
3454
2921
  *
@@ -3462,11 +2929,8 @@ const DECLARATIONS = [
3462
2929
  IxTree,
3463
2930
  IxDropdownTriggerDirective,
3464
2931
  IxIcon,
3465
- TextValueAccessorDirective,
3466
- SelectValueAccessorDirective,
3467
- RadioValueAccessorDirective,
3468
- BooleanValueAccessorDirective,
3469
- DateValueAccessorDirective,
2932
+ SelectValueAccessor,
2933
+ BooleanValueAccessor
3470
2934
  ];
3471
2935
  class IxModule {
3472
2936
  static forRoot() {
@@ -3487,19 +2951,13 @@ class IxModule {
3487
2951
  }
3488
2952
  }
3489
2953
  /** @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,
2954
+ /** @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
2955
  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,
2956
+ SelectValueAccessor,
2957
+ 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
2958
  IxIcon,
3498
- TextValueAccessorDirective,
3499
- SelectValueAccessorDirective,
3500
- RadioValueAccessorDirective,
3501
- BooleanValueAccessorDirective,
3502
- DateValueAccessorDirective] });
2959
+ SelectValueAccessor,
2960
+ BooleanValueAccessor] });
3503
2961
  /** @nocollapse */ IxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule });
3504
2962
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule, decorators: [{
3505
2963
  type: NgModule,
@@ -3522,5 +2980,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImpor
3522
2980
  * Generated bundle index. Do not edit.
3523
2981
  */
3524
2982
 
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 };
2983
+ 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
2984
  //# sourceMappingURL=siemens-ix-angular.mjs.map