@siemens/ix-angular 3.1.0 → 3.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (121) hide show
  1. package/READMEOSS.html +10 -61
  2. package/angular-component-lib/utils.d.ts +9 -0
  3. package/common/directives/control-value-accessors/boolean-value-accessor.d.ts +10 -0
  4. package/common/directives/control-value-accessors/date-value-accessor.d.ts +9 -0
  5. package/common/directives/control-value-accessors/index.d.ts +5 -0
  6. package/common/directives/control-value-accessors/radio-value-accessor.d.ts +14 -0
  7. package/common/directives/control-value-accessors/select-value-accessor.d.ts +9 -0
  8. package/common/directives/control-value-accessors/text-value-accessor.d.ts +9 -0
  9. package/common/directives/control-value-accessors/value-accessor.d.ts +30 -0
  10. package/common/directives/dropdown-trigger.d.ts +10 -0
  11. package/common/directives/tree.d.ts +26 -0
  12. package/common/index.d.ts +6 -0
  13. package/common/providers/modal/index.d.ts +3 -0
  14. package/common/providers/modal/modal-ref.d.ts +21 -0
  15. package/common/providers/modal/modal.config.d.ts +6 -0
  16. package/common/providers/modal/modal.service.d.ts +20 -0
  17. package/common/providers/toast/index.d.ts +2 -0
  18. package/common/providers/toast/toast.config.d.ts +6 -0
  19. package/common/providers/toast/toast.service.d.ts +9 -0
  20. package/common/utils/create-value-accessor-provider.d.ts +2 -0
  21. package/components.d.ts +1374 -0
  22. package/declare-components.d.ts +2 -0
  23. package/directives/control-value-accessors/boolean-value-accessor.d.ts +8 -0
  24. package/directives/control-value-accessors/date-value-accessor.d.ts +8 -0
  25. package/directives/control-value-accessors/index.d.ts +5 -0
  26. package/directives/control-value-accessors/radio-value-accessor.d.ts +8 -0
  27. package/directives/control-value-accessors/select-value-accessor.d.ts +8 -0
  28. package/directives/control-value-accessors/text-value-accessor.d.ts +8 -0
  29. package/directives/dropdown-trigger.d.ts +10 -0
  30. package/esm2022/angular-component-lib/utils.mjs +59 -0
  31. package/esm2022/common/directives/control-value-accessors/boolean-value-accessor.mjs +32 -0
  32. package/esm2022/common/directives/control-value-accessors/date-value-accessor.mjs +28 -0
  33. package/esm2022/common/directives/control-value-accessors/index.mjs +14 -0
  34. package/esm2022/common/directives/control-value-accessors/radio-value-accessor.mjs +50 -0
  35. package/esm2022/common/directives/control-value-accessors/select-value-accessor.mjs +28 -0
  36. package/esm2022/common/directives/control-value-accessors/text-value-accessor.mjs +31 -0
  37. package/esm2022/common/directives/control-value-accessors/value-accessor.mjs +157 -0
  38. package/esm2022/common/directives/dropdown-trigger.mjs +28 -0
  39. package/esm2022/common/directives/tree.mjs +70 -0
  40. package/esm2022/common/index.mjs +15 -0
  41. package/esm2022/common/providers/modal/index.mjs +11 -0
  42. package/esm2022/common/providers/modal/modal-ref.mjs +41 -0
  43. package/esm2022/common/providers/modal/modal.config.mjs +10 -0
  44. package/esm2022/common/providers/modal/modal.service.mjs +90 -0
  45. package/esm2022/common/providers/toast/index.mjs +11 -0
  46. package/esm2022/common/providers/toast/toast.config.mjs +10 -0
  47. package/esm2022/common/providers/toast/toast.service.mjs +67 -0
  48. package/esm2022/common/siemens-ix-angular-common.mjs +5 -0
  49. package/esm2022/common/utils/create-value-accessor-provider.mjs +17 -0
  50. package/esm2022/components.mjs +2865 -0
  51. package/esm2022/declare-components.mjs +108 -0
  52. package/esm2022/directives/control-value-accessors/boolean-value-accessor.mjs +26 -0
  53. package/esm2022/directives/control-value-accessors/date-value-accessor.mjs +26 -0
  54. package/esm2022/directives/control-value-accessors/index.mjs +14 -0
  55. package/esm2022/directives/control-value-accessors/radio-value-accessor.mjs +26 -0
  56. package/esm2022/directives/control-value-accessors/select-value-accessor.mjs +26 -0
  57. package/esm2022/directives/control-value-accessors/text-value-accessor.mjs +26 -0
  58. package/esm2022/directives/dropdown-trigger.mjs +31 -0
  59. package/esm2022/index.mjs +19 -0
  60. package/esm2022/ix-icon.mjs +40 -0
  61. package/esm2022/module.mjs +78 -0
  62. package/esm2022/providers/modal/index.mjs +11 -0
  63. package/esm2022/providers/modal/modal.service.mjs +28 -0
  64. package/esm2022/providers/theme/index.mjs +10 -0
  65. package/esm2022/providers/theme/theme.service.mjs +40 -0
  66. package/esm2022/providers/toast/index.mjs +2 -0
  67. package/esm2022/providers/toast/toast.service.mjs +34 -0
  68. package/esm2022/siemens-ix-angular.mjs +5 -0
  69. package/esm2022/standalone/angular-component-lib/utils.mjs +59 -0
  70. package/esm2022/standalone/components.mjs +3188 -0
  71. package/esm2022/standalone/directives/control-value-accessors/boolean-value-accessor.mjs +30 -0
  72. package/esm2022/standalone/directives/control-value-accessors/date-value-accessor.mjs +30 -0
  73. package/esm2022/standalone/directives/control-value-accessors/index.mjs +14 -0
  74. package/esm2022/standalone/directives/control-value-accessors/radio-value-accessor.mjs +30 -0
  75. package/esm2022/standalone/directives/control-value-accessors/select-value-accessor.mjs +30 -0
  76. package/esm2022/standalone/directives/control-value-accessors/text-value-accessor.mjs +30 -0
  77. package/esm2022/standalone/directives/dropdown-trigger.mjs +32 -0
  78. package/esm2022/standalone/index.mjs +18 -0
  79. package/esm2022/standalone/internal-components.mjs +25 -0
  80. package/esm2022/standalone/ix-icon.mjs +44 -0
  81. package/esm2022/standalone/providers/modal.mjs +28 -0
  82. package/esm2022/standalone/providers/toast.mjs +35 -0
  83. package/esm2022/standalone/siemens-ix-angular-standalone.mjs +5 -0
  84. package/esm2022/standalone/tree.mjs +41 -0
  85. package/esm2022/standalone/utils/value-accessor-directives.mjs +23 -0
  86. package/esm2022/tree.mjs +39 -0
  87. package/esm2022/utils/app-initialize.mjs +25 -0
  88. package/fesm2022/siemens-ix-angular-common.mjs +664 -0
  89. package/fesm2022/siemens-ix-angular-common.mjs.map +1 -0
  90. package/fesm2022/siemens-ix-angular-standalone.mjs +3483 -0
  91. package/fesm2022/siemens-ix-angular-standalone.mjs.map +1 -0
  92. package/fesm2022/siemens-ix-angular.mjs +3345 -0
  93. package/fesm2022/siemens-ix-angular.mjs.map +1 -0
  94. package/index.d.ts +10 -0
  95. package/ix-icon.d.ts +12 -0
  96. package/module.d.ts +17 -0
  97. package/package.json +2 -7
  98. package/providers/modal/index.d.ts +2 -0
  99. package/providers/modal/modal.service.d.ts +15 -0
  100. package/providers/theme/index.d.ts +1 -0
  101. package/providers/theme/theme.service.d.ts +15 -0
  102. package/providers/toast/index.d.ts +2 -0
  103. package/providers/toast/toast.service.d.ts +11 -0
  104. package/standalone/angular-component-lib/utils.d.ts +9 -0
  105. package/standalone/components.d.ts +1374 -0
  106. package/standalone/directives/control-value-accessors/boolean-value-accessor.d.ts +11 -0
  107. package/standalone/directives/control-value-accessors/date-value-accessor.d.ts +11 -0
  108. package/standalone/directives/control-value-accessors/index.d.ts +5 -0
  109. package/standalone/directives/control-value-accessors/radio-value-accessor.d.ts +11 -0
  110. package/standalone/directives/control-value-accessors/select-value-accessor.d.ts +11 -0
  111. package/standalone/directives/control-value-accessors/text-value-accessor.d.ts +11 -0
  112. package/standalone/directives/dropdown-trigger.d.ts +10 -0
  113. package/standalone/index.d.ts +9 -0
  114. package/standalone/internal-components.d.ts +1 -0
  115. package/standalone/ix-icon.d.ts +9 -0
  116. package/standalone/providers/modal.d.ts +11 -0
  117. package/standalone/providers/toast.d.ts +11 -0
  118. package/standalone/tree.d.ts +9 -0
  119. package/standalone/utils/value-accessor-directives.d.ts +16 -0
  120. package/tree.d.ts +9 -0
  121. package/utils/app-initialize.d.ts +1 -0
@@ -0,0 +1,3345 @@
1
+ import { themeSwitcher } from '@siemens/ix';
2
+ export * from '@siemens/ix';
3
+ import { __decorate } from 'tslib';
4
+ import * as i0 from '@angular/core';
5
+ import { ChangeDetectionStrategy, Component, Injectable, EventEmitter, Output, Directive, Input, NgZone, APP_INITIALIZER, NgModule } from '@angular/core';
6
+ import { fromEvent } from 'rxjs';
7
+ import { TreeBaseDirective, ModalService as ModalService$1, ToastService as ToastService$1, BooleanValueAccessorBaseDirective, createValueAccessorProvider, RadioValueAccessorBaseDirective, SelectValueAccessorBaseDirective, TextValueAccessorBaseDirective, DateValueAccessorBaseDirective, DropdownTriggerBaseDirective } from '@siemens/ix-angular/common';
8
+ export { IxActiveModal } from '@siemens/ix-angular/common';
9
+ import { DOCUMENT } from '@angular/common';
10
+ import { defineCustomElements } from '@siemens/ix-icons/loader';
11
+ import { defineCustomElements as defineCustomElements$1 } from '@siemens/ix/loader';
12
+
13
+ /* eslint-disable */
14
+ /* tslint:disable */
15
+ const proxyInputs = (Cmp, inputs) => {
16
+ const Prototype = Cmp.prototype;
17
+ inputs.forEach((item) => {
18
+ Object.defineProperty(Prototype, item, {
19
+ get() {
20
+ return this.el[item];
21
+ },
22
+ set(val) {
23
+ this.z.runOutsideAngular(() => (this.el[item] = val));
24
+ },
25
+ /**
26
+ * In the event that proxyInputs is called
27
+ * multiple times re-defining these inputs
28
+ * will cause an error to be thrown. As a result
29
+ * we set configurable: true to indicate these
30
+ * properties can be changed.
31
+ */
32
+ configurable: true,
33
+ });
34
+ });
35
+ };
36
+ const proxyMethods = (Cmp, methods) => {
37
+ const Prototype = Cmp.prototype;
38
+ methods.forEach((methodName) => {
39
+ Prototype[methodName] = function () {
40
+ const args = arguments;
41
+ return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
42
+ };
43
+ });
44
+ };
45
+ const proxyOutputs = (instance, el, events) => {
46
+ events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));
47
+ };
48
+ const defineCustomElement = (tagName, customElement) => {
49
+ if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
50
+ customElements.define(tagName, customElement);
51
+ }
52
+ };
53
+ // tslint:disable-next-line: only-arrow-functions
54
+ function ProxyCmp(opts) {
55
+ const decorator = function (cls) {
56
+ const { defineCustomElementFn, inputs, methods } = opts;
57
+ if (defineCustomElementFn !== undefined) {
58
+ defineCustomElementFn();
59
+ }
60
+ if (inputs) {
61
+ proxyInputs(cls, inputs);
62
+ }
63
+ if (methods) {
64
+ proxyMethods(cls, methods);
65
+ }
66
+ return cls;
67
+ };
68
+ return decorator;
69
+ }
70
+
71
+ let IxActionCard = class IxActionCard {
72
+ z;
73
+ el;
74
+ constructor(c, r, z) {
75
+ this.z = z;
76
+ c.detach();
77
+ this.el = r.nativeElement;
78
+ }
79
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxActionCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
80
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxActionCard, selector: "ix-action-card", inputs: { ariaLabelCard: "ariaLabelCard", ariaLabelIcon: "ariaLabelIcon", heading: "heading", icon: "icon", selected: "selected", subheading: "subheading", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
81
+ };
82
+ IxActionCard = __decorate([
83
+ ProxyCmp({
84
+ inputs: ['ariaLabelCard', 'ariaLabelIcon', 'heading', 'icon', 'selected', 'subheading', 'variant']
85
+ })
86
+ ], IxActionCard);
87
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxActionCard, decorators: [{
88
+ type: Component,
89
+ args: [{
90
+ selector: 'ix-action-card',
91
+ changeDetection: ChangeDetectionStrategy.OnPush,
92
+ template: '<ng-content></ng-content>',
93
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
94
+ inputs: ['ariaLabelCard', 'ariaLabelIcon', 'heading', 'icon', 'selected', 'subheading', 'variant'],
95
+ }]
96
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
97
+ let IxApplication = class IxApplication {
98
+ z;
99
+ el;
100
+ constructor(c, r, z) {
101
+ this.z = z;
102
+ c.detach();
103
+ this.el = r.nativeElement;
104
+ }
105
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxApplication, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
106
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxApplication, selector: "ix-application", inputs: { appSwitchConfig: "appSwitchConfig", breakpoints: "breakpoints", forceBreakpoint: "forceBreakpoint", theme: "theme", themeSystemAppearance: "themeSystemAppearance" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
107
+ };
108
+ IxApplication = __decorate([
109
+ ProxyCmp({
110
+ inputs: ['appSwitchConfig', 'breakpoints', 'forceBreakpoint', 'theme', 'themeSystemAppearance']
111
+ })
112
+ ], IxApplication);
113
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxApplication, decorators: [{
114
+ type: Component,
115
+ args: [{
116
+ selector: 'ix-application',
117
+ changeDetection: ChangeDetectionStrategy.OnPush,
118
+ template: '<ng-content></ng-content>',
119
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
120
+ inputs: ['appSwitchConfig', 'breakpoints', 'forceBreakpoint', 'theme', 'themeSystemAppearance'],
121
+ }]
122
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
123
+ let IxApplicationHeader = class IxApplicationHeader {
124
+ z;
125
+ el;
126
+ constructor(c, r, z) {
127
+ this.z = z;
128
+ c.detach();
129
+ this.el = r.nativeElement;
130
+ proxyOutputs(this, this.el, ['menuToggle', 'openAppSwitch']);
131
+ }
132
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxApplicationHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
133
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxApplicationHeader, selector: "ix-application-header", inputs: { ariaLabelAppSwitchIconButton: "ariaLabelAppSwitchIconButton", ariaLabelMenuExpandIconButton: "ariaLabelMenuExpandIconButton", ariaLabelMoreMenuIconButton: "ariaLabelMoreMenuIconButton", name: "name", showMenu: "showMenu" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
134
+ };
135
+ IxApplicationHeader = __decorate([
136
+ ProxyCmp({
137
+ inputs: ['ariaLabelAppSwitchIconButton', 'ariaLabelMenuExpandIconButton', 'ariaLabelMoreMenuIconButton', 'name', 'showMenu']
138
+ })
139
+ ], IxApplicationHeader);
140
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxApplicationHeader, decorators: [{
141
+ type: Component,
142
+ args: [{
143
+ selector: 'ix-application-header',
144
+ changeDetection: ChangeDetectionStrategy.OnPush,
145
+ template: '<ng-content></ng-content>',
146
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
147
+ inputs: ['ariaLabelAppSwitchIconButton', 'ariaLabelMenuExpandIconButton', 'ariaLabelMoreMenuIconButton', 'name', 'showMenu'],
148
+ }]
149
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
150
+ let IxAvatar = class IxAvatar {
151
+ z;
152
+ el;
153
+ constructor(c, r, z) {
154
+ this.z = z;
155
+ c.detach();
156
+ this.el = r.nativeElement;
157
+ }
158
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
159
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxAvatar, selector: "ix-avatar", inputs: { a11yLabel: "a11yLabel", extra: "extra", image: "image", initials: "initials", username: "username" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
160
+ };
161
+ IxAvatar = __decorate([
162
+ ProxyCmp({
163
+ inputs: ['a11yLabel', 'extra', 'image', 'initials', 'username']
164
+ })
165
+ ], IxAvatar);
166
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxAvatar, decorators: [{
167
+ type: Component,
168
+ args: [{
169
+ selector: 'ix-avatar',
170
+ changeDetection: ChangeDetectionStrategy.OnPush,
171
+ template: '<ng-content></ng-content>',
172
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
173
+ inputs: ['a11yLabel', 'extra', 'image', 'initials', 'username'],
174
+ }]
175
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
176
+ let IxBasicNavigation = class IxBasicNavigation {
177
+ z;
178
+ el;
179
+ constructor(c, r, z) {
180
+ this.z = z;
181
+ c.detach();
182
+ this.el = r.nativeElement;
183
+ }
184
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxBasicNavigation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
185
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxBasicNavigation, selector: "ix-basic-navigation", inputs: { applicationName: "applicationName", breakpoints: "breakpoints", forceBreakpoint: "forceBreakpoint", hideHeader: "hideHeader" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
186
+ };
187
+ IxBasicNavigation = __decorate([
188
+ ProxyCmp({
189
+ inputs: ['applicationName', 'breakpoints', 'forceBreakpoint', 'hideHeader']
190
+ })
191
+ ], IxBasicNavigation);
192
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxBasicNavigation, decorators: [{
193
+ type: Component,
194
+ args: [{
195
+ selector: 'ix-basic-navigation',
196
+ changeDetection: ChangeDetectionStrategy.OnPush,
197
+ template: '<ng-content></ng-content>',
198
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
199
+ inputs: ['applicationName', 'breakpoints', 'forceBreakpoint', 'hideHeader'],
200
+ }]
201
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
202
+ let IxBlind = class IxBlind {
203
+ z;
204
+ el;
205
+ constructor(c, r, z) {
206
+ this.z = z;
207
+ c.detach();
208
+ this.el = r.nativeElement;
209
+ proxyOutputs(this, this.el, ['collapsedChange']);
210
+ }
211
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxBlind, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
212
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxBlind, selector: "ix-blind", inputs: { collapsed: "collapsed", icon: "icon", label: "label", sublabel: "sublabel", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
213
+ };
214
+ IxBlind = __decorate([
215
+ ProxyCmp({
216
+ inputs: ['collapsed', 'icon', 'label', 'sublabel', 'variant']
217
+ })
218
+ ], IxBlind);
219
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxBlind, decorators: [{
220
+ type: Component,
221
+ args: [{
222
+ selector: 'ix-blind',
223
+ changeDetection: ChangeDetectionStrategy.OnPush,
224
+ template: '<ng-content></ng-content>',
225
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
226
+ inputs: ['collapsed', 'icon', 'label', 'sublabel', 'variant'],
227
+ }]
228
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
229
+ let IxBreadcrumb = class IxBreadcrumb {
230
+ z;
231
+ el;
232
+ constructor(c, r, z) {
233
+ this.z = z;
234
+ c.detach();
235
+ this.el = r.nativeElement;
236
+ proxyOutputs(this, this.el, ['itemClick', 'nextClick']);
237
+ }
238
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
239
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxBreadcrumb, selector: "ix-breadcrumb", inputs: { ariaLabelPreviousButton: "ariaLabelPreviousButton", ghost: "ghost", nextItems: "nextItems", visibleItemCount: "visibleItemCount" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
240
+ };
241
+ IxBreadcrumb = __decorate([
242
+ ProxyCmp({
243
+ inputs: ['ariaLabelPreviousButton', 'ghost', 'nextItems', 'visibleItemCount']
244
+ })
245
+ ], IxBreadcrumb);
246
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxBreadcrumb, decorators: [{
247
+ type: Component,
248
+ args: [{
249
+ selector: 'ix-breadcrumb',
250
+ changeDetection: ChangeDetectionStrategy.OnPush,
251
+ template: '<ng-content></ng-content>',
252
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
253
+ inputs: ['ariaLabelPreviousButton', 'ghost', 'nextItems', 'visibleItemCount'],
254
+ }]
255
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
256
+ let IxBreadcrumbItem = class IxBreadcrumbItem {
257
+ z;
258
+ el;
259
+ constructor(c, r, z) {
260
+ this.z = z;
261
+ c.detach();
262
+ this.el = r.nativeElement;
263
+ }
264
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxBreadcrumbItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
265
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxBreadcrumbItem, selector: "ix-breadcrumb-item", inputs: { ariaLabelButton: "ariaLabelButton", icon: "icon", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
266
+ };
267
+ IxBreadcrumbItem = __decorate([
268
+ ProxyCmp({
269
+ inputs: ['ariaLabelButton', 'icon', 'label']
270
+ })
271
+ ], IxBreadcrumbItem);
272
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxBreadcrumbItem, decorators: [{
273
+ type: Component,
274
+ args: [{
275
+ selector: 'ix-breadcrumb-item',
276
+ changeDetection: ChangeDetectionStrategy.OnPush,
277
+ template: '<ng-content></ng-content>',
278
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
279
+ inputs: ['ariaLabelButton', 'icon', 'label'],
280
+ }]
281
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
282
+ let IxButton = class IxButton {
283
+ z;
284
+ el;
285
+ constructor(c, r, z) {
286
+ this.z = z;
287
+ c.detach();
288
+ this.el = r.nativeElement;
289
+ }
290
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
291
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxButton, selector: "ix-button", inputs: { ariaLabelButton: "ariaLabelButton", disabled: "disabled", form: "form", ghost: "ghost", icon: "icon", loading: "loading", outline: "outline", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
292
+ };
293
+ IxButton = __decorate([
294
+ ProxyCmp({
295
+ inputs: ['ariaLabelButton', 'disabled', 'form', 'ghost', 'icon', 'loading', 'outline', 'type', 'variant']
296
+ })
297
+ ], IxButton);
298
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxButton, decorators: [{
299
+ type: Component,
300
+ args: [{
301
+ selector: 'ix-button',
302
+ changeDetection: ChangeDetectionStrategy.OnPush,
303
+ template: '<ng-content></ng-content>',
304
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
305
+ inputs: ['ariaLabelButton', 'disabled', 'form', 'ghost', 'icon', 'loading', 'outline', 'type', 'variant'],
306
+ }]
307
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
308
+ let IxCard = class IxCard {
309
+ z;
310
+ el;
311
+ constructor(c, r, z) {
312
+ this.z = z;
313
+ c.detach();
314
+ this.el = r.nativeElement;
315
+ }
316
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
317
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxCard, selector: "ix-card", inputs: { selected: "selected", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
318
+ };
319
+ IxCard = __decorate([
320
+ ProxyCmp({
321
+ inputs: ['selected', 'variant']
322
+ })
323
+ ], IxCard);
324
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCard, decorators: [{
325
+ type: Component,
326
+ args: [{
327
+ selector: 'ix-card',
328
+ changeDetection: ChangeDetectionStrategy.OnPush,
329
+ template: '<ng-content></ng-content>',
330
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
331
+ inputs: ['selected', 'variant'],
332
+ }]
333
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
334
+ let IxCardAccordion = class IxCardAccordion {
335
+ z;
336
+ el;
337
+ constructor(c, r, z) {
338
+ this.z = z;
339
+ c.detach();
340
+ this.el = r.nativeElement;
341
+ }
342
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCardAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
343
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxCardAccordion, selector: "ix-card-accordion", inputs: { ariaLabelExpandButton: "ariaLabelExpandButton", collapse: "collapse" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
344
+ };
345
+ IxCardAccordion = __decorate([
346
+ ProxyCmp({
347
+ inputs: ['ariaLabelExpandButton', 'collapse']
348
+ })
349
+ ], IxCardAccordion);
350
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCardAccordion, decorators: [{
351
+ type: Component,
352
+ args: [{
353
+ selector: 'ix-card-accordion',
354
+ changeDetection: ChangeDetectionStrategy.OnPush,
355
+ template: '<ng-content></ng-content>',
356
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
357
+ inputs: ['ariaLabelExpandButton', 'collapse'],
358
+ }]
359
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
360
+ let IxCardContent = class IxCardContent {
361
+ z;
362
+ el;
363
+ constructor(c, r, z) {
364
+ this.z = z;
365
+ c.detach();
366
+ this.el = r.nativeElement;
367
+ }
368
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCardContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
369
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxCardContent, selector: "ix-card-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
370
+ };
371
+ IxCardContent = __decorate([
372
+ ProxyCmp({})
373
+ ], IxCardContent);
374
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCardContent, decorators: [{
375
+ type: Component,
376
+ args: [{
377
+ selector: 'ix-card-content',
378
+ changeDetection: ChangeDetectionStrategy.OnPush,
379
+ template: '<ng-content></ng-content>',
380
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
381
+ inputs: [],
382
+ }]
383
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
384
+ let IxCardList = class IxCardList {
385
+ z;
386
+ el;
387
+ constructor(c, r, z) {
388
+ this.z = z;
389
+ c.detach();
390
+ this.el = r.nativeElement;
391
+ proxyOutputs(this, this.el, ['collapseChanged', 'showAllClick', 'showMoreCardClick']);
392
+ }
393
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCardList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
394
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxCardList, selector: "ix-card-list", inputs: { ariaLabelExpandButton: "ariaLabelExpandButton", collapse: "collapse", hideShowAll: "hideShowAll", i18nMoreCards: "i18nMoreCards", i18nShowAll: "i18nShowAll", label: "label", listStyle: "listStyle", showAllCount: "showAllCount", suppressOverflowHandling: "suppressOverflowHandling" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
395
+ };
396
+ IxCardList = __decorate([
397
+ ProxyCmp({
398
+ inputs: ['ariaLabelExpandButton', 'collapse', 'hideShowAll', 'i18nMoreCards', 'i18nShowAll', 'label', 'listStyle', 'showAllCount', 'suppressOverflowHandling']
399
+ })
400
+ ], IxCardList);
401
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCardList, decorators: [{
402
+ type: Component,
403
+ args: [{
404
+ selector: 'ix-card-list',
405
+ changeDetection: ChangeDetectionStrategy.OnPush,
406
+ template: '<ng-content></ng-content>',
407
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
408
+ inputs: ['ariaLabelExpandButton', 'collapse', 'hideShowAll', 'i18nMoreCards', 'i18nShowAll', 'label', 'listStyle', 'showAllCount', 'suppressOverflowHandling'],
409
+ }]
410
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
411
+ let IxCardTitle = class IxCardTitle {
412
+ z;
413
+ el;
414
+ constructor(c, r, z) {
415
+ this.z = z;
416
+ c.detach();
417
+ this.el = r.nativeElement;
418
+ }
419
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCardTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
420
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxCardTitle, selector: "ix-card-title", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
421
+ };
422
+ IxCardTitle = __decorate([
423
+ ProxyCmp({})
424
+ ], IxCardTitle);
425
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCardTitle, decorators: [{
426
+ type: Component,
427
+ args: [{
428
+ selector: 'ix-card-title',
429
+ changeDetection: ChangeDetectionStrategy.OnPush,
430
+ template: '<ng-content></ng-content>',
431
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
432
+ inputs: [],
433
+ }]
434
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
435
+ let IxCategoryFilter = class IxCategoryFilter {
436
+ z;
437
+ el;
438
+ constructor(c, r, z) {
439
+ this.z = z;
440
+ c.detach();
441
+ this.el = r.nativeElement;
442
+ proxyOutputs(this, this.el, ['categoryChanged', 'inputChanged', 'filterChanged', 'filterCleared']);
443
+ }
444
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCategoryFilter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
445
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxCategoryFilter, selector: "ix-category-filter", inputs: { ariaLabelFilterInput: "ariaLabelFilterInput", ariaLabelOperatorButton: "ariaLabelOperatorButton", ariaLabelResetButton: "ariaLabelResetButton", categories: "categories", disabled: "disabled", filterState: "filterState", hideIcon: "hideIcon", i18nPlainText: "i18nPlainText", icon: "icon", labelCategories: "labelCategories", nonSelectableCategories: "nonSelectableCategories", placeholder: "placeholder", readonly: "readonly", repeatCategories: "repeatCategories", staticOperator: "staticOperator", suggestions: "suggestions" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
446
+ };
447
+ IxCategoryFilter = __decorate([
448
+ ProxyCmp({
449
+ inputs: ['ariaLabelFilterInput', 'ariaLabelOperatorButton', 'ariaLabelResetButton', 'categories', 'disabled', 'filterState', 'hideIcon', 'i18nPlainText', 'icon', 'labelCategories', 'nonSelectableCategories', 'placeholder', 'readonly', 'repeatCategories', 'staticOperator', 'suggestions']
450
+ })
451
+ ], IxCategoryFilter);
452
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCategoryFilter, decorators: [{
453
+ type: Component,
454
+ args: [{
455
+ selector: 'ix-category-filter',
456
+ changeDetection: ChangeDetectionStrategy.OnPush,
457
+ template: '<ng-content></ng-content>',
458
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
459
+ inputs: ['ariaLabelFilterInput', 'ariaLabelOperatorButton', 'ariaLabelResetButton', 'categories', 'disabled', 'filterState', 'hideIcon', 'i18nPlainText', 'icon', 'labelCategories', 'nonSelectableCategories', 'placeholder', 'readonly', 'repeatCategories', 'staticOperator', 'suggestions'],
460
+ }]
461
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
462
+ let IxCheckbox = class IxCheckbox {
463
+ z;
464
+ el;
465
+ constructor(c, r, z) {
466
+ this.z = z;
467
+ c.detach();
468
+ this.el = r.nativeElement;
469
+ proxyOutputs(this, this.el, ['checkedChange', 'valueChange', 'ixBlur']);
470
+ }
471
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
472
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 });
473
+ };
474
+ IxCheckbox = __decorate([
475
+ ProxyCmp({
476
+ inputs: ['checked', 'disabled', 'indeterminate', 'label', 'name', 'required', 'value']
477
+ })
478
+ ], IxCheckbox);
479
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCheckbox, decorators: [{
480
+ type: Component,
481
+ args: [{
482
+ selector: 'ix-checkbox',
483
+ changeDetection: ChangeDetectionStrategy.OnPush,
484
+ template: '<ng-content></ng-content>',
485
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
486
+ inputs: ['checked', 'disabled', 'indeterminate', 'label', 'name', 'required', 'value'],
487
+ }]
488
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
489
+ let IxCheckboxGroup = class IxCheckboxGroup {
490
+ z;
491
+ el;
492
+ constructor(c, r, z) {
493
+ this.z = z;
494
+ c.detach();
495
+ this.el = r.nativeElement;
496
+ }
497
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCheckboxGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
498
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxCheckboxGroup, selector: "ix-checkbox-group", inputs: { direction: "direction", helperText: "helperText", infoText: "infoText", invalidText: "invalidText", label: "label", showTextAsTooltip: "showTextAsTooltip", validText: "validText", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
499
+ };
500
+ IxCheckboxGroup = __decorate([
501
+ ProxyCmp({
502
+ inputs: ['direction', 'helperText', 'infoText', 'invalidText', 'label', 'showTextAsTooltip', 'validText', 'warningText']
503
+ })
504
+ ], IxCheckboxGroup);
505
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCheckboxGroup, decorators: [{
506
+ type: Component,
507
+ args: [{
508
+ selector: 'ix-checkbox-group',
509
+ changeDetection: ChangeDetectionStrategy.OnPush,
510
+ template: '<ng-content></ng-content>',
511
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
512
+ inputs: ['direction', 'helperText', 'infoText', 'invalidText', 'label', 'showTextAsTooltip', 'validText', 'warningText'],
513
+ }]
514
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
515
+ let IxChip = class IxChip {
516
+ z;
517
+ el;
518
+ constructor(c, r, z) {
519
+ this.z = z;
520
+ c.detach();
521
+ this.el = r.nativeElement;
522
+ proxyOutputs(this, this.el, ['closeChip']);
523
+ }
524
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
525
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxChip, selector: "ix-chip", inputs: { active: "active", ariaLabelCloseButton: "ariaLabelCloseButton", background: "background", centerContent: "centerContent", chipColor: "chipColor", closable: "closable", icon: "icon", outline: "outline", tooltipText: "tooltipText", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
526
+ };
527
+ IxChip = __decorate([
528
+ ProxyCmp({
529
+ inputs: ['active', 'ariaLabelCloseButton', 'background', 'centerContent', 'chipColor', 'closable', 'icon', 'outline', 'tooltipText', 'variant']
530
+ })
531
+ ], IxChip);
532
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxChip, decorators: [{
533
+ type: Component,
534
+ args: [{
535
+ selector: 'ix-chip',
536
+ changeDetection: ChangeDetectionStrategy.OnPush,
537
+ template: '<ng-content></ng-content>',
538
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
539
+ inputs: ['active', 'ariaLabelCloseButton', 'background', 'centerContent', 'chipColor', 'closable', 'icon', 'outline', 'tooltipText', 'variant'],
540
+ }]
541
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
542
+ let IxCol = class IxCol {
543
+ z;
544
+ el;
545
+ constructor(c, r, z) {
546
+ this.z = z;
547
+ c.detach();
548
+ this.el = r.nativeElement;
549
+ }
550
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCol, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
551
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxCol, selector: "ix-col", inputs: { size: "size", sizeLg: "sizeLg", sizeMd: "sizeMd", sizeSm: "sizeSm" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
552
+ };
553
+ IxCol = __decorate([
554
+ ProxyCmp({
555
+ inputs: ['size', 'sizeLg', 'sizeMd', 'sizeSm']
556
+ })
557
+ ], IxCol);
558
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCol, decorators: [{
559
+ type: Component,
560
+ args: [{
561
+ selector: 'ix-col',
562
+ changeDetection: ChangeDetectionStrategy.OnPush,
563
+ template: '<ng-content></ng-content>',
564
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
565
+ inputs: ['size', 'sizeLg', 'sizeMd', 'sizeSm'],
566
+ }]
567
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
568
+ let IxContent = class IxContent {
569
+ z;
570
+ el;
571
+ constructor(c, r, z) {
572
+ this.z = z;
573
+ c.detach();
574
+ this.el = r.nativeElement;
575
+ }
576
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
577
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxContent, selector: "ix-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
578
+ };
579
+ IxContent = __decorate([
580
+ ProxyCmp({})
581
+ ], IxContent);
582
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxContent, decorators: [{
583
+ type: Component,
584
+ args: [{
585
+ selector: 'ix-content',
586
+ changeDetection: ChangeDetectionStrategy.OnPush,
587
+ template: '<ng-content></ng-content>',
588
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
589
+ inputs: [],
590
+ }]
591
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
592
+ let IxContentHeader = class IxContentHeader {
593
+ z;
594
+ el;
595
+ constructor(c, r, z) {
596
+ this.z = z;
597
+ c.detach();
598
+ this.el = r.nativeElement;
599
+ proxyOutputs(this, this.el, ['backButtonClick']);
600
+ }
601
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxContentHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
602
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxContentHeader, selector: "ix-content-header", inputs: { hasBackButton: "hasBackButton", headerSubtitle: "headerSubtitle", headerTitle: "headerTitle", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
603
+ };
604
+ IxContentHeader = __decorate([
605
+ ProxyCmp({
606
+ inputs: ['hasBackButton', 'headerSubtitle', 'headerTitle', 'variant']
607
+ })
608
+ ], IxContentHeader);
609
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxContentHeader, decorators: [{
610
+ type: Component,
611
+ args: [{
612
+ selector: 'ix-content-header',
613
+ changeDetection: ChangeDetectionStrategy.OnPush,
614
+ template: '<ng-content></ng-content>',
615
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
616
+ inputs: ['hasBackButton', 'headerSubtitle', 'headerTitle', 'variant'],
617
+ }]
618
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
619
+ let IxCustomField = class IxCustomField {
620
+ z;
621
+ el;
622
+ constructor(c, r, z) {
623
+ this.z = z;
624
+ c.detach();
625
+ this.el = r.nativeElement;
626
+ }
627
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCustomField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
628
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 });
629
+ };
630
+ IxCustomField = __decorate([
631
+ ProxyCmp({
632
+ inputs: ['helperText', 'infoText', 'invalidText', 'label', 'required', 'showTextAsTooltip', 'validText', 'warningText']
633
+ })
634
+ ], IxCustomField);
635
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxCustomField, decorators: [{
636
+ type: Component,
637
+ args: [{
638
+ selector: 'ix-custom-field',
639
+ changeDetection: ChangeDetectionStrategy.OnPush,
640
+ template: '<ng-content></ng-content>',
641
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
642
+ inputs: ['helperText', 'infoText', 'invalidText', 'label', 'required', 'showTextAsTooltip', 'validText', 'warningText'],
643
+ }]
644
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
645
+ let IxDateDropdown = class IxDateDropdown {
646
+ z;
647
+ el;
648
+ constructor(c, r, z) {
649
+ this.z = z;
650
+ c.detach();
651
+ this.el = r.nativeElement;
652
+ proxyOutputs(this, this.el, ['dateRangeChange']);
653
+ }
654
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDateDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
655
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxDateDropdown, selector: "ix-date-dropdown", inputs: { ariaLabelDropdownButton: "ariaLabelDropdownButton", customRangeAllowed: "customRangeAllowed", dateRangeId: "dateRangeId", dateRangeOptions: "dateRangeOptions", disabled: "disabled", format: "format", from: "from", ghost: "ghost", i18nCustomItem: "i18nCustomItem", i18nDone: "i18nDone", i18nNoRange: "i18nNoRange", loading: "loading", locale: "locale", maxDate: "maxDate", minDate: "minDate", outline: "outline", range: "range", showWeekNumbers: "showWeekNumbers", to: "to", variant: "variant", weekStartIndex: "weekStartIndex" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
656
+ };
657
+ IxDateDropdown = __decorate([
658
+ ProxyCmp({
659
+ inputs: ['ariaLabelDropdownButton', 'customRangeAllowed', 'dateRangeId', 'dateRangeOptions', 'disabled', 'format', 'from', 'ghost', 'i18nCustomItem', 'i18nDone', 'i18nNoRange', 'loading', 'locale', 'maxDate', 'minDate', 'outline', 'range', 'showWeekNumbers', 'to', 'variant', 'weekStartIndex'],
660
+ methods: ['getDateRange']
661
+ })
662
+ ], IxDateDropdown);
663
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDateDropdown, decorators: [{
664
+ type: Component,
665
+ args: [{
666
+ selector: 'ix-date-dropdown',
667
+ changeDetection: ChangeDetectionStrategy.OnPush,
668
+ template: '<ng-content></ng-content>',
669
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
670
+ inputs: ['ariaLabelDropdownButton', 'customRangeAllowed', 'dateRangeId', 'dateRangeOptions', 'disabled', 'format', 'from', 'ghost', 'i18nCustomItem', 'i18nDone', 'i18nNoRange', 'loading', 'locale', 'maxDate', 'minDate', 'outline', 'range', 'showWeekNumbers', 'to', 'variant', 'weekStartIndex'],
671
+ }]
672
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
673
+ let IxDateInput = class IxDateInput {
674
+ z;
675
+ el;
676
+ constructor(c, r, z) {
677
+ this.z = z;
678
+ c.detach();
679
+ this.el = r.nativeElement;
680
+ proxyOutputs(this, this.el, ['valueChange', 'validityStateChange']);
681
+ }
682
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDateInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
683
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxDateInput, selector: "ix-date-input", inputs: { ariaLabelCalendarButton: "ariaLabelCalendarButton", ariaLabelNextMonthButton: "ariaLabelNextMonthButton", ariaLabelPreviousMonthButton: "ariaLabelPreviousMonthButton", disabled: "disabled", format: "format", helperText: "helperText", i18nErrorDateUnparsable: "i18nErrorDateUnparsable", infoText: "infoText", invalidText: "invalidText", label: "label", locale: "locale", maxDate: "maxDate", minDate: "minDate", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", showTextAsTooltip: "showTextAsTooltip", showWeekNumbers: "showWeekNumbers", validText: "validText", value: "value", warningText: "warningText", weekStartIndex: "weekStartIndex" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
684
+ };
685
+ IxDateInput = __decorate([
686
+ ProxyCmp({
687
+ inputs: ['ariaLabelCalendarButton', 'ariaLabelNextMonthButton', 'ariaLabelPreviousMonthButton', 'disabled', 'format', 'helperText', 'i18nErrorDateUnparsable', 'infoText', 'invalidText', 'label', 'locale', 'maxDate', 'minDate', 'name', 'placeholder', 'readonly', 'required', 'showTextAsTooltip', 'showWeekNumbers', 'validText', 'value', 'warningText', 'weekStartIndex'],
688
+ methods: ['getNativeInputElement', 'focusInput']
689
+ })
690
+ ], IxDateInput);
691
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDateInput, decorators: [{
692
+ type: Component,
693
+ args: [{
694
+ selector: 'ix-date-input',
695
+ changeDetection: ChangeDetectionStrategy.OnPush,
696
+ template: '<ng-content></ng-content>',
697
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
698
+ inputs: ['ariaLabelCalendarButton', 'ariaLabelNextMonthButton', 'ariaLabelPreviousMonthButton', 'disabled', 'format', 'helperText', 'i18nErrorDateUnparsable', 'infoText', 'invalidText', 'label', 'locale', 'maxDate', 'minDate', 'name', 'placeholder', 'readonly', 'required', 'showTextAsTooltip', 'showWeekNumbers', 'validText', 'value', 'warningText', 'weekStartIndex'],
699
+ }]
700
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
701
+ let IxDatePicker = class IxDatePicker {
702
+ z;
703
+ el;
704
+ constructor(c, r, z) {
705
+ this.z = z;
706
+ c.detach();
707
+ this.el = r.nativeElement;
708
+ proxyOutputs(this, this.el, ['dateChange', 'dateRangeChange', 'dateSelect']);
709
+ }
710
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDatePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
711
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxDatePicker, selector: "ix-date-picker", inputs: { ariaLabelNextMonthButton: "ariaLabelNextMonthButton", ariaLabelPreviousMonthButton: "ariaLabelPreviousMonthButton", corners: "corners", format: "format", from: "from", i18nDone: "i18nDone", locale: "locale", maxDate: "maxDate", minDate: "minDate", range: "range", showWeekNumbers: "showWeekNumbers", to: "to", weekStartIndex: "weekStartIndex" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
712
+ };
713
+ IxDatePicker = __decorate([
714
+ ProxyCmp({
715
+ inputs: ['ariaLabelNextMonthButton', 'ariaLabelPreviousMonthButton', 'corners', 'format', 'from', 'i18nDone', 'locale', 'maxDate', 'minDate', 'range', 'showWeekNumbers', 'to', 'weekStartIndex'],
716
+ methods: ['getCurrentDate']
717
+ })
718
+ ], IxDatePicker);
719
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDatePicker, decorators: [{
720
+ type: Component,
721
+ args: [{
722
+ selector: 'ix-date-picker',
723
+ changeDetection: ChangeDetectionStrategy.OnPush,
724
+ template: '<ng-content></ng-content>',
725
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
726
+ inputs: ['ariaLabelNextMonthButton', 'ariaLabelPreviousMonthButton', 'corners', 'format', 'from', 'i18nDone', 'locale', 'maxDate', 'minDate', 'range', 'showWeekNumbers', 'to', 'weekStartIndex'],
727
+ }]
728
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
729
+ let IxDatetimePicker = class IxDatetimePicker {
730
+ z;
731
+ el;
732
+ constructor(c, r, z) {
733
+ this.z = z;
734
+ c.detach();
735
+ this.el = r.nativeElement;
736
+ proxyOutputs(this, this.el, ['timeChange', 'dateChange', 'dateSelect']);
737
+ }
738
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDatetimePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
739
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxDatetimePicker, selector: "ix-datetime-picker", inputs: { ariaLabelNextMonthButton: "ariaLabelNextMonthButton", ariaLabelPreviousMonthButton: "ariaLabelPreviousMonthButton", dateFormat: "dateFormat", from: "from", i18nDone: "i18nDone", i18nTime: "i18nTime", locale: "locale", maxDate: "maxDate", minDate: "minDate", range: "range", showHour: "showHour", showMinutes: "showMinutes", showSeconds: "showSeconds", showTimeReference: "showTimeReference", showWeekNumbers: "showWeekNumbers", time: "time", timeFormat: "timeFormat", timeReference: "timeReference", to: "to", weekStartIndex: "weekStartIndex" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
740
+ };
741
+ IxDatetimePicker = __decorate([
742
+ ProxyCmp({
743
+ inputs: ['ariaLabelNextMonthButton', 'ariaLabelPreviousMonthButton', 'dateFormat', 'from', 'i18nDone', 'i18nTime', 'locale', 'maxDate', 'minDate', 'range', 'showHour', 'showMinutes', 'showSeconds', 'showTimeReference', 'showWeekNumbers', 'time', 'timeFormat', 'timeReference', 'to', 'weekStartIndex']
744
+ })
745
+ ], IxDatetimePicker);
746
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDatetimePicker, decorators: [{
747
+ type: Component,
748
+ args: [{
749
+ selector: 'ix-datetime-picker',
750
+ changeDetection: ChangeDetectionStrategy.OnPush,
751
+ template: '<ng-content></ng-content>',
752
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
753
+ inputs: ['ariaLabelNextMonthButton', 'ariaLabelPreviousMonthButton', 'dateFormat', 'from', 'i18nDone', 'i18nTime', 'locale', 'maxDate', 'minDate', 'range', 'showHour', 'showMinutes', 'showSeconds', 'showTimeReference', 'showWeekNumbers', 'time', 'timeFormat', 'timeReference', 'to', 'weekStartIndex'],
754
+ }]
755
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
756
+ let IxDivider = class IxDivider {
757
+ z;
758
+ el;
759
+ constructor(c, r, z) {
760
+ this.z = z;
761
+ c.detach();
762
+ this.el = r.nativeElement;
763
+ }
764
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
765
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxDivider, selector: "ix-divider", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
766
+ };
767
+ IxDivider = __decorate([
768
+ ProxyCmp({})
769
+ ], IxDivider);
770
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDivider, decorators: [{
771
+ type: Component,
772
+ args: [{
773
+ selector: 'ix-divider',
774
+ changeDetection: ChangeDetectionStrategy.OnPush,
775
+ template: '<ng-content></ng-content>',
776
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
777
+ inputs: [],
778
+ }]
779
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
780
+ let IxDrawer = class IxDrawer {
781
+ z;
782
+ el;
783
+ constructor(c, r, z) {
784
+ this.z = z;
785
+ c.detach();
786
+ this.el = r.nativeElement;
787
+ proxyOutputs(this, this.el, ['open', 'drawerClose']);
788
+ }
789
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDrawer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
790
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxDrawer, selector: "ix-drawer", inputs: { ariaLabelCloseButton: "ariaLabelCloseButton", closeOnClickOutside: "closeOnClickOutside", fullHeight: "fullHeight", maxWidth: "maxWidth", minWidth: "minWidth", show: "show", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
791
+ };
792
+ IxDrawer = __decorate([
793
+ ProxyCmp({
794
+ inputs: ['ariaLabelCloseButton', 'closeOnClickOutside', 'fullHeight', 'maxWidth', 'minWidth', 'show', 'width'],
795
+ methods: ['toggleDrawer']
796
+ })
797
+ ], IxDrawer);
798
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDrawer, decorators: [{
799
+ type: Component,
800
+ args: [{
801
+ selector: 'ix-drawer',
802
+ changeDetection: ChangeDetectionStrategy.OnPush,
803
+ template: '<ng-content></ng-content>',
804
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
805
+ inputs: ['ariaLabelCloseButton', 'closeOnClickOutside', 'fullHeight', 'maxWidth', 'minWidth', 'show', 'width'],
806
+ }]
807
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
808
+ let IxDropdown = class IxDropdown {
809
+ z;
810
+ el;
811
+ constructor(c, r, z) {
812
+ this.z = z;
813
+ c.detach();
814
+ this.el = r.nativeElement;
815
+ proxyOutputs(this, this.el, ['showChanged']);
816
+ }
817
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
818
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxDropdown, selector: "ix-dropdown", inputs: { anchor: "anchor", closeBehavior: "closeBehavior", header: "header", placement: "placement", positioningStrategy: "positioningStrategy", show: "show", suppressAutomaticPlacement: "suppressAutomaticPlacement", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
819
+ };
820
+ IxDropdown = __decorate([
821
+ ProxyCmp({
822
+ inputs: ['anchor', 'closeBehavior', 'header', 'placement', 'positioningStrategy', 'show', 'suppressAutomaticPlacement', 'trigger'],
823
+ methods: ['updatePosition']
824
+ })
825
+ ], IxDropdown);
826
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDropdown, decorators: [{
827
+ type: Component,
828
+ args: [{
829
+ selector: 'ix-dropdown',
830
+ changeDetection: ChangeDetectionStrategy.OnPush,
831
+ template: '<ng-content></ng-content>',
832
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
833
+ inputs: ['anchor', 'closeBehavior', 'header', 'placement', 'positioningStrategy', 'show', 'suppressAutomaticPlacement', 'trigger'],
834
+ }]
835
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
836
+ let IxDropdownButton = class IxDropdownButton {
837
+ z;
838
+ el;
839
+ constructor(c, r, z) {
840
+ this.z = z;
841
+ c.detach();
842
+ this.el = r.nativeElement;
843
+ }
844
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDropdownButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
845
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxDropdownButton, selector: "ix-dropdown-button", inputs: { ariaLabelDropdownButton: "ariaLabelDropdownButton", closeBehavior: "closeBehavior", disabled: "disabled", ghost: "ghost", icon: "icon", label: "label", outline: "outline", placement: "placement", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
846
+ };
847
+ IxDropdownButton = __decorate([
848
+ ProxyCmp({
849
+ inputs: ['ariaLabelDropdownButton', 'closeBehavior', 'disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'variant']
850
+ })
851
+ ], IxDropdownButton);
852
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDropdownButton, decorators: [{
853
+ type: Component,
854
+ args: [{
855
+ selector: 'ix-dropdown-button',
856
+ changeDetection: ChangeDetectionStrategy.OnPush,
857
+ template: '<ng-content></ng-content>',
858
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
859
+ inputs: ['ariaLabelDropdownButton', 'closeBehavior', 'disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'variant'],
860
+ }]
861
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
862
+ let IxDropdownHeader = class IxDropdownHeader {
863
+ z;
864
+ el;
865
+ constructor(c, r, z) {
866
+ this.z = z;
867
+ c.detach();
868
+ this.el = r.nativeElement;
869
+ }
870
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDropdownHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
871
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxDropdownHeader, selector: "ix-dropdown-header", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
872
+ };
873
+ IxDropdownHeader = __decorate([
874
+ ProxyCmp({
875
+ inputs: ['label']
876
+ })
877
+ ], IxDropdownHeader);
878
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDropdownHeader, decorators: [{
879
+ type: Component,
880
+ args: [{
881
+ selector: 'ix-dropdown-header',
882
+ changeDetection: ChangeDetectionStrategy.OnPush,
883
+ template: '<ng-content></ng-content>',
884
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
885
+ inputs: ['label'],
886
+ }]
887
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
888
+ let IxDropdownItem = class IxDropdownItem {
889
+ z;
890
+ el;
891
+ constructor(c, r, z) {
892
+ this.z = z;
893
+ c.detach();
894
+ this.el = r.nativeElement;
895
+ }
896
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDropdownItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
897
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxDropdownItem, selector: "ix-dropdown-item", inputs: { ariaLabelButton: "ariaLabelButton", ariaLabelIcon: "ariaLabelIcon", checked: "checked", disabled: "disabled", hover: "hover", icon: "icon", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
898
+ };
899
+ IxDropdownItem = __decorate([
900
+ ProxyCmp({
901
+ inputs: ['ariaLabelButton', 'ariaLabelIcon', 'checked', 'disabled', 'hover', 'icon', 'label']
902
+ })
903
+ ], IxDropdownItem);
904
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDropdownItem, decorators: [{
905
+ type: Component,
906
+ args: [{
907
+ selector: 'ix-dropdown-item',
908
+ changeDetection: ChangeDetectionStrategy.OnPush,
909
+ template: '<ng-content></ng-content>',
910
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
911
+ inputs: ['ariaLabelButton', 'ariaLabelIcon', 'checked', 'disabled', 'hover', 'icon', 'label'],
912
+ }]
913
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
914
+ let IxDropdownQuickActions = class IxDropdownQuickActions {
915
+ z;
916
+ el;
917
+ constructor(c, r, z) {
918
+ this.z = z;
919
+ c.detach();
920
+ this.el = r.nativeElement;
921
+ }
922
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDropdownQuickActions, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
923
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxDropdownQuickActions, selector: "ix-dropdown-quick-actions", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
924
+ };
925
+ IxDropdownQuickActions = __decorate([
926
+ ProxyCmp({})
927
+ ], IxDropdownQuickActions);
928
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDropdownQuickActions, decorators: [{
929
+ type: Component,
930
+ args: [{
931
+ selector: 'ix-dropdown-quick-actions',
932
+ changeDetection: ChangeDetectionStrategy.OnPush,
933
+ template: '<ng-content></ng-content>',
934
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
935
+ inputs: [],
936
+ }]
937
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
938
+ let IxEmptyState = class IxEmptyState {
939
+ z;
940
+ el;
941
+ constructor(c, r, z) {
942
+ this.z = z;
943
+ c.detach();
944
+ this.el = r.nativeElement;
945
+ proxyOutputs(this, this.el, ['actionClick']);
946
+ }
947
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxEmptyState, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
948
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxEmptyState, selector: "ix-empty-state", inputs: { action: "action", ariaLabelEmptyStateIcon: "ariaLabelEmptyStateIcon", header: "header", icon: "icon", layout: "layout", subHeader: "subHeader" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
949
+ };
950
+ IxEmptyState = __decorate([
951
+ ProxyCmp({
952
+ inputs: ['action', 'ariaLabelEmptyStateIcon', 'header', 'icon', 'layout', 'subHeader']
953
+ })
954
+ ], IxEmptyState);
955
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxEmptyState, decorators: [{
956
+ type: Component,
957
+ args: [{
958
+ selector: 'ix-empty-state',
959
+ changeDetection: ChangeDetectionStrategy.OnPush,
960
+ template: '<ng-content></ng-content>',
961
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
962
+ inputs: ['action', 'ariaLabelEmptyStateIcon', 'header', 'icon', 'layout', 'subHeader'],
963
+ }]
964
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
965
+ let IxEventList = class IxEventList {
966
+ z;
967
+ el;
968
+ constructor(c, r, z) {
969
+ this.z = z;
970
+ c.detach();
971
+ this.el = r.nativeElement;
972
+ }
973
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxEventList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
974
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxEventList, selector: "ix-event-list", inputs: { animated: "animated", chevron: "chevron", compact: "compact", itemHeight: "itemHeight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
975
+ };
976
+ IxEventList = __decorate([
977
+ ProxyCmp({
978
+ inputs: ['animated', 'chevron', 'compact', 'itemHeight']
979
+ })
980
+ ], IxEventList);
981
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxEventList, decorators: [{
982
+ type: Component,
983
+ args: [{
984
+ selector: 'ix-event-list',
985
+ changeDetection: ChangeDetectionStrategy.OnPush,
986
+ template: '<ng-content></ng-content>',
987
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
988
+ inputs: ['animated', 'chevron', 'compact', 'itemHeight'],
989
+ }]
990
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
991
+ let IxEventListItem = class IxEventListItem {
992
+ z;
993
+ el;
994
+ constructor(c, r, z) {
995
+ this.z = z;
996
+ c.detach();
997
+ this.el = r.nativeElement;
998
+ proxyOutputs(this, this.el, ['itemClick']);
999
+ }
1000
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxEventListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1001
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxEventListItem, selector: "ix-event-list-item", inputs: { chevron: "chevron", disabled: "disabled", itemColor: "itemColor", selected: "selected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1002
+ };
1003
+ IxEventListItem = __decorate([
1004
+ ProxyCmp({
1005
+ inputs: ['chevron', 'disabled', 'itemColor', 'selected']
1006
+ })
1007
+ ], IxEventListItem);
1008
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxEventListItem, decorators: [{
1009
+ type: Component,
1010
+ args: [{
1011
+ selector: 'ix-event-list-item',
1012
+ changeDetection: ChangeDetectionStrategy.OnPush,
1013
+ template: '<ng-content></ng-content>',
1014
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1015
+ inputs: ['chevron', 'disabled', 'itemColor', 'selected'],
1016
+ }]
1017
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1018
+ let IxExpandingSearch = class IxExpandingSearch {
1019
+ z;
1020
+ el;
1021
+ constructor(c, r, z) {
1022
+ this.z = z;
1023
+ c.detach();
1024
+ this.el = r.nativeElement;
1025
+ proxyOutputs(this, this.el, ['valueChange']);
1026
+ }
1027
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxExpandingSearch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1028
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxExpandingSearch, selector: "ix-expanding-search", inputs: { ariaLabelClearIconButton: "ariaLabelClearIconButton", ariaLabelSearchIconButton: "ariaLabelSearchIconButton", ariaLabelSearchInput: "ariaLabelSearchInput", fullWidth: "fullWidth", ghost: "ghost", icon: "icon", outline: "outline", placeholder: "placeholder", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1029
+ };
1030
+ IxExpandingSearch = __decorate([
1031
+ ProxyCmp({
1032
+ inputs: ['ariaLabelClearIconButton', 'ariaLabelSearchIconButton', 'ariaLabelSearchInput', 'fullWidth', 'ghost', 'icon', 'outline', 'placeholder', 'value', 'variant']
1033
+ })
1034
+ ], IxExpandingSearch);
1035
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxExpandingSearch, decorators: [{
1036
+ type: Component,
1037
+ args: [{
1038
+ selector: 'ix-expanding-search',
1039
+ changeDetection: ChangeDetectionStrategy.OnPush,
1040
+ template: '<ng-content></ng-content>',
1041
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1042
+ inputs: ['ariaLabelClearIconButton', 'ariaLabelSearchIconButton', 'ariaLabelSearchInput', 'fullWidth', 'ghost', 'icon', 'outline', 'placeholder', 'value', 'variant'],
1043
+ }]
1044
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1045
+ let IxFieldLabel = class IxFieldLabel {
1046
+ z;
1047
+ el;
1048
+ constructor(c, r, z) {
1049
+ this.z = z;
1050
+ c.detach();
1051
+ this.el = r.nativeElement;
1052
+ }
1053
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxFieldLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1054
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxFieldLabel, selector: "ix-field-label", inputs: { htmlFor: "htmlFor", required: "required" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1055
+ };
1056
+ IxFieldLabel = __decorate([
1057
+ ProxyCmp({
1058
+ inputs: ['htmlFor', 'required']
1059
+ })
1060
+ ], IxFieldLabel);
1061
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxFieldLabel, decorators: [{
1062
+ type: Component,
1063
+ args: [{
1064
+ selector: 'ix-field-label',
1065
+ changeDetection: ChangeDetectionStrategy.OnPush,
1066
+ template: '<ng-content></ng-content>',
1067
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1068
+ inputs: ['htmlFor', 'required'],
1069
+ }]
1070
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1071
+ let IxFilterChip = class IxFilterChip {
1072
+ z;
1073
+ el;
1074
+ constructor(c, r, z) {
1075
+ this.z = z;
1076
+ c.detach();
1077
+ this.el = r.nativeElement;
1078
+ proxyOutputs(this, this.el, ['closeClick']);
1079
+ }
1080
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxFilterChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1081
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxFilterChip, selector: "ix-filter-chip", inputs: { ariaLabelCloseIconButton: "ariaLabelCloseIconButton", disabled: "disabled", readonly: "readonly" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1082
+ };
1083
+ IxFilterChip = __decorate([
1084
+ ProxyCmp({
1085
+ inputs: ['ariaLabelCloseIconButton', 'disabled', 'readonly']
1086
+ })
1087
+ ], IxFilterChip);
1088
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxFilterChip, decorators: [{
1089
+ type: Component,
1090
+ args: [{
1091
+ selector: 'ix-filter-chip',
1092
+ changeDetection: ChangeDetectionStrategy.OnPush,
1093
+ template: '<ng-content></ng-content>',
1094
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1095
+ inputs: ['ariaLabelCloseIconButton', 'disabled', 'readonly'],
1096
+ }]
1097
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1098
+ let IxFlipTile = class IxFlipTile {
1099
+ z;
1100
+ el;
1101
+ constructor(c, r, z) {
1102
+ this.z = z;
1103
+ c.detach();
1104
+ this.el = r.nativeElement;
1105
+ proxyOutputs(this, this.el, ['toggle']);
1106
+ }
1107
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxFlipTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1108
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxFlipTile, selector: "ix-flip-tile", inputs: { ariaLabelEyeIconButton: "ariaLabelEyeIconButton", height: "height", index: "index", state: "state", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1109
+ };
1110
+ IxFlipTile = __decorate([
1111
+ ProxyCmp({
1112
+ inputs: ['ariaLabelEyeIconButton', 'height', 'index', 'state', 'width']
1113
+ })
1114
+ ], IxFlipTile);
1115
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxFlipTile, decorators: [{
1116
+ type: Component,
1117
+ args: [{
1118
+ selector: 'ix-flip-tile',
1119
+ changeDetection: ChangeDetectionStrategy.OnPush,
1120
+ template: '<ng-content></ng-content>',
1121
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1122
+ inputs: ['ariaLabelEyeIconButton', 'height', 'index', 'state', 'width'],
1123
+ }]
1124
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1125
+ let IxFlipTileContent = class IxFlipTileContent {
1126
+ z;
1127
+ el;
1128
+ constructor(c, r, z) {
1129
+ this.z = z;
1130
+ c.detach();
1131
+ this.el = r.nativeElement;
1132
+ }
1133
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxFlipTileContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1134
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxFlipTileContent, selector: "ix-flip-tile-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1135
+ };
1136
+ IxFlipTileContent = __decorate([
1137
+ ProxyCmp({})
1138
+ ], IxFlipTileContent);
1139
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxFlipTileContent, decorators: [{
1140
+ type: Component,
1141
+ args: [{
1142
+ selector: 'ix-flip-tile-content',
1143
+ changeDetection: ChangeDetectionStrategy.OnPush,
1144
+ template: '<ng-content></ng-content>',
1145
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1146
+ inputs: [],
1147
+ }]
1148
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1149
+ let IxGroup = class IxGroup {
1150
+ z;
1151
+ el;
1152
+ constructor(c, r, z) {
1153
+ this.z = z;
1154
+ c.detach();
1155
+ this.el = r.nativeElement;
1156
+ proxyOutputs(this, this.el, ['selectGroup', 'selectItem', 'collapsedChanged']);
1157
+ }
1158
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1159
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxGroup, selector: "ix-group", inputs: { collapsed: "collapsed", expandOnHeaderClick: "expandOnHeaderClick", header: "header", index: "index", selected: "selected", subHeader: "subHeader", suppressHeaderSelection: "suppressHeaderSelection" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1160
+ };
1161
+ IxGroup = __decorate([
1162
+ ProxyCmp({
1163
+ inputs: ['collapsed', 'expandOnHeaderClick', 'header', 'index', 'selected', 'subHeader', 'suppressHeaderSelection']
1164
+ })
1165
+ ], IxGroup);
1166
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxGroup, decorators: [{
1167
+ type: Component,
1168
+ args: [{
1169
+ selector: 'ix-group',
1170
+ changeDetection: ChangeDetectionStrategy.OnPush,
1171
+ template: '<ng-content></ng-content>',
1172
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1173
+ inputs: ['collapsed', 'expandOnHeaderClick', 'header', 'index', 'selected', 'subHeader', 'suppressHeaderSelection'],
1174
+ }]
1175
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1176
+ let IxGroupContextMenu = class IxGroupContextMenu {
1177
+ z;
1178
+ el;
1179
+ constructor(c, r, z) {
1180
+ this.z = z;
1181
+ c.detach();
1182
+ this.el = r.nativeElement;
1183
+ }
1184
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxGroupContextMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1185
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxGroupContextMenu, selector: "ix-group-context-menu", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1186
+ };
1187
+ IxGroupContextMenu = __decorate([
1188
+ ProxyCmp({})
1189
+ ], IxGroupContextMenu);
1190
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxGroupContextMenu, decorators: [{
1191
+ type: Component,
1192
+ args: [{
1193
+ selector: 'ix-group-context-menu',
1194
+ changeDetection: ChangeDetectionStrategy.OnPush,
1195
+ template: '<ng-content></ng-content>',
1196
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1197
+ inputs: [],
1198
+ }]
1199
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1200
+ let IxGroupItem = class IxGroupItem {
1201
+ z;
1202
+ el;
1203
+ constructor(c, r, z) {
1204
+ this.z = z;
1205
+ c.detach();
1206
+ this.el = r.nativeElement;
1207
+ proxyOutputs(this, this.el, ['selectedChanged']);
1208
+ }
1209
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxGroupItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1210
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxGroupItem, selector: "ix-group-item", inputs: { ariaLabelIcon: "ariaLabelIcon", focusable: "focusable", icon: "icon", index: "index", secondaryText: "secondaryText", selected: "selected", suppressSelection: "suppressSelection", text: "text" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1211
+ };
1212
+ IxGroupItem = __decorate([
1213
+ ProxyCmp({
1214
+ inputs: ['ariaLabelIcon', 'focusable', 'icon', 'index', 'secondaryText', 'selected', 'suppressSelection', 'text']
1215
+ })
1216
+ ], IxGroupItem);
1217
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxGroupItem, decorators: [{
1218
+ type: Component,
1219
+ args: [{
1220
+ selector: 'ix-group-item',
1221
+ changeDetection: ChangeDetectionStrategy.OnPush,
1222
+ template: '<ng-content></ng-content>',
1223
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1224
+ inputs: ['ariaLabelIcon', 'focusable', 'icon', 'index', 'secondaryText', 'selected', 'suppressSelection', 'text'],
1225
+ }]
1226
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1227
+ let IxHelperText = class IxHelperText {
1228
+ z;
1229
+ el;
1230
+ constructor(c, r, z) {
1231
+ this.z = z;
1232
+ c.detach();
1233
+ this.el = r.nativeElement;
1234
+ }
1235
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxHelperText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1236
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 });
1237
+ };
1238
+ IxHelperText = __decorate([
1239
+ ProxyCmp({
1240
+ inputs: ['helperText', 'htmlFor', 'infoText', 'invalidText', 'validText', 'warningText']
1241
+ })
1242
+ ], IxHelperText);
1243
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxHelperText, decorators: [{
1244
+ type: Component,
1245
+ args: [{
1246
+ selector: 'ix-helper-text',
1247
+ changeDetection: ChangeDetectionStrategy.OnPush,
1248
+ template: '<ng-content></ng-content>',
1249
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1250
+ inputs: ['helperText', 'htmlFor', 'infoText', 'invalidText', 'validText', 'warningText'],
1251
+ }]
1252
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1253
+ let IxIconButton = class IxIconButton {
1254
+ z;
1255
+ el;
1256
+ constructor(c, r, z) {
1257
+ this.z = z;
1258
+ c.detach();
1259
+ this.el = r.nativeElement;
1260
+ }
1261
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxIconButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1262
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxIconButton, selector: "ix-icon-button", inputs: { a11yLabel: "a11yLabel", disabled: "disabled", ghost: "ghost", icon: "icon", iconColor: "iconColor", loading: "loading", outline: "outline", oval: "oval", size: "size", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1263
+ };
1264
+ IxIconButton = __decorate([
1265
+ ProxyCmp({
1266
+ inputs: ['a11yLabel', 'disabled', 'ghost', 'icon', 'iconColor', 'loading', 'outline', 'oval', 'size', 'type', 'variant']
1267
+ })
1268
+ ], IxIconButton);
1269
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxIconButton, decorators: [{
1270
+ type: Component,
1271
+ args: [{
1272
+ selector: 'ix-icon-button',
1273
+ changeDetection: ChangeDetectionStrategy.OnPush,
1274
+ template: '<ng-content></ng-content>',
1275
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1276
+ inputs: ['a11yLabel', 'disabled', 'ghost', 'icon', 'iconColor', 'loading', 'outline', 'oval', 'size', 'type', 'variant'],
1277
+ }]
1278
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1279
+ let IxIconToggleButton = class IxIconToggleButton {
1280
+ z;
1281
+ el;
1282
+ constructor(c, r, z) {
1283
+ this.z = z;
1284
+ c.detach();
1285
+ this.el = r.nativeElement;
1286
+ proxyOutputs(this, this.el, ['pressedChange']);
1287
+ }
1288
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxIconToggleButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1289
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxIconToggleButton, selector: "ix-icon-toggle-button", inputs: { ariaLabelIconButton: "ariaLabelIconButton", disabled: "disabled", ghost: "ghost", icon: "icon", loading: "loading", outline: "outline", oval: "oval", pressed: "pressed", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1290
+ };
1291
+ IxIconToggleButton = __decorate([
1292
+ ProxyCmp({
1293
+ inputs: ['ariaLabelIconButton', 'disabled', 'ghost', 'icon', 'loading', 'outline', 'oval', 'pressed', 'size', 'variant']
1294
+ })
1295
+ ], IxIconToggleButton);
1296
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxIconToggleButton, decorators: [{
1297
+ type: Component,
1298
+ args: [{
1299
+ selector: 'ix-icon-toggle-button',
1300
+ changeDetection: ChangeDetectionStrategy.OnPush,
1301
+ template: '<ng-content></ng-content>',
1302
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1303
+ inputs: ['ariaLabelIconButton', 'disabled', 'ghost', 'icon', 'loading', 'outline', 'oval', 'pressed', 'size', 'variant'],
1304
+ }]
1305
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1306
+ let IxInput = class IxInput {
1307
+ z;
1308
+ el;
1309
+ constructor(c, r, z) {
1310
+ this.z = z;
1311
+ c.detach();
1312
+ this.el = r.nativeElement;
1313
+ proxyOutputs(this, this.el, ['valueChange', 'validityStateChange', 'ixBlur']);
1314
+ }
1315
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1316
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxInput, selector: "ix-input", 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 });
1317
+ };
1318
+ IxInput = __decorate([
1319
+ ProxyCmp({
1320
+ inputs: ['allowedCharactersPattern', 'disabled', 'helperText', 'infoText', 'invalidText', 'label', 'maxLength', 'minLength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showTextAsTooltip', 'type', 'validText', 'value', 'warningText'],
1321
+ methods: ['getNativeInputElement', 'getValidityState', 'focusInput']
1322
+ })
1323
+ ], IxInput);
1324
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxInput, decorators: [{
1325
+ type: Component,
1326
+ args: [{
1327
+ selector: 'ix-input',
1328
+ changeDetection: ChangeDetectionStrategy.OnPush,
1329
+ template: '<ng-content></ng-content>',
1330
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1331
+ inputs: ['allowedCharactersPattern', 'disabled', 'helperText', 'infoText', 'invalidText', 'label', 'maxLength', 'minLength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showTextAsTooltip', 'type', 'validText', 'value', 'warningText'],
1332
+ }]
1333
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1334
+ let IxInputGroup = class IxInputGroup {
1335
+ z;
1336
+ el;
1337
+ constructor(c, r, z) {
1338
+ this.z = z;
1339
+ c.detach();
1340
+ this.el = r.nativeElement;
1341
+ }
1342
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxInputGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1343
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxInputGroup, selector: "ix-input-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1344
+ };
1345
+ IxInputGroup = __decorate([
1346
+ ProxyCmp({})
1347
+ ], IxInputGroup);
1348
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxInputGroup, decorators: [{
1349
+ type: Component,
1350
+ args: [{
1351
+ selector: 'ix-input-group',
1352
+ changeDetection: ChangeDetectionStrategy.OnPush,
1353
+ template: '<ng-content></ng-content>',
1354
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1355
+ inputs: [],
1356
+ }]
1357
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1358
+ let IxKeyValue = class IxKeyValue {
1359
+ z;
1360
+ el;
1361
+ constructor(c, r, z) {
1362
+ this.z = z;
1363
+ c.detach();
1364
+ this.el = r.nativeElement;
1365
+ }
1366
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxKeyValue, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1367
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxKeyValue, selector: "ix-key-value", inputs: { ariaLabelIcon: "ariaLabelIcon", icon: "icon", label: "label", labelPosition: "labelPosition", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1368
+ };
1369
+ IxKeyValue = __decorate([
1370
+ ProxyCmp({
1371
+ inputs: ['ariaLabelIcon', 'icon', 'label', 'labelPosition', 'value']
1372
+ })
1373
+ ], IxKeyValue);
1374
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxKeyValue, decorators: [{
1375
+ type: Component,
1376
+ args: [{
1377
+ selector: 'ix-key-value',
1378
+ changeDetection: ChangeDetectionStrategy.OnPush,
1379
+ template: '<ng-content></ng-content>',
1380
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1381
+ inputs: ['ariaLabelIcon', 'icon', 'label', 'labelPosition', 'value'],
1382
+ }]
1383
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1384
+ let IxKeyValueList = class IxKeyValueList {
1385
+ z;
1386
+ el;
1387
+ constructor(c, r, z) {
1388
+ this.z = z;
1389
+ c.detach();
1390
+ this.el = r.nativeElement;
1391
+ }
1392
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxKeyValueList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1393
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxKeyValueList, selector: "ix-key-value-list", inputs: { striped: "striped" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1394
+ };
1395
+ IxKeyValueList = __decorate([
1396
+ ProxyCmp({
1397
+ inputs: ['striped']
1398
+ })
1399
+ ], IxKeyValueList);
1400
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxKeyValueList, decorators: [{
1401
+ type: Component,
1402
+ args: [{
1403
+ selector: 'ix-key-value-list',
1404
+ changeDetection: ChangeDetectionStrategy.OnPush,
1405
+ template: '<ng-content></ng-content>',
1406
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1407
+ inputs: ['striped'],
1408
+ }]
1409
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1410
+ let IxKpi = class IxKpi {
1411
+ z;
1412
+ el;
1413
+ constructor(c, r, z) {
1414
+ this.z = z;
1415
+ c.detach();
1416
+ this.el = r.nativeElement;
1417
+ }
1418
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxKpi, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1419
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxKpi, selector: "ix-kpi", inputs: { ariaLabelAlarmIcon: "ariaLabelAlarmIcon", ariaLabelWarningIcon: "ariaLabelWarningIcon", label: "label", orientation: "orientation", state: "state", unit: "unit", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1420
+ };
1421
+ IxKpi = __decorate([
1422
+ ProxyCmp({
1423
+ inputs: ['ariaLabelAlarmIcon', 'ariaLabelWarningIcon', 'label', 'orientation', 'state', 'unit', 'value']
1424
+ })
1425
+ ], IxKpi);
1426
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxKpi, decorators: [{
1427
+ type: Component,
1428
+ args: [{
1429
+ selector: 'ix-kpi',
1430
+ changeDetection: ChangeDetectionStrategy.OnPush,
1431
+ template: '<ng-content></ng-content>',
1432
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1433
+ inputs: ['ariaLabelAlarmIcon', 'ariaLabelWarningIcon', 'label', 'orientation', 'state', 'unit', 'value'],
1434
+ }]
1435
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1436
+ let IxLayoutAuto = class IxLayoutAuto {
1437
+ z;
1438
+ el;
1439
+ constructor(c, r, z) {
1440
+ this.z = z;
1441
+ c.detach();
1442
+ this.el = r.nativeElement;
1443
+ }
1444
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxLayoutAuto, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1445
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxLayoutAuto, selector: "ix-layout-auto", inputs: { layout: "layout" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1446
+ };
1447
+ IxLayoutAuto = __decorate([
1448
+ ProxyCmp({
1449
+ inputs: ['layout']
1450
+ })
1451
+ ], IxLayoutAuto);
1452
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxLayoutAuto, decorators: [{
1453
+ type: Component,
1454
+ args: [{
1455
+ selector: 'ix-layout-auto',
1456
+ changeDetection: ChangeDetectionStrategy.OnPush,
1457
+ template: '<ng-content></ng-content>',
1458
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1459
+ inputs: ['layout'],
1460
+ }]
1461
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1462
+ let IxLayoutGrid = class IxLayoutGrid {
1463
+ z;
1464
+ el;
1465
+ constructor(c, r, z) {
1466
+ this.z = z;
1467
+ c.detach();
1468
+ this.el = r.nativeElement;
1469
+ }
1470
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxLayoutGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1471
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxLayoutGrid, selector: "ix-layout-grid", inputs: { columns: "columns", gap: "gap", noMargin: "noMargin" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1472
+ };
1473
+ IxLayoutGrid = __decorate([
1474
+ ProxyCmp({
1475
+ inputs: ['columns', 'gap', 'noMargin']
1476
+ })
1477
+ ], IxLayoutGrid);
1478
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxLayoutGrid, decorators: [{
1479
+ type: Component,
1480
+ args: [{
1481
+ selector: 'ix-layout-grid',
1482
+ changeDetection: ChangeDetectionStrategy.OnPush,
1483
+ template: '<ng-content></ng-content>',
1484
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1485
+ inputs: ['columns', 'gap', 'noMargin'],
1486
+ }]
1487
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1488
+ let IxLinkButton = class IxLinkButton {
1489
+ z;
1490
+ el;
1491
+ constructor(c, r, z) {
1492
+ this.z = z;
1493
+ c.detach();
1494
+ this.el = r.nativeElement;
1495
+ }
1496
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxLinkButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1497
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxLinkButton, selector: "ix-link-button", inputs: { disabled: "disabled", target: "target", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1498
+ };
1499
+ IxLinkButton = __decorate([
1500
+ ProxyCmp({
1501
+ inputs: ['disabled', 'target', 'url']
1502
+ })
1503
+ ], IxLinkButton);
1504
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxLinkButton, decorators: [{
1505
+ type: Component,
1506
+ args: [{
1507
+ selector: 'ix-link-button',
1508
+ changeDetection: ChangeDetectionStrategy.OnPush,
1509
+ template: '<ng-content></ng-content>',
1510
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1511
+ inputs: ['disabled', 'target', 'url'],
1512
+ }]
1513
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1514
+ let IxMapNavigation = class IxMapNavigation {
1515
+ z;
1516
+ el;
1517
+ constructor(c, r, z) {
1518
+ this.z = z;
1519
+ c.detach();
1520
+ this.el = r.nativeElement;
1521
+ proxyOutputs(this, this.el, ['navigationToggled', 'contextMenuClick']);
1522
+ }
1523
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMapNavigation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1524
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxMapNavigation, selector: "ix-map-navigation", inputs: { applicationName: "applicationName", ariaLabelContextIconButton: "ariaLabelContextIconButton", hideContextMenu: "hideContextMenu", navigationTitle: "navigationTitle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1525
+ };
1526
+ IxMapNavigation = __decorate([
1527
+ ProxyCmp({
1528
+ inputs: ['applicationName', 'ariaLabelContextIconButton', 'hideContextMenu', 'navigationTitle'],
1529
+ methods: ['toggleSidebar', 'openOverlay', 'closeOverlay']
1530
+ })
1531
+ ], IxMapNavigation);
1532
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMapNavigation, decorators: [{
1533
+ type: Component,
1534
+ args: [{
1535
+ selector: 'ix-map-navigation',
1536
+ changeDetection: ChangeDetectionStrategy.OnPush,
1537
+ template: '<ng-content></ng-content>',
1538
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1539
+ inputs: ['applicationName', 'ariaLabelContextIconButton', 'hideContextMenu', 'navigationTitle'],
1540
+ }]
1541
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1542
+ let IxMapNavigationOverlay = class IxMapNavigationOverlay {
1543
+ z;
1544
+ el;
1545
+ constructor(c, r, z) {
1546
+ this.z = z;
1547
+ c.detach();
1548
+ this.el = r.nativeElement;
1549
+ proxyOutputs(this, this.el, ['closeClick']);
1550
+ }
1551
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMapNavigationOverlay, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1552
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxMapNavigationOverlay, selector: "ix-map-navigation-overlay", inputs: { ariaLabelCloseIconButton: "ariaLabelCloseIconButton", ariaLabelIcon: "ariaLabelIcon", color: "color", icon: "icon", iconColor: "iconColor", name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1553
+ };
1554
+ IxMapNavigationOverlay = __decorate([
1555
+ ProxyCmp({
1556
+ inputs: ['ariaLabelCloseIconButton', 'ariaLabelIcon', 'color', 'icon', 'iconColor', 'name']
1557
+ })
1558
+ ], IxMapNavigationOverlay);
1559
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMapNavigationOverlay, decorators: [{
1560
+ type: Component,
1561
+ args: [{
1562
+ selector: 'ix-map-navigation-overlay',
1563
+ changeDetection: ChangeDetectionStrategy.OnPush,
1564
+ template: '<ng-content></ng-content>',
1565
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1566
+ inputs: ['ariaLabelCloseIconButton', 'ariaLabelIcon', 'color', 'icon', 'iconColor', 'name'],
1567
+ }]
1568
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1569
+ let IxMenu = class IxMenu {
1570
+ z;
1571
+ el;
1572
+ constructor(c, r, z) {
1573
+ this.z = z;
1574
+ c.detach();
1575
+ this.el = r.nativeElement;
1576
+ proxyOutputs(this, this.el, ['expandChange', 'mapExpandChange', 'openAppSwitch', 'openSettings', 'openAbout']);
1577
+ }
1578
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1579
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxMenu, selector: "ix-menu", inputs: { applicationDescription: "applicationDescription", applicationName: "applicationName", enableSettings: "enableSettings", enableToggleTheme: "enableToggleTheme", expand: "expand", i18nCollapse: "i18nCollapse", i18nExpand: "i18nExpand", i18nExpandSidebar: "i18nExpandSidebar", i18nLegal: "i18nLegal", i18nSettings: "i18nSettings", i18nToggleTheme: "i18nToggleTheme", pinned: "pinned", showAbout: "showAbout", showSettings: "showSettings", startExpanded: "startExpanded" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1580
+ };
1581
+ IxMenu = __decorate([
1582
+ ProxyCmp({
1583
+ inputs: ['applicationDescription', 'applicationName', 'enableSettings', 'enableToggleTheme', 'expand', 'i18nCollapse', 'i18nExpand', 'i18nExpandSidebar', 'i18nLegal', 'i18nSettings', 'i18nToggleTheme', 'pinned', 'showAbout', 'showSettings', 'startExpanded'],
1584
+ methods: ['toggleMapExpand', 'toggleMenu', 'toggleSettings', 'toggleAbout']
1585
+ })
1586
+ ], IxMenu);
1587
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenu, decorators: [{
1588
+ type: Component,
1589
+ args: [{
1590
+ selector: 'ix-menu',
1591
+ changeDetection: ChangeDetectionStrategy.OnPush,
1592
+ template: '<ng-content></ng-content>',
1593
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1594
+ inputs: ['applicationDescription', 'applicationName', 'enableSettings', 'enableToggleTheme', 'expand', 'i18nCollapse', 'i18nExpand', 'i18nExpandSidebar', 'i18nLegal', 'i18nSettings', 'i18nToggleTheme', 'pinned', 'showAbout', 'showSettings', 'startExpanded'],
1595
+ }]
1596
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1597
+ let IxMenuAbout = class IxMenuAbout {
1598
+ z;
1599
+ el;
1600
+ constructor(c, r, z) {
1601
+ this.z = z;
1602
+ c.detach();
1603
+ this.el = r.nativeElement;
1604
+ proxyOutputs(this, this.el, ['tabChange', 'close']);
1605
+ }
1606
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuAbout, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1607
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxMenuAbout, selector: "ix-menu-about", inputs: { activeTabLabel: "activeTabLabel", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1608
+ };
1609
+ IxMenuAbout = __decorate([
1610
+ ProxyCmp({
1611
+ inputs: ['activeTabLabel', 'label']
1612
+ })
1613
+ ], IxMenuAbout);
1614
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuAbout, decorators: [{
1615
+ type: Component,
1616
+ args: [{
1617
+ selector: 'ix-menu-about',
1618
+ changeDetection: ChangeDetectionStrategy.OnPush,
1619
+ template: '<ng-content></ng-content>',
1620
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1621
+ inputs: ['activeTabLabel', 'label'],
1622
+ }]
1623
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1624
+ let IxMenuAboutItem = class IxMenuAboutItem {
1625
+ z;
1626
+ el;
1627
+ constructor(c, r, z) {
1628
+ this.z = z;
1629
+ c.detach();
1630
+ this.el = r.nativeElement;
1631
+ proxyOutputs(this, this.el, ['labelChange']);
1632
+ }
1633
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuAboutItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1634
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxMenuAboutItem, selector: "ix-menu-about-item", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1635
+ };
1636
+ IxMenuAboutItem = __decorate([
1637
+ ProxyCmp({
1638
+ inputs: ['label']
1639
+ })
1640
+ ], IxMenuAboutItem);
1641
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuAboutItem, decorators: [{
1642
+ type: Component,
1643
+ args: [{
1644
+ selector: 'ix-menu-about-item',
1645
+ changeDetection: ChangeDetectionStrategy.OnPush,
1646
+ template: '<ng-content></ng-content>',
1647
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1648
+ inputs: ['label'],
1649
+ }]
1650
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1651
+ let IxMenuAboutNews = class IxMenuAboutNews {
1652
+ z;
1653
+ el;
1654
+ constructor(c, r, z) {
1655
+ this.z = z;
1656
+ c.detach();
1657
+ this.el = r.nativeElement;
1658
+ proxyOutputs(this, this.el, ['showMore', 'closePopover']);
1659
+ }
1660
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuAboutNews, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1661
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxMenuAboutNews, selector: "ix-menu-about-news", inputs: { aboutItemLabel: "aboutItemLabel", i18nShowMore: "i18nShowMore", label: "label", offsetBottom: "offsetBottom", show: "show" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1662
+ };
1663
+ IxMenuAboutNews = __decorate([
1664
+ ProxyCmp({
1665
+ inputs: ['aboutItemLabel', 'i18nShowMore', 'label', 'offsetBottom', 'show']
1666
+ })
1667
+ ], IxMenuAboutNews);
1668
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuAboutNews, decorators: [{
1669
+ type: Component,
1670
+ args: [{
1671
+ selector: 'ix-menu-about-news',
1672
+ changeDetection: ChangeDetectionStrategy.OnPush,
1673
+ template: '<ng-content></ng-content>',
1674
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1675
+ inputs: ['aboutItemLabel', 'i18nShowMore', 'label', 'offsetBottom', 'show'],
1676
+ }]
1677
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1678
+ let IxMenuAvatar = class IxMenuAvatar {
1679
+ z;
1680
+ el;
1681
+ constructor(c, r, z) {
1682
+ this.z = z;
1683
+ c.detach();
1684
+ this.el = r.nativeElement;
1685
+ proxyOutputs(this, this.el, ['logoutClick']);
1686
+ }
1687
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1688
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxMenuAvatar, selector: "ix-menu-avatar", inputs: { bottom: "bottom", i18nLogout: "i18nLogout", image: "image", initials: "initials", showLogoutButton: "showLogoutButton", top: "top" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1689
+ };
1690
+ IxMenuAvatar = __decorate([
1691
+ ProxyCmp({
1692
+ inputs: ['bottom', 'i18nLogout', 'image', 'initials', 'showLogoutButton', 'top']
1693
+ })
1694
+ ], IxMenuAvatar);
1695
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuAvatar, decorators: [{
1696
+ type: Component,
1697
+ args: [{
1698
+ selector: 'ix-menu-avatar',
1699
+ changeDetection: ChangeDetectionStrategy.OnPush,
1700
+ template: '<ng-content></ng-content>',
1701
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1702
+ inputs: ['bottom', 'i18nLogout', 'image', 'initials', 'showLogoutButton', 'top'],
1703
+ }]
1704
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1705
+ let IxMenuAvatarItem = class IxMenuAvatarItem {
1706
+ z;
1707
+ el;
1708
+ constructor(c, r, z) {
1709
+ this.z = z;
1710
+ c.detach();
1711
+ this.el = r.nativeElement;
1712
+ proxyOutputs(this, this.el, ['itemClick']);
1713
+ }
1714
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuAvatarItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1715
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxMenuAvatarItem, selector: "ix-menu-avatar-item", inputs: { icon: "icon", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1716
+ };
1717
+ IxMenuAvatarItem = __decorate([
1718
+ ProxyCmp({
1719
+ inputs: ['icon', 'label']
1720
+ })
1721
+ ], IxMenuAvatarItem);
1722
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuAvatarItem, decorators: [{
1723
+ type: Component,
1724
+ args: [{
1725
+ selector: 'ix-menu-avatar-item',
1726
+ changeDetection: ChangeDetectionStrategy.OnPush,
1727
+ template: '<ng-content></ng-content>',
1728
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1729
+ inputs: ['icon', 'label'],
1730
+ }]
1731
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1732
+ let IxMenuCategory = class IxMenuCategory {
1733
+ z;
1734
+ el;
1735
+ constructor(c, r, z) {
1736
+ this.z = z;
1737
+ c.detach();
1738
+ this.el = r.nativeElement;
1739
+ }
1740
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuCategory, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1741
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxMenuCategory, selector: "ix-menu-category", inputs: { icon: "icon", label: "label", notifications: "notifications" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1742
+ };
1743
+ IxMenuCategory = __decorate([
1744
+ ProxyCmp({
1745
+ inputs: ['icon', 'label', 'notifications']
1746
+ })
1747
+ ], IxMenuCategory);
1748
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuCategory, decorators: [{
1749
+ type: Component,
1750
+ args: [{
1751
+ selector: 'ix-menu-category',
1752
+ changeDetection: ChangeDetectionStrategy.OnPush,
1753
+ template: '<ng-content></ng-content>',
1754
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1755
+ inputs: ['icon', 'label', 'notifications'],
1756
+ }]
1757
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1758
+ let IxMenuItem = class IxMenuItem {
1759
+ z;
1760
+ el;
1761
+ constructor(c, r, z) {
1762
+ this.z = z;
1763
+ c.detach();
1764
+ this.el = r.nativeElement;
1765
+ }
1766
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1767
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxMenuItem, selector: "ix-menu-item", inputs: { active: "active", bottom: "bottom", disabled: "disabled", home: "home", icon: "icon", label: "label", notifications: "notifications" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1768
+ };
1769
+ IxMenuItem = __decorate([
1770
+ ProxyCmp({
1771
+ inputs: ['active', 'bottom', 'disabled', 'home', 'icon', 'label', 'notifications']
1772
+ })
1773
+ ], IxMenuItem);
1774
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuItem, decorators: [{
1775
+ type: Component,
1776
+ args: [{
1777
+ selector: 'ix-menu-item',
1778
+ changeDetection: ChangeDetectionStrategy.OnPush,
1779
+ template: '<ng-content></ng-content>',
1780
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1781
+ inputs: ['active', 'bottom', 'disabled', 'home', 'icon', 'label', 'notifications'],
1782
+ }]
1783
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1784
+ let IxMenuSettings = class IxMenuSettings {
1785
+ z;
1786
+ el;
1787
+ constructor(c, r, z) {
1788
+ this.z = z;
1789
+ c.detach();
1790
+ this.el = r.nativeElement;
1791
+ proxyOutputs(this, this.el, ['tabChange', 'close']);
1792
+ }
1793
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuSettings, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1794
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxMenuSettings, selector: "ix-menu-settings", inputs: { activeTabLabel: "activeTabLabel", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1795
+ };
1796
+ IxMenuSettings = __decorate([
1797
+ ProxyCmp({
1798
+ inputs: ['activeTabLabel', 'label']
1799
+ })
1800
+ ], IxMenuSettings);
1801
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuSettings, decorators: [{
1802
+ type: Component,
1803
+ args: [{
1804
+ selector: 'ix-menu-settings',
1805
+ changeDetection: ChangeDetectionStrategy.OnPush,
1806
+ template: '<ng-content></ng-content>',
1807
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1808
+ inputs: ['activeTabLabel', 'label'],
1809
+ }]
1810
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1811
+ let IxMenuSettingsItem = class IxMenuSettingsItem {
1812
+ z;
1813
+ el;
1814
+ constructor(c, r, z) {
1815
+ this.z = z;
1816
+ c.detach();
1817
+ this.el = r.nativeElement;
1818
+ proxyOutputs(this, this.el, ['labelChange']);
1819
+ }
1820
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuSettingsItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1821
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxMenuSettingsItem, selector: "ix-menu-settings-item", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1822
+ };
1823
+ IxMenuSettingsItem = __decorate([
1824
+ ProxyCmp({
1825
+ inputs: ['label']
1826
+ })
1827
+ ], IxMenuSettingsItem);
1828
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMenuSettingsItem, decorators: [{
1829
+ type: Component,
1830
+ args: [{
1831
+ selector: 'ix-menu-settings-item',
1832
+ changeDetection: ChangeDetectionStrategy.OnPush,
1833
+ template: '<ng-content></ng-content>',
1834
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1835
+ inputs: ['label'],
1836
+ }]
1837
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1838
+ let IxMessageBar = class IxMessageBar {
1839
+ z;
1840
+ el;
1841
+ constructor(c, r, z) {
1842
+ this.z = z;
1843
+ c.detach();
1844
+ this.el = r.nativeElement;
1845
+ proxyOutputs(this, this.el, ['closedChange', 'closeAnimationCompleted']);
1846
+ }
1847
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMessageBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1848
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxMessageBar, selector: "ix-message-bar", inputs: { dismissible: "dismissible", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1849
+ };
1850
+ IxMessageBar = __decorate([
1851
+ ProxyCmp({
1852
+ inputs: ['dismissible', 'type']
1853
+ })
1854
+ ], IxMessageBar);
1855
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxMessageBar, decorators: [{
1856
+ type: Component,
1857
+ args: [{
1858
+ selector: 'ix-message-bar',
1859
+ changeDetection: ChangeDetectionStrategy.OnPush,
1860
+ template: '<ng-content></ng-content>',
1861
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1862
+ inputs: ['dismissible', 'type'],
1863
+ }]
1864
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1865
+ let IxModal = class IxModal {
1866
+ z;
1867
+ el;
1868
+ constructor(c, r, z) {
1869
+ this.z = z;
1870
+ c.detach();
1871
+ this.el = r.nativeElement;
1872
+ proxyOutputs(this, this.el, ['dialogClose', 'dialogDismiss']);
1873
+ }
1874
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1875
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxModal, selector: "ix-modal", inputs: { animation: "animation", backdrop: "backdrop", beforeDismiss: "beforeDismiss", centered: "centered", closeOnBackdropClick: "closeOnBackdropClick", closeOnEscape: "closeOnEscape", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1876
+ };
1877
+ IxModal = __decorate([
1878
+ ProxyCmp({
1879
+ inputs: ['animation', 'backdrop', 'beforeDismiss', 'centered', 'closeOnBackdropClick', 'closeOnEscape', 'size'],
1880
+ methods: ['showModal', 'dismissModal', 'closeModal']
1881
+ })
1882
+ ], IxModal);
1883
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxModal, decorators: [{
1884
+ type: Component,
1885
+ args: [{
1886
+ selector: 'ix-modal',
1887
+ changeDetection: ChangeDetectionStrategy.OnPush,
1888
+ template: '<ng-content></ng-content>',
1889
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1890
+ inputs: ['animation', 'backdrop', 'beforeDismiss', 'centered', 'closeOnBackdropClick', 'closeOnEscape', 'size'],
1891
+ }]
1892
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1893
+ let IxModalContent = class IxModalContent {
1894
+ z;
1895
+ el;
1896
+ constructor(c, r, z) {
1897
+ this.z = z;
1898
+ c.detach();
1899
+ this.el = r.nativeElement;
1900
+ }
1901
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxModalContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1902
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxModalContent, selector: "ix-modal-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1903
+ };
1904
+ IxModalContent = __decorate([
1905
+ ProxyCmp({})
1906
+ ], IxModalContent);
1907
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxModalContent, decorators: [{
1908
+ type: Component,
1909
+ args: [{
1910
+ selector: 'ix-modal-content',
1911
+ changeDetection: ChangeDetectionStrategy.OnPush,
1912
+ template: '<ng-content></ng-content>',
1913
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1914
+ inputs: [],
1915
+ }]
1916
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1917
+ let IxModalFooter = class IxModalFooter {
1918
+ z;
1919
+ el;
1920
+ constructor(c, r, z) {
1921
+ this.z = z;
1922
+ c.detach();
1923
+ this.el = r.nativeElement;
1924
+ }
1925
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxModalFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1926
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxModalFooter, selector: "ix-modal-footer", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1927
+ };
1928
+ IxModalFooter = __decorate([
1929
+ ProxyCmp({})
1930
+ ], IxModalFooter);
1931
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxModalFooter, decorators: [{
1932
+ type: Component,
1933
+ args: [{
1934
+ selector: 'ix-modal-footer',
1935
+ changeDetection: ChangeDetectionStrategy.OnPush,
1936
+ template: '<ng-content></ng-content>',
1937
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1938
+ inputs: [],
1939
+ }]
1940
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1941
+ let IxModalHeader = class IxModalHeader {
1942
+ z;
1943
+ el;
1944
+ constructor(c, r, z) {
1945
+ this.z = z;
1946
+ c.detach();
1947
+ this.el = r.nativeElement;
1948
+ proxyOutputs(this, this.el, ['closeClick']);
1949
+ }
1950
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxModalHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1951
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxModalHeader, selector: "ix-modal-header", inputs: { ariaLabelCloseIconButton: "ariaLabelCloseIconButton", ariaLabelIcon: "ariaLabelIcon", hideClose: "hideClose", icon: "icon", iconColor: "iconColor" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1952
+ };
1953
+ IxModalHeader = __decorate([
1954
+ ProxyCmp({
1955
+ inputs: ['ariaLabelCloseIconButton', 'ariaLabelIcon', 'hideClose', 'icon', 'iconColor']
1956
+ })
1957
+ ], IxModalHeader);
1958
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxModalHeader, decorators: [{
1959
+ type: Component,
1960
+ args: [{
1961
+ selector: 'ix-modal-header',
1962
+ changeDetection: ChangeDetectionStrategy.OnPush,
1963
+ template: '<ng-content></ng-content>',
1964
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1965
+ inputs: ['ariaLabelCloseIconButton', 'ariaLabelIcon', 'hideClose', 'icon', 'iconColor'],
1966
+ }]
1967
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1968
+ let IxNumberInput = class IxNumberInput {
1969
+ z;
1970
+ el;
1971
+ constructor(c, r, z) {
1972
+ this.z = z;
1973
+ c.detach();
1974
+ this.el = r.nativeElement;
1975
+ proxyOutputs(this, this.el, ['valueChange', 'validityStateChange', 'ixBlur']);
1976
+ }
1977
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxNumberInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1978
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxNumberInput, selector: "ix-number-input", 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", step: "step", validText: "validText", value: "value", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1979
+ };
1980
+ IxNumberInput = __decorate([
1981
+ ProxyCmp({
1982
+ inputs: ['allowedCharactersPattern', 'disabled', 'helperText', 'infoText', 'invalidText', 'label', 'max', 'min', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showStepperButtons', 'showTextAsTooltip', 'step', 'validText', 'value', 'warningText'],
1983
+ methods: ['getNativeInputElement', 'focusInput']
1984
+ })
1985
+ ], IxNumberInput);
1986
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxNumberInput, decorators: [{
1987
+ type: Component,
1988
+ args: [{
1989
+ selector: 'ix-number-input',
1990
+ changeDetection: ChangeDetectionStrategy.OnPush,
1991
+ template: '<ng-content></ng-content>',
1992
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1993
+ inputs: ['allowedCharactersPattern', 'disabled', 'helperText', 'infoText', 'invalidText', 'label', 'max', 'min', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'showStepperButtons', 'showTextAsTooltip', 'step', 'validText', 'value', 'warningText'],
1994
+ }]
1995
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1996
+ let IxPagination = class IxPagination {
1997
+ z;
1998
+ el;
1999
+ constructor(c, r, z) {
2000
+ this.z = z;
2001
+ c.detach();
2002
+ this.el = r.nativeElement;
2003
+ proxyOutputs(this, this.el, ['pageSelected', 'itemCountChanged']);
2004
+ }
2005
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2006
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxPagination, selector: "ix-pagination", inputs: { advanced: "advanced", ariaLabelChevronLeftIconButton: "ariaLabelChevronLeftIconButton", ariaLabelChevronRightIconButton: "ariaLabelChevronRightIconButton", count: "count", i18nItems: "i18nItems", i18nOf: "i18nOf", i18nPage: "i18nPage", itemCount: "itemCount", selectedPage: "selectedPage", showItemCount: "showItemCount" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2007
+ };
2008
+ IxPagination = __decorate([
2009
+ ProxyCmp({
2010
+ inputs: ['advanced', 'ariaLabelChevronLeftIconButton', 'ariaLabelChevronRightIconButton', 'count', 'i18nItems', 'i18nOf', 'i18nPage', 'itemCount', 'selectedPage', 'showItemCount']
2011
+ })
2012
+ ], IxPagination);
2013
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxPagination, decorators: [{
2014
+ type: Component,
2015
+ args: [{
2016
+ selector: 'ix-pagination',
2017
+ changeDetection: ChangeDetectionStrategy.OnPush,
2018
+ template: '<ng-content></ng-content>',
2019
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2020
+ inputs: ['advanced', 'ariaLabelChevronLeftIconButton', 'ariaLabelChevronRightIconButton', 'count', 'i18nItems', 'i18nOf', 'i18nPage', 'itemCount', 'selectedPage', 'showItemCount'],
2021
+ }]
2022
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2023
+ let IxPane = class IxPane {
2024
+ z;
2025
+ el;
2026
+ constructor(c, r, z) {
2027
+ this.z = z;
2028
+ c.detach();
2029
+ this.el = r.nativeElement;
2030
+ proxyOutputs(this, this.el, ['expandedChanged', 'variantChanged', 'borderlessChanged']);
2031
+ }
2032
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxPane, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2033
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxPane, selector: "ix-pane", inputs: { ariaLabelIcon: "ariaLabelIcon", borderless: "borderless", composition: "composition", expanded: "expanded", heading: "heading", hideOnCollapse: "hideOnCollapse", icon: "icon", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2034
+ };
2035
+ IxPane = __decorate([
2036
+ ProxyCmp({
2037
+ inputs: ['ariaLabelIcon', 'borderless', 'composition', 'expanded', 'heading', 'hideOnCollapse', 'icon', 'size', 'variant']
2038
+ })
2039
+ ], IxPane);
2040
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxPane, decorators: [{
2041
+ type: Component,
2042
+ args: [{
2043
+ selector: 'ix-pane',
2044
+ changeDetection: ChangeDetectionStrategy.OnPush,
2045
+ template: '<ng-content></ng-content>',
2046
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2047
+ inputs: ['ariaLabelIcon', 'borderless', 'composition', 'expanded', 'heading', 'hideOnCollapse', 'icon', 'size', 'variant'],
2048
+ }]
2049
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2050
+ let IxPaneLayout = class IxPaneLayout {
2051
+ z;
2052
+ el;
2053
+ constructor(c, r, z) {
2054
+ this.z = z;
2055
+ c.detach();
2056
+ this.el = r.nativeElement;
2057
+ }
2058
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxPaneLayout, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2059
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxPaneLayout, selector: "ix-pane-layout", inputs: { borderless: "borderless", layout: "layout", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2060
+ };
2061
+ IxPaneLayout = __decorate([
2062
+ ProxyCmp({
2063
+ inputs: ['borderless', 'layout', 'variant']
2064
+ })
2065
+ ], IxPaneLayout);
2066
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxPaneLayout, decorators: [{
2067
+ type: Component,
2068
+ args: [{
2069
+ selector: 'ix-pane-layout',
2070
+ changeDetection: ChangeDetectionStrategy.OnPush,
2071
+ template: '<ng-content></ng-content>',
2072
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2073
+ inputs: ['borderless', 'layout', 'variant'],
2074
+ }]
2075
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2076
+ let IxPill = class IxPill {
2077
+ z;
2078
+ el;
2079
+ constructor(c, r, z) {
2080
+ this.z = z;
2081
+ c.detach();
2082
+ this.el = r.nativeElement;
2083
+ }
2084
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxPill, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2085
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxPill, selector: "ix-pill", inputs: { alignLeft: "alignLeft", ariaLabelIcon: "ariaLabelIcon", background: "background", icon: "icon", outline: "outline", pillColor: "pillColor", tooltipText: "tooltipText", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2086
+ };
2087
+ IxPill = __decorate([
2088
+ ProxyCmp({
2089
+ inputs: ['alignLeft', 'ariaLabelIcon', 'background', 'icon', 'outline', 'pillColor', 'tooltipText', 'variant']
2090
+ })
2091
+ ], IxPill);
2092
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxPill, decorators: [{
2093
+ type: Component,
2094
+ args: [{
2095
+ selector: 'ix-pill',
2096
+ changeDetection: ChangeDetectionStrategy.OnPush,
2097
+ template: '<ng-content></ng-content>',
2098
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2099
+ inputs: ['alignLeft', 'ariaLabelIcon', 'background', 'icon', 'outline', 'pillColor', 'tooltipText', 'variant'],
2100
+ }]
2101
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2102
+ let IxProgressIndicator = class IxProgressIndicator {
2103
+ z;
2104
+ el;
2105
+ constructor(c, r, z) {
2106
+ this.z = z;
2107
+ c.detach();
2108
+ this.el = r.nativeElement;
2109
+ }
2110
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxProgressIndicator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2111
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxProgressIndicator, selector: "ix-progress-indicator", inputs: { helperText: "helperText", label: "label", max: "max", min: "min", showTextAsTooltip: "showTextAsTooltip", size: "size", status: "status", textAlignment: "textAlignment", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2112
+ };
2113
+ IxProgressIndicator = __decorate([
2114
+ ProxyCmp({
2115
+ inputs: ['helperText', 'label', 'max', 'min', 'showTextAsTooltip', 'size', 'status', 'textAlignment', 'type', 'value']
2116
+ })
2117
+ ], IxProgressIndicator);
2118
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxProgressIndicator, decorators: [{
2119
+ type: Component,
2120
+ args: [{
2121
+ selector: 'ix-progress-indicator',
2122
+ changeDetection: ChangeDetectionStrategy.OnPush,
2123
+ template: '<ng-content></ng-content>',
2124
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2125
+ inputs: ['helperText', 'label', 'max', 'min', 'showTextAsTooltip', 'size', 'status', 'textAlignment', 'type', 'value'],
2126
+ }]
2127
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2128
+ let IxPushCard = class IxPushCard {
2129
+ z;
2130
+ el;
2131
+ constructor(c, r, z) {
2132
+ this.z = z;
2133
+ c.detach();
2134
+ this.el = r.nativeElement;
2135
+ }
2136
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxPushCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2137
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxPushCard, selector: "ix-push-card", inputs: { ariaLabelIcon: "ariaLabelIcon", collapse: "collapse", heading: "heading", icon: "icon", notification: "notification", subheading: "subheading", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2138
+ };
2139
+ IxPushCard = __decorate([
2140
+ ProxyCmp({
2141
+ inputs: ['ariaLabelIcon', 'collapse', 'heading', 'icon', 'notification', 'subheading', 'variant']
2142
+ })
2143
+ ], IxPushCard);
2144
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxPushCard, decorators: [{
2145
+ type: Component,
2146
+ args: [{
2147
+ selector: 'ix-push-card',
2148
+ changeDetection: ChangeDetectionStrategy.OnPush,
2149
+ template: '<ng-content></ng-content>',
2150
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2151
+ inputs: ['ariaLabelIcon', 'collapse', 'heading', 'icon', 'notification', 'subheading', 'variant'],
2152
+ }]
2153
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2154
+ let IxRadio = class IxRadio {
2155
+ z;
2156
+ el;
2157
+ constructor(c, r, z) {
2158
+ this.z = z;
2159
+ c.detach();
2160
+ this.el = r.nativeElement;
2161
+ proxyOutputs(this, this.el, ['checkedChange', 'valueChange', 'ixBlur']);
2162
+ }
2163
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2164
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxRadio, selector: "ix-radio", inputs: { checked: "checked", disabled: "disabled", label: "label", name: "name", required: "required", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2165
+ };
2166
+ IxRadio = __decorate([
2167
+ ProxyCmp({
2168
+ inputs: ['checked', 'disabled', 'label', 'name', 'required', 'value']
2169
+ })
2170
+ ], IxRadio);
2171
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxRadio, decorators: [{
2172
+ type: Component,
2173
+ args: [{
2174
+ selector: 'ix-radio',
2175
+ changeDetection: ChangeDetectionStrategy.OnPush,
2176
+ template: '<ng-content></ng-content>',
2177
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2178
+ inputs: ['checked', 'disabled', 'label', 'name', 'required', 'value'],
2179
+ }]
2180
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2181
+ let IxRadioGroup = class IxRadioGroup {
2182
+ z;
2183
+ el;
2184
+ constructor(c, r, z) {
2185
+ this.z = z;
2186
+ c.detach();
2187
+ this.el = r.nativeElement;
2188
+ proxyOutputs(this, this.el, ['valueChange']);
2189
+ }
2190
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxRadioGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2191
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxRadioGroup, selector: "ix-radio-group", inputs: { direction: "direction", 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 });
2192
+ };
2193
+ IxRadioGroup = __decorate([
2194
+ ProxyCmp({
2195
+ inputs: ['direction', 'helperText', 'infoText', 'invalidText', 'label', 'showTextAsTooltip', 'validText', 'value', 'warningText']
2196
+ })
2197
+ ], IxRadioGroup);
2198
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxRadioGroup, decorators: [{
2199
+ type: Component,
2200
+ args: [{
2201
+ selector: 'ix-radio-group',
2202
+ changeDetection: ChangeDetectionStrategy.OnPush,
2203
+ template: '<ng-content></ng-content>',
2204
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2205
+ inputs: ['direction', 'helperText', 'infoText', 'invalidText', 'label', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
2206
+ }]
2207
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2208
+ let IxRow = class IxRow {
2209
+ z;
2210
+ el;
2211
+ constructor(c, r, z) {
2212
+ this.z = z;
2213
+ c.detach();
2214
+ this.el = r.nativeElement;
2215
+ }
2216
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2217
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxRow, selector: "ix-row", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2218
+ };
2219
+ IxRow = __decorate([
2220
+ ProxyCmp({})
2221
+ ], IxRow);
2222
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxRow, decorators: [{
2223
+ type: Component,
2224
+ args: [{
2225
+ selector: 'ix-row',
2226
+ changeDetection: ChangeDetectionStrategy.OnPush,
2227
+ template: '<ng-content></ng-content>',
2228
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2229
+ inputs: [],
2230
+ }]
2231
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2232
+ let IxSelect = class IxSelect {
2233
+ z;
2234
+ el;
2235
+ constructor(c, r, z) {
2236
+ this.z = z;
2237
+ c.detach();
2238
+ this.el = r.nativeElement;
2239
+ proxyOutputs(this, this.el, ['valueChange', 'inputChange', 'addItem', 'ixBlur']);
2240
+ }
2241
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2242
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxSelect, selector: "ix-select", inputs: { allowClear: "allowClear", ariaLabelChevronDownIconButton: "ariaLabelChevronDownIconButton", ariaLabelClearIconButton: "ariaLabelClearIconButton", disabled: "disabled", dropdownMaxWidth: "dropdownMaxWidth", dropdownWidth: "dropdownWidth", 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", showTextAsTooltip: "showTextAsTooltip", validText: "validText", value: "value", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2243
+ };
2244
+ IxSelect = __decorate([
2245
+ ProxyCmp({
2246
+ inputs: ['allowClear', 'ariaLabelChevronDownIconButton', 'ariaLabelClearIconButton', 'disabled', 'dropdownMaxWidth', 'dropdownWidth', 'editable', 'helperText', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'infoText', 'invalidText', 'label', 'mode', 'name', 'readonly', 'required', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
2247
+ methods: ['getNativeInputElement', 'focusInput']
2248
+ })
2249
+ ], IxSelect);
2250
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSelect, decorators: [{
2251
+ type: Component,
2252
+ args: [{
2253
+ selector: 'ix-select',
2254
+ changeDetection: ChangeDetectionStrategy.OnPush,
2255
+ template: '<ng-content></ng-content>',
2256
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2257
+ inputs: ['allowClear', 'ariaLabelChevronDownIconButton', 'ariaLabelClearIconButton', 'disabled', 'dropdownMaxWidth', 'dropdownWidth', 'editable', 'helperText', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'infoText', 'invalidText', 'label', 'mode', 'name', 'readonly', 'required', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
2258
+ }]
2259
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2260
+ let IxSelectItem = class IxSelectItem {
2261
+ z;
2262
+ el;
2263
+ constructor(c, r, z) {
2264
+ this.z = z;
2265
+ c.detach();
2266
+ this.el = r.nativeElement;
2267
+ proxyOutputs(this, this.el, ['itemClick']);
2268
+ }
2269
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSelectItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2270
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxSelectItem, selector: "ix-select-item", inputs: { label: "label", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2271
+ };
2272
+ IxSelectItem = __decorate([
2273
+ ProxyCmp({
2274
+ inputs: ['label', 'selected', 'value']
2275
+ })
2276
+ ], IxSelectItem);
2277
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSelectItem, decorators: [{
2278
+ type: Component,
2279
+ args: [{
2280
+ selector: 'ix-select-item',
2281
+ changeDetection: ChangeDetectionStrategy.OnPush,
2282
+ template: '<ng-content></ng-content>',
2283
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2284
+ inputs: ['label', 'selected', 'value'],
2285
+ }]
2286
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2287
+ let IxSlider = class IxSlider {
2288
+ z;
2289
+ el;
2290
+ constructor(c, r, z) {
2291
+ this.z = z;
2292
+ c.detach();
2293
+ this.el = r.nativeElement;
2294
+ proxyOutputs(this, this.el, ['valueChange']);
2295
+ }
2296
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2297
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxSlider, selector: "ix-slider", inputs: { disabled: "disabled", error: "error", marker: "marker", max: "max", min: "min", step: "step", trace: "trace", traceReference: "traceReference", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2298
+ };
2299
+ IxSlider = __decorate([
2300
+ ProxyCmp({
2301
+ inputs: ['disabled', 'error', 'marker', 'max', 'min', 'step', 'trace', 'traceReference', 'value']
2302
+ })
2303
+ ], IxSlider);
2304
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSlider, decorators: [{
2305
+ type: Component,
2306
+ args: [{
2307
+ selector: 'ix-slider',
2308
+ changeDetection: ChangeDetectionStrategy.OnPush,
2309
+ template: '<ng-content></ng-content>',
2310
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2311
+ inputs: ['disabled', 'error', 'marker', 'max', 'min', 'step', 'trace', 'traceReference', 'value'],
2312
+ }]
2313
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2314
+ let IxSpinner = class IxSpinner {
2315
+ z;
2316
+ el;
2317
+ constructor(c, r, z) {
2318
+ this.z = z;
2319
+ c.detach();
2320
+ this.el = r.nativeElement;
2321
+ }
2322
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2323
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxSpinner, selector: "ix-spinner", inputs: { size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2324
+ };
2325
+ IxSpinner = __decorate([
2326
+ ProxyCmp({
2327
+ inputs: ['size', 'variant']
2328
+ })
2329
+ ], IxSpinner);
2330
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSpinner, decorators: [{
2331
+ type: Component,
2332
+ args: [{
2333
+ selector: 'ix-spinner',
2334
+ changeDetection: ChangeDetectionStrategy.OnPush,
2335
+ template: '<ng-content></ng-content>',
2336
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2337
+ inputs: ['size', 'variant'],
2338
+ }]
2339
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2340
+ let IxSplitButton = class IxSplitButton {
2341
+ z;
2342
+ el;
2343
+ constructor(c, r, z) {
2344
+ this.z = z;
2345
+ c.detach();
2346
+ this.el = r.nativeElement;
2347
+ proxyOutputs(this, this.el, ['buttonClick']);
2348
+ }
2349
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSplitButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2350
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxSplitButton, selector: "ix-split-button", inputs: { ariaLabelButton: "ariaLabelButton", ariaLabelSplitIconButton: "ariaLabelSplitIconButton", closeBehavior: "closeBehavior", disabled: "disabled", ghost: "ghost", icon: "icon", label: "label", outline: "outline", placement: "placement", splitIcon: "splitIcon", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2351
+ };
2352
+ IxSplitButton = __decorate([
2353
+ ProxyCmp({
2354
+ inputs: ['ariaLabelButton', 'ariaLabelSplitIconButton', 'closeBehavior', 'disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'splitIcon', 'variant']
2355
+ })
2356
+ ], IxSplitButton);
2357
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSplitButton, decorators: [{
2358
+ type: Component,
2359
+ args: [{
2360
+ selector: 'ix-split-button',
2361
+ changeDetection: ChangeDetectionStrategy.OnPush,
2362
+ template: '<ng-content></ng-content>',
2363
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2364
+ inputs: ['ariaLabelButton', 'ariaLabelSplitIconButton', 'closeBehavior', 'disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'splitIcon', 'variant'],
2365
+ }]
2366
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2367
+ let IxTabItem = class IxTabItem {
2368
+ z;
2369
+ el;
2370
+ constructor(c, r, z) {
2371
+ this.z = z;
2372
+ c.detach();
2373
+ this.el = r.nativeElement;
2374
+ proxyOutputs(this, this.el, ['tabClick']);
2375
+ }
2376
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTabItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2377
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxTabItem, selector: "ix-tab-item", inputs: { counter: "counter", disabled: "disabled", icon: "icon", layout: "layout", placement: "placement", rounded: "rounded", selected: "selected", small: "small" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2378
+ };
2379
+ IxTabItem = __decorate([
2380
+ ProxyCmp({
2381
+ inputs: ['counter', 'disabled', 'icon', 'layout', 'placement', 'rounded', 'selected', 'small']
2382
+ })
2383
+ ], IxTabItem);
2384
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTabItem, decorators: [{
2385
+ type: Component,
2386
+ args: [{
2387
+ selector: 'ix-tab-item',
2388
+ changeDetection: ChangeDetectionStrategy.OnPush,
2389
+ template: '<ng-content></ng-content>',
2390
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2391
+ inputs: ['counter', 'disabled', 'icon', 'layout', 'placement', 'rounded', 'selected', 'small'],
2392
+ }]
2393
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2394
+ let IxTabs = class IxTabs {
2395
+ z;
2396
+ el;
2397
+ constructor(c, r, z) {
2398
+ this.z = z;
2399
+ c.detach();
2400
+ this.el = r.nativeElement;
2401
+ proxyOutputs(this, this.el, ['selectedChange']);
2402
+ }
2403
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTabs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2404
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxTabs, selector: "ix-tabs", inputs: { ariaLabelChevronLeftIconButton: "ariaLabelChevronLeftIconButton", ariaLabelChevronRightIconButton: "ariaLabelChevronRightIconButton", layout: "layout", placement: "placement", rounded: "rounded", selected: "selected", small: "small" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2405
+ };
2406
+ IxTabs = __decorate([
2407
+ ProxyCmp({
2408
+ inputs: ['ariaLabelChevronLeftIconButton', 'ariaLabelChevronRightIconButton', 'layout', 'placement', 'rounded', 'selected', 'small']
2409
+ })
2410
+ ], IxTabs);
2411
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTabs, decorators: [{
2412
+ type: Component,
2413
+ args: [{
2414
+ selector: 'ix-tabs',
2415
+ changeDetection: ChangeDetectionStrategy.OnPush,
2416
+ template: '<ng-content></ng-content>',
2417
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2418
+ inputs: ['ariaLabelChevronLeftIconButton', 'ariaLabelChevronRightIconButton', 'layout', 'placement', 'rounded', 'selected', 'small'],
2419
+ }]
2420
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2421
+ let IxTextarea = class IxTextarea {
2422
+ z;
2423
+ el;
2424
+ constructor(c, r, z) {
2425
+ this.z = z;
2426
+ c.detach();
2427
+ this.el = r.nativeElement;
2428
+ proxyOutputs(this, this.el, ['valueChange', 'validityStateChange', 'ixBlur']);
2429
+ }
2430
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2431
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxTextarea, selector: "ix-textarea", 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 });
2432
+ };
2433
+ IxTextarea = __decorate([
2434
+ ProxyCmp({
2435
+ inputs: ['disabled', 'helperText', 'infoText', 'invalidText', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'readonly', 'required', 'resizeBehavior', 'showTextAsTooltip', 'textareaCols', 'textareaHeight', 'textareaRows', 'textareaWidth', 'validText', 'value', 'warningText'],
2436
+ methods: ['getNativeInputElement', 'focusInput']
2437
+ })
2438
+ ], IxTextarea);
2439
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTextarea, decorators: [{
2440
+ type: Component,
2441
+ args: [{
2442
+ selector: 'ix-textarea',
2443
+ changeDetection: ChangeDetectionStrategy.OnPush,
2444
+ template: '<ng-content></ng-content>',
2445
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2446
+ inputs: ['disabled', 'helperText', 'infoText', 'invalidText', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'readonly', 'required', 'resizeBehavior', 'showTextAsTooltip', 'textareaCols', 'textareaHeight', 'textareaRows', 'textareaWidth', 'validText', 'value', 'warningText'],
2447
+ }]
2448
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2449
+ let IxTile = class IxTile {
2450
+ z;
2451
+ el;
2452
+ constructor(c, r, z) {
2453
+ this.z = z;
2454
+ c.detach();
2455
+ this.el = r.nativeElement;
2456
+ }
2457
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2458
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxTile, selector: "ix-tile", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2459
+ };
2460
+ IxTile = __decorate([
2461
+ ProxyCmp({
2462
+ inputs: ['size']
2463
+ })
2464
+ ], IxTile);
2465
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTile, decorators: [{
2466
+ type: Component,
2467
+ args: [{
2468
+ selector: 'ix-tile',
2469
+ changeDetection: ChangeDetectionStrategy.OnPush,
2470
+ template: '<ng-content></ng-content>',
2471
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2472
+ inputs: ['size'],
2473
+ }]
2474
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2475
+ let IxTimeInput = class IxTimeInput {
2476
+ z;
2477
+ el;
2478
+ constructor(c, r, z) {
2479
+ this.z = z;
2480
+ c.detach();
2481
+ this.el = r.nativeElement;
2482
+ proxyOutputs(this, this.el, ['valueChange', 'validityStateChange']);
2483
+ }
2484
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTimeInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2485
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxTimeInput, selector: "ix-time-input", inputs: { disabled: "disabled", format: "format", helperText: "helperText", hourInterval: "hourInterval", i18nErrorTimeUnparsable: "i18nErrorTimeUnparsable", i18nHourColumnHeader: "i18nHourColumnHeader", i18nMillisecondColumnHeader: "i18nMillisecondColumnHeader", i18nMinuteColumnHeader: "i18nMinuteColumnHeader", i18nSecondColumnHeader: "i18nSecondColumnHeader", i18nSelectTime: "i18nSelectTime", i18nTime: "i18nTime", infoText: "infoText", invalidText: "invalidText", label: "label", millisecondInterval: "millisecondInterval", minuteInterval: "minuteInterval", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", secondInterval: "secondInterval", showTextAsTooltip: "showTextAsTooltip", validText: "validText", value: "value", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2486
+ };
2487
+ IxTimeInput = __decorate([
2488
+ ProxyCmp({
2489
+ inputs: ['disabled', 'format', 'helperText', 'hourInterval', 'i18nErrorTimeUnparsable', 'i18nHourColumnHeader', 'i18nMillisecondColumnHeader', 'i18nMinuteColumnHeader', 'i18nSecondColumnHeader', 'i18nSelectTime', 'i18nTime', 'infoText', 'invalidText', 'label', 'millisecondInterval', 'minuteInterval', 'name', 'placeholder', 'readonly', 'required', 'secondInterval', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
2490
+ methods: ['getNativeInputElement', 'focusInput']
2491
+ })
2492
+ ], IxTimeInput);
2493
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTimeInput, decorators: [{
2494
+ type: Component,
2495
+ args: [{
2496
+ selector: 'ix-time-input',
2497
+ changeDetection: ChangeDetectionStrategy.OnPush,
2498
+ template: '<ng-content></ng-content>',
2499
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2500
+ inputs: ['disabled', 'format', 'helperText', 'hourInterval', 'i18nErrorTimeUnparsable', 'i18nHourColumnHeader', 'i18nMillisecondColumnHeader', 'i18nMinuteColumnHeader', 'i18nSecondColumnHeader', 'i18nSelectTime', 'i18nTime', 'infoText', 'invalidText', 'label', 'millisecondInterval', 'minuteInterval', 'name', 'placeholder', 'readonly', 'required', 'secondInterval', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
2501
+ }]
2502
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2503
+ let IxTimePicker = class IxTimePicker {
2504
+ z;
2505
+ el;
2506
+ constructor(c, r, z) {
2507
+ this.z = z;
2508
+ c.detach();
2509
+ this.el = r.nativeElement;
2510
+ proxyOutputs(this, this.el, ['timeSelect', 'timeChange']);
2511
+ }
2512
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTimePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2513
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxTimePicker, selector: "ix-time-picker", inputs: { corners: "corners", format: "format", hideHeader: "hideHeader", hourInterval: "hourInterval", i18nConfirmTime: "i18nConfirmTime", i18nHeader: "i18nHeader", i18nHourColumnHeader: "i18nHourColumnHeader", i18nMillisecondColumnHeader: "i18nMillisecondColumnHeader", i18nMinuteColumnHeader: "i18nMinuteColumnHeader", i18nSecondColumnHeader: "i18nSecondColumnHeader", millisecondInterval: "millisecondInterval", minuteInterval: "minuteInterval", secondInterval: "secondInterval", showHour: "showHour", showMinutes: "showMinutes", showSeconds: "showSeconds", standaloneAppearance: "standaloneAppearance", textSelectTime: "textSelectTime", textTime: "textTime", time: "time", timeReference: "timeReference" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2514
+ };
2515
+ IxTimePicker = __decorate([
2516
+ ProxyCmp({
2517
+ inputs: ['corners', 'format', 'hideHeader', 'hourInterval', 'i18nConfirmTime', 'i18nHeader', 'i18nHourColumnHeader', 'i18nMillisecondColumnHeader', 'i18nMinuteColumnHeader', 'i18nSecondColumnHeader', 'millisecondInterval', 'minuteInterval', 'secondInterval', 'showHour', 'showMinutes', 'showSeconds', 'standaloneAppearance', 'textSelectTime', 'textTime', 'time', 'timeReference'],
2518
+ methods: ['getCurrentTime']
2519
+ })
2520
+ ], IxTimePicker);
2521
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTimePicker, decorators: [{
2522
+ type: Component,
2523
+ args: [{
2524
+ selector: 'ix-time-picker',
2525
+ changeDetection: ChangeDetectionStrategy.OnPush,
2526
+ template: '<ng-content></ng-content>',
2527
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2528
+ inputs: ['corners', 'format', 'hideHeader', 'hourInterval', 'i18nConfirmTime', 'i18nHeader', 'i18nHourColumnHeader', 'i18nMillisecondColumnHeader', 'i18nMinuteColumnHeader', 'i18nSecondColumnHeader', 'millisecondInterval', 'minuteInterval', 'secondInterval', 'showHour', 'showMinutes', 'showSeconds', 'standaloneAppearance', 'textSelectTime', 'textTime', 'time', 'timeReference'],
2529
+ }]
2530
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2531
+ let IxToast = class IxToast {
2532
+ z;
2533
+ el;
2534
+ constructor(c, r, z) {
2535
+ this.z = z;
2536
+ c.detach();
2537
+ this.el = r.nativeElement;
2538
+ proxyOutputs(this, this.el, ['closeToast']);
2539
+ }
2540
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2541
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxToast, selector: "ix-toast", inputs: { ariaLabelCloseIconButton: "ariaLabelCloseIconButton", autoClose: "autoClose", autoCloseDelay: "autoCloseDelay", icon: "icon", iconColor: "iconColor", toastTitle: "toastTitle", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2542
+ };
2543
+ IxToast = __decorate([
2544
+ ProxyCmp({
2545
+ inputs: ['ariaLabelCloseIconButton', 'autoClose', 'autoCloseDelay', 'icon', 'iconColor', 'toastTitle', 'type']
2546
+ })
2547
+ ], IxToast);
2548
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxToast, decorators: [{
2549
+ type: Component,
2550
+ args: [{
2551
+ selector: 'ix-toast',
2552
+ changeDetection: ChangeDetectionStrategy.OnPush,
2553
+ template: '<ng-content></ng-content>',
2554
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2555
+ inputs: ['ariaLabelCloseIconButton', 'autoClose', 'autoCloseDelay', 'icon', 'iconColor', 'toastTitle', 'type'],
2556
+ }]
2557
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2558
+ let IxToastContainer = class IxToastContainer {
2559
+ z;
2560
+ el;
2561
+ constructor(c, r, z) {
2562
+ this.z = z;
2563
+ c.detach();
2564
+ this.el = r.nativeElement;
2565
+ }
2566
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxToastContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2567
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxToastContainer, selector: "ix-toast-container", inputs: { containerClass: "containerClass", containerId: "containerId", position: "position" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2568
+ };
2569
+ IxToastContainer = __decorate([
2570
+ ProxyCmp({
2571
+ inputs: ['containerClass', 'containerId', 'position'],
2572
+ methods: ['showToast']
2573
+ })
2574
+ ], IxToastContainer);
2575
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxToastContainer, decorators: [{
2576
+ type: Component,
2577
+ args: [{
2578
+ selector: 'ix-toast-container',
2579
+ changeDetection: ChangeDetectionStrategy.OnPush,
2580
+ template: '<ng-content></ng-content>',
2581
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2582
+ inputs: ['containerClass', 'containerId', 'position'],
2583
+ }]
2584
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2585
+ let IxToggle = class IxToggle {
2586
+ z;
2587
+ el;
2588
+ constructor(c, r, z) {
2589
+ this.z = z;
2590
+ c.detach();
2591
+ this.el = r.nativeElement;
2592
+ proxyOutputs(this, this.el, ['checkedChange', 'ixBlur']);
2593
+ }
2594
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2595
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", 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 });
2596
+ };
2597
+ IxToggle = __decorate([
2598
+ ProxyCmp({
2599
+ inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'name', 'required', 'textIndeterminate', 'textOff', 'textOn', 'value']
2600
+ })
2601
+ ], IxToggle);
2602
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxToggle, decorators: [{
2603
+ type: Component,
2604
+ args: [{
2605
+ selector: 'ix-toggle',
2606
+ changeDetection: ChangeDetectionStrategy.OnPush,
2607
+ template: '<ng-content></ng-content>',
2608
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2609
+ inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'name', 'required', 'textIndeterminate', 'textOff', 'textOn', 'value'],
2610
+ }]
2611
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2612
+ let IxToggleButton = class IxToggleButton {
2613
+ z;
2614
+ el;
2615
+ constructor(c, r, z) {
2616
+ this.z = z;
2617
+ c.detach();
2618
+ this.el = r.nativeElement;
2619
+ proxyOutputs(this, this.el, ['pressedChange']);
2620
+ }
2621
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxToggleButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2622
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxToggleButton, selector: "ix-toggle-button", inputs: { ariaLabelButton: "ariaLabelButton", disabled: "disabled", ghost: "ghost", icon: "icon", loading: "loading", outline: "outline", pressed: "pressed", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2623
+ };
2624
+ IxToggleButton = __decorate([
2625
+ ProxyCmp({
2626
+ inputs: ['ariaLabelButton', 'disabled', 'ghost', 'icon', 'loading', 'outline', 'pressed', 'variant']
2627
+ })
2628
+ ], IxToggleButton);
2629
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxToggleButton, decorators: [{
2630
+ type: Component,
2631
+ args: [{
2632
+ selector: 'ix-toggle-button',
2633
+ changeDetection: ChangeDetectionStrategy.OnPush,
2634
+ template: '<ng-content></ng-content>',
2635
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2636
+ inputs: ['ariaLabelButton', 'disabled', 'ghost', 'icon', 'loading', 'outline', 'pressed', 'variant'],
2637
+ }]
2638
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2639
+ let IxTooltip = class IxTooltip {
2640
+ z;
2641
+ el;
2642
+ constructor(c, r, z) {
2643
+ this.z = z;
2644
+ c.detach();
2645
+ this.el = r.nativeElement;
2646
+ }
2647
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2648
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxTooltip, selector: "ix-tooltip", inputs: { for: "for", interactive: "interactive", placement: "placement", titleContent: "titleContent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2649
+ };
2650
+ IxTooltip = __decorate([
2651
+ ProxyCmp({
2652
+ inputs: ['for', 'interactive', 'placement', 'titleContent']
2653
+ })
2654
+ ], IxTooltip);
2655
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTooltip, decorators: [{
2656
+ type: Component,
2657
+ args: [{
2658
+ selector: 'ix-tooltip',
2659
+ changeDetection: ChangeDetectionStrategy.OnPush,
2660
+ template: '<ng-content></ng-content>',
2661
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2662
+ inputs: ['for', 'interactive', 'placement', 'titleContent'],
2663
+ }]
2664
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2665
+ let IxTreeItem = class IxTreeItem {
2666
+ z;
2667
+ el;
2668
+ constructor(c, r, z) {
2669
+ this.z = z;
2670
+ c.detach();
2671
+ this.el = r.nativeElement;
2672
+ proxyOutputs(this, this.el, ['toggle', 'itemClick']);
2673
+ }
2674
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTreeItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2675
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxTreeItem, selector: "ix-tree-item", inputs: { ariaLabelChevronIcon: "ariaLabelChevronIcon", context: "context", hasChildren: "hasChildren", text: "text" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2676
+ };
2677
+ IxTreeItem = __decorate([
2678
+ ProxyCmp({
2679
+ inputs: ['ariaLabelChevronIcon', 'context', 'hasChildren', 'text']
2680
+ })
2681
+ ], IxTreeItem);
2682
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTreeItem, decorators: [{
2683
+ type: Component,
2684
+ args: [{
2685
+ selector: 'ix-tree-item',
2686
+ changeDetection: ChangeDetectionStrategy.OnPush,
2687
+ template: '<ng-content></ng-content>',
2688
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2689
+ inputs: ['ariaLabelChevronIcon', 'context', 'hasChildren', 'text'],
2690
+ }]
2691
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2692
+ let IxTypography = class IxTypography {
2693
+ z;
2694
+ el;
2695
+ constructor(c, r, z) {
2696
+ this.z = z;
2697
+ c.detach();
2698
+ this.el = r.nativeElement;
2699
+ }
2700
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTypography, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2701
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxTypography, selector: "ix-typography", inputs: { bold: "bold", format: "format", textColor: "textColor", textDecoration: "textDecoration" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2702
+ };
2703
+ IxTypography = __decorate([
2704
+ ProxyCmp({
2705
+ inputs: ['bold', 'format', 'textColor', 'textDecoration']
2706
+ })
2707
+ ], IxTypography);
2708
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTypography, decorators: [{
2709
+ type: Component,
2710
+ args: [{
2711
+ selector: 'ix-typography',
2712
+ changeDetection: ChangeDetectionStrategy.OnPush,
2713
+ template: '<ng-content></ng-content>',
2714
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2715
+ inputs: ['bold', 'format', 'textColor', 'textDecoration'],
2716
+ }]
2717
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2718
+ let IxUpload = class IxUpload {
2719
+ z;
2720
+ el;
2721
+ constructor(c, r, z) {
2722
+ this.z = z;
2723
+ c.detach();
2724
+ this.el = r.nativeElement;
2725
+ proxyOutputs(this, this.el, ['filesChanged']);
2726
+ }
2727
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxUpload, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2728
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxUpload, selector: "ix-upload", inputs: { accept: "accept", disabled: "disabled", i18nUploadDisabled: "i18nUploadDisabled", i18nUploadFile: "i18nUploadFile", loadingText: "loadingText", multiline: "multiline", multiple: "multiple", selectFileText: "selectFileText", state: "state", uploadFailedText: "uploadFailedText", uploadSuccessText: "uploadSuccessText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2729
+ };
2730
+ IxUpload = __decorate([
2731
+ ProxyCmp({
2732
+ inputs: ['accept', 'disabled', 'i18nUploadDisabled', 'i18nUploadFile', 'loadingText', 'multiline', 'multiple', 'selectFileText', 'state', 'uploadFailedText', 'uploadSuccessText'],
2733
+ methods: ['setFilesToUpload']
2734
+ })
2735
+ ], IxUpload);
2736
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxUpload, decorators: [{
2737
+ type: Component,
2738
+ args: [{
2739
+ selector: 'ix-upload',
2740
+ changeDetection: ChangeDetectionStrategy.OnPush,
2741
+ template: '<ng-content></ng-content>',
2742
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2743
+ inputs: ['accept', 'disabled', 'i18nUploadDisabled', 'i18nUploadFile', 'loadingText', 'multiline', 'multiple', 'selectFileText', 'state', 'uploadFailedText', 'uploadSuccessText'],
2744
+ }]
2745
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2746
+ let IxValidationTooltip = class IxValidationTooltip {
2747
+ z;
2748
+ el;
2749
+ constructor(c, r, z) {
2750
+ this.z = z;
2751
+ c.detach();
2752
+ this.el = r.nativeElement;
2753
+ }
2754
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxValidationTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2755
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxValidationTooltip, selector: "ix-validation-tooltip", inputs: { message: "message", placement: "placement", suppressAutomaticPlacement: "suppressAutomaticPlacement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2756
+ };
2757
+ IxValidationTooltip = __decorate([
2758
+ ProxyCmp({
2759
+ inputs: ['message', 'placement', 'suppressAutomaticPlacement']
2760
+ })
2761
+ ], IxValidationTooltip);
2762
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxValidationTooltip, decorators: [{
2763
+ type: Component,
2764
+ args: [{
2765
+ selector: 'ix-validation-tooltip',
2766
+ changeDetection: ChangeDetectionStrategy.OnPush,
2767
+ template: '<ng-content></ng-content>',
2768
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2769
+ inputs: ['message', 'placement', 'suppressAutomaticPlacement'],
2770
+ }]
2771
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2772
+ let IxWorkflowStep = class IxWorkflowStep {
2773
+ z;
2774
+ el;
2775
+ constructor(c, r, z) {
2776
+ this.z = z;
2777
+ c.detach();
2778
+ this.el = r.nativeElement;
2779
+ }
2780
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxWorkflowStep, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2781
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxWorkflowStep, selector: "ix-workflow-step", inputs: { clickable: "clickable", disabled: "disabled", selected: "selected", status: "status", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2782
+ };
2783
+ IxWorkflowStep = __decorate([
2784
+ ProxyCmp({
2785
+ inputs: ['clickable', 'disabled', 'selected', 'status', 'vertical']
2786
+ })
2787
+ ], IxWorkflowStep);
2788
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxWorkflowStep, decorators: [{
2789
+ type: Component,
2790
+ args: [{
2791
+ selector: 'ix-workflow-step',
2792
+ changeDetection: ChangeDetectionStrategy.OnPush,
2793
+ template: '<ng-content></ng-content>',
2794
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2795
+ inputs: ['clickable', 'disabled', 'selected', 'status', 'vertical'],
2796
+ }]
2797
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2798
+ let IxWorkflowSteps = class IxWorkflowSteps {
2799
+ z;
2800
+ el;
2801
+ constructor(c, r, z) {
2802
+ this.z = z;
2803
+ c.detach();
2804
+ this.el = r.nativeElement;
2805
+ proxyOutputs(this, this.el, ['stepSelected']);
2806
+ }
2807
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxWorkflowSteps, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2808
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxWorkflowSteps, selector: "ix-workflow-steps", inputs: { clickable: "clickable", selectedIndex: "selectedIndex", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2809
+ };
2810
+ IxWorkflowSteps = __decorate([
2811
+ ProxyCmp({
2812
+ inputs: ['clickable', 'selectedIndex', 'vertical']
2813
+ })
2814
+ ], IxWorkflowSteps);
2815
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxWorkflowSteps, decorators: [{
2816
+ type: Component,
2817
+ args: [{
2818
+ selector: 'ix-workflow-steps',
2819
+ changeDetection: ChangeDetectionStrategy.OnPush,
2820
+ template: '<ng-content></ng-content>',
2821
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2822
+ inputs: ['clickable', 'selectedIndex', 'vertical'],
2823
+ }]
2824
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2825
+
2826
+ let IxIcon = class IxIcon {
2827
+ z;
2828
+ el;
2829
+ constructor(c, r, z) {
2830
+ this.z = z;
2831
+ c.detach();
2832
+ this.el = r.nativeElement;
2833
+ }
2834
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2835
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxIcon, selector: "ix-icon", inputs: { color: "color", name: "name", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2836
+ };
2837
+ IxIcon = __decorate([
2838
+ ProxyCmp({
2839
+ defineCustomElementFn: undefined,
2840
+ inputs: ['color', 'name', 'size'],
2841
+ })
2842
+ ], IxIcon);
2843
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxIcon, decorators: [{
2844
+ type: Component,
2845
+ args: [{
2846
+ selector: 'ix-icon',
2847
+ changeDetection: ChangeDetectionStrategy.OnPush,
2848
+ template: '<ng-content></ng-content>',
2849
+ inputs: ['color', 'name', 'size'],
2850
+ }]
2851
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2852
+
2853
+ let IxTree = class IxTree extends TreeBaseDirective {
2854
+ z;
2855
+ constructor(c, r, z) {
2856
+ super(c, r, z, proxyOutputs);
2857
+ this.z = z;
2858
+ }
2859
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTree, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2860
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxTree, selector: "ix-tree", inputs: { context: "context", model: "model", root: "root", renderItem: "renderItem" }, usesInheritance: true, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2861
+ };
2862
+ IxTree = __decorate([
2863
+ ProxyCmp({
2864
+ defineCustomElementFn: undefined,
2865
+ inputs: ['context', 'model', 'root'],
2866
+ })
2867
+ ], IxTree);
2868
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTree, decorators: [{
2869
+ type: Component,
2870
+ args: [{
2871
+ selector: 'ix-tree',
2872
+ changeDetection: ChangeDetectionStrategy.OnPush,
2873
+ template: '<ng-content></ng-content>',
2874
+ inputs: ['context', 'model', 'root', 'renderItem'],
2875
+ }]
2876
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2877
+
2878
+ /*
2879
+ * SPDX-FileCopyrightText: 2024 Siemens AG
2880
+ *
2881
+ * SPDX-License-Identifier: MIT
2882
+ *
2883
+ * This source code is licensed under the MIT license found in the
2884
+ * LICENSE file in the root directory of this source tree.
2885
+ */
2886
+ class ModalService extends ModalService$1 {
2887
+ constructor(appRef, componentFactoryResolver, injector) {
2888
+ super(appRef, componentFactoryResolver, injector);
2889
+ }
2890
+ open(config) {
2891
+ return super.open(config);
2892
+ }
2893
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ModalService, deps: [{ token: i0.ApplicationRef }, { token: i0.ComponentFactoryResolver }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable });
2894
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ModalService, providedIn: 'root' });
2895
+ }
2896
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ModalService, decorators: [{
2897
+ type: Injectable,
2898
+ args: [{
2899
+ providedIn: 'root',
2900
+ }]
2901
+ }], ctorParameters: () => [{ type: i0.ApplicationRef }, { type: i0.ComponentFactoryResolver }, { type: i0.Injector }] });
2902
+
2903
+ /*
2904
+ * SPDX-FileCopyrightText: 2024 Siemens AG
2905
+ *
2906
+ * SPDX-License-Identifier: MIT
2907
+ *
2908
+ * This source code is licensed under the MIT license found in the
2909
+ * LICENSE file in the root directory of this source tree.
2910
+ */
2911
+
2912
+ /*
2913
+ * SPDX-FileCopyrightText: 2024 Siemens AG
2914
+ *
2915
+ * SPDX-License-Identifier: MIT
2916
+ *
2917
+ * This source code is licensed under the MIT license found in the
2918
+ * LICENSE file in the root directory of this source tree.
2919
+ */
2920
+ class ToastService extends ToastService$1 {
2921
+ constructor() {
2922
+ super();
2923
+ }
2924
+ getPosition() {
2925
+ return super.getPosition();
2926
+ }
2927
+ setPosition(position) {
2928
+ super.setPosition(position);
2929
+ }
2930
+ show(config) {
2931
+ return super.show(config);
2932
+ }
2933
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ToastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2934
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ToastService, providedIn: 'root' });
2935
+ }
2936
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ToastService, decorators: [{
2937
+ type: Injectable,
2938
+ args: [{
2939
+ providedIn: 'root',
2940
+ }]
2941
+ }], ctorParameters: () => [] });
2942
+
2943
+ /*
2944
+ * SPDX-FileCopyrightText: 2024 Siemens AG
2945
+ *
2946
+ * SPDX-License-Identifier: MIT
2947
+ *
2948
+ * This source code is licensed under the MIT license found in the
2949
+ * LICENSE file in the root directory of this source tree.
2950
+ */
2951
+ /**
2952
+ * @deprecated Will be removed in 4.0.0. Use themeSwitcher from core package `import { themeSwitcher } from '@siemens/ix';`
2953
+ *
2954
+ */
2955
+ class ThemeService {
2956
+ themeChanged = new EventEmitter();
2957
+ themeSwitcher;
2958
+ constructor() {
2959
+ this.themeSwitcher = themeSwitcher;
2960
+ this.themeSwitcher.themeChanged.on((theme) => this.themeChanged.emit(theme));
2961
+ }
2962
+ toggleMode() {
2963
+ this.themeSwitcher.toggleMode();
2964
+ }
2965
+ setTheme(themeName) {
2966
+ this.themeSwitcher.setTheme(themeName);
2967
+ }
2968
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ThemeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2969
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ThemeService, providedIn: 'root' });
2970
+ }
2971
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ThemeService, decorators: [{
2972
+ type: Injectable,
2973
+ args: [{
2974
+ providedIn: 'root',
2975
+ }]
2976
+ }], ctorParameters: () => [], propDecorators: { themeChanged: [{
2977
+ type: Output
2978
+ }] } });
2979
+
2980
+ /*
2981
+ * SPDX-FileCopyrightText: 2024 Siemens AG
2982
+ *
2983
+ * SPDX-License-Identifier: MIT
2984
+ *
2985
+ * This source code is licensed under the MIT license found in the
2986
+ * LICENSE file in the root directory of this source tree.
2987
+ */
2988
+
2989
+ /*
2990
+ * SPDX-FileCopyrightText: 2025 Siemens AG
2991
+ *
2992
+ * SPDX-License-Identifier: MIT
2993
+ *
2994
+ * This source code is licensed under the MIT license found in the
2995
+ * LICENSE file in the root directory of this source tree.
2996
+ */
2997
+ class IxBooleanValueAccessorDirective extends BooleanValueAccessorBaseDirective {
2998
+ constructor(injector, el) {
2999
+ super(injector, el);
3000
+ }
3001
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxBooleanValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
3002
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: IxBooleanValueAccessorDirective, selector: "ix-checkbox,ix-toggle", providers: [createValueAccessorProvider(IxBooleanValueAccessorDirective)], usesInheritance: true, ngImport: i0 });
3003
+ }
3004
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxBooleanValueAccessorDirective, decorators: [{
3005
+ type: Directive,
3006
+ args: [{
3007
+ selector: 'ix-checkbox,ix-toggle',
3008
+ providers: [createValueAccessorProvider(IxBooleanValueAccessorDirective)],
3009
+ }]
3010
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }] });
3011
+
3012
+ /*
3013
+ * SPDX-FileCopyrightText: 2025 Siemens AG
3014
+ *
3015
+ * SPDX-License-Identifier: MIT
3016
+ *
3017
+ * This source code is licensed under the MIT license found in the
3018
+ * LICENSE file in the root directory of this source tree.
3019
+ */
3020
+ class IxRadioValueAccessorDirective extends RadioValueAccessorBaseDirective {
3021
+ constructor(injector, el) {
3022
+ super(injector, el);
3023
+ }
3024
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxRadioValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
3025
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: IxRadioValueAccessorDirective, selector: "ix-radio", providers: [createValueAccessorProvider(IxRadioValueAccessorDirective)], usesInheritance: true, ngImport: i0 });
3026
+ }
3027
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxRadioValueAccessorDirective, decorators: [{
3028
+ type: Directive,
3029
+ args: [{
3030
+ selector: 'ix-radio',
3031
+ providers: [createValueAccessorProvider(IxRadioValueAccessorDirective)],
3032
+ }]
3033
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }] });
3034
+
3035
+ /*
3036
+ * SPDX-FileCopyrightText: 2025 Siemens AG
3037
+ *
3038
+ * SPDX-License-Identifier: MIT
3039
+ *
3040
+ * This source code is licensed under the MIT license found in the
3041
+ * LICENSE file in the root directory of this source tree.
3042
+ */
3043
+ class IxSelectValueAccessorDirective extends SelectValueAccessorBaseDirective {
3044
+ constructor(injector, el) {
3045
+ super(injector, el);
3046
+ }
3047
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSelectValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
3048
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: IxSelectValueAccessorDirective, selector: "ix-select", providers: [createValueAccessorProvider(IxSelectValueAccessorDirective)], usesInheritance: true, ngImport: i0 });
3049
+ }
3050
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSelectValueAccessorDirective, decorators: [{
3051
+ type: Directive,
3052
+ args: [{
3053
+ selector: 'ix-select',
3054
+ providers: [createValueAccessorProvider(IxSelectValueAccessorDirective)],
3055
+ }]
3056
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }] });
3057
+
3058
+ /*
3059
+ * SPDX-FileCopyrightText: 2025 Siemens AG
3060
+ *
3061
+ * SPDX-License-Identifier: MIT
3062
+ *
3063
+ * This source code is licensed under the MIT license found in the
3064
+ * LICENSE file in the root directory of this source tree.
3065
+ */
3066
+ class IxTextValueAccessorDirective extends TextValueAccessorBaseDirective {
3067
+ constructor(injector, el) {
3068
+ super(injector, el);
3069
+ }
3070
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTextValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
3071
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: IxTextValueAccessorDirective, selector: "ix-input,ix-number-input,ix-textarea", providers: [createValueAccessorProvider(IxTextValueAccessorDirective)], usesInheritance: true, ngImport: i0 });
3072
+ }
3073
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTextValueAccessorDirective, decorators: [{
3074
+ type: Directive,
3075
+ args: [{
3076
+ selector: 'ix-input,ix-number-input,ix-textarea',
3077
+ providers: [createValueAccessorProvider(IxTextValueAccessorDirective)],
3078
+ }]
3079
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }] });
3080
+
3081
+ /*
3082
+ * SPDX-FileCopyrightText: 2025 Siemens AG
3083
+ *
3084
+ * SPDX-License-Identifier: MIT
3085
+ *
3086
+ * This source code is licensed under the MIT license found in the
3087
+ * LICENSE file in the root directory of this source tree.
3088
+ */
3089
+ class IxDateValueAccessorDirective extends DateValueAccessorBaseDirective {
3090
+ constructor(injector, el) {
3091
+ super(injector, el);
3092
+ }
3093
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDateValueAccessorDirective, deps: [{ token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
3094
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: IxDateValueAccessorDirective, selector: "ix-date-input", providers: [createValueAccessorProvider(IxDateValueAccessorDirective)], usesInheritance: true, ngImport: i0 });
3095
+ }
3096
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDateValueAccessorDirective, decorators: [{
3097
+ type: Directive,
3098
+ args: [{
3099
+ selector: 'ix-date-input',
3100
+ providers: [createValueAccessorProvider(IxDateValueAccessorDirective)],
3101
+ }]
3102
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }] });
3103
+
3104
+ /*
3105
+ * SPDX-FileCopyrightText: 2024 Siemens AG
3106
+ *
3107
+ * SPDX-License-Identifier: MIT
3108
+ *
3109
+ * This source code is licensed under the MIT license found in the
3110
+ * LICENSE file in the root directory of this source tree.
3111
+ */
3112
+
3113
+ /*
3114
+ * SPDX-FileCopyrightText: 2024 Siemens AG
3115
+ *
3116
+ * SPDX-License-Identifier: MIT
3117
+ *
3118
+ * This source code is licensed under the MIT license found in the
3119
+ * LICENSE file in the root directory of this source tree.
3120
+ */
3121
+ class IxDropdownTriggerDirective extends DropdownTriggerBaseDirective {
3122
+ ixDropdownTrigger = undefined;
3123
+ constructor(element) {
3124
+ super(element);
3125
+ }
3126
+ ngOnChanges() {
3127
+ super.ngOnChanges();
3128
+ }
3129
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDropdownTriggerDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
3130
+ /** @nocollapse */ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: IxDropdownTriggerDirective, selector: "[ixDropdownTrigger]", inputs: { ixDropdownTrigger: "ixDropdownTrigger" }, usesInheritance: true, usesOnChanges: true, ngImport: i0 });
3131
+ }
3132
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDropdownTriggerDirective, decorators: [{
3133
+ type: Directive,
3134
+ args: [{
3135
+ selector: '[ixDropdownTrigger]',
3136
+ }]
3137
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { ixDropdownTrigger: [{
3138
+ type: Input
3139
+ }] } });
3140
+
3141
+ /*
3142
+ * SPDX-FileCopyrightText: 2024 Siemens AG
3143
+ *
3144
+ * SPDX-License-Identifier: MIT
3145
+ *
3146
+ * This source code is licensed under the MIT license found in the
3147
+ * LICENSE file in the root directory of this source tree.
3148
+ */
3149
+ let didInitialize = false;
3150
+ const appInitialize = () => (doc) => {
3151
+ return () => {
3152
+ const win = doc.defaultView;
3153
+ if (win && typeof window !== 'undefined') {
3154
+ if (didInitialize) {
3155
+ return;
3156
+ }
3157
+ didInitialize = true;
3158
+ defineCustomElements();
3159
+ defineCustomElements$1();
3160
+ }
3161
+ };
3162
+ };
3163
+
3164
+ const DIRECTIVES = [
3165
+ IxActionCard,
3166
+ IxApplication,
3167
+ IxApplicationHeader,
3168
+ IxAvatar,
3169
+ IxBasicNavigation,
3170
+ IxBlind,
3171
+ IxBreadcrumb,
3172
+ IxBreadcrumbItem,
3173
+ IxButton,
3174
+ IxCard,
3175
+ IxCardAccordion,
3176
+ IxCardContent,
3177
+ IxCardList,
3178
+ IxCardTitle,
3179
+ IxCategoryFilter,
3180
+ IxCheckbox,
3181
+ IxCheckboxGroup,
3182
+ IxChip,
3183
+ IxCol,
3184
+ IxContent,
3185
+ IxContentHeader,
3186
+ IxCustomField,
3187
+ IxDateDropdown,
3188
+ IxDateInput,
3189
+ IxDatePicker,
3190
+ IxDatetimePicker,
3191
+ IxDivider,
3192
+ IxDrawer,
3193
+ IxDropdown,
3194
+ IxDropdownButton,
3195
+ IxDropdownHeader,
3196
+ IxDropdownItem,
3197
+ IxDropdownQuickActions,
3198
+ IxEmptyState,
3199
+ IxEventList,
3200
+ IxEventListItem,
3201
+ IxExpandingSearch,
3202
+ IxFieldLabel,
3203
+ IxFilterChip,
3204
+ IxFlipTile,
3205
+ IxFlipTileContent,
3206
+ IxGroup,
3207
+ IxGroupContextMenu,
3208
+ IxGroupItem,
3209
+ IxHelperText,
3210
+ IxIconButton,
3211
+ IxIconToggleButton,
3212
+ IxInput,
3213
+ IxInputGroup,
3214
+ IxKeyValue,
3215
+ IxKeyValueList,
3216
+ IxKpi,
3217
+ IxLayoutAuto,
3218
+ IxLayoutGrid,
3219
+ IxLinkButton,
3220
+ IxMapNavigation,
3221
+ IxMapNavigationOverlay,
3222
+ IxMenu,
3223
+ IxMenuAbout,
3224
+ IxMenuAboutItem,
3225
+ IxMenuAboutNews,
3226
+ IxMenuAvatar,
3227
+ IxMenuAvatarItem,
3228
+ IxMenuCategory,
3229
+ IxMenuItem,
3230
+ IxMenuSettings,
3231
+ IxMenuSettingsItem,
3232
+ IxMessageBar,
3233
+ IxModal,
3234
+ IxModalContent,
3235
+ IxModalFooter,
3236
+ IxModalHeader,
3237
+ IxNumberInput,
3238
+ IxPagination,
3239
+ IxPane,
3240
+ IxPaneLayout,
3241
+ IxPill,
3242
+ IxProgressIndicator,
3243
+ IxPushCard,
3244
+ IxRadio,
3245
+ IxRadioGroup,
3246
+ IxRow,
3247
+ IxSelect,
3248
+ IxSelectItem,
3249
+ IxSlider,
3250
+ IxSpinner,
3251
+ IxSplitButton,
3252
+ IxTabItem,
3253
+ IxTabs,
3254
+ IxTextarea,
3255
+ IxTile,
3256
+ IxTimeInput,
3257
+ IxTimePicker,
3258
+ IxToast,
3259
+ IxToastContainer,
3260
+ IxToggle,
3261
+ IxToggleButton,
3262
+ IxTooltip,
3263
+ IxTreeItem,
3264
+ IxTypography,
3265
+ IxUpload,
3266
+ IxValidationTooltip,
3267
+ IxWorkflowStep,
3268
+ IxWorkflowSteps
3269
+ ];
3270
+
3271
+ /*
3272
+ * SPDX-FileCopyrightText: 2025 Siemens AG
3273
+ *
3274
+ * SPDX-License-Identifier: MIT
3275
+ *
3276
+ * This source code is licensed under the MIT license found in the
3277
+ * LICENSE file in the root directory of this source tree.
3278
+ */
3279
+ const DECLARATIONS = [
3280
+ ...DIRECTIVES,
3281
+ IxTree,
3282
+ IxIcon,
3283
+ IxDropdownTriggerDirective,
3284
+ IxTextValueAccessorDirective,
3285
+ IxSelectValueAccessorDirective,
3286
+ IxRadioValueAccessorDirective,
3287
+ IxBooleanValueAccessorDirective,
3288
+ IxDateValueAccessorDirective,
3289
+ ];
3290
+ class IxModule {
3291
+ static forRoot() {
3292
+ return {
3293
+ ngModule: IxModule,
3294
+ providers: [
3295
+ {
3296
+ provide: APP_INITIALIZER,
3297
+ useFactory: appInitialize(),
3298
+ multi: true,
3299
+ deps: [DOCUMENT, NgZone],
3300
+ },
3301
+ ModalService,
3302
+ ThemeService,
3303
+ ToastService,
3304
+ ],
3305
+ };
3306
+ }
3307
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
3308
+ /** @nocollapse */ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", 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, IxDateInput, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFieldLabel, IxFilterChip, IxFlipTile, IxFlipTileContent, IxGroup, IxGroupContextMenu, IxGroupItem, IxHelperText, IxIconButton, IxIconToggleButton, IxInput, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLayoutAuto, IxLayoutGrid, IxLinkButton, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalFooter, IxModalHeader, IxNumberInput, IxPagination, IxPane, IxPaneLayout, IxPill, IxProgressIndicator, IxPushCard, IxRadio, IxRadioGroup, IxRow, IxSelect, IxSelectItem, IxSlider, IxSpinner, IxSplitButton, IxTabItem, IxTabs, IxTextarea, IxTile, IxTimeInput, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree, IxIcon,
3309
+ IxDropdownTriggerDirective,
3310
+ IxTextValueAccessorDirective,
3311
+ IxSelectValueAccessorDirective,
3312
+ IxRadioValueAccessorDirective,
3313
+ IxBooleanValueAccessorDirective,
3314
+ IxDateValueAccessorDirective], exports: [IxActionCard, IxApplication, IxApplicationHeader, IxAvatar, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxCheckbox, IxCheckboxGroup, IxChip, IxCol, IxContent, IxContentHeader, IxCustomField, IxDateDropdown, IxDateInput, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFieldLabel, IxFilterChip, IxFlipTile, IxFlipTileContent, IxGroup, IxGroupContextMenu, IxGroupItem, IxHelperText, IxIconButton, IxIconToggleButton, IxInput, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLayoutAuto, IxLayoutGrid, IxLinkButton, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalFooter, IxModalHeader, IxNumberInput, IxPagination, IxPane, IxPaneLayout, IxPill, IxProgressIndicator, IxPushCard, IxRadio, IxRadioGroup, IxRow, IxSelect, IxSelectItem, IxSlider, IxSpinner, IxSplitButton, IxTabItem, IxTabs, IxTextarea, IxTile, IxTimeInput, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree, IxIcon,
3315
+ IxDropdownTriggerDirective,
3316
+ IxTextValueAccessorDirective,
3317
+ IxSelectValueAccessorDirective,
3318
+ IxRadioValueAccessorDirective,
3319
+ IxBooleanValueAccessorDirective,
3320
+ IxDateValueAccessorDirective] });
3321
+ /** @nocollapse */ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxModule });
3322
+ }
3323
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxModule, decorators: [{
3324
+ type: NgModule,
3325
+ args: [{
3326
+ declarations: DECLARATIONS,
3327
+ exports: DECLARATIONS,
3328
+ }]
3329
+ }] });
3330
+
3331
+ /*
3332
+ * SPDX-FileCopyrightText: 2024 Siemens AG
3333
+ *
3334
+ * SPDX-License-Identifier: MIT
3335
+ *
3336
+ * This source code is licensed under the MIT license found in the
3337
+ * LICENSE file in the root directory of this source tree.
3338
+ */
3339
+
3340
+ /**
3341
+ * Generated bundle index. Do not edit.
3342
+ */
3343
+
3344
+ export { IxActionCard, IxApplication, IxApplicationHeader, IxAvatar, IxBasicNavigation, IxBlind, IxBooleanValueAccessorDirective, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxCheckbox, IxCheckboxGroup, IxChip, IxCol, IxContent, IxContentHeader, IxCustomField, IxDateDropdown, IxDateInput, IxDatePicker, IxDateValueAccessorDirective, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxDropdownTriggerDirective, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFieldLabel, IxFilterChip, IxFlipTile, IxFlipTileContent, IxGroup, IxGroupContextMenu, IxGroupItem, IxHelperText, IxIcon, IxIconButton, IxIconToggleButton, IxInput, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLayoutAuto, IxLayoutGrid, IxLinkButton, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalFooter, IxModalHeader, IxModule, IxNumberInput, IxPagination, IxPane, IxPaneLayout, IxPill, IxProgressIndicator, IxPushCard, IxRadio, IxRadioGroup, IxRadioValueAccessorDirective, IxRow, IxSelect, IxSelectItem, IxSelectValueAccessorDirective, IxSlider, IxSpinner, IxSplitButton, IxTabItem, IxTabs, IxTextValueAccessorDirective, IxTextarea, IxTile, IxTimeInput, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTree, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, ModalService, ThemeService, ToastService };
3345
+ //# sourceMappingURL=siemens-ix-angular.mjs.map