@siemens/ix-angular 0.0.0-20240419081748

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