@siemens/ix-angular 1.1.0-beta.4 → 1.1.0-beta.5

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.
@@ -0,0 +1,1927 @@
1
+ import { closeModal, dismissModal, modal, toast } from '@siemens/ix';
2
+ export * from '@siemens/ix';
3
+ import { __decorate, __awaiter } from 'tslib';
4
+ import * as i0 from '@angular/core';
5
+ import { Component, ChangeDetectionStrategy, Injectable, Input, APP_INITIALIZER, NgZone, NgModule } from '@angular/core';
6
+ import { fromEvent } from 'rxjs';
7
+ import { DOCUMENT } from '@angular/common';
8
+ import { applyPolyfills, defineCustomElements } from '@siemens/ix/loader';
9
+
10
+ /* eslint-disable */
11
+ const proxyInputs = (Cmp, inputs) => {
12
+ const Prototype = Cmp.prototype;
13
+ inputs.forEach(item => {
14
+ Object.defineProperty(Prototype, item, {
15
+ get() {
16
+ return this.el[item];
17
+ },
18
+ set(val) {
19
+ this.z.runOutsideAngular(() => (this.el[item] = val));
20
+ }
21
+ });
22
+ });
23
+ };
24
+ const proxyMethods = (Cmp, methods) => {
25
+ const Prototype = Cmp.prototype;
26
+ methods.forEach(methodName => {
27
+ Prototype[methodName] = function () {
28
+ const args = arguments;
29
+ return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
30
+ };
31
+ });
32
+ };
33
+ const proxyOutputs = (instance, el, events) => {
34
+ events.forEach(eventName => instance[eventName] = fromEvent(el, eventName));
35
+ };
36
+ const defineCustomElement = (tagName, customElement) => {
37
+ if (customElement !== undefined &&
38
+ typeof customElements !== 'undefined' &&
39
+ !customElements.get(tagName)) {
40
+ customElements.define(tagName, customElement);
41
+ }
42
+ };
43
+ // tslint:disable-next-line: only-arrow-functions
44
+ function ProxyCmp(opts) {
45
+ const decorator = function (cls) {
46
+ const { defineCustomElementFn, inputs, methods } = opts;
47
+ if (defineCustomElementFn !== undefined) {
48
+ defineCustomElementFn();
49
+ }
50
+ if (inputs) {
51
+ proxyInputs(cls, inputs);
52
+ }
53
+ if (methods) {
54
+ proxyMethods(cls, methods);
55
+ }
56
+ return cls;
57
+ };
58
+ return decorator;
59
+ }
60
+
61
+ let IxAnimatedTab = class IxAnimatedTab {
62
+ constructor(c, r, z) {
63
+ this.z = z;
64
+ c.detach();
65
+ this.el = r.nativeElement;
66
+ }
67
+ };
68
+ /** @nocollapse */ IxAnimatedTab.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxAnimatedTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
69
+ /** @nocollapse */ IxAnimatedTab.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxAnimatedTab, selector: "ix-animated-tab", inputs: { count: "count", icon: "icon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
70
+ IxAnimatedTab = __decorate([
71
+ ProxyCmp({
72
+ defineCustomElementFn: undefined,
73
+ inputs: ['count', 'icon']
74
+ })
75
+ ], IxAnimatedTab);
76
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxAnimatedTab, decorators: [{
77
+ type: Component,
78
+ args: [{
79
+ selector: 'ix-animated-tab',
80
+ changeDetection: ChangeDetectionStrategy.OnPush,
81
+ template: '<ng-content></ng-content>',
82
+ inputs: ['count', 'icon']
83
+ }]
84
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
85
+ let IxAnimatedTabs = class IxAnimatedTabs {
86
+ constructor(c, r, z) {
87
+ this.z = z;
88
+ c.detach();
89
+ this.el = r.nativeElement;
90
+ proxyOutputs(this, this.el, ['tabClick']);
91
+ }
92
+ };
93
+ /** @nocollapse */ IxAnimatedTabs.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxAnimatedTabs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
94
+ /** @nocollapse */ IxAnimatedTabs.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxAnimatedTabs, selector: "ix-animated-tabs", inputs: { disableAnimations: "disableAnimations", selectedIndex: "selectedIndex", tabPlacement: "tabPlacement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
95
+ IxAnimatedTabs = __decorate([
96
+ ProxyCmp({
97
+ defineCustomElementFn: undefined,
98
+ inputs: ['disableAnimations', 'selectedIndex', 'tabPlacement']
99
+ })
100
+ ], IxAnimatedTabs);
101
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxAnimatedTabs, decorators: [{
102
+ type: Component,
103
+ args: [{
104
+ selector: 'ix-animated-tabs',
105
+ changeDetection: ChangeDetectionStrategy.OnPush,
106
+ template: '<ng-content></ng-content>',
107
+ inputs: ['disableAnimations', 'selectedIndex', 'tabPlacement']
108
+ }]
109
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
110
+ let IxApplicationHeader = class IxApplicationHeader {
111
+ constructor(c, r, z) {
112
+ this.z = z;
113
+ c.detach();
114
+ this.el = r.nativeElement;
115
+ }
116
+ };
117
+ /** @nocollapse */ IxApplicationHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxApplicationHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
118
+ /** @nocollapse */ IxApplicationHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxApplicationHeader, selector: "ix-application-header", inputs: { name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
119
+ IxApplicationHeader = __decorate([
120
+ ProxyCmp({
121
+ defineCustomElementFn: undefined,
122
+ inputs: ['name']
123
+ })
124
+ ], IxApplicationHeader);
125
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxApplicationHeader, decorators: [{
126
+ type: Component,
127
+ args: [{
128
+ selector: 'ix-application-header',
129
+ changeDetection: ChangeDetectionStrategy.OnPush,
130
+ template: '<ng-content></ng-content>',
131
+ inputs: ['name']
132
+ }]
133
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
134
+ let IxBasicNavigation = class IxBasicNavigation {
135
+ constructor(c, r, z) {
136
+ this.z = z;
137
+ c.detach();
138
+ this.el = r.nativeElement;
139
+ }
140
+ };
141
+ /** @nocollapse */ IxBasicNavigation.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxBasicNavigation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
142
+ /** @nocollapse */ IxBasicNavigation.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxBasicNavigation, selector: "ix-basic-navigation", inputs: { applicationName: "applicationName", hideHeader: "hideHeader" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
143
+ IxBasicNavigation = __decorate([
144
+ ProxyCmp({
145
+ defineCustomElementFn: undefined,
146
+ inputs: ['applicationName', 'hideHeader']
147
+ })
148
+ ], IxBasicNavigation);
149
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxBasicNavigation, decorators: [{
150
+ type: Component,
151
+ args: [{
152
+ selector: 'ix-basic-navigation',
153
+ changeDetection: ChangeDetectionStrategy.OnPush,
154
+ template: '<ng-content></ng-content>',
155
+ inputs: ['applicationName', 'hideHeader']
156
+ }]
157
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
158
+ let IxBlind = class IxBlind {
159
+ constructor(c, r, z) {
160
+ this.z = z;
161
+ c.detach();
162
+ this.el = r.nativeElement;
163
+ proxyOutputs(this, this.el, ['collapsedChange']);
164
+ }
165
+ };
166
+ /** @nocollapse */ IxBlind.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxBlind, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
167
+ /** @nocollapse */ IxBlind.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxBlind, selector: "ix-blind", inputs: { collapsed: "collapsed", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
168
+ IxBlind = __decorate([
169
+ ProxyCmp({
170
+ defineCustomElementFn: undefined,
171
+ inputs: ['collapsed', 'label']
172
+ })
173
+ ], IxBlind);
174
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxBlind, decorators: [{
175
+ type: Component,
176
+ args: [{
177
+ selector: 'ix-blind',
178
+ changeDetection: ChangeDetectionStrategy.OnPush,
179
+ template: '<ng-content></ng-content>',
180
+ inputs: ['collapsed', 'label']
181
+ }]
182
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
183
+ let IxBreadcrumb = class IxBreadcrumb {
184
+ constructor(c, r, z) {
185
+ this.z = z;
186
+ c.detach();
187
+ this.el = r.nativeElement;
188
+ proxyOutputs(this, this.el, ['itemClick', 'nextClick']);
189
+ }
190
+ };
191
+ /** @nocollapse */ IxBreadcrumb.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
192
+ /** @nocollapse */ IxBreadcrumb.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxBreadcrumb, selector: "ix-breadcrumb", inputs: { ghost: "ghost", nextItems: "nextItems", visibleItemCount: "visibleItemCount" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
193
+ IxBreadcrumb = __decorate([
194
+ ProxyCmp({
195
+ defineCustomElementFn: undefined,
196
+ inputs: ['ghost', 'nextItems', 'visibleItemCount']
197
+ })
198
+ ], IxBreadcrumb);
199
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxBreadcrumb, decorators: [{
200
+ type: Component,
201
+ args: [{
202
+ selector: 'ix-breadcrumb',
203
+ changeDetection: ChangeDetectionStrategy.OnPush,
204
+ template: '<ng-content></ng-content>',
205
+ inputs: ['ghost', 'nextItems', 'visibleItemCount']
206
+ }]
207
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
208
+ let IxBreadcrumbItem = class IxBreadcrumbItem {
209
+ constructor(c, r, z) {
210
+ this.z = z;
211
+ c.detach();
212
+ this.el = r.nativeElement;
213
+ }
214
+ };
215
+ /** @nocollapse */ IxBreadcrumbItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxBreadcrumbItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
216
+ /** @nocollapse */ IxBreadcrumbItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxBreadcrumbItem, selector: "ix-breadcrumb-item", inputs: { icon: "icon", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
217
+ IxBreadcrumbItem = __decorate([
218
+ ProxyCmp({
219
+ defineCustomElementFn: undefined,
220
+ inputs: ['icon', 'label']
221
+ })
222
+ ], IxBreadcrumbItem);
223
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxBreadcrumbItem, decorators: [{
224
+ type: Component,
225
+ args: [{
226
+ selector: 'ix-breadcrumb-item',
227
+ changeDetection: ChangeDetectionStrategy.OnPush,
228
+ template: '<ng-content></ng-content>',
229
+ inputs: ['icon', 'label']
230
+ }]
231
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
232
+ let IxButton = class IxButton {
233
+ constructor(c, r, z) {
234
+ this.z = z;
235
+ c.detach();
236
+ this.el = r.nativeElement;
237
+ }
238
+ };
239
+ /** @nocollapse */ IxButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
240
+ /** @nocollapse */ IxButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxButton, selector: "ix-button", inputs: { disabled: "disabled", ghost: "ghost", invisible: "invisible", outline: "outline", selected: "selected", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
241
+ IxButton = __decorate([
242
+ ProxyCmp({
243
+ defineCustomElementFn: undefined,
244
+ inputs: ['disabled', 'ghost', 'invisible', 'outline', 'selected', 'type', 'variant']
245
+ })
246
+ ], IxButton);
247
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxButton, decorators: [{
248
+ type: Component,
249
+ args: [{
250
+ selector: 'ix-button',
251
+ changeDetection: ChangeDetectionStrategy.OnPush,
252
+ template: '<ng-content></ng-content>',
253
+ inputs: ['disabled', 'ghost', 'invisible', 'outline', 'selected', 'type', 'variant']
254
+ }]
255
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
256
+ let IxCategoryFilter = class IxCategoryFilter {
257
+ constructor(c, r, z) {
258
+ this.z = z;
259
+ c.detach();
260
+ this.el = r.nativeElement;
261
+ proxyOutputs(this, this.el, ['inputChanged', 'filterChanged']);
262
+ }
263
+ };
264
+ /** @nocollapse */ IxCategoryFilter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxCategoryFilter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
265
+ /** @nocollapse */ IxCategoryFilter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxCategoryFilter, selector: "ix-category-filter", inputs: { categories: "categories", filterState: "filterState", hideIcon: "hideIcon", i18nPlainText: "i18nPlainText", icon: "icon", initialState: "initialState", labelCategories: "labelCategories", nonSelectableCategories: "nonSelectableCategories", placeholder: "placeholder", repeatCategories: "repeatCategories", suggestions: "suggestions", tmpDisableScrollIntoView: "tmpDisableScrollIntoView" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
266
+ IxCategoryFilter = __decorate([
267
+ ProxyCmp({
268
+ defineCustomElementFn: undefined,
269
+ inputs: ['categories', 'filterState', 'hideIcon', 'i18nPlainText', 'icon', 'initialState', 'labelCategories', 'nonSelectableCategories', 'placeholder', 'repeatCategories', 'suggestions', 'tmpDisableScrollIntoView']
270
+ })
271
+ ], IxCategoryFilter);
272
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxCategoryFilter, decorators: [{
273
+ type: Component,
274
+ args: [{
275
+ selector: 'ix-category-filter',
276
+ changeDetection: ChangeDetectionStrategy.OnPush,
277
+ template: '<ng-content></ng-content>',
278
+ inputs: ['categories', 'filterState', 'hideIcon', 'i18nPlainText', 'icon', 'initialState', 'labelCategories', 'nonSelectableCategories', 'placeholder', 'repeatCategories', 'suggestions', 'tmpDisableScrollIntoView']
279
+ }]
280
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
281
+ let IxChip = class IxChip {
282
+ constructor(c, r, z) {
283
+ this.z = z;
284
+ c.detach();
285
+ this.el = r.nativeElement;
286
+ proxyOutputs(this, this.el, ['close']);
287
+ }
288
+ };
289
+ /** @nocollapse */ IxChip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
290
+ /** @nocollapse */ IxChip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxChip, selector: "ix-chip", inputs: { active: "active", background: "background", closable: "closable", color: "color", icon: "icon", outline: "outline", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
291
+ IxChip = __decorate([
292
+ ProxyCmp({
293
+ defineCustomElementFn: undefined,
294
+ inputs: ['active', 'background', 'closable', 'color', 'icon', 'outline', 'variant']
295
+ })
296
+ ], IxChip);
297
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxChip, decorators: [{
298
+ type: Component,
299
+ args: [{
300
+ selector: 'ix-chip',
301
+ changeDetection: ChangeDetectionStrategy.OnPush,
302
+ template: '<ng-content></ng-content>',
303
+ inputs: ['active', 'background', 'closable', 'color', 'icon', 'outline', 'variant']
304
+ }]
305
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
306
+ let IxCounterPill = class IxCounterPill {
307
+ constructor(c, r, z) {
308
+ this.z = z;
309
+ c.detach();
310
+ this.el = r.nativeElement;
311
+ }
312
+ };
313
+ /** @nocollapse */ IxCounterPill.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxCounterPill, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
314
+ /** @nocollapse */ IxCounterPill.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxCounterPill, selector: "ix-counter-pill", inputs: { alignLeft: "alignLeft", background: "background", color: "color", outline: "outline", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
315
+ IxCounterPill = __decorate([
316
+ ProxyCmp({
317
+ defineCustomElementFn: undefined,
318
+ inputs: ['alignLeft', 'background', 'color', 'outline', 'variant']
319
+ })
320
+ ], IxCounterPill);
321
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxCounterPill, decorators: [{
322
+ type: Component,
323
+ args: [{
324
+ selector: 'ix-counter-pill',
325
+ changeDetection: ChangeDetectionStrategy.OnPush,
326
+ template: '<ng-content></ng-content>',
327
+ inputs: ['alignLeft', 'background', 'color', 'outline', 'variant']
328
+ }]
329
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
330
+ let IxDatePicker = class IxDatePicker {
331
+ constructor(c, r, z) {
332
+ this.z = z;
333
+ c.detach();
334
+ this.el = r.nativeElement;
335
+ proxyOutputs(this, this.el, ['dateChange', 'dateRangeChange', 'done', 'dateSelect']);
336
+ }
337
+ };
338
+ /** @nocollapse */ IxDatePicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxDatePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
339
+ /** @nocollapse */ IxDatePicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxDatePicker, selector: "ix-date-picker", inputs: { corners: "corners", eventDelimiter: "eventDelimiter", format: "format", from: "from", individual: "individual", maxDate: "maxDate", minDate: "minDate", range: "range", textSelectDate: "textSelectDate", to: "to" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
340
+ IxDatePicker = __decorate([
341
+ ProxyCmp({
342
+ defineCustomElementFn: undefined,
343
+ inputs: ['corners', 'eventDelimiter', 'format', 'from', 'individual', 'maxDate', 'minDate', 'range', 'textSelectDate', 'to'],
344
+ methods: ['getCurrentDate']
345
+ })
346
+ ], IxDatePicker);
347
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxDatePicker, decorators: [{
348
+ type: Component,
349
+ args: [{
350
+ selector: 'ix-date-picker',
351
+ changeDetection: ChangeDetectionStrategy.OnPush,
352
+ template: '<ng-content></ng-content>',
353
+ inputs: ['corners', 'eventDelimiter', 'format', 'from', 'individual', 'maxDate', 'minDate', 'range', 'textSelectDate', 'to']
354
+ }]
355
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
356
+ let IxDateTimeCard = class IxDateTimeCard {
357
+ constructor(c, r, z) {
358
+ this.z = z;
359
+ c.detach();
360
+ this.el = r.nativeElement;
361
+ }
362
+ };
363
+ /** @nocollapse */ IxDateTimeCard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxDateTimeCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
364
+ /** @nocollapse */ IxDateTimeCard.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxDateTimeCard, selector: "ix-date-time-card", inputs: { corners: "corners", individual: "individual" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
365
+ IxDateTimeCard = __decorate([
366
+ ProxyCmp({
367
+ defineCustomElementFn: undefined,
368
+ inputs: ['corners', 'individual']
369
+ })
370
+ ], IxDateTimeCard);
371
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxDateTimeCard, decorators: [{
372
+ type: Component,
373
+ args: [{
374
+ selector: 'ix-date-time-card',
375
+ changeDetection: ChangeDetectionStrategy.OnPush,
376
+ template: '<ng-content></ng-content>',
377
+ inputs: ['corners', 'individual']
378
+ }]
379
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
380
+ let IxDatetimePicker = class IxDatetimePicker {
381
+ constructor(c, r, z) {
382
+ this.z = z;
383
+ c.detach();
384
+ this.el = r.nativeElement;
385
+ proxyOutputs(this, this.el, ['done', 'timeChange', 'dateChange', 'dateSelect']);
386
+ }
387
+ };
388
+ /** @nocollapse */ IxDatetimePicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxDatetimePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
389
+ /** @nocollapse */ IxDatetimePicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxDatetimePicker, selector: "ix-datetime-picker", inputs: { dateFormat: "dateFormat", eventDelimiter: "eventDelimiter", from: "from", maxDate: "maxDate", minDate: "minDate", range: "range", showHour: "showHour", showMinutes: "showMinutes", showSeconds: "showSeconds", showTimeReference: "showTimeReference", textSelectDate: "textSelectDate", time: "time", timeFormat: "timeFormat", timeReference: "timeReference", to: "to" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
390
+ IxDatetimePicker = __decorate([
391
+ ProxyCmp({
392
+ defineCustomElementFn: undefined,
393
+ inputs: ['dateFormat', 'eventDelimiter', 'from', 'maxDate', 'minDate', 'range', 'showHour', 'showMinutes', 'showSeconds', 'showTimeReference', 'textSelectDate', 'time', 'timeFormat', 'timeReference', 'to']
394
+ })
395
+ ], IxDatetimePicker);
396
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxDatetimePicker, decorators: [{
397
+ type: Component,
398
+ args: [{
399
+ selector: 'ix-datetime-picker',
400
+ changeDetection: ChangeDetectionStrategy.OnPush,
401
+ template: '<ng-content></ng-content>',
402
+ inputs: ['dateFormat', 'eventDelimiter', 'from', 'maxDate', 'minDate', 'range', 'showHour', 'showMinutes', 'showSeconds', 'showTimeReference', 'textSelectDate', 'time', 'timeFormat', 'timeReference', 'to']
403
+ }]
404
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
405
+ let IxDrawer = class IxDrawer {
406
+ constructor(c, r, z) {
407
+ this.z = z;
408
+ c.detach();
409
+ this.el = r.nativeElement;
410
+ proxyOutputs(this, this.el, ['open', 'drawerClose']);
411
+ }
412
+ };
413
+ /** @nocollapse */ IxDrawer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxDrawer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
414
+ /** @nocollapse */ IxDrawer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", 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 });
415
+ IxDrawer = __decorate([
416
+ ProxyCmp({
417
+ defineCustomElementFn: undefined,
418
+ inputs: ['closeOnClickOutside', 'fullHeight', 'maxWidth', 'minWidth', 'show', 'width'],
419
+ methods: ['toggleDrawer']
420
+ })
421
+ ], IxDrawer);
422
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxDrawer, decorators: [{
423
+ type: Component,
424
+ args: [{
425
+ selector: 'ix-drawer',
426
+ changeDetection: ChangeDetectionStrategy.OnPush,
427
+ template: '<ng-content></ng-content>',
428
+ inputs: ['closeOnClickOutside', 'fullHeight', 'maxWidth', 'minWidth', 'show', 'width']
429
+ }]
430
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
431
+ let IxDropdown = class IxDropdown {
432
+ constructor(c, r, z) {
433
+ this.z = z;
434
+ c.detach();
435
+ this.el = r.nativeElement;
436
+ proxyOutputs(this, this.el, ['showChanged']);
437
+ }
438
+ };
439
+ /** @nocollapse */ IxDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
440
+ /** @nocollapse */ IxDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxDropdown, selector: "ix-dropdown", inputs: { adjustDropdownWidthToReferenceWidth: "adjustDropdownWidthToReferenceWidth", adjustDropdownWidthToReferenceWith: "adjustDropdownWidthToReferenceWith", anchor: "anchor", closeBehavior: "closeBehavior", header: "header", placement: "placement", positioningStrategy: "positioningStrategy", show: "show", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
441
+ IxDropdown = __decorate([
442
+ ProxyCmp({
443
+ defineCustomElementFn: undefined,
444
+ inputs: ['adjustDropdownWidthToReferenceWidth', 'adjustDropdownWidthToReferenceWith', 'anchor', 'closeBehavior', 'header', 'placement', 'positioningStrategy', 'show', 'trigger'],
445
+ methods: ['updatePosition']
446
+ })
447
+ ], IxDropdown);
448
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxDropdown, decorators: [{
449
+ type: Component,
450
+ args: [{
451
+ selector: 'ix-dropdown',
452
+ changeDetection: ChangeDetectionStrategy.OnPush,
453
+ template: '<ng-content></ng-content>',
454
+ inputs: ['adjustDropdownWidthToReferenceWidth', 'adjustDropdownWidthToReferenceWith', 'anchor', 'closeBehavior', 'header', 'placement', 'positioningStrategy', 'show', 'trigger']
455
+ }]
456
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
457
+ let IxDropdownItem = class IxDropdownItem {
458
+ constructor(c, r, z) {
459
+ this.z = z;
460
+ c.detach();
461
+ this.el = r.nativeElement;
462
+ proxyOutputs(this, this.el, ['itemClick']);
463
+ }
464
+ };
465
+ /** @nocollapse */ IxDropdownItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxDropdownItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
466
+ /** @nocollapse */ IxDropdownItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", 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 });
467
+ IxDropdownItem = __decorate([
468
+ ProxyCmp({
469
+ defineCustomElementFn: undefined,
470
+ inputs: ['checked', 'disabled', 'hover', 'icon', 'label'],
471
+ methods: ['emitItemClick']
472
+ })
473
+ ], IxDropdownItem);
474
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxDropdownItem, decorators: [{
475
+ type: Component,
476
+ args: [{
477
+ selector: 'ix-dropdown-item',
478
+ changeDetection: ChangeDetectionStrategy.OnPush,
479
+ template: '<ng-content></ng-content>',
480
+ inputs: ['checked', 'disabled', 'hover', 'icon', 'label']
481
+ }]
482
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
483
+ let IxEventList = class IxEventList {
484
+ constructor(c, r, z) {
485
+ this.z = z;
486
+ c.detach();
487
+ this.el = r.nativeElement;
488
+ }
489
+ };
490
+ /** @nocollapse */ IxEventList.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxEventList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
491
+ /** @nocollapse */ IxEventList.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", 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 });
492
+ IxEventList = __decorate([
493
+ ProxyCmp({
494
+ defineCustomElementFn: undefined,
495
+ inputs: ['animated', 'chevron', 'compact', 'itemHeight']
496
+ })
497
+ ], IxEventList);
498
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxEventList, decorators: [{
499
+ type: Component,
500
+ args: [{
501
+ selector: 'ix-event-list',
502
+ changeDetection: ChangeDetectionStrategy.OnPush,
503
+ template: '<ng-content></ng-content>',
504
+ inputs: ['animated', 'chevron', 'compact', 'itemHeight']
505
+ }]
506
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
507
+ let IxEventListItem = class IxEventListItem {
508
+ constructor(c, r, z) {
509
+ this.z = z;
510
+ c.detach();
511
+ this.el = r.nativeElement;
512
+ proxyOutputs(this, this.el, ['itemClick']);
513
+ }
514
+ };
515
+ /** @nocollapse */ IxEventListItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxEventListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
516
+ /** @nocollapse */ IxEventListItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxEventListItem, selector: "ix-event-list-item", inputs: { chevron: "chevron", color: "color", disabled: "disabled", opacity: "opacity", selected: "selected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
517
+ IxEventListItem = __decorate([
518
+ ProxyCmp({
519
+ defineCustomElementFn: undefined,
520
+ inputs: ['chevron', 'color', 'disabled', 'opacity', 'selected']
521
+ })
522
+ ], IxEventListItem);
523
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxEventListItem, decorators: [{
524
+ type: Component,
525
+ args: [{
526
+ selector: 'ix-event-list-item',
527
+ changeDetection: ChangeDetectionStrategy.OnPush,
528
+ template: '<ng-content></ng-content>',
529
+ inputs: ['chevron', 'color', 'disabled', 'opacity', 'selected']
530
+ }]
531
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
532
+ let IxExpandingSearch = class IxExpandingSearch {
533
+ constructor(c, r, z) {
534
+ this.z = z;
535
+ c.detach();
536
+ this.el = r.nativeElement;
537
+ proxyOutputs(this, this.el, ['valueChange']);
538
+ }
539
+ };
540
+ /** @nocollapse */ IxExpandingSearch.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxExpandingSearch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
541
+ /** @nocollapse */ IxExpandingSearch.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxExpandingSearch, selector: "ix-expanding-search", inputs: { icon: "icon", placeholder: "placeholder", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
542
+ IxExpandingSearch = __decorate([
543
+ ProxyCmp({
544
+ defineCustomElementFn: undefined,
545
+ inputs: ['icon', 'placeholder', 'value']
546
+ })
547
+ ], IxExpandingSearch);
548
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxExpandingSearch, decorators: [{
549
+ type: Component,
550
+ args: [{
551
+ selector: 'ix-expanding-search',
552
+ changeDetection: ChangeDetectionStrategy.OnPush,
553
+ template: '<ng-content></ng-content>',
554
+ inputs: ['icon', 'placeholder', 'value']
555
+ }]
556
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
557
+ let IxFilterChip = class IxFilterChip {
558
+ constructor(c, r, z) {
559
+ this.z = z;
560
+ c.detach();
561
+ this.el = r.nativeElement;
562
+ proxyOutputs(this, this.el, ['closeClick']);
563
+ }
564
+ };
565
+ /** @nocollapse */ IxFilterChip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxFilterChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
566
+ /** @nocollapse */ IxFilterChip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxFilterChip, selector: "ix-filter-chip", inputs: { disabled: "disabled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
567
+ IxFilterChip = __decorate([
568
+ ProxyCmp({
569
+ defineCustomElementFn: undefined,
570
+ inputs: ['disabled']
571
+ })
572
+ ], IxFilterChip);
573
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxFilterChip, decorators: [{
574
+ type: Component,
575
+ args: [{
576
+ selector: 'ix-filter-chip',
577
+ changeDetection: ChangeDetectionStrategy.OnPush,
578
+ template: '<ng-content></ng-content>',
579
+ inputs: ['disabled']
580
+ }]
581
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
582
+ let IxFlipTile = class IxFlipTile {
583
+ constructor(c, r, z) {
584
+ this.z = z;
585
+ c.detach();
586
+ this.el = r.nativeElement;
587
+ }
588
+ };
589
+ /** @nocollapse */ IxFlipTile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxFlipTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
590
+ /** @nocollapse */ IxFlipTile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxFlipTile, selector: "ix-flip-tile", inputs: { footer: "footer", state: "state" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
591
+ IxFlipTile = __decorate([
592
+ ProxyCmp({
593
+ defineCustomElementFn: undefined,
594
+ inputs: ['footer', 'state']
595
+ })
596
+ ], IxFlipTile);
597
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxFlipTile, decorators: [{
598
+ type: Component,
599
+ args: [{
600
+ selector: 'ix-flip-tile',
601
+ changeDetection: ChangeDetectionStrategy.OnPush,
602
+ template: '<ng-content></ng-content>',
603
+ inputs: ['footer', 'state']
604
+ }]
605
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
606
+ let IxFlipTileContent = class IxFlipTileContent {
607
+ constructor(c, r, z) {
608
+ this.z = z;
609
+ c.detach();
610
+ this.el = r.nativeElement;
611
+ }
612
+ };
613
+ /** @nocollapse */ IxFlipTileContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxFlipTileContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
614
+ /** @nocollapse */ IxFlipTileContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxFlipTileContent, selector: "ix-flip-tile-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
615
+ IxFlipTileContent = __decorate([
616
+ ProxyCmp({
617
+ defineCustomElementFn: undefined
618
+ })
619
+ ], IxFlipTileContent);
620
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxFlipTileContent, decorators: [{
621
+ type: Component,
622
+ args: [{
623
+ selector: 'ix-flip-tile-content',
624
+ changeDetection: ChangeDetectionStrategy.OnPush,
625
+ template: '<ng-content></ng-content>'
626
+ }]
627
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
628
+ let IxGroup = class IxGroup {
629
+ constructor(c, r, z) {
630
+ this.z = z;
631
+ c.detach();
632
+ this.el = r.nativeElement;
633
+ proxyOutputs(this, this.el, ['selectGroup', 'selectItem', 'collapsedChanged']);
634
+ }
635
+ };
636
+ /** @nocollapse */ IxGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
637
+ /** @nocollapse */ IxGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", 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 });
638
+ IxGroup = __decorate([
639
+ ProxyCmp({
640
+ defineCustomElementFn: undefined,
641
+ inputs: ['collapsed', 'expandOnHeaderClick', 'header', 'index', 'selected', 'subHeader', 'suppressHeaderSelection']
642
+ })
643
+ ], IxGroup);
644
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxGroup, decorators: [{
645
+ type: Component,
646
+ args: [{
647
+ selector: 'ix-group',
648
+ changeDetection: ChangeDetectionStrategy.OnPush,
649
+ template: '<ng-content></ng-content>',
650
+ inputs: ['collapsed', 'expandOnHeaderClick', 'header', 'index', 'selected', 'subHeader', 'suppressHeaderSelection']
651
+ }]
652
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
653
+ let IxGroupDropdownItem = class IxGroupDropdownItem {
654
+ constructor(c, r, z) {
655
+ this.z = z;
656
+ c.detach();
657
+ this.el = r.nativeElement;
658
+ }
659
+ };
660
+ /** @nocollapse */ IxGroupDropdownItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxGroupDropdownItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
661
+ /** @nocollapse */ IxGroupDropdownItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxGroupDropdownItem, selector: "ix-group-dropdown-item", inputs: { icon: "icon", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
662
+ IxGroupDropdownItem = __decorate([
663
+ ProxyCmp({
664
+ defineCustomElementFn: undefined,
665
+ inputs: ['icon', 'label']
666
+ })
667
+ ], IxGroupDropdownItem);
668
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxGroupDropdownItem, decorators: [{
669
+ type: Component,
670
+ args: [{
671
+ selector: 'ix-group-dropdown-item',
672
+ changeDetection: ChangeDetectionStrategy.OnPush,
673
+ template: '<ng-content></ng-content>',
674
+ inputs: ['icon', 'label']
675
+ }]
676
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
677
+ let IxGroupItem = class IxGroupItem {
678
+ constructor(c, r, z) {
679
+ this.z = z;
680
+ c.detach();
681
+ this.el = r.nativeElement;
682
+ proxyOutputs(this, this.el, ['selectedChanged']);
683
+ }
684
+ };
685
+ /** @nocollapse */ IxGroupItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxGroupItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
686
+ /** @nocollapse */ IxGroupItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", 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 });
687
+ IxGroupItem = __decorate([
688
+ ProxyCmp({
689
+ defineCustomElementFn: undefined,
690
+ inputs: ['focusable', 'icon', 'index', 'secondaryText', 'selected', 'suppressSelection', 'text']
691
+ })
692
+ ], IxGroupItem);
693
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxGroupItem, decorators: [{
694
+ type: Component,
695
+ args: [{
696
+ selector: 'ix-group-item',
697
+ changeDetection: ChangeDetectionStrategy.OnPush,
698
+ template: '<ng-content></ng-content>',
699
+ inputs: ['focusable', 'icon', 'index', 'secondaryText', 'selected', 'suppressSelection', 'text']
700
+ }]
701
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
702
+ let IxIcon = class IxIcon {
703
+ constructor(c, r, z) {
704
+ this.z = z;
705
+ c.detach();
706
+ this.el = r.nativeElement;
707
+ }
708
+ };
709
+ /** @nocollapse */ IxIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
710
+ /** @nocollapse */ IxIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", 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 });
711
+ IxIcon = __decorate([
712
+ ProxyCmp({
713
+ defineCustomElementFn: undefined,
714
+ inputs: ['color', 'name', 'size']
715
+ })
716
+ ], IxIcon);
717
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxIcon, decorators: [{
718
+ type: Component,
719
+ args: [{
720
+ selector: 'ix-icon',
721
+ changeDetection: ChangeDetectionStrategy.OnPush,
722
+ template: '<ng-content></ng-content>',
723
+ inputs: ['color', 'name', 'size']
724
+ }]
725
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
726
+ let IxIconButton = class IxIconButton {
727
+ constructor(c, r, z) {
728
+ this.z = z;
729
+ c.detach();
730
+ this.el = r.nativeElement;
731
+ }
732
+ };
733
+ /** @nocollapse */ IxIconButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxIconButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
734
+ /** @nocollapse */ IxIconButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxIconButton, selector: "ix-icon-button", inputs: { color: "color", disabled: "disabled", ghost: "ghost", icon: "icon", invisible: "invisible", outline: "outline", oval: "oval", selected: "selected", size: "size", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
735
+ IxIconButton = __decorate([
736
+ ProxyCmp({
737
+ defineCustomElementFn: undefined,
738
+ inputs: ['color', 'disabled', 'ghost', 'icon', 'invisible', 'outline', 'oval', 'selected', 'size', 'type', 'variant']
739
+ })
740
+ ], IxIconButton);
741
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxIconButton, decorators: [{
742
+ type: Component,
743
+ args: [{
744
+ selector: 'ix-icon-button',
745
+ changeDetection: ChangeDetectionStrategy.OnPush,
746
+ template: '<ng-content></ng-content>',
747
+ inputs: ['color', 'disabled', 'ghost', 'icon', 'invisible', 'outline', 'oval', 'selected', 'size', 'type', 'variant']
748
+ }]
749
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
750
+ let IxInputGroup = class IxInputGroup {
751
+ constructor(c, r, z) {
752
+ this.z = z;
753
+ c.detach();
754
+ this.el = r.nativeElement;
755
+ }
756
+ };
757
+ /** @nocollapse */ IxInputGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxInputGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
758
+ /** @nocollapse */ IxInputGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxInputGroup, selector: "ix-input-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
759
+ IxInputGroup = __decorate([
760
+ ProxyCmp({
761
+ defineCustomElementFn: undefined
762
+ })
763
+ ], IxInputGroup);
764
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxInputGroup, decorators: [{
765
+ type: Component,
766
+ args: [{
767
+ selector: 'ix-input-group',
768
+ changeDetection: ChangeDetectionStrategy.OnPush,
769
+ template: '<ng-content></ng-content>'
770
+ }]
771
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
772
+ let IxKpi = class IxKpi {
773
+ constructor(c, r, z) {
774
+ this.z = z;
775
+ c.detach();
776
+ this.el = r.nativeElement;
777
+ }
778
+ };
779
+ /** @nocollapse */ IxKpi.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxKpi, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
780
+ /** @nocollapse */ IxKpi.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", 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 });
781
+ IxKpi = __decorate([
782
+ ProxyCmp({
783
+ defineCustomElementFn: undefined,
784
+ inputs: ['label', 'orientation', 'state', 'unit', 'value']
785
+ })
786
+ ], IxKpi);
787
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxKpi, decorators: [{
788
+ type: Component,
789
+ args: [{
790
+ selector: 'ix-kpi',
791
+ changeDetection: ChangeDetectionStrategy.OnPush,
792
+ template: '<ng-content></ng-content>',
793
+ inputs: ['label', 'orientation', 'state', 'unit', 'value']
794
+ }]
795
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
796
+ let IxMapNavigation = class IxMapNavigation {
797
+ constructor(c, r, z) {
798
+ this.z = z;
799
+ c.detach();
800
+ this.el = r.nativeElement;
801
+ proxyOutputs(this, this.el, ['navigationToggled', 'contextMenuClick']);
802
+ }
803
+ };
804
+ /** @nocollapse */ IxMapNavigation.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxMapNavigation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
805
+ /** @nocollapse */ IxMapNavigation.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", 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 });
806
+ IxMapNavigation = __decorate([
807
+ ProxyCmp({
808
+ defineCustomElementFn: undefined,
809
+ inputs: ['applicationName', 'hideContextMenu', 'navigationTitle'],
810
+ methods: ['openOverlay', 'closeOverlay']
811
+ })
812
+ ], IxMapNavigation);
813
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxMapNavigation, decorators: [{
814
+ type: Component,
815
+ args: [{
816
+ selector: 'ix-map-navigation',
817
+ changeDetection: ChangeDetectionStrategy.OnPush,
818
+ template: '<ng-content></ng-content>',
819
+ inputs: ['applicationName', 'hideContextMenu', 'navigationTitle']
820
+ }]
821
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
822
+ let IxMapNavigationOverlay = class IxMapNavigationOverlay {
823
+ constructor(c, r, z) {
824
+ this.z = z;
825
+ c.detach();
826
+ this.el = r.nativeElement;
827
+ proxyOutputs(this, this.el, ['closeClick']);
828
+ }
829
+ };
830
+ /** @nocollapse */ IxMapNavigationOverlay.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxMapNavigationOverlay, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
831
+ /** @nocollapse */ IxMapNavigationOverlay.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxMapNavigationOverlay, selector: "ix-map-navigation-overlay", inputs: { color: "color", icon: "icon", name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
832
+ IxMapNavigationOverlay = __decorate([
833
+ ProxyCmp({
834
+ defineCustomElementFn: undefined,
835
+ inputs: ['color', 'icon', 'name']
836
+ })
837
+ ], IxMapNavigationOverlay);
838
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxMapNavigationOverlay, decorators: [{
839
+ type: Component,
840
+ args: [{
841
+ selector: 'ix-map-navigation-overlay',
842
+ changeDetection: ChangeDetectionStrategy.OnPush,
843
+ template: '<ng-content></ng-content>',
844
+ inputs: ['color', 'icon', 'name']
845
+ }]
846
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
847
+ let IxMenu = class IxMenu {
848
+ constructor(c, r, z) {
849
+ this.z = z;
850
+ c.detach();
851
+ this.el = r.nativeElement;
852
+ proxyOutputs(this, this.el, ['expandChange', 'mapExpandChange']);
853
+ }
854
+ };
855
+ /** @nocollapse */ IxMenu.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
856
+ /** @nocollapse */ IxMenu.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxMenu, selector: "ix-menu", inputs: { applicationDescription: "applicationDescription", applicationName: "applicationName", enableMapExpand: "enableMapExpand", enableSettings: "enableSettings", enableToggleTheme: "enableToggleTheme", expand: "expand", i18nCollapse: "i18nCollapse", i18nExpand: "i18nExpand", i18nLegal: "i18nLegal", i18nMore: "i18nMore", i18nSettings: "i18nSettings", i18nToggleTheme: "i18nToggleTheme", maxVisibleMenuItems: "maxVisibleMenuItems", showAbout: "showAbout", showSettings: "showSettings" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
857
+ IxMenu = __decorate([
858
+ ProxyCmp({
859
+ defineCustomElementFn: undefined,
860
+ inputs: ['applicationDescription', 'applicationName', 'enableMapExpand', 'enableSettings', 'enableToggleTheme', 'expand', 'i18nCollapse', 'i18nExpand', 'i18nLegal', 'i18nMore', 'i18nSettings', 'i18nToggleTheme', 'maxVisibleMenuItems', 'showAbout', 'showSettings'],
861
+ methods: ['toggleMapExpand', 'toggleMenu', 'toggleSettings', 'toggleAbout']
862
+ })
863
+ ], IxMenu);
864
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxMenu, decorators: [{
865
+ type: Component,
866
+ args: [{
867
+ selector: 'ix-menu',
868
+ changeDetection: ChangeDetectionStrategy.OnPush,
869
+ template: '<ng-content></ng-content>',
870
+ inputs: ['applicationDescription', 'applicationName', 'enableMapExpand', 'enableSettings', 'enableToggleTheme', 'expand', 'i18nCollapse', 'i18nExpand', 'i18nLegal', 'i18nMore', 'i18nSettings', 'i18nToggleTheme', 'maxVisibleMenuItems', 'showAbout', 'showSettings']
871
+ }]
872
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
873
+ let IxMenuAbout = class IxMenuAbout {
874
+ constructor(c, r, z) {
875
+ this.z = z;
876
+ c.detach();
877
+ this.el = r.nativeElement;
878
+ proxyOutputs(this, this.el, ['close']);
879
+ }
880
+ };
881
+ /** @nocollapse */ IxMenuAbout.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxMenuAbout, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
882
+ /** @nocollapse */ IxMenuAbout.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", 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 });
883
+ IxMenuAbout = __decorate([
884
+ ProxyCmp({
885
+ defineCustomElementFn: undefined,
886
+ inputs: ['activeTabLabel', 'label', 'show']
887
+ })
888
+ ], IxMenuAbout);
889
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxMenuAbout, decorators: [{
890
+ type: Component,
891
+ args: [{
892
+ selector: 'ix-menu-about',
893
+ changeDetection: ChangeDetectionStrategy.OnPush,
894
+ template: '<ng-content></ng-content>',
895
+ inputs: ['activeTabLabel', 'label', 'show']
896
+ }]
897
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
898
+ let IxMenuAboutItem = class IxMenuAboutItem {
899
+ constructor(c, r, z) {
900
+ this.z = z;
901
+ c.detach();
902
+ this.el = r.nativeElement;
903
+ }
904
+ };
905
+ /** @nocollapse */ IxMenuAboutItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxMenuAboutItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
906
+ /** @nocollapse */ IxMenuAboutItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxMenuAboutItem, selector: "ix-menu-about-item", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
907
+ IxMenuAboutItem = __decorate([
908
+ ProxyCmp({
909
+ defineCustomElementFn: undefined,
910
+ inputs: ['label']
911
+ })
912
+ ], IxMenuAboutItem);
913
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxMenuAboutItem, decorators: [{
914
+ type: Component,
915
+ args: [{
916
+ selector: 'ix-menu-about-item',
917
+ changeDetection: ChangeDetectionStrategy.OnPush,
918
+ template: '<ng-content></ng-content>',
919
+ inputs: ['label']
920
+ }]
921
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
922
+ let IxMenuAboutNews = class IxMenuAboutNews {
923
+ constructor(c, r, z) {
924
+ this.z = z;
925
+ c.detach();
926
+ this.el = r.nativeElement;
927
+ proxyOutputs(this, this.el, ['showMore', 'closePopover']);
928
+ }
929
+ };
930
+ /** @nocollapse */ IxMenuAboutNews.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxMenuAboutNews, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
931
+ /** @nocollapse */ IxMenuAboutNews.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", 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 });
932
+ IxMenuAboutNews = __decorate([
933
+ ProxyCmp({
934
+ defineCustomElementFn: undefined,
935
+ inputs: ['aboutItemLabel', 'expanded', 'i18nShowMore', 'label', 'offsetBottom', 'show']
936
+ })
937
+ ], IxMenuAboutNews);
938
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxMenuAboutNews, decorators: [{
939
+ type: Component,
940
+ args: [{
941
+ selector: 'ix-menu-about-news',
942
+ changeDetection: ChangeDetectionStrategy.OnPush,
943
+ template: '<ng-content></ng-content>',
944
+ inputs: ['aboutItemLabel', 'expanded', 'i18nShowMore', 'label', 'offsetBottom', 'show']
945
+ }]
946
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
947
+ let IxMenuAvatar = class IxMenuAvatar {
948
+ constructor(c, r, z) {
949
+ this.z = z;
950
+ c.detach();
951
+ this.el = r.nativeElement;
952
+ proxyOutputs(this, this.el, ['logoutClick']);
953
+ }
954
+ };
955
+ /** @nocollapse */ IxMenuAvatar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxMenuAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
956
+ /** @nocollapse */ IxMenuAvatar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxMenuAvatar, selector: "ix-menu-avatar", inputs: { bottom: "bottom", i18nLogout: "i18nLogout", top: "top" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
957
+ IxMenuAvatar = __decorate([
958
+ ProxyCmp({
959
+ defineCustomElementFn: undefined,
960
+ inputs: ['bottom', 'i18nLogout', 'top']
961
+ })
962
+ ], IxMenuAvatar);
963
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxMenuAvatar, decorators: [{
964
+ type: Component,
965
+ args: [{
966
+ selector: 'ix-menu-avatar',
967
+ changeDetection: ChangeDetectionStrategy.OnPush,
968
+ template: '<ng-content></ng-content>',
969
+ inputs: ['bottom', 'i18nLogout', 'top']
970
+ }]
971
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
972
+ let IxMenuAvatarItem = class IxMenuAvatarItem {
973
+ constructor(c, r, z) {
974
+ this.z = z;
975
+ c.detach();
976
+ this.el = r.nativeElement;
977
+ proxyOutputs(this, this.el, ['itemClick']);
978
+ }
979
+ };
980
+ /** @nocollapse */ IxMenuAvatarItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxMenuAvatarItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
981
+ /** @nocollapse */ IxMenuAvatarItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", 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 });
982
+ IxMenuAvatarItem = __decorate([
983
+ ProxyCmp({
984
+ defineCustomElementFn: undefined,
985
+ inputs: ['icon', 'label']
986
+ })
987
+ ], IxMenuAvatarItem);
988
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxMenuAvatarItem, decorators: [{
989
+ type: Component,
990
+ args: [{
991
+ selector: 'ix-menu-avatar-item',
992
+ changeDetection: ChangeDetectionStrategy.OnPush,
993
+ template: '<ng-content></ng-content>',
994
+ inputs: ['icon', 'label']
995
+ }]
996
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
997
+ let IxMenuItem = class IxMenuItem {
998
+ constructor(c, r, z) {
999
+ this.z = z;
1000
+ c.detach();
1001
+ this.el = r.nativeElement;
1002
+ }
1003
+ };
1004
+ /** @nocollapse */ IxMenuItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1005
+ /** @nocollapse */ IxMenuItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxMenuItem, selector: "ix-menu-item", inputs: { active: "active", bottom: "bottom", disabled: "disabled", home: "home", notifications: "notifications", tabIcon: "tabIcon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1006
+ IxMenuItem = __decorate([
1007
+ ProxyCmp({
1008
+ defineCustomElementFn: undefined,
1009
+ inputs: ['active', 'bottom', 'disabled', 'home', 'notifications', 'tabIcon']
1010
+ })
1011
+ ], IxMenuItem);
1012
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxMenuItem, decorators: [{
1013
+ type: Component,
1014
+ args: [{
1015
+ selector: 'ix-menu-item',
1016
+ changeDetection: ChangeDetectionStrategy.OnPush,
1017
+ template: '<ng-content></ng-content>',
1018
+ inputs: ['active', 'bottom', 'disabled', 'home', 'notifications', 'tabIcon']
1019
+ }]
1020
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1021
+ let IxMenuSettings = class IxMenuSettings {
1022
+ constructor(c, r, z) {
1023
+ this.z = z;
1024
+ c.detach();
1025
+ this.el = r.nativeElement;
1026
+ proxyOutputs(this, this.el, ['close']);
1027
+ }
1028
+ };
1029
+ /** @nocollapse */ IxMenuSettings.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxMenuSettings, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1030
+ /** @nocollapse */ IxMenuSettings.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", 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 });
1031
+ IxMenuSettings = __decorate([
1032
+ ProxyCmp({
1033
+ defineCustomElementFn: undefined,
1034
+ inputs: ['activeTabLabel', 'label', 'show']
1035
+ })
1036
+ ], IxMenuSettings);
1037
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxMenuSettings, decorators: [{
1038
+ type: Component,
1039
+ args: [{
1040
+ selector: 'ix-menu-settings',
1041
+ changeDetection: ChangeDetectionStrategy.OnPush,
1042
+ template: '<ng-content></ng-content>',
1043
+ inputs: ['activeTabLabel', 'label', 'show']
1044
+ }]
1045
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1046
+ let IxMenuSettingsItem = class IxMenuSettingsItem {
1047
+ constructor(c, r, z) {
1048
+ this.z = z;
1049
+ c.detach();
1050
+ this.el = r.nativeElement;
1051
+ }
1052
+ };
1053
+ /** @nocollapse */ IxMenuSettingsItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxMenuSettingsItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1054
+ /** @nocollapse */ IxMenuSettingsItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxMenuSettingsItem, selector: "ix-menu-settings-item", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1055
+ IxMenuSettingsItem = __decorate([
1056
+ ProxyCmp({
1057
+ defineCustomElementFn: undefined,
1058
+ inputs: ['label']
1059
+ })
1060
+ ], IxMenuSettingsItem);
1061
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxMenuSettingsItem, decorators: [{
1062
+ type: Component,
1063
+ args: [{
1064
+ selector: 'ix-menu-settings-item',
1065
+ changeDetection: ChangeDetectionStrategy.OnPush,
1066
+ template: '<ng-content></ng-content>',
1067
+ inputs: ['label']
1068
+ }]
1069
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1070
+ let IxMessageBar = class IxMessageBar {
1071
+ constructor(c, r, z) {
1072
+ this.z = z;
1073
+ c.detach();
1074
+ this.el = r.nativeElement;
1075
+ proxyOutputs(this, this.el, ['closedChange']);
1076
+ }
1077
+ };
1078
+ /** @nocollapse */ IxMessageBar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxMessageBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1079
+ /** @nocollapse */ IxMessageBar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxMessageBar, selector: "ix-message-bar", inputs: { dismissible: "dismissible", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1080
+ IxMessageBar = __decorate([
1081
+ ProxyCmp({
1082
+ defineCustomElementFn: undefined,
1083
+ inputs: ['dismissible', 'type']
1084
+ })
1085
+ ], IxMessageBar);
1086
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxMessageBar, decorators: [{
1087
+ type: Component,
1088
+ args: [{
1089
+ selector: 'ix-message-bar',
1090
+ changeDetection: ChangeDetectionStrategy.OnPush,
1091
+ template: '<ng-content></ng-content>',
1092
+ inputs: ['dismissible', 'type']
1093
+ }]
1094
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1095
+ let IxModal = class IxModal {
1096
+ constructor(c, r, z) {
1097
+ this.z = z;
1098
+ c.detach();
1099
+ this.el = r.nativeElement;
1100
+ proxyOutputs(this, this.el, ['closed', 'dismissed']);
1101
+ }
1102
+ };
1103
+ /** @nocollapse */ IxModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1104
+ /** @nocollapse */ IxModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxModal, selector: "ix-modal", inputs: { animation: "animation", ariaDescribedBy: "ariaDescribedBy", ariaLabelledBy: "ariaLabelledBy", backdrop: "backdrop", backdropClass: "backdropClass", beforeDismiss: "beforeDismiss", centered: "centered", content: "content", headerTitle: "headerTitle", icon: "icon", iconColor: "iconColor", keyboard: "keyboard", modalDialogClass: "modalDialogClass", scrollable: "scrollable", size: "size", windowClass: "windowClass" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1105
+ IxModal = __decorate([
1106
+ ProxyCmp({
1107
+ defineCustomElementFn: undefined,
1108
+ inputs: ['animation', 'ariaDescribedBy', 'ariaLabelledBy', 'backdrop', 'backdropClass', 'beforeDismiss', 'centered', 'content', 'headerTitle', 'icon', 'iconColor', 'keyboard', 'modalDialogClass', 'scrollable', 'size', 'windowClass'],
1109
+ methods: ['dismiss', 'close']
1110
+ })
1111
+ ], IxModal);
1112
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxModal, decorators: [{
1113
+ type: Component,
1114
+ args: [{
1115
+ selector: 'ix-modal',
1116
+ changeDetection: ChangeDetectionStrategy.OnPush,
1117
+ template: '<ng-content></ng-content>',
1118
+ inputs: ['animation', 'ariaDescribedBy', 'ariaLabelledBy', 'backdrop', 'backdropClass', 'beforeDismiss', 'centered', 'content', 'headerTitle', 'icon', 'iconColor', 'keyboard', 'modalDialogClass', 'scrollable', 'size', 'windowClass']
1119
+ }]
1120
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1121
+ let IxModalContainer = class IxModalContainer {
1122
+ constructor(c, r, z) {
1123
+ this.z = z;
1124
+ c.detach();
1125
+ this.el = r.nativeElement;
1126
+ }
1127
+ };
1128
+ /** @nocollapse */ IxModalContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxModalContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1129
+ /** @nocollapse */ IxModalContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxModalContainer, selector: "ix-modal-container", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1130
+ IxModalContainer = __decorate([
1131
+ ProxyCmp({
1132
+ defineCustomElementFn: undefined,
1133
+ methods: ['showModal']
1134
+ })
1135
+ ], IxModalContainer);
1136
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxModalContainer, decorators: [{
1137
+ type: Component,
1138
+ args: [{
1139
+ selector: 'ix-modal-container',
1140
+ changeDetection: ChangeDetectionStrategy.OnPush,
1141
+ template: '<ng-content></ng-content>'
1142
+ }]
1143
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1144
+ let IxModalExample = class IxModalExample {
1145
+ constructor(c, r, z) {
1146
+ this.z = z;
1147
+ c.detach();
1148
+ this.el = r.nativeElement;
1149
+ }
1150
+ };
1151
+ /** @nocollapse */ IxModalExample.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxModalExample, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1152
+ /** @nocollapse */ IxModalExample.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxModalExample, selector: "ix-modal-example", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1153
+ IxModalExample = __decorate([
1154
+ ProxyCmp({
1155
+ defineCustomElementFn: undefined
1156
+ })
1157
+ ], IxModalExample);
1158
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxModalExample, decorators: [{
1159
+ type: Component,
1160
+ args: [{
1161
+ selector: 'ix-modal-example',
1162
+ changeDetection: ChangeDetectionStrategy.OnPush,
1163
+ template: '<ng-content></ng-content>'
1164
+ }]
1165
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1166
+ let IxPill = class IxPill {
1167
+ constructor(c, r, z) {
1168
+ this.z = z;
1169
+ c.detach();
1170
+ this.el = r.nativeElement;
1171
+ }
1172
+ };
1173
+ /** @nocollapse */ IxPill.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxPill, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1174
+ /** @nocollapse */ IxPill.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxPill, selector: "ix-pill", inputs: { alignLeft: "alignLeft", background: "background", color: "color", icon: "icon", outline: "outline", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1175
+ IxPill = __decorate([
1176
+ ProxyCmp({
1177
+ defineCustomElementFn: undefined,
1178
+ inputs: ['alignLeft', 'background', 'color', 'icon', 'outline', 'variant']
1179
+ })
1180
+ ], IxPill);
1181
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxPill, decorators: [{
1182
+ type: Component,
1183
+ args: [{
1184
+ selector: 'ix-pill',
1185
+ changeDetection: ChangeDetectionStrategy.OnPush,
1186
+ template: '<ng-content></ng-content>',
1187
+ inputs: ['alignLeft', 'background', 'color', 'icon', 'outline', 'variant']
1188
+ }]
1189
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1190
+ let IxSelect = class IxSelect {
1191
+ constructor(c, r, z) {
1192
+ this.z = z;
1193
+ c.detach();
1194
+ this.el = r.nativeElement;
1195
+ proxyOutputs(this, this.el, ['itemSelectionChange', 'addItem']);
1196
+ }
1197
+ };
1198
+ /** @nocollapse */ IxSelect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1199
+ /** @nocollapse */ IxSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxSelect, selector: "ix-select", inputs: { allowClear: "allowClear", disabled: "disabled", editable: "editable", i18nPlaceholder: "i18nPlaceholder", i18nPlaceholderEditable: "i18nPlaceholderEditable", i18nSelectListHeader: "i18nSelectListHeader", mode: "mode", readonly: "readonly", selectedIndices: "selectedIndices" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1200
+ IxSelect = __decorate([
1201
+ ProxyCmp({
1202
+ defineCustomElementFn: undefined,
1203
+ inputs: ['allowClear', 'disabled', 'editable', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'mode', 'readonly', 'selectedIndices']
1204
+ })
1205
+ ], IxSelect);
1206
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxSelect, decorators: [{
1207
+ type: Component,
1208
+ args: [{
1209
+ selector: 'ix-select',
1210
+ changeDetection: ChangeDetectionStrategy.OnPush,
1211
+ template: '<ng-content></ng-content>',
1212
+ inputs: ['allowClear', 'disabled', 'editable', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'mode', 'readonly', 'selectedIndices']
1213
+ }]
1214
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1215
+ let IxSelectItem = class IxSelectItem {
1216
+ constructor(c, r, z) {
1217
+ this.z = z;
1218
+ c.detach();
1219
+ this.el = r.nativeElement;
1220
+ proxyOutputs(this, this.el, ['itemClick']);
1221
+ }
1222
+ };
1223
+ /** @nocollapse */ IxSelectItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxSelectItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1224
+ /** @nocollapse */ IxSelectItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxSelectItem, selector: "ix-select-item", inputs: { hover: "hover", label: "label", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1225
+ IxSelectItem = __decorate([
1226
+ ProxyCmp({
1227
+ defineCustomElementFn: undefined,
1228
+ inputs: ['hover', 'label', 'selected', 'value'],
1229
+ methods: ['onItemClick']
1230
+ })
1231
+ ], IxSelectItem);
1232
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxSelectItem, decorators: [{
1233
+ type: Component,
1234
+ args: [{
1235
+ selector: 'ix-select-item',
1236
+ changeDetection: ChangeDetectionStrategy.OnPush,
1237
+ template: '<ng-content></ng-content>',
1238
+ inputs: ['hover', 'label', 'selected', 'value']
1239
+ }]
1240
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1241
+ let IxSpinner = class IxSpinner {
1242
+ constructor(c, r, z) {
1243
+ this.z = z;
1244
+ c.detach();
1245
+ this.el = r.nativeElement;
1246
+ }
1247
+ };
1248
+ /** @nocollapse */ IxSpinner.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1249
+ /** @nocollapse */ IxSpinner.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxSpinner, selector: "ix-spinner", inputs: { size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1250
+ IxSpinner = __decorate([
1251
+ ProxyCmp({
1252
+ defineCustomElementFn: undefined,
1253
+ inputs: ['size', 'variant']
1254
+ })
1255
+ ], IxSpinner);
1256
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxSpinner, decorators: [{
1257
+ type: Component,
1258
+ args: [{
1259
+ selector: 'ix-spinner',
1260
+ changeDetection: ChangeDetectionStrategy.OnPush,
1261
+ template: '<ng-content></ng-content>',
1262
+ inputs: ['size', 'variant']
1263
+ }]
1264
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1265
+ let IxSplitButton = class IxSplitButton {
1266
+ constructor(c, r, z) {
1267
+ this.z = z;
1268
+ c.detach();
1269
+ this.el = r.nativeElement;
1270
+ proxyOutputs(this, this.el, ['buttonClick']);
1271
+ }
1272
+ };
1273
+ /** @nocollapse */ IxSplitButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxSplitButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1274
+ /** @nocollapse */ IxSplitButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxSplitButton, selector: "ix-split-button", inputs: { disabled: "disabled", ghost: "ghost", icon: "icon", invisible: "invisible", label: "label", outline: "outline", placement: "placement", splitIcon: "splitIcon", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1275
+ IxSplitButton = __decorate([
1276
+ ProxyCmp({
1277
+ defineCustomElementFn: undefined,
1278
+ inputs: ['disabled', 'ghost', 'icon', 'invisible', 'label', 'outline', 'placement', 'splitIcon', 'variant']
1279
+ })
1280
+ ], IxSplitButton);
1281
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxSplitButton, decorators: [{
1282
+ type: Component,
1283
+ args: [{
1284
+ selector: 'ix-split-button',
1285
+ changeDetection: ChangeDetectionStrategy.OnPush,
1286
+ template: '<ng-content></ng-content>',
1287
+ inputs: ['disabled', 'ghost', 'icon', 'invisible', 'label', 'outline', 'placement', 'splitIcon', 'variant']
1288
+ }]
1289
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1290
+ let IxSplitButtonItem = class IxSplitButtonItem {
1291
+ constructor(c, r, z) {
1292
+ this.z = z;
1293
+ c.detach();
1294
+ this.el = r.nativeElement;
1295
+ proxyOutputs(this, this.el, ['itemClick']);
1296
+ }
1297
+ };
1298
+ /** @nocollapse */ IxSplitButtonItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxSplitButtonItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1299
+ /** @nocollapse */ IxSplitButtonItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", 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 });
1300
+ IxSplitButtonItem = __decorate([
1301
+ ProxyCmp({
1302
+ defineCustomElementFn: undefined,
1303
+ inputs: ['icon', 'label']
1304
+ })
1305
+ ], IxSplitButtonItem);
1306
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxSplitButtonItem, decorators: [{
1307
+ type: Component,
1308
+ args: [{
1309
+ selector: 'ix-split-button-item',
1310
+ changeDetection: ChangeDetectionStrategy.OnPush,
1311
+ template: '<ng-content></ng-content>',
1312
+ inputs: ['icon', 'label']
1313
+ }]
1314
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1315
+ let IxTabItem = class IxTabItem {
1316
+ constructor(c, r, z) {
1317
+ this.z = z;
1318
+ c.detach();
1319
+ this.el = r.nativeElement;
1320
+ }
1321
+ };
1322
+ /** @nocollapse */ IxTabItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxTabItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1323
+ /** @nocollapse */ IxTabItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", 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 });
1324
+ IxTabItem = __decorate([
1325
+ ProxyCmp({
1326
+ defineCustomElementFn: undefined,
1327
+ inputs: ['counter', 'disabled', 'icon', 'layout', 'placement', 'rounded', 'selected', 'small']
1328
+ })
1329
+ ], IxTabItem);
1330
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxTabItem, decorators: [{
1331
+ type: Component,
1332
+ args: [{
1333
+ selector: 'ix-tab-item',
1334
+ changeDetection: ChangeDetectionStrategy.OnPush,
1335
+ template: '<ng-content></ng-content>',
1336
+ inputs: ['counter', 'disabled', 'icon', 'layout', 'placement', 'rounded', 'selected', 'small']
1337
+ }]
1338
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1339
+ let IxTabs = class IxTabs {
1340
+ constructor(c, r, z) {
1341
+ this.z = z;
1342
+ c.detach();
1343
+ this.el = r.nativeElement;
1344
+ }
1345
+ };
1346
+ /** @nocollapse */ IxTabs.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxTabs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1347
+ /** @nocollapse */ IxTabs.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", 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 });
1348
+ IxTabs = __decorate([
1349
+ ProxyCmp({
1350
+ defineCustomElementFn: undefined,
1351
+ inputs: ['layout', 'placement', 'rounded', 'selected', 'small']
1352
+ })
1353
+ ], IxTabs);
1354
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxTabs, decorators: [{
1355
+ type: Component,
1356
+ args: [{
1357
+ selector: 'ix-tabs',
1358
+ changeDetection: ChangeDetectionStrategy.OnPush,
1359
+ template: '<ng-content></ng-content>',
1360
+ inputs: ['layout', 'placement', 'rounded', 'selected', 'small']
1361
+ }]
1362
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1363
+ let IxTile = class IxTile {
1364
+ constructor(c, r, z) {
1365
+ this.z = z;
1366
+ c.detach();
1367
+ this.el = r.nativeElement;
1368
+ }
1369
+ };
1370
+ /** @nocollapse */ IxTile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1371
+ /** @nocollapse */ IxTile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxTile, selector: "ix-tile", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1372
+ IxTile = __decorate([
1373
+ ProxyCmp({
1374
+ defineCustomElementFn: undefined,
1375
+ inputs: ['size']
1376
+ })
1377
+ ], IxTile);
1378
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxTile, decorators: [{
1379
+ type: Component,
1380
+ args: [{
1381
+ selector: 'ix-tile',
1382
+ changeDetection: ChangeDetectionStrategy.OnPush,
1383
+ template: '<ng-content></ng-content>',
1384
+ inputs: ['size']
1385
+ }]
1386
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1387
+ let IxTimePicker = class IxTimePicker {
1388
+ constructor(c, r, z) {
1389
+ this.z = z;
1390
+ c.detach();
1391
+ this.el = r.nativeElement;
1392
+ proxyOutputs(this, this.el, ['done', 'timeChange']);
1393
+ }
1394
+ };
1395
+ /** @nocollapse */ IxTimePicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxTimePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1396
+ /** @nocollapse */ IxTimePicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxTimePicker, selector: "ix-time-picker", inputs: { corners: "corners", format: "format", individual: "individual", showHour: "showHour", showMinutes: "showMinutes", showSeconds: "showSeconds", showTimeReference: "showTimeReference", textSelectTime: "textSelectTime", time: "time", timeReference: "timeReference" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1397
+ IxTimePicker = __decorate([
1398
+ ProxyCmp({
1399
+ defineCustomElementFn: undefined,
1400
+ inputs: ['corners', 'format', 'individual', 'showHour', 'showMinutes', 'showSeconds', 'showTimeReference', 'textSelectTime', 'time', 'timeReference'],
1401
+ methods: ['getCurrentTime']
1402
+ })
1403
+ ], IxTimePicker);
1404
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxTimePicker, decorators: [{
1405
+ type: Component,
1406
+ args: [{
1407
+ selector: 'ix-time-picker',
1408
+ changeDetection: ChangeDetectionStrategy.OnPush,
1409
+ template: '<ng-content></ng-content>',
1410
+ inputs: ['corners', 'format', 'individual', 'showHour', 'showMinutes', 'showSeconds', 'showTimeReference', 'textSelectTime', 'time', 'timeReference']
1411
+ }]
1412
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1413
+ let IxToast = class IxToast {
1414
+ constructor(c, r, z) {
1415
+ this.z = z;
1416
+ c.detach();
1417
+ this.el = r.nativeElement;
1418
+ proxyOutputs(this, this.el, ['closeToast']);
1419
+ }
1420
+ };
1421
+ /** @nocollapse */ IxToast.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1422
+ /** @nocollapse */ IxToast.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", 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 });
1423
+ IxToast = __decorate([
1424
+ ProxyCmp({
1425
+ defineCustomElementFn: undefined,
1426
+ inputs: ['autoClose', 'autoCloseDelay', 'icon', 'iconColor', 'toastTitle', 'type']
1427
+ })
1428
+ ], IxToast);
1429
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxToast, decorators: [{
1430
+ type: Component,
1431
+ args: [{
1432
+ selector: 'ix-toast',
1433
+ changeDetection: ChangeDetectionStrategy.OnPush,
1434
+ template: '<ng-content></ng-content>',
1435
+ inputs: ['autoClose', 'autoCloseDelay', 'icon', 'iconColor', 'toastTitle', 'type']
1436
+ }]
1437
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1438
+ let IxToastContainer = class IxToastContainer {
1439
+ constructor(c, r, z) {
1440
+ this.z = z;
1441
+ c.detach();
1442
+ this.el = r.nativeElement;
1443
+ }
1444
+ };
1445
+ /** @nocollapse */ IxToastContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxToastContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1446
+ /** @nocollapse */ IxToastContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", 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 });
1447
+ IxToastContainer = __decorate([
1448
+ ProxyCmp({
1449
+ defineCustomElementFn: undefined,
1450
+ inputs: ['containerClass', 'containerId', 'position'],
1451
+ methods: ['showToast']
1452
+ })
1453
+ ], IxToastContainer);
1454
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxToastContainer, decorators: [{
1455
+ type: Component,
1456
+ args: [{
1457
+ selector: 'ix-toast-container',
1458
+ changeDetection: ChangeDetectionStrategy.OnPush,
1459
+ template: '<ng-content></ng-content>',
1460
+ inputs: ['containerClass', 'containerId', 'position']
1461
+ }]
1462
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1463
+ let IxToggle = class IxToggle {
1464
+ constructor(c, r, z) {
1465
+ this.z = z;
1466
+ c.detach();
1467
+ this.el = r.nativeElement;
1468
+ proxyOutputs(this, this.el, ['checkedChange']);
1469
+ }
1470
+ };
1471
+ /** @nocollapse */ IxToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1472
+ /** @nocollapse */ IxToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxToggle, selector: "ix-toggle", inputs: { checked: "checked", color: "color", 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 });
1473
+ IxToggle = __decorate([
1474
+ ProxyCmp({
1475
+ defineCustomElementFn: undefined,
1476
+ inputs: ['checked', 'color', 'disabled', 'hideText', 'indeterminate', 'textIndeterminate', 'textOff', 'textOn']
1477
+ })
1478
+ ], IxToggle);
1479
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxToggle, decorators: [{
1480
+ type: Component,
1481
+ args: [{
1482
+ selector: 'ix-toggle',
1483
+ changeDetection: ChangeDetectionStrategy.OnPush,
1484
+ template: '<ng-content></ng-content>',
1485
+ inputs: ['checked', 'color', 'disabled', 'hideText', 'indeterminate', 'textIndeterminate', 'textOff', 'textOn']
1486
+ }]
1487
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1488
+ let IxTreeItem = class IxTreeItem {
1489
+ constructor(c, r, z) {
1490
+ this.z = z;
1491
+ c.detach();
1492
+ this.el = r.nativeElement;
1493
+ proxyOutputs(this, this.el, ['toggle', 'itemClick']);
1494
+ }
1495
+ };
1496
+ /** @nocollapse */ IxTreeItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxTreeItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1497
+ /** @nocollapse */ IxTreeItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", 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 });
1498
+ IxTreeItem = __decorate([
1499
+ ProxyCmp({
1500
+ defineCustomElementFn: undefined,
1501
+ inputs: ['context', 'hasChildren', 'text']
1502
+ })
1503
+ ], IxTreeItem);
1504
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxTreeItem, decorators: [{
1505
+ type: Component,
1506
+ args: [{
1507
+ selector: 'ix-tree-item',
1508
+ changeDetection: ChangeDetectionStrategy.OnPush,
1509
+ template: '<ng-content></ng-content>',
1510
+ inputs: ['context', 'hasChildren', 'text']
1511
+ }]
1512
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1513
+ let IxUpload = class IxUpload {
1514
+ constructor(c, r, z) {
1515
+ this.z = z;
1516
+ c.detach();
1517
+ this.el = r.nativeElement;
1518
+ proxyOutputs(this, this.el, ['filesChanged']);
1519
+ }
1520
+ };
1521
+ /** @nocollapse */ IxUpload.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxUpload, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1522
+ /** @nocollapse */ IxUpload.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", 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 });
1523
+ IxUpload = __decorate([
1524
+ ProxyCmp({
1525
+ defineCustomElementFn: undefined,
1526
+ inputs: ['accept', 'disabled', 'i18nUploadDisabled', 'i18nUploadFile', 'loadingText', 'multiline', 'multiple', 'selectFileText', 'state', 'uploadFailedText', 'uploadSuccessText'],
1527
+ methods: ['setFilesToUpload']
1528
+ })
1529
+ ], IxUpload);
1530
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxUpload, decorators: [{
1531
+ type: Component,
1532
+ args: [{
1533
+ selector: 'ix-upload',
1534
+ changeDetection: ChangeDetectionStrategy.OnPush,
1535
+ template: '<ng-content></ng-content>',
1536
+ inputs: ['accept', 'disabled', 'i18nUploadDisabled', 'i18nUploadFile', 'loadingText', 'multiline', 'multiple', 'selectFileText', 'state', 'uploadFailedText', 'uploadSuccessText']
1537
+ }]
1538
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1539
+ let IxValidationTooltip = class IxValidationTooltip {
1540
+ constructor(c, r, z) {
1541
+ this.z = z;
1542
+ c.detach();
1543
+ this.el = r.nativeElement;
1544
+ }
1545
+ };
1546
+ /** @nocollapse */ IxValidationTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxValidationTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1547
+ /** @nocollapse */ IxValidationTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxValidationTooltip, selector: "ix-validation-tooltip", inputs: { message: "message", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1548
+ IxValidationTooltip = __decorate([
1549
+ ProxyCmp({
1550
+ defineCustomElementFn: undefined,
1551
+ inputs: ['message', 'placement']
1552
+ })
1553
+ ], IxValidationTooltip);
1554
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxValidationTooltip, decorators: [{
1555
+ type: Component,
1556
+ args: [{
1557
+ selector: 'ix-validation-tooltip',
1558
+ changeDetection: ChangeDetectionStrategy.OnPush,
1559
+ template: '<ng-content></ng-content>',
1560
+ inputs: ['message', 'placement']
1561
+ }]
1562
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1563
+ let IxWorkflowStep = class IxWorkflowStep {
1564
+ constructor(c, r, z) {
1565
+ this.z = z;
1566
+ c.detach();
1567
+ this.el = r.nativeElement;
1568
+ }
1569
+ };
1570
+ /** @nocollapse */ IxWorkflowStep.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxWorkflowStep, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1571
+ /** @nocollapse */ IxWorkflowStep.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxWorkflowStep, selector: "ix-workflow-step", inputs: { clickable: "clickable", disabled: "disabled", position: "position", selected: "selected", status: "status", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1572
+ IxWorkflowStep = __decorate([
1573
+ ProxyCmp({
1574
+ defineCustomElementFn: undefined,
1575
+ inputs: ['clickable', 'disabled', 'position', 'selected', 'status', 'vertical']
1576
+ })
1577
+ ], IxWorkflowStep);
1578
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxWorkflowStep, decorators: [{
1579
+ type: Component,
1580
+ args: [{
1581
+ selector: 'ix-workflow-step',
1582
+ changeDetection: ChangeDetectionStrategy.OnPush,
1583
+ template: '<ng-content></ng-content>',
1584
+ inputs: ['clickable', 'disabled', 'position', 'selected', 'status', 'vertical']
1585
+ }]
1586
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1587
+ let IxWorkflowSteps = class IxWorkflowSteps {
1588
+ constructor(c, r, z) {
1589
+ this.z = z;
1590
+ c.detach();
1591
+ this.el = r.nativeElement;
1592
+ proxyOutputs(this, this.el, ['stepSelected']);
1593
+ }
1594
+ };
1595
+ /** @nocollapse */ IxWorkflowSteps.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxWorkflowSteps, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1596
+ /** @nocollapse */ IxWorkflowSteps.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", type: IxWorkflowSteps, selector: "ix-workflow-steps", inputs: { clickable: "clickable", linear: "linear", selectedIndex: "selectedIndex", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1597
+ IxWorkflowSteps = __decorate([
1598
+ ProxyCmp({
1599
+ defineCustomElementFn: undefined,
1600
+ inputs: ['clickable', 'linear', 'selectedIndex', 'vertical']
1601
+ })
1602
+ ], IxWorkflowSteps);
1603
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxWorkflowSteps, decorators: [{
1604
+ type: Component,
1605
+ args: [{
1606
+ selector: 'ix-workflow-steps',
1607
+ changeDetection: ChangeDetectionStrategy.OnPush,
1608
+ template: '<ng-content></ng-content>',
1609
+ inputs: ['clickable', 'linear', 'selectedIndex', 'vertical']
1610
+ }]
1611
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1612
+
1613
+ class ModalService {
1614
+ constructor() { }
1615
+ open(config) {
1616
+ return __awaiter(this, void 0, void 0, function* () {
1617
+ const context = {
1618
+ close: null,
1619
+ dismiss: null,
1620
+ };
1621
+ const embeddedView = config.content.createEmbeddedView({
1622
+ $implicit: context,
1623
+ });
1624
+ const node = embeddedView.rootNodes[0];
1625
+ context.close = (result) => {
1626
+ closeModal(node, result);
1627
+ };
1628
+ context.dismiss = (result) => {
1629
+ dismissModal(node, result);
1630
+ };
1631
+ embeddedView.detectChanges();
1632
+ const modalInstance = yield modal({
1633
+ title: '',
1634
+ content: node,
1635
+ });
1636
+ modalInstance.onClose.once(() => {
1637
+ embeddedView.destroy();
1638
+ });
1639
+ modalInstance.onDismiss.once(() => {
1640
+ embeddedView.destroy();
1641
+ });
1642
+ return modalInstance;
1643
+ });
1644
+ }
1645
+ }
1646
+ /** @nocollapse */ ModalService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ModalService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1647
+ /** @nocollapse */ ModalService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ModalService, providedIn: 'root' });
1648
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ModalService, decorators: [{
1649
+ type: Injectable,
1650
+ args: [{
1651
+ providedIn: 'root',
1652
+ }]
1653
+ }], ctorParameters: function () { return []; } });
1654
+
1655
+ /*
1656
+ * SPDX-FileCopyrightText: 2022 Siemens AG
1657
+ *
1658
+ * SPDX-License-Identifier: MIT
1659
+ *
1660
+ * This source code is licensed under the MIT license found in the
1661
+ * LICENSE file in the root directory of this source tree.
1662
+ */
1663
+
1664
+ /*
1665
+ * SPDX-FileCopyrightText: 2022 Siemens AG
1666
+ *
1667
+ * SPDX-License-Identifier: MIT
1668
+ *
1669
+ * This source code is licensed under the MIT license found in the
1670
+ * LICENSE file in the root directory of this source tree.
1671
+ */
1672
+ let didInitialize = false;
1673
+ const appInitialize = (doc) => {
1674
+ return () => {
1675
+ const win = doc.defaultView;
1676
+ if (win && typeof window !== 'undefined') {
1677
+ if (didInitialize) {
1678
+ return;
1679
+ }
1680
+ didInitialize = true;
1681
+ applyPolyfills().then(() => {
1682
+ return defineCustomElements();
1683
+ });
1684
+ }
1685
+ };
1686
+ };
1687
+
1688
+ const DIRECTIVES = [
1689
+ IxAnimatedTab,
1690
+ IxAnimatedTabs,
1691
+ IxApplicationHeader,
1692
+ IxBasicNavigation,
1693
+ IxBlind,
1694
+ IxBreadcrumb,
1695
+ IxBreadcrumbItem,
1696
+ IxButton,
1697
+ IxCategoryFilter,
1698
+ IxChip,
1699
+ IxCounterPill,
1700
+ IxDatePicker,
1701
+ IxDateTimeCard,
1702
+ IxDatetimePicker,
1703
+ IxDrawer,
1704
+ IxDropdown,
1705
+ IxDropdownItem,
1706
+ IxEventList,
1707
+ IxEventListItem,
1708
+ IxExpandingSearch,
1709
+ IxFilterChip,
1710
+ IxFlipTile,
1711
+ IxFlipTileContent,
1712
+ IxGroup,
1713
+ IxGroupDropdownItem,
1714
+ IxGroupItem,
1715
+ IxIcon,
1716
+ IxIconButton,
1717
+ IxInputGroup,
1718
+ IxKpi,
1719
+ IxMapNavigation,
1720
+ IxMapNavigationOverlay,
1721
+ IxMenu,
1722
+ IxMenuAbout,
1723
+ IxMenuAboutItem,
1724
+ IxMenuAboutNews,
1725
+ IxMenuAvatar,
1726
+ IxMenuAvatarItem,
1727
+ IxMenuItem,
1728
+ IxMenuSettings,
1729
+ IxMenuSettingsItem,
1730
+ IxMessageBar,
1731
+ IxModal,
1732
+ IxModalContainer,
1733
+ IxModalExample,
1734
+ IxPill,
1735
+ IxSelect,
1736
+ IxSelectItem,
1737
+ IxSpinner,
1738
+ IxSplitButton,
1739
+ IxSplitButtonItem,
1740
+ IxTabItem,
1741
+ IxTabs,
1742
+ IxTile,
1743
+ IxTimePicker,
1744
+ IxToast,
1745
+ IxToastContainer,
1746
+ IxToggle,
1747
+ IxTreeItem,
1748
+ IxUpload,
1749
+ IxValidationTooltip,
1750
+ IxWorkflowStep,
1751
+ IxWorkflowSteps
1752
+ ];
1753
+
1754
+ class ToastService {
1755
+ show(config) {
1756
+ return __awaiter(this, void 0, void 0, function* () {
1757
+ if (typeof config.message === 'string') {
1758
+ return toast(config);
1759
+ }
1760
+ const context = {
1761
+ close: null,
1762
+ };
1763
+ const embeddedView = config.message.createEmbeddedView({
1764
+ $implicit: context,
1765
+ });
1766
+ const node = embeddedView.rootNodes[0];
1767
+ const instance = yield toast(Object.assign(Object.assign({}, config), { message: node }));
1768
+ context.close = () => {
1769
+ instance.close();
1770
+ };
1771
+ embeddedView.detectChanges();
1772
+ instance.onClose.once(() => {
1773
+ embeddedView.destroy();
1774
+ });
1775
+ return instance;
1776
+ });
1777
+ }
1778
+ }
1779
+ /** @nocollapse */ ToastService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ToastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
1780
+ /** @nocollapse */ ToastService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ToastService, providedIn: 'root' });
1781
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: ToastService, decorators: [{
1782
+ type: Injectable,
1783
+ args: [{
1784
+ providedIn: 'root',
1785
+ }]
1786
+ }] });
1787
+
1788
+ /*
1789
+ * SPDX-FileCopyrightText: 2022 Siemens AG
1790
+ *
1791
+ * SPDX-License-Identifier: MIT
1792
+ *
1793
+ * This source code is licensed under the MIT license found in the
1794
+ * LICENSE file in the root directory of this source tree.
1795
+ */
1796
+
1797
+ let IxTree = class IxTree {
1798
+ constructor(c, r, z) {
1799
+ this.z = z;
1800
+ this.renderCache = new Map();
1801
+ c.detach();
1802
+ this.el = r.nativeElement;
1803
+ proxyOutputs(this, this.el, ['contextChange', 'nodeRemoved']);
1804
+ this.onRemovedSubscription = this.nodeRemoved.subscribe((removedEvent) => {
1805
+ const { detail } = removedEvent;
1806
+ detail.forEach((removedItemElement) => {
1807
+ var _a;
1808
+ if (this.renderCache.has(removedItemElement)) {
1809
+ (_a = this.renderCache.get(removedItemElement)) === null || _a === void 0 ? void 0 : _a.destroy();
1810
+ this.renderCache.delete(removedItemElement);
1811
+ }
1812
+ });
1813
+ });
1814
+ }
1815
+ set renderItem(template) {
1816
+ const itemRenderFunction = this.generateItemRenderer(template);
1817
+ this.el.renderItem = itemRenderFunction.bind(this);
1818
+ }
1819
+ ngOnDestroy() {
1820
+ var _a;
1821
+ (_a = this.onRemovedSubscription) === null || _a === void 0 ? void 0 : _a.unsubscribe();
1822
+ }
1823
+ generateItemRenderer(templateRef) {
1824
+ return (_, itemData, __, context, update) => {
1825
+ const treeItem = document.createElement('ix-tree-item');
1826
+ treeItem.hasChildren = itemData.hasChildren;
1827
+ treeItem.context = context[itemData.id];
1828
+ const embeddedView = templateRef.createEmbeddedView({
1829
+ $implicit: itemData.data,
1830
+ });
1831
+ const container = embeddedView.rootNodes[0];
1832
+ embeddedView.detectChanges();
1833
+ update((itemData, context) => {
1834
+ treeItem.context = context[itemData.id];
1835
+ treeItem.hasChildren = itemData.hasChildren;
1836
+ embeddedView.context = {
1837
+ $implicit: itemData.data,
1838
+ };
1839
+ embeddedView.detectChanges();
1840
+ });
1841
+ treeItem.appendChild(container);
1842
+ this.renderCache.set(treeItem, embeddedView);
1843
+ return treeItem;
1844
+ };
1845
+ }
1846
+ };
1847
+ /** @nocollapse */ IxTree.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxTree, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1848
+ /** @nocollapse */ IxTree.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.4", 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 });
1849
+ IxTree = __decorate([
1850
+ ProxyCmp({
1851
+ defineCustomElementFn: undefined,
1852
+ inputs: ['context', 'model', 'root'],
1853
+ })
1854
+ ], IxTree);
1855
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxTree, decorators: [{
1856
+ type: Component,
1857
+ args: [{
1858
+ selector: 'ix-tree',
1859
+ changeDetection: ChangeDetectionStrategy.OnPush,
1860
+ template: '<ng-content></ng-content>',
1861
+ inputs: ['context', 'model', 'root'],
1862
+ }]
1863
+ }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; }, propDecorators: { renderItem: [{
1864
+ type: Input
1865
+ }] } });
1866
+
1867
+ /*
1868
+ * SPDX-FileCopyrightText: 2022 Siemens AG
1869
+ *
1870
+ * SPDX-License-Identifier: MIT
1871
+ *
1872
+ * This source code is licensed under the MIT license found in the
1873
+ * LICENSE file in the root directory of this source tree.
1874
+ */
1875
+
1876
+ /*
1877
+ * SPDX-FileCopyrightText: 2022 Siemens AG
1878
+ *
1879
+ * SPDX-License-Identifier: MIT
1880
+ *
1881
+ * This source code is licensed under the MIT license found in the
1882
+ * LICENSE file in the root directory of this source tree.
1883
+ */
1884
+ const DECLARATIONS = [...DIRECTIVES, IxTree];
1885
+ class IxModule {
1886
+ static forRoot() {
1887
+ return {
1888
+ ngModule: IxModule,
1889
+ providers: [
1890
+ {
1891
+ provide: APP_INITIALIZER,
1892
+ useFactory: appInitialize,
1893
+ multi: true,
1894
+ deps: [DOCUMENT, NgZone],
1895
+ },
1896
+ ModalService,
1897
+ ToastService,
1898
+ ],
1899
+ };
1900
+ }
1901
+ }
1902
+ /** @nocollapse */ IxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
1903
+ /** @nocollapse */ IxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.4", ngImport: i0, type: IxModule, declarations: [IxAnimatedTab, IxAnimatedTabs, IxApplicationHeader, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCategoryFilter, IxChip, IxCounterPill, IxDatePicker, IxDateTimeCard, IxDatetimePicker, IxDrawer, IxDropdown, IxDropdownItem, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent, IxGroup, IxGroupDropdownItem, IxGroupItem, IxIcon, IxIconButton, IxInputGroup, IxKpi, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContainer, IxModalExample, IxPill, IxSelect, IxSelectItem, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxTreeItem, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree], exports: [IxAnimatedTab, IxAnimatedTabs, IxApplicationHeader, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCategoryFilter, IxChip, IxCounterPill, IxDatePicker, IxDateTimeCard, IxDatetimePicker, IxDrawer, IxDropdown, IxDropdownItem, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent, IxGroup, IxGroupDropdownItem, IxGroupItem, IxIcon, IxIconButton, IxInputGroup, IxKpi, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContainer, IxModalExample, IxPill, IxSelect, IxSelectItem, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxTreeItem, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree] });
1904
+ /** @nocollapse */ IxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxModule });
1905
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.4", ngImport: i0, type: IxModule, decorators: [{
1906
+ type: NgModule,
1907
+ args: [{
1908
+ declarations: DECLARATIONS,
1909
+ exports: DECLARATIONS,
1910
+ }]
1911
+ }] });
1912
+
1913
+ /*
1914
+ * SPDX-FileCopyrightText: 2022 Siemens AG
1915
+ *
1916
+ * SPDX-License-Identifier: MIT
1917
+ *
1918
+ * This source code is licensed under the MIT license found in the
1919
+ * LICENSE file in the root directory of this source tree.
1920
+ */
1921
+
1922
+ /**
1923
+ * Generated bundle index. Do not edit.
1924
+ */
1925
+
1926
+ export { IxAnimatedTab, IxAnimatedTabs, IxApplicationHeader, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCategoryFilter, IxChip, IxCounterPill, IxDatePicker, IxDateTimeCard, IxDatetimePicker, IxDrawer, IxDropdown, IxDropdownItem, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent, IxGroup, IxGroupDropdownItem, IxGroupItem, IxIcon, IxIconButton, IxInputGroup, IxKpi, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContainer, IxModalExample, IxModule, IxPill, IxSelect, IxSelectItem, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxTree, IxTreeItem, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, ModalService, ToastService };
1927
+ //# sourceMappingURL=siemens-ix-angular.mjs.map