@siemens/ix-angular 3.1.0 → 3.1.1

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 +69 -17
  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 +10 -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 +5 -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 +1342 -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 +34 -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 +52 -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 +2809 -0
  51. package/esm2022/declare-components.mjs +106 -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 +52 -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 +3126 -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 +19 -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 +633 -0
  89. package/fesm2022/siemens-ix-angular-common.mjs.map +1 -0
  90. package/fesm2022/siemens-ix-angular-standalone.mjs +3418 -0
  91. package/fesm2022/siemens-ix-angular-standalone.mjs.map +1 -0
  92. package/fesm2022/siemens-ix-angular.mjs +3307 -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 +1 -6
  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 +9 -0
  104. package/standalone/angular-component-lib/utils.d.ts +9 -0
  105. package/standalone/components.d.ts +1342 -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,3307 @@
1
+ import { getToastContainer, toast, 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, 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: { 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: ['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: ['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: { 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: ['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: ['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: { 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: ['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: ['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: { 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: ['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: ['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: { 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: ['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: ['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: { collapse: "collapse" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
344
+ };
345
+ IxCardAccordion = __decorate([
346
+ ProxyCmp({
347
+ inputs: ['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: ['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: { 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: ['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: ['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: { 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: ['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: ['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", background: "background", 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', 'background', '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', 'background', '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: { 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: ['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: ['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: { disabled: "disabled", format: "format", helperText: "helperText", i18nErrorDateUnparsable: "i18nErrorDateUnparsable", infoText: "infoText", invalidText: "invalidText", label: "label", locale: "locale", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", showTextAsTooltip: "showTextAsTooltip", showWeekNumbers: "showWeekNumbers", validText: "validText", value: "value", warningText: "warningText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
684
+ };
685
+ IxDateInput = __decorate([
686
+ ProxyCmp({
687
+ inputs: ['disabled', 'format', 'helperText', 'i18nErrorDateUnparsable', 'infoText', 'invalidText', 'label', 'locale', 'name', 'placeholder', 'readonly', 'required', 'showTextAsTooltip', 'showWeekNumbers', 'validText', 'value', 'warningText'],
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: ['disabled', 'format', 'helperText', 'i18nErrorDateUnparsable', 'infoText', 'invalidText', 'label', 'locale', 'name', 'placeholder', 'readonly', 'required', 'showTextAsTooltip', 'showWeekNumbers', 'validText', 'value', 'warningText'],
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: { 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: ['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: ['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: { 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: ['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: ['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: { 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: ['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: ['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: { 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: ['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: ['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: { 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: ['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: ['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", 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', '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', '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: { 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: ['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: ['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: { 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: ['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: ['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: { 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: ['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: ['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: { 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: ['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: ['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: { 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: ['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: ['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: { 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: ['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: ['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: { 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: ['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: ['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", 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', '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', '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: { 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: ['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: ['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: { 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: ['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: ['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", 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', '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', '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: { 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: ['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: ['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", 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', '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', 'background', 'icon', 'outline', 'pillColor', 'tooltipText', 'variant'],
2100
+ }]
2101
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2102
+ let IxPushCard = class IxPushCard {
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: IxPushCard, 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: IxPushCard, selector: "ix-push-card", inputs: { 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 });
2112
+ };
2113
+ IxPushCard = __decorate([
2114
+ ProxyCmp({
2115
+ inputs: ['collapse', 'heading', 'icon', 'notification', 'subheading', 'variant']
2116
+ })
2117
+ ], IxPushCard);
2118
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxPushCard, decorators: [{
2119
+ type: Component,
2120
+ args: [{
2121
+ selector: 'ix-push-card',
2122
+ changeDetection: ChangeDetectionStrategy.OnPush,
2123
+ template: '<ng-content></ng-content>',
2124
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2125
+ inputs: ['collapse', 'heading', 'icon', 'notification', 'subheading', 'variant'],
2126
+ }]
2127
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2128
+ let IxRadio = class IxRadio {
2129
+ z;
2130
+ el;
2131
+ constructor(c, r, z) {
2132
+ this.z = z;
2133
+ c.detach();
2134
+ this.el = r.nativeElement;
2135
+ proxyOutputs(this, this.el, ['checkedChange', 'valueChange', 'ixBlur']);
2136
+ }
2137
+ /** @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 });
2138
+ /** @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 });
2139
+ };
2140
+ IxRadio = __decorate([
2141
+ ProxyCmp({
2142
+ inputs: ['checked', 'disabled', 'label', 'name', 'required', 'value']
2143
+ })
2144
+ ], IxRadio);
2145
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxRadio, decorators: [{
2146
+ type: Component,
2147
+ args: [{
2148
+ selector: 'ix-radio',
2149
+ changeDetection: ChangeDetectionStrategy.OnPush,
2150
+ template: '<ng-content></ng-content>',
2151
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2152
+ inputs: ['checked', 'disabled', 'label', 'name', 'required', 'value'],
2153
+ }]
2154
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2155
+ let IxRadioGroup = class IxRadioGroup {
2156
+ z;
2157
+ el;
2158
+ constructor(c, r, z) {
2159
+ this.z = z;
2160
+ c.detach();
2161
+ this.el = r.nativeElement;
2162
+ proxyOutputs(this, this.el, ['valueChange']);
2163
+ }
2164
+ /** @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 });
2165
+ /** @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 });
2166
+ };
2167
+ IxRadioGroup = __decorate([
2168
+ ProxyCmp({
2169
+ inputs: ['direction', 'helperText', 'infoText', 'invalidText', 'label', 'showTextAsTooltip', 'validText', 'value', 'warningText']
2170
+ })
2171
+ ], IxRadioGroup);
2172
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxRadioGroup, decorators: [{
2173
+ type: Component,
2174
+ args: [{
2175
+ selector: 'ix-radio-group',
2176
+ changeDetection: ChangeDetectionStrategy.OnPush,
2177
+ template: '<ng-content></ng-content>',
2178
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2179
+ inputs: ['direction', 'helperText', 'infoText', 'invalidText', 'label', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
2180
+ }]
2181
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2182
+ let IxRow = class IxRow {
2183
+ z;
2184
+ el;
2185
+ constructor(c, r, z) {
2186
+ this.z = z;
2187
+ c.detach();
2188
+ this.el = r.nativeElement;
2189
+ }
2190
+ /** @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 });
2191
+ /** @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 });
2192
+ };
2193
+ IxRow = __decorate([
2194
+ ProxyCmp({})
2195
+ ], IxRow);
2196
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxRow, decorators: [{
2197
+ type: Component,
2198
+ args: [{
2199
+ selector: 'ix-row',
2200
+ changeDetection: ChangeDetectionStrategy.OnPush,
2201
+ template: '<ng-content></ng-content>',
2202
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2203
+ inputs: [],
2204
+ }]
2205
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2206
+ let IxSelect = class IxSelect {
2207
+ z;
2208
+ el;
2209
+ constructor(c, r, z) {
2210
+ this.z = z;
2211
+ c.detach();
2212
+ this.el = r.nativeElement;
2213
+ proxyOutputs(this, this.el, ['valueChange', 'inputChange', 'addItem', 'ixBlur']);
2214
+ }
2215
+ /** @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 });
2216
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxSelect, selector: "ix-select", inputs: { allowClear: "allowClear", 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 });
2217
+ };
2218
+ IxSelect = __decorate([
2219
+ ProxyCmp({
2220
+ inputs: ['allowClear', 'disabled', 'dropdownMaxWidth', 'dropdownWidth', 'editable', 'helperText', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'infoText', 'invalidText', 'label', 'mode', 'name', 'readonly', 'required', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
2221
+ methods: ['getNativeInputElement', 'focusInput']
2222
+ })
2223
+ ], IxSelect);
2224
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSelect, decorators: [{
2225
+ type: Component,
2226
+ args: [{
2227
+ selector: 'ix-select',
2228
+ changeDetection: ChangeDetectionStrategy.OnPush,
2229
+ template: '<ng-content></ng-content>',
2230
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2231
+ inputs: ['allowClear', 'disabled', 'dropdownMaxWidth', 'dropdownWidth', 'editable', 'helperText', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'infoText', 'invalidText', 'label', 'mode', 'name', 'readonly', 'required', 'showTextAsTooltip', 'validText', 'value', 'warningText'],
2232
+ }]
2233
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2234
+ let IxSelectItem = class IxSelectItem {
2235
+ z;
2236
+ el;
2237
+ constructor(c, r, z) {
2238
+ this.z = z;
2239
+ c.detach();
2240
+ this.el = r.nativeElement;
2241
+ proxyOutputs(this, this.el, ['itemClick']);
2242
+ }
2243
+ /** @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 });
2244
+ /** @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 });
2245
+ };
2246
+ IxSelectItem = __decorate([
2247
+ ProxyCmp({
2248
+ inputs: ['label', 'selected', 'value']
2249
+ })
2250
+ ], IxSelectItem);
2251
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSelectItem, decorators: [{
2252
+ type: Component,
2253
+ args: [{
2254
+ selector: 'ix-select-item',
2255
+ changeDetection: ChangeDetectionStrategy.OnPush,
2256
+ template: '<ng-content></ng-content>',
2257
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2258
+ inputs: ['label', 'selected', 'value'],
2259
+ }]
2260
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2261
+ let IxSlider = class IxSlider {
2262
+ z;
2263
+ el;
2264
+ constructor(c, r, z) {
2265
+ this.z = z;
2266
+ c.detach();
2267
+ this.el = r.nativeElement;
2268
+ proxyOutputs(this, this.el, ['valueChange']);
2269
+ }
2270
+ /** @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 });
2271
+ /** @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 });
2272
+ };
2273
+ IxSlider = __decorate([
2274
+ ProxyCmp({
2275
+ inputs: ['disabled', 'error', 'marker', 'max', 'min', 'step', 'trace', 'traceReference', 'value']
2276
+ })
2277
+ ], IxSlider);
2278
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSlider, decorators: [{
2279
+ type: Component,
2280
+ args: [{
2281
+ selector: 'ix-slider',
2282
+ changeDetection: ChangeDetectionStrategy.OnPush,
2283
+ template: '<ng-content></ng-content>',
2284
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2285
+ inputs: ['disabled', 'error', 'marker', 'max', 'min', 'step', 'trace', 'traceReference', 'value'],
2286
+ }]
2287
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2288
+ let IxSpinner = class IxSpinner {
2289
+ z;
2290
+ el;
2291
+ constructor(c, r, z) {
2292
+ this.z = z;
2293
+ c.detach();
2294
+ this.el = r.nativeElement;
2295
+ }
2296
+ /** @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 });
2297
+ /** @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 });
2298
+ };
2299
+ IxSpinner = __decorate([
2300
+ ProxyCmp({
2301
+ inputs: ['size', 'variant']
2302
+ })
2303
+ ], IxSpinner);
2304
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSpinner, decorators: [{
2305
+ type: Component,
2306
+ args: [{
2307
+ selector: 'ix-spinner',
2308
+ changeDetection: ChangeDetectionStrategy.OnPush,
2309
+ template: '<ng-content></ng-content>',
2310
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2311
+ inputs: ['size', 'variant'],
2312
+ }]
2313
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2314
+ let IxSplitButton = class IxSplitButton {
2315
+ z;
2316
+ el;
2317
+ constructor(c, r, z) {
2318
+ this.z = z;
2319
+ c.detach();
2320
+ this.el = r.nativeElement;
2321
+ proxyOutputs(this, this.el, ['buttonClick']);
2322
+ }
2323
+ /** @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 });
2324
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxSplitButton, selector: "ix-split-button", inputs: { 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 });
2325
+ };
2326
+ IxSplitButton = __decorate([
2327
+ ProxyCmp({
2328
+ inputs: ['closeBehavior', 'disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'splitIcon', 'variant']
2329
+ })
2330
+ ], IxSplitButton);
2331
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSplitButton, decorators: [{
2332
+ type: Component,
2333
+ args: [{
2334
+ selector: 'ix-split-button',
2335
+ changeDetection: ChangeDetectionStrategy.OnPush,
2336
+ template: '<ng-content></ng-content>',
2337
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2338
+ inputs: ['closeBehavior', 'disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'splitIcon', 'variant'],
2339
+ }]
2340
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2341
+ let IxTabItem = class IxTabItem {
2342
+ z;
2343
+ el;
2344
+ constructor(c, r, z) {
2345
+ this.z = z;
2346
+ c.detach();
2347
+ this.el = r.nativeElement;
2348
+ proxyOutputs(this, this.el, ['tabClick']);
2349
+ }
2350
+ /** @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 });
2351
+ /** @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 });
2352
+ };
2353
+ IxTabItem = __decorate([
2354
+ ProxyCmp({
2355
+ inputs: ['counter', 'disabled', 'icon', 'layout', 'placement', 'rounded', 'selected', 'small']
2356
+ })
2357
+ ], IxTabItem);
2358
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTabItem, decorators: [{
2359
+ type: Component,
2360
+ args: [{
2361
+ selector: 'ix-tab-item',
2362
+ changeDetection: ChangeDetectionStrategy.OnPush,
2363
+ template: '<ng-content></ng-content>',
2364
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2365
+ inputs: ['counter', 'disabled', 'icon', 'layout', 'placement', 'rounded', 'selected', 'small'],
2366
+ }]
2367
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2368
+ let IxTabs = class IxTabs {
2369
+ z;
2370
+ el;
2371
+ constructor(c, r, z) {
2372
+ this.z = z;
2373
+ c.detach();
2374
+ this.el = r.nativeElement;
2375
+ proxyOutputs(this, this.el, ['selectedChange']);
2376
+ }
2377
+ /** @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 });
2378
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxTabs, selector: "ix-tabs", inputs: { layout: "layout", placement: "placement", rounded: "rounded", selected: "selected", small: "small" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2379
+ };
2380
+ IxTabs = __decorate([
2381
+ ProxyCmp({
2382
+ inputs: ['layout', 'placement', 'rounded', 'selected', 'small']
2383
+ })
2384
+ ], IxTabs);
2385
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTabs, decorators: [{
2386
+ type: Component,
2387
+ args: [{
2388
+ selector: 'ix-tabs',
2389
+ changeDetection: ChangeDetectionStrategy.OnPush,
2390
+ template: '<ng-content></ng-content>',
2391
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2392
+ inputs: ['layout', 'placement', 'rounded', 'selected', 'small'],
2393
+ }]
2394
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2395
+ let IxTextarea = class IxTextarea {
2396
+ z;
2397
+ el;
2398
+ constructor(c, r, z) {
2399
+ this.z = z;
2400
+ c.detach();
2401
+ this.el = r.nativeElement;
2402
+ proxyOutputs(this, this.el, ['valueChange', 'validityStateChange', 'ixBlur']);
2403
+ }
2404
+ /** @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 });
2405
+ /** @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 });
2406
+ };
2407
+ IxTextarea = __decorate([
2408
+ ProxyCmp({
2409
+ inputs: ['disabled', 'helperText', 'infoText', 'invalidText', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'readonly', 'required', 'resizeBehavior', 'showTextAsTooltip', 'textareaCols', 'textareaHeight', 'textareaRows', 'textareaWidth', 'validText', 'value', 'warningText'],
2410
+ methods: ['getNativeInputElement', 'focusInput']
2411
+ })
2412
+ ], IxTextarea);
2413
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTextarea, decorators: [{
2414
+ type: Component,
2415
+ args: [{
2416
+ selector: 'ix-textarea',
2417
+ changeDetection: ChangeDetectionStrategy.OnPush,
2418
+ template: '<ng-content></ng-content>',
2419
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2420
+ inputs: ['disabled', 'helperText', 'infoText', 'invalidText', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'readonly', 'required', 'resizeBehavior', 'showTextAsTooltip', 'textareaCols', 'textareaHeight', 'textareaRows', 'textareaWidth', 'validText', 'value', 'warningText'],
2421
+ }]
2422
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2423
+ let IxTile = class IxTile {
2424
+ z;
2425
+ el;
2426
+ constructor(c, r, z) {
2427
+ this.z = z;
2428
+ c.detach();
2429
+ this.el = r.nativeElement;
2430
+ }
2431
+ /** @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 });
2432
+ /** @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 });
2433
+ };
2434
+ IxTile = __decorate([
2435
+ ProxyCmp({
2436
+ inputs: ['size']
2437
+ })
2438
+ ], IxTile);
2439
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTile, decorators: [{
2440
+ type: Component,
2441
+ args: [{
2442
+ selector: 'ix-tile',
2443
+ changeDetection: ChangeDetectionStrategy.OnPush,
2444
+ template: '<ng-content></ng-content>',
2445
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2446
+ inputs: ['size'],
2447
+ }]
2448
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2449
+ let IxTimePicker = class IxTimePicker {
2450
+ z;
2451
+ el;
2452
+ constructor(c, r, z) {
2453
+ this.z = z;
2454
+ c.detach();
2455
+ this.el = r.nativeElement;
2456
+ proxyOutputs(this, this.el, ['timeSelect', 'timeChange']);
2457
+ }
2458
+ /** @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 });
2459
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxTimePicker, selector: "ix-time-picker", inputs: { corners: "corners", format: "format", 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 });
2460
+ };
2461
+ IxTimePicker = __decorate([
2462
+ ProxyCmp({
2463
+ inputs: ['corners', 'format', 'showHour', 'showMinutes', 'showSeconds', 'standaloneAppearance', 'textSelectTime', 'textTime', 'time', 'timeReference'],
2464
+ methods: ['getCurrentTime']
2465
+ })
2466
+ ], IxTimePicker);
2467
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTimePicker, decorators: [{
2468
+ type: Component,
2469
+ args: [{
2470
+ selector: 'ix-time-picker',
2471
+ changeDetection: ChangeDetectionStrategy.OnPush,
2472
+ template: '<ng-content></ng-content>',
2473
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2474
+ inputs: ['corners', 'format', 'showHour', 'showMinutes', 'showSeconds', 'standaloneAppearance', 'textSelectTime', 'textTime', 'time', 'timeReference'],
2475
+ }]
2476
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2477
+ let IxToast = class IxToast {
2478
+ z;
2479
+ el;
2480
+ constructor(c, r, z) {
2481
+ this.z = z;
2482
+ c.detach();
2483
+ this.el = r.nativeElement;
2484
+ proxyOutputs(this, this.el, ['closeToast']);
2485
+ }
2486
+ /** @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 });
2487
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxToast, selector: "ix-toast", inputs: { 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 });
2488
+ };
2489
+ IxToast = __decorate([
2490
+ ProxyCmp({
2491
+ inputs: ['autoClose', 'autoCloseDelay', 'icon', 'iconColor', 'toastTitle', 'type']
2492
+ })
2493
+ ], IxToast);
2494
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxToast, decorators: [{
2495
+ type: Component,
2496
+ args: [{
2497
+ selector: 'ix-toast',
2498
+ changeDetection: ChangeDetectionStrategy.OnPush,
2499
+ template: '<ng-content></ng-content>',
2500
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2501
+ inputs: ['autoClose', 'autoCloseDelay', 'icon', 'iconColor', 'toastTitle', 'type'],
2502
+ }]
2503
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2504
+ let IxToastContainer = class IxToastContainer {
2505
+ z;
2506
+ el;
2507
+ constructor(c, r, z) {
2508
+ this.z = z;
2509
+ c.detach();
2510
+ this.el = r.nativeElement;
2511
+ }
2512
+ /** @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 });
2513
+ /** @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 });
2514
+ };
2515
+ IxToastContainer = __decorate([
2516
+ ProxyCmp({
2517
+ inputs: ['containerClass', 'containerId', 'position'],
2518
+ methods: ['showToast']
2519
+ })
2520
+ ], IxToastContainer);
2521
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxToastContainer, decorators: [{
2522
+ type: Component,
2523
+ args: [{
2524
+ selector: 'ix-toast-container',
2525
+ changeDetection: ChangeDetectionStrategy.OnPush,
2526
+ template: '<ng-content></ng-content>',
2527
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2528
+ inputs: ['containerClass', 'containerId', 'position'],
2529
+ }]
2530
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2531
+ let IxToggle = class IxToggle {
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, ['checkedChange', 'ixBlur']);
2539
+ }
2540
+ /** @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 });
2541
+ /** @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 });
2542
+ };
2543
+ IxToggle = __decorate([
2544
+ ProxyCmp({
2545
+ inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'name', 'required', 'textIndeterminate', 'textOff', 'textOn', 'value']
2546
+ })
2547
+ ], IxToggle);
2548
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxToggle, decorators: [{
2549
+ type: Component,
2550
+ args: [{
2551
+ selector: 'ix-toggle',
2552
+ changeDetection: ChangeDetectionStrategy.OnPush,
2553
+ template: '<ng-content></ng-content>',
2554
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2555
+ inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'name', 'required', 'textIndeterminate', 'textOff', 'textOn', 'value'],
2556
+ }]
2557
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2558
+ let IxToggleButton = class IxToggleButton {
2559
+ z;
2560
+ el;
2561
+ constructor(c, r, z) {
2562
+ this.z = z;
2563
+ c.detach();
2564
+ this.el = r.nativeElement;
2565
+ proxyOutputs(this, this.el, ['pressedChange']);
2566
+ }
2567
+ /** @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 });
2568
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxToggleButton, selector: "ix-toggle-button", inputs: { 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 });
2569
+ };
2570
+ IxToggleButton = __decorate([
2571
+ ProxyCmp({
2572
+ inputs: ['disabled', 'ghost', 'icon', 'loading', 'outline', 'pressed', 'variant']
2573
+ })
2574
+ ], IxToggleButton);
2575
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxToggleButton, decorators: [{
2576
+ type: Component,
2577
+ args: [{
2578
+ selector: 'ix-toggle-button',
2579
+ changeDetection: ChangeDetectionStrategy.OnPush,
2580
+ template: '<ng-content></ng-content>',
2581
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2582
+ inputs: ['disabled', 'ghost', 'icon', 'loading', 'outline', 'pressed', 'variant'],
2583
+ }]
2584
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2585
+ let IxTooltip = class IxTooltip {
2586
+ z;
2587
+ el;
2588
+ constructor(c, r, z) {
2589
+ this.z = z;
2590
+ c.detach();
2591
+ this.el = r.nativeElement;
2592
+ }
2593
+ /** @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 });
2594
+ /** @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 });
2595
+ };
2596
+ IxTooltip = __decorate([
2597
+ ProxyCmp({
2598
+ inputs: ['for', 'interactive', 'placement', 'titleContent']
2599
+ })
2600
+ ], IxTooltip);
2601
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTooltip, decorators: [{
2602
+ type: Component,
2603
+ args: [{
2604
+ selector: 'ix-tooltip',
2605
+ changeDetection: ChangeDetectionStrategy.OnPush,
2606
+ template: '<ng-content></ng-content>',
2607
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2608
+ inputs: ['for', 'interactive', 'placement', 'titleContent'],
2609
+ }]
2610
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2611
+ let IxTreeItem = class IxTreeItem {
2612
+ z;
2613
+ el;
2614
+ constructor(c, r, z) {
2615
+ this.z = z;
2616
+ c.detach();
2617
+ this.el = r.nativeElement;
2618
+ proxyOutputs(this, this.el, ['toggle', 'itemClick']);
2619
+ }
2620
+ /** @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 });
2621
+ /** @nocollapse */ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: IxTreeItem, selector: "ix-tree-item", inputs: { context: "context", hasChildren: "hasChildren", text: "text" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2622
+ };
2623
+ IxTreeItem = __decorate([
2624
+ ProxyCmp({
2625
+ inputs: ['context', 'hasChildren', 'text']
2626
+ })
2627
+ ], IxTreeItem);
2628
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTreeItem, decorators: [{
2629
+ type: Component,
2630
+ args: [{
2631
+ selector: 'ix-tree-item',
2632
+ changeDetection: ChangeDetectionStrategy.OnPush,
2633
+ template: '<ng-content></ng-content>',
2634
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2635
+ inputs: ['context', 'hasChildren', 'text'],
2636
+ }]
2637
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2638
+ let IxTypography = class IxTypography {
2639
+ z;
2640
+ el;
2641
+ constructor(c, r, z) {
2642
+ this.z = z;
2643
+ c.detach();
2644
+ this.el = r.nativeElement;
2645
+ }
2646
+ /** @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 });
2647
+ /** @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 });
2648
+ };
2649
+ IxTypography = __decorate([
2650
+ ProxyCmp({
2651
+ inputs: ['bold', 'format', 'textColor', 'textDecoration']
2652
+ })
2653
+ ], IxTypography);
2654
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTypography, decorators: [{
2655
+ type: Component,
2656
+ args: [{
2657
+ selector: 'ix-typography',
2658
+ changeDetection: ChangeDetectionStrategy.OnPush,
2659
+ template: '<ng-content></ng-content>',
2660
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2661
+ inputs: ['bold', 'format', 'textColor', 'textDecoration'],
2662
+ }]
2663
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2664
+ let IxUpload = class IxUpload {
2665
+ z;
2666
+ el;
2667
+ constructor(c, r, z) {
2668
+ this.z = z;
2669
+ c.detach();
2670
+ this.el = r.nativeElement;
2671
+ proxyOutputs(this, this.el, ['filesChanged']);
2672
+ }
2673
+ /** @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 });
2674
+ /** @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 });
2675
+ };
2676
+ IxUpload = __decorate([
2677
+ ProxyCmp({
2678
+ inputs: ['accept', 'disabled', 'i18nUploadDisabled', 'i18nUploadFile', 'loadingText', 'multiline', 'multiple', 'selectFileText', 'state', 'uploadFailedText', 'uploadSuccessText'],
2679
+ methods: ['setFilesToUpload']
2680
+ })
2681
+ ], IxUpload);
2682
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxUpload, decorators: [{
2683
+ type: Component,
2684
+ args: [{
2685
+ selector: 'ix-upload',
2686
+ changeDetection: ChangeDetectionStrategy.OnPush,
2687
+ template: '<ng-content></ng-content>',
2688
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2689
+ inputs: ['accept', 'disabled', 'i18nUploadDisabled', 'i18nUploadFile', 'loadingText', 'multiline', 'multiple', 'selectFileText', 'state', 'uploadFailedText', 'uploadSuccessText'],
2690
+ }]
2691
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2692
+ let IxValidationTooltip = class IxValidationTooltip {
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: IxValidationTooltip, 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: 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 });
2702
+ };
2703
+ IxValidationTooltip = __decorate([
2704
+ ProxyCmp({
2705
+ inputs: ['message', 'placement', 'suppressAutomaticPlacement']
2706
+ })
2707
+ ], IxValidationTooltip);
2708
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxValidationTooltip, decorators: [{
2709
+ type: Component,
2710
+ args: [{
2711
+ selector: 'ix-validation-tooltip',
2712
+ changeDetection: ChangeDetectionStrategy.OnPush,
2713
+ template: '<ng-content></ng-content>',
2714
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2715
+ inputs: ['message', 'placement', 'suppressAutomaticPlacement'],
2716
+ }]
2717
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2718
+ let IxWorkflowStep = class IxWorkflowStep {
2719
+ z;
2720
+ el;
2721
+ constructor(c, r, z) {
2722
+ this.z = z;
2723
+ c.detach();
2724
+ this.el = r.nativeElement;
2725
+ }
2726
+ /** @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 });
2727
+ /** @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 });
2728
+ };
2729
+ IxWorkflowStep = __decorate([
2730
+ ProxyCmp({
2731
+ inputs: ['clickable', 'disabled', 'selected', 'status', 'vertical']
2732
+ })
2733
+ ], IxWorkflowStep);
2734
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxWorkflowStep, decorators: [{
2735
+ type: Component,
2736
+ args: [{
2737
+ selector: 'ix-workflow-step',
2738
+ changeDetection: ChangeDetectionStrategy.OnPush,
2739
+ template: '<ng-content></ng-content>',
2740
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2741
+ inputs: ['clickable', 'disabled', 'selected', 'status', 'vertical'],
2742
+ }]
2743
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2744
+ let IxWorkflowSteps = class IxWorkflowSteps {
2745
+ z;
2746
+ el;
2747
+ constructor(c, r, z) {
2748
+ this.z = z;
2749
+ c.detach();
2750
+ this.el = r.nativeElement;
2751
+ proxyOutputs(this, this.el, ['stepSelected']);
2752
+ }
2753
+ /** @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 });
2754
+ /** @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 });
2755
+ };
2756
+ IxWorkflowSteps = __decorate([
2757
+ ProxyCmp({
2758
+ inputs: ['clickable', 'selectedIndex', 'vertical']
2759
+ })
2760
+ ], IxWorkflowSteps);
2761
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxWorkflowSteps, decorators: [{
2762
+ type: Component,
2763
+ args: [{
2764
+ selector: 'ix-workflow-steps',
2765
+ changeDetection: ChangeDetectionStrategy.OnPush,
2766
+ template: '<ng-content></ng-content>',
2767
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2768
+ inputs: ['clickable', 'selectedIndex', 'vertical'],
2769
+ }]
2770
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2771
+
2772
+ let IxIcon = class IxIcon {
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: IxIcon, 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: IxIcon, selector: "ix-icon", inputs: { color: "color", name: "name", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2782
+ };
2783
+ IxIcon = __decorate([
2784
+ ProxyCmp({
2785
+ defineCustomElementFn: undefined,
2786
+ inputs: ['color', 'name', 'size'],
2787
+ })
2788
+ ], IxIcon);
2789
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxIcon, decorators: [{
2790
+ type: Component,
2791
+ args: [{
2792
+ selector: 'ix-icon',
2793
+ changeDetection: ChangeDetectionStrategy.OnPush,
2794
+ template: '<ng-content></ng-content>',
2795
+ inputs: ['color', 'name', 'size'],
2796
+ }]
2797
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2798
+
2799
+ let IxTree = class IxTree extends TreeBaseDirective {
2800
+ z;
2801
+ constructor(c, r, z) {
2802
+ super(c, r, z, proxyOutputs);
2803
+ this.z = z;
2804
+ }
2805
+ /** @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 });
2806
+ /** @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 });
2807
+ };
2808
+ IxTree = __decorate([
2809
+ ProxyCmp({
2810
+ defineCustomElementFn: undefined,
2811
+ inputs: ['context', 'model', 'root'],
2812
+ })
2813
+ ], IxTree);
2814
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTree, decorators: [{
2815
+ type: Component,
2816
+ args: [{
2817
+ selector: 'ix-tree',
2818
+ changeDetection: ChangeDetectionStrategy.OnPush,
2819
+ template: '<ng-content></ng-content>',
2820
+ inputs: ['context', 'model', 'root', 'renderItem'],
2821
+ }]
2822
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2823
+
2824
+ /*
2825
+ * SPDX-FileCopyrightText: 2024 Siemens AG
2826
+ *
2827
+ * SPDX-License-Identifier: MIT
2828
+ *
2829
+ * This source code is licensed under the MIT license found in the
2830
+ * LICENSE file in the root directory of this source tree.
2831
+ */
2832
+ class ModalService extends ModalService$1 {
2833
+ constructor(appRef, componentFactoryResolver, injector) {
2834
+ super(appRef, componentFactoryResolver, injector);
2835
+ }
2836
+ open(config) {
2837
+ return super.open(config);
2838
+ }
2839
+ /** @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 });
2840
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ModalService, providedIn: 'root' });
2841
+ }
2842
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ModalService, decorators: [{
2843
+ type: Injectable,
2844
+ args: [{
2845
+ providedIn: 'root',
2846
+ }]
2847
+ }], ctorParameters: () => [{ type: i0.ApplicationRef }, { type: i0.ComponentFactoryResolver }, { type: i0.Injector }] });
2848
+
2849
+ /*
2850
+ * SPDX-FileCopyrightText: 2024 Siemens AG
2851
+ *
2852
+ * SPDX-License-Identifier: MIT
2853
+ *
2854
+ * This source code is licensed under the MIT license found in the
2855
+ * LICENSE file in the root directory of this source tree.
2856
+ */
2857
+
2858
+ /*
2859
+ * SPDX-FileCopyrightText: 2024 Siemens AG
2860
+ *
2861
+ * SPDX-License-Identifier: MIT
2862
+ *
2863
+ * This source code is licensed under the MIT license found in the
2864
+ * LICENSE file in the root directory of this source tree.
2865
+ */
2866
+ class ToastService {
2867
+ setPosition(position) {
2868
+ getToastContainer().position = position;
2869
+ }
2870
+ getPosition() {
2871
+ return getToastContainer().position;
2872
+ }
2873
+ async show(config) {
2874
+ if (typeof config.message === 'string') {
2875
+ return toast(config);
2876
+ }
2877
+ const context = {
2878
+ close: null,
2879
+ };
2880
+ const embeddedView = config.message.createEmbeddedView({
2881
+ $implicit: context,
2882
+ });
2883
+ const node = embeddedView.rootNodes[0];
2884
+ const instance = await toast({
2885
+ ...config,
2886
+ message: node,
2887
+ });
2888
+ context.close = () => {
2889
+ instance.close();
2890
+ };
2891
+ embeddedView.detectChanges();
2892
+ instance.onClose.once(() => {
2893
+ embeddedView.destroy();
2894
+ });
2895
+ return instance;
2896
+ }
2897
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ToastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2898
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ToastService, providedIn: 'root' });
2899
+ }
2900
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ToastService, decorators: [{
2901
+ type: Injectable,
2902
+ args: [{
2903
+ providedIn: 'root',
2904
+ }]
2905
+ }] });
2906
+
2907
+ /*
2908
+ * SPDX-FileCopyrightText: 2024 Siemens AG
2909
+ *
2910
+ * SPDX-License-Identifier: MIT
2911
+ *
2912
+ * This source code is licensed under the MIT license found in the
2913
+ * LICENSE file in the root directory of this source tree.
2914
+ */
2915
+ /**
2916
+ * @deprecated Will be removed in 4.0.0. Use themeSwitcher from core package `import { themeSwitcher } from '@siemens/ix';`
2917
+ *
2918
+ */
2919
+ class ThemeService {
2920
+ themeChanged = new EventEmitter();
2921
+ themeSwitcher;
2922
+ constructor() {
2923
+ this.themeSwitcher = themeSwitcher;
2924
+ this.themeSwitcher.themeChanged.on((theme) => this.themeChanged.emit(theme));
2925
+ }
2926
+ toggleMode() {
2927
+ this.themeSwitcher.toggleMode();
2928
+ }
2929
+ setTheme(themeName) {
2930
+ this.themeSwitcher.setTheme(themeName);
2931
+ }
2932
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ThemeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2933
+ /** @nocollapse */ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ThemeService, providedIn: 'root' });
2934
+ }
2935
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ThemeService, decorators: [{
2936
+ type: Injectable,
2937
+ args: [{
2938
+ providedIn: 'root',
2939
+ }]
2940
+ }], ctorParameters: () => [], propDecorators: { themeChanged: [{
2941
+ type: Output
2942
+ }] } });
2943
+
2944
+ /*
2945
+ * SPDX-FileCopyrightText: 2024 Siemens AG
2946
+ *
2947
+ * SPDX-License-Identifier: MIT
2948
+ *
2949
+ * This source code is licensed under the MIT license found in the
2950
+ * LICENSE file in the root directory of this source tree.
2951
+ */
2952
+
2953
+ /*
2954
+ * SPDX-FileCopyrightText: 2025 Siemens AG
2955
+ *
2956
+ * SPDX-License-Identifier: MIT
2957
+ *
2958
+ * This source code is licensed under the MIT license found in the
2959
+ * LICENSE file in the root directory of this source tree.
2960
+ */
2961
+ class IxBooleanValueAccessorDirective extends BooleanValueAccessorBaseDirective {
2962
+ constructor(injector, el) {
2963
+ super(injector, el);
2964
+ }
2965
+ /** @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 });
2966
+ /** @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 });
2967
+ }
2968
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxBooleanValueAccessorDirective, decorators: [{
2969
+ type: Directive,
2970
+ args: [{
2971
+ selector: 'ix-checkbox,ix-toggle',
2972
+ providers: [createValueAccessorProvider(IxBooleanValueAccessorDirective)],
2973
+ }]
2974
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }] });
2975
+
2976
+ /*
2977
+ * SPDX-FileCopyrightText: 2025 Siemens AG
2978
+ *
2979
+ * SPDX-License-Identifier: MIT
2980
+ *
2981
+ * This source code is licensed under the MIT license found in the
2982
+ * LICENSE file in the root directory of this source tree.
2983
+ */
2984
+ class IxRadioValueAccessorDirective extends RadioValueAccessorBaseDirective {
2985
+ constructor(injector, el) {
2986
+ super(injector, el);
2987
+ }
2988
+ /** @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 });
2989
+ /** @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 });
2990
+ }
2991
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxRadioValueAccessorDirective, decorators: [{
2992
+ type: Directive,
2993
+ args: [{
2994
+ selector: 'ix-radio',
2995
+ providers: [createValueAccessorProvider(IxRadioValueAccessorDirective)],
2996
+ }]
2997
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }] });
2998
+
2999
+ /*
3000
+ * SPDX-FileCopyrightText: 2025 Siemens AG
3001
+ *
3002
+ * SPDX-License-Identifier: MIT
3003
+ *
3004
+ * This source code is licensed under the MIT license found in the
3005
+ * LICENSE file in the root directory of this source tree.
3006
+ */
3007
+ class IxSelectValueAccessorDirective extends SelectValueAccessorBaseDirective {
3008
+ constructor(injector, el) {
3009
+ super(injector, el);
3010
+ }
3011
+ /** @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 });
3012
+ /** @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 });
3013
+ }
3014
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxSelectValueAccessorDirective, decorators: [{
3015
+ type: Directive,
3016
+ args: [{
3017
+ selector: 'ix-select',
3018
+ providers: [createValueAccessorProvider(IxSelectValueAccessorDirective)],
3019
+ }]
3020
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }] });
3021
+
3022
+ /*
3023
+ * SPDX-FileCopyrightText: 2025 Siemens AG
3024
+ *
3025
+ * SPDX-License-Identifier: MIT
3026
+ *
3027
+ * This source code is licensed under the MIT license found in the
3028
+ * LICENSE file in the root directory of this source tree.
3029
+ */
3030
+ class IxTextValueAccessorDirective extends TextValueAccessorBaseDirective {
3031
+ constructor(injector, el) {
3032
+ super(injector, el);
3033
+ }
3034
+ /** @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 });
3035
+ /** @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 });
3036
+ }
3037
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxTextValueAccessorDirective, decorators: [{
3038
+ type: Directive,
3039
+ args: [{
3040
+ selector: 'ix-input,ix-number-input,ix-textarea',
3041
+ providers: [createValueAccessorProvider(IxTextValueAccessorDirective)],
3042
+ }]
3043
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }] });
3044
+
3045
+ /*
3046
+ * SPDX-FileCopyrightText: 2025 Siemens AG
3047
+ *
3048
+ * SPDX-License-Identifier: MIT
3049
+ *
3050
+ * This source code is licensed under the MIT license found in the
3051
+ * LICENSE file in the root directory of this source tree.
3052
+ */
3053
+ class IxDateValueAccessorDirective extends DateValueAccessorBaseDirective {
3054
+ constructor(injector, el) {
3055
+ super(injector, el);
3056
+ }
3057
+ /** @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 });
3058
+ /** @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 });
3059
+ }
3060
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDateValueAccessorDirective, decorators: [{
3061
+ type: Directive,
3062
+ args: [{
3063
+ selector: 'ix-date-input',
3064
+ providers: [createValueAccessorProvider(IxDateValueAccessorDirective)],
3065
+ }]
3066
+ }], ctorParameters: () => [{ type: i0.Injector }, { type: i0.ElementRef }] });
3067
+
3068
+ /*
3069
+ * SPDX-FileCopyrightText: 2024 Siemens AG
3070
+ *
3071
+ * SPDX-License-Identifier: MIT
3072
+ *
3073
+ * This source code is licensed under the MIT license found in the
3074
+ * LICENSE file in the root directory of this source tree.
3075
+ */
3076
+
3077
+ /*
3078
+ * SPDX-FileCopyrightText: 2024 Siemens AG
3079
+ *
3080
+ * SPDX-License-Identifier: MIT
3081
+ *
3082
+ * This source code is licensed under the MIT license found in the
3083
+ * LICENSE file in the root directory of this source tree.
3084
+ */
3085
+ class IxDropdownTriggerDirective extends DropdownTriggerBaseDirective {
3086
+ ixDropdownTrigger = undefined;
3087
+ constructor(element) {
3088
+ super(element);
3089
+ }
3090
+ ngOnChanges() {
3091
+ super.ngOnChanges();
3092
+ }
3093
+ /** @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 });
3094
+ /** @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 });
3095
+ }
3096
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxDropdownTriggerDirective, decorators: [{
3097
+ type: Directive,
3098
+ args: [{
3099
+ selector: '[ixDropdownTrigger]',
3100
+ }]
3101
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { ixDropdownTrigger: [{
3102
+ type: Input
3103
+ }] } });
3104
+
3105
+ /*
3106
+ * SPDX-FileCopyrightText: 2024 Siemens AG
3107
+ *
3108
+ * SPDX-License-Identifier: MIT
3109
+ *
3110
+ * This source code is licensed under the MIT license found in the
3111
+ * LICENSE file in the root directory of this source tree.
3112
+ */
3113
+ let didInitialize = false;
3114
+ const appInitialize = () => (doc) => {
3115
+ return () => {
3116
+ const win = doc.defaultView;
3117
+ if (win && typeof window !== 'undefined') {
3118
+ if (didInitialize) {
3119
+ return;
3120
+ }
3121
+ didInitialize = true;
3122
+ defineCustomElements();
3123
+ defineCustomElements$1();
3124
+ }
3125
+ };
3126
+ };
3127
+
3128
+ const DIRECTIVES = [
3129
+ IxActionCard,
3130
+ IxApplication,
3131
+ IxApplicationHeader,
3132
+ IxAvatar,
3133
+ IxBasicNavigation,
3134
+ IxBlind,
3135
+ IxBreadcrumb,
3136
+ IxBreadcrumbItem,
3137
+ IxButton,
3138
+ IxCard,
3139
+ IxCardAccordion,
3140
+ IxCardContent,
3141
+ IxCardList,
3142
+ IxCardTitle,
3143
+ IxCategoryFilter,
3144
+ IxCheckbox,
3145
+ IxCheckboxGroup,
3146
+ IxChip,
3147
+ IxCol,
3148
+ IxContent,
3149
+ IxContentHeader,
3150
+ IxCustomField,
3151
+ IxDateDropdown,
3152
+ IxDateInput,
3153
+ IxDatePicker,
3154
+ IxDatetimePicker,
3155
+ IxDivider,
3156
+ IxDrawer,
3157
+ IxDropdown,
3158
+ IxDropdownButton,
3159
+ IxDropdownHeader,
3160
+ IxDropdownItem,
3161
+ IxDropdownQuickActions,
3162
+ IxEmptyState,
3163
+ IxEventList,
3164
+ IxEventListItem,
3165
+ IxExpandingSearch,
3166
+ IxFieldLabel,
3167
+ IxFilterChip,
3168
+ IxFlipTile,
3169
+ IxFlipTileContent,
3170
+ IxGroup,
3171
+ IxGroupContextMenu,
3172
+ IxGroupItem,
3173
+ IxHelperText,
3174
+ IxIconButton,
3175
+ IxIconToggleButton,
3176
+ IxInput,
3177
+ IxInputGroup,
3178
+ IxKeyValue,
3179
+ IxKeyValueList,
3180
+ IxKpi,
3181
+ IxLayoutAuto,
3182
+ IxLayoutGrid,
3183
+ IxLinkButton,
3184
+ IxMapNavigation,
3185
+ IxMapNavigationOverlay,
3186
+ IxMenu,
3187
+ IxMenuAbout,
3188
+ IxMenuAboutItem,
3189
+ IxMenuAboutNews,
3190
+ IxMenuAvatar,
3191
+ IxMenuAvatarItem,
3192
+ IxMenuCategory,
3193
+ IxMenuItem,
3194
+ IxMenuSettings,
3195
+ IxMenuSettingsItem,
3196
+ IxMessageBar,
3197
+ IxModal,
3198
+ IxModalContent,
3199
+ IxModalFooter,
3200
+ IxModalHeader,
3201
+ IxNumberInput,
3202
+ IxPagination,
3203
+ IxPane,
3204
+ IxPaneLayout,
3205
+ IxPill,
3206
+ IxPushCard,
3207
+ IxRadio,
3208
+ IxRadioGroup,
3209
+ IxRow,
3210
+ IxSelect,
3211
+ IxSelectItem,
3212
+ IxSlider,
3213
+ IxSpinner,
3214
+ IxSplitButton,
3215
+ IxTabItem,
3216
+ IxTabs,
3217
+ IxTextarea,
3218
+ IxTile,
3219
+ IxTimePicker,
3220
+ IxToast,
3221
+ IxToastContainer,
3222
+ IxToggle,
3223
+ IxToggleButton,
3224
+ IxTooltip,
3225
+ IxTreeItem,
3226
+ IxTypography,
3227
+ IxUpload,
3228
+ IxValidationTooltip,
3229
+ IxWorkflowStep,
3230
+ IxWorkflowSteps
3231
+ ];
3232
+
3233
+ /*
3234
+ * SPDX-FileCopyrightText: 2025 Siemens AG
3235
+ *
3236
+ * SPDX-License-Identifier: MIT
3237
+ *
3238
+ * This source code is licensed under the MIT license found in the
3239
+ * LICENSE file in the root directory of this source tree.
3240
+ */
3241
+ const DECLARATIONS = [
3242
+ ...DIRECTIVES,
3243
+ IxTree,
3244
+ IxIcon,
3245
+ IxDropdownTriggerDirective,
3246
+ IxTextValueAccessorDirective,
3247
+ IxSelectValueAccessorDirective,
3248
+ IxRadioValueAccessorDirective,
3249
+ IxBooleanValueAccessorDirective,
3250
+ IxDateValueAccessorDirective,
3251
+ ];
3252
+ class IxModule {
3253
+ static forRoot() {
3254
+ return {
3255
+ ngModule: IxModule,
3256
+ providers: [
3257
+ {
3258
+ provide: APP_INITIALIZER,
3259
+ useFactory: appInitialize(),
3260
+ multi: true,
3261
+ deps: [DOCUMENT, NgZone],
3262
+ },
3263
+ ModalService,
3264
+ ThemeService,
3265
+ ToastService,
3266
+ ],
3267
+ };
3268
+ }
3269
+ /** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
3270
+ /** @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, IxPushCard, IxRadio, IxRadioGroup, IxRow, IxSelect, IxSelectItem, IxSlider, IxSpinner, IxSplitButton, IxTabItem, IxTabs, IxTextarea, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree, IxIcon,
3271
+ IxDropdownTriggerDirective,
3272
+ IxTextValueAccessorDirective,
3273
+ IxSelectValueAccessorDirective,
3274
+ IxRadioValueAccessorDirective,
3275
+ IxBooleanValueAccessorDirective,
3276
+ 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, IxPushCard, IxRadio, IxRadioGroup, IxRow, IxSelect, IxSelectItem, IxSlider, IxSpinner, IxSplitButton, IxTabItem, IxTabs, IxTextarea, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree, IxIcon,
3277
+ IxDropdownTriggerDirective,
3278
+ IxTextValueAccessorDirective,
3279
+ IxSelectValueAccessorDirective,
3280
+ IxRadioValueAccessorDirective,
3281
+ IxBooleanValueAccessorDirective,
3282
+ IxDateValueAccessorDirective] });
3283
+ /** @nocollapse */ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxModule });
3284
+ }
3285
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: IxModule, decorators: [{
3286
+ type: NgModule,
3287
+ args: [{
3288
+ declarations: DECLARATIONS,
3289
+ exports: DECLARATIONS,
3290
+ }]
3291
+ }] });
3292
+
3293
+ /*
3294
+ * SPDX-FileCopyrightText: 2024 Siemens AG
3295
+ *
3296
+ * SPDX-License-Identifier: MIT
3297
+ *
3298
+ * This source code is licensed under the MIT license found in the
3299
+ * LICENSE file in the root directory of this source tree.
3300
+ */
3301
+
3302
+ /**
3303
+ * Generated bundle index. Do not edit.
3304
+ */
3305
+
3306
+ 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, IxPushCard, IxRadio, IxRadioGroup, IxRadioValueAccessorDirective, IxRow, IxSelect, IxSelectItem, IxSelectValueAccessorDirective, IxSlider, IxSpinner, IxSplitButton, IxTabItem, IxTabs, IxTextValueAccessorDirective, IxTextarea, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTree, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, ModalService, ThemeService, ToastService };
3307
+ //# sourceMappingURL=siemens-ix-angular.mjs.map