@siemens/ix-angular 1.4.0-beta.3 → 1.5.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components.d.ts +206 -214
- package/declare-components.d.ts +1 -1
- package/esm2020/angular-component-lib/utils.mjs +6 -8
- package/esm2020/components.mjs +148 -172
- package/esm2020/declare-components.mjs +1 -2
- package/esm2020/module.mjs +2 -2
- package/fesm2015/siemens-ix-angular.mjs +154 -180
- package/fesm2015/siemens-ix-angular.mjs.map +1 -1
- package/fesm2020/siemens-ix-angular.mjs +154 -180
- package/fesm2020/siemens-ix-angular.mjs.map +1 -1
- package/module.d.ts +1 -1
- package/package.json +2 -2
- package/toast/toast.service.d.ts +1 -1
|
@@ -10,20 +10,20 @@ import { applyPolyfills, defineCustomElements } from '@siemens/ix/loader';
|
|
|
10
10
|
/* eslint-disable */
|
|
11
11
|
const proxyInputs = (Cmp, inputs) => {
|
|
12
12
|
const Prototype = Cmp.prototype;
|
|
13
|
-
inputs.forEach(item => {
|
|
13
|
+
inputs.forEach((item) => {
|
|
14
14
|
Object.defineProperty(Prototype, item, {
|
|
15
15
|
get() {
|
|
16
16
|
return this.el[item];
|
|
17
17
|
},
|
|
18
18
|
set(val) {
|
|
19
19
|
this.z.runOutsideAngular(() => (this.el[item] = val));
|
|
20
|
-
}
|
|
20
|
+
},
|
|
21
21
|
});
|
|
22
22
|
});
|
|
23
23
|
};
|
|
24
24
|
const proxyMethods = (Cmp, methods) => {
|
|
25
25
|
const Prototype = Cmp.prototype;
|
|
26
|
-
methods.forEach(methodName => {
|
|
26
|
+
methods.forEach((methodName) => {
|
|
27
27
|
Prototype[methodName] = function () {
|
|
28
28
|
const args = arguments;
|
|
29
29
|
return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
|
|
@@ -31,12 +31,10 @@ const proxyMethods = (Cmp, methods) => {
|
|
|
31
31
|
});
|
|
32
32
|
};
|
|
33
33
|
const proxyOutputs = (instance, el, events) => {
|
|
34
|
-
events.forEach(eventName => instance[eventName] = fromEvent(el, eventName));
|
|
34
|
+
events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));
|
|
35
35
|
};
|
|
36
36
|
const defineCustomElement = (tagName, customElement) => {
|
|
37
|
-
if (customElement !== undefined &&
|
|
38
|
-
typeof customElements !== 'undefined' &&
|
|
39
|
-
!customElements.get(tagName)) {
|
|
37
|
+
if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
|
|
40
38
|
customElements.define(tagName, customElement);
|
|
41
39
|
}
|
|
42
40
|
};
|
|
@@ -69,7 +67,6 @@ let IxAnimatedTab = class IxAnimatedTab {
|
|
|
69
67
|
/** @nocollapse */ IxAnimatedTab.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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
68
|
IxAnimatedTab = __decorate([
|
|
71
69
|
ProxyCmp({
|
|
72
|
-
defineCustomElementFn: undefined,
|
|
73
70
|
inputs: ['count', 'icon']
|
|
74
71
|
})
|
|
75
72
|
], IxAnimatedTab);
|
|
@@ -79,7 +76,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
79
76
|
selector: 'ix-animated-tab',
|
|
80
77
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
81
78
|
template: '<ng-content></ng-content>',
|
|
82
|
-
|
|
79
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
80
|
+
inputs: ['count', 'icon'],
|
|
83
81
|
}]
|
|
84
82
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
85
83
|
let IxAnimatedTabs = class IxAnimatedTabs {
|
|
@@ -94,7 +92,6 @@ let IxAnimatedTabs = class IxAnimatedTabs {
|
|
|
94
92
|
/** @nocollapse */ IxAnimatedTabs.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxAnimatedTabs, selector: "ix-animated-tabs", inputs: { selectedIndex: "selectedIndex", tabPlacement: "tabPlacement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
95
93
|
IxAnimatedTabs = __decorate([
|
|
96
94
|
ProxyCmp({
|
|
97
|
-
defineCustomElementFn: undefined,
|
|
98
95
|
inputs: ['selectedIndex', 'tabPlacement']
|
|
99
96
|
})
|
|
100
97
|
], IxAnimatedTabs);
|
|
@@ -104,7 +101,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
104
101
|
selector: 'ix-animated-tabs',
|
|
105
102
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
106
103
|
template: '<ng-content></ng-content>',
|
|
107
|
-
|
|
104
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
105
|
+
inputs: ['selectedIndex', 'tabPlacement'],
|
|
108
106
|
}]
|
|
109
107
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
110
108
|
let IxApplicationHeader = class IxApplicationHeader {
|
|
@@ -118,7 +116,6 @@ let IxApplicationHeader = class IxApplicationHeader {
|
|
|
118
116
|
/** @nocollapse */ IxApplicationHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxApplicationHeader, selector: "ix-application-header", inputs: { name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
119
117
|
IxApplicationHeader = __decorate([
|
|
120
118
|
ProxyCmp({
|
|
121
|
-
defineCustomElementFn: undefined,
|
|
122
119
|
inputs: ['name']
|
|
123
120
|
})
|
|
124
121
|
], IxApplicationHeader);
|
|
@@ -128,7 +125,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
128
125
|
selector: 'ix-application-header',
|
|
129
126
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
130
127
|
template: '<ng-content></ng-content>',
|
|
131
|
-
inputs
|
|
128
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
129
|
+
inputs: ['name'],
|
|
132
130
|
}]
|
|
133
131
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
134
132
|
let IxBasicNavigation = class IxBasicNavigation {
|
|
@@ -142,7 +140,6 @@ let IxBasicNavigation = class IxBasicNavigation {
|
|
|
142
140
|
/** @nocollapse */ IxBasicNavigation.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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
141
|
IxBasicNavigation = __decorate([
|
|
144
142
|
ProxyCmp({
|
|
145
|
-
defineCustomElementFn: undefined,
|
|
146
143
|
inputs: ['applicationName', 'hideHeader']
|
|
147
144
|
})
|
|
148
145
|
], IxBasicNavigation);
|
|
@@ -152,7 +149,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
152
149
|
selector: 'ix-basic-navigation',
|
|
153
150
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
154
151
|
template: '<ng-content></ng-content>',
|
|
155
|
-
|
|
152
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
153
|
+
inputs: ['applicationName', 'hideHeader'],
|
|
156
154
|
}]
|
|
157
155
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
158
156
|
let IxBlind = class IxBlind {
|
|
@@ -167,7 +165,6 @@ let IxBlind = class IxBlind {
|
|
|
167
165
|
/** @nocollapse */ IxBlind.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxBlind, selector: "ix-blind", inputs: { collapsed: "collapsed", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
168
166
|
IxBlind = __decorate([
|
|
169
167
|
ProxyCmp({
|
|
170
|
-
defineCustomElementFn: undefined,
|
|
171
168
|
inputs: ['collapsed', 'label']
|
|
172
169
|
})
|
|
173
170
|
], IxBlind);
|
|
@@ -177,7 +174,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
177
174
|
selector: 'ix-blind',
|
|
178
175
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
179
176
|
template: '<ng-content></ng-content>',
|
|
180
|
-
|
|
177
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
178
|
+
inputs: ['collapsed', 'label'],
|
|
181
179
|
}]
|
|
182
180
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
183
181
|
let IxBreadcrumb = class IxBreadcrumb {
|
|
@@ -192,7 +190,6 @@ let IxBreadcrumb = class IxBreadcrumb {
|
|
|
192
190
|
/** @nocollapse */ IxBreadcrumb.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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
191
|
IxBreadcrumb = __decorate([
|
|
194
192
|
ProxyCmp({
|
|
195
|
-
defineCustomElementFn: undefined,
|
|
196
193
|
inputs: ['ghost', 'nextItems', 'visibleItemCount']
|
|
197
194
|
})
|
|
198
195
|
], IxBreadcrumb);
|
|
@@ -202,7 +199,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
202
199
|
selector: 'ix-breadcrumb',
|
|
203
200
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
204
201
|
template: '<ng-content></ng-content>',
|
|
205
|
-
|
|
202
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
203
|
+
inputs: ['ghost', 'nextItems', 'visibleItemCount'],
|
|
206
204
|
}]
|
|
207
205
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
208
206
|
let IxBreadcrumbItem = class IxBreadcrumbItem {
|
|
@@ -216,7 +214,6 @@ let IxBreadcrumbItem = class IxBreadcrumbItem {
|
|
|
216
214
|
/** @nocollapse */ IxBreadcrumbItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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
215
|
IxBreadcrumbItem = __decorate([
|
|
218
216
|
ProxyCmp({
|
|
219
|
-
defineCustomElementFn: undefined,
|
|
220
217
|
inputs: ['icon', 'label']
|
|
221
218
|
})
|
|
222
219
|
], IxBreadcrumbItem);
|
|
@@ -226,7 +223,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
226
223
|
selector: 'ix-breadcrumb-item',
|
|
227
224
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
228
225
|
template: '<ng-content></ng-content>',
|
|
229
|
-
|
|
226
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
227
|
+
inputs: ['icon', 'label'],
|
|
230
228
|
}]
|
|
231
229
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
232
230
|
let IxButton = class IxButton {
|
|
@@ -240,7 +238,6 @@ let IxButton = class IxButton {
|
|
|
240
238
|
/** @nocollapse */ IxButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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
239
|
IxButton = __decorate([
|
|
242
240
|
ProxyCmp({
|
|
243
|
-
defineCustomElementFn: undefined,
|
|
244
241
|
inputs: ['disabled', 'ghost', 'invisible', 'outline', 'selected', 'type', 'variant']
|
|
245
242
|
})
|
|
246
243
|
], IxButton);
|
|
@@ -250,7 +247,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
250
247
|
selector: 'ix-button',
|
|
251
248
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
252
249
|
template: '<ng-content></ng-content>',
|
|
253
|
-
|
|
250
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
251
|
+
inputs: ['disabled', 'ghost', 'invisible', 'outline', 'selected', 'type', 'variant'],
|
|
254
252
|
}]
|
|
255
253
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
256
254
|
let IxCategoryFilter = class IxCategoryFilter {
|
|
@@ -265,7 +263,6 @@ let IxCategoryFilter = class IxCategoryFilter {
|
|
|
265
263
|
/** @nocollapse */ IxCategoryFilter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
266
264
|
IxCategoryFilter = __decorate([
|
|
267
265
|
ProxyCmp({
|
|
268
|
-
defineCustomElementFn: undefined,
|
|
269
266
|
inputs: ['categories', 'filterState', 'hideIcon', 'i18nPlainText', 'icon', 'initialState', 'labelCategories', 'nonSelectableCategories', 'placeholder', 'repeatCategories', 'suggestions']
|
|
270
267
|
})
|
|
271
268
|
], IxCategoryFilter);
|
|
@@ -275,7 +272,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
275
272
|
selector: 'ix-category-filter',
|
|
276
273
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
277
274
|
template: '<ng-content></ng-content>',
|
|
278
|
-
|
|
275
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
276
|
+
inputs: ['categories', 'filterState', 'hideIcon', 'i18nPlainText', 'icon', 'initialState', 'labelCategories', 'nonSelectableCategories', 'placeholder', 'repeatCategories', 'suggestions'],
|
|
279
277
|
}]
|
|
280
278
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
281
279
|
let IxChip = class IxChip {
|
|
@@ -290,7 +288,6 @@ let IxChip = class IxChip {
|
|
|
290
288
|
/** @nocollapse */ IxChip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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
289
|
IxChip = __decorate([
|
|
292
290
|
ProxyCmp({
|
|
293
|
-
defineCustomElementFn: undefined,
|
|
294
291
|
inputs: ['active', 'background', 'closable', 'color', 'icon', 'outline', 'variant']
|
|
295
292
|
})
|
|
296
293
|
], IxChip);
|
|
@@ -300,7 +297,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
300
297
|
selector: 'ix-chip',
|
|
301
298
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
302
299
|
template: '<ng-content></ng-content>',
|
|
303
|
-
|
|
300
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
301
|
+
inputs: ['active', 'background', 'closable', 'color', 'icon', 'outline', 'variant'],
|
|
304
302
|
}]
|
|
305
303
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
306
304
|
let IxCounterPill = class IxCounterPill {
|
|
@@ -314,7 +312,6 @@ let IxCounterPill = class IxCounterPill {
|
|
|
314
312
|
/** @nocollapse */ IxCounterPill.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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
313
|
IxCounterPill = __decorate([
|
|
316
314
|
ProxyCmp({
|
|
317
|
-
defineCustomElementFn: undefined,
|
|
318
315
|
inputs: ['alignLeft', 'background', 'color', 'outline', 'variant']
|
|
319
316
|
})
|
|
320
317
|
], IxCounterPill);
|
|
@@ -324,7 +321,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
324
321
|
selector: 'ix-counter-pill',
|
|
325
322
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
326
323
|
template: '<ng-content></ng-content>',
|
|
327
|
-
|
|
324
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
325
|
+
inputs: ['alignLeft', 'background', 'color', 'outline', 'variant'],
|
|
328
326
|
}]
|
|
329
327
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
330
328
|
let IxDatePicker = class IxDatePicker {
|
|
@@ -339,7 +337,6 @@ let IxDatePicker = class IxDatePicker {
|
|
|
339
337
|
/** @nocollapse */ IxDatePicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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
338
|
IxDatePicker = __decorate([
|
|
341
339
|
ProxyCmp({
|
|
342
|
-
defineCustomElementFn: undefined,
|
|
343
340
|
inputs: ['corners', 'eventDelimiter', 'format', 'from', 'individual', 'maxDate', 'minDate', 'range', 'textSelectDate', 'to'],
|
|
344
341
|
methods: ['getCurrentDate']
|
|
345
342
|
})
|
|
@@ -350,31 +347,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
350
347
|
selector: 'ix-date-picker',
|
|
351
348
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
352
349
|
template: '<ng-content></ng-content>',
|
|
353
|
-
|
|
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: "13.3.12", 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: "12.0.0", version: "13.3.12", 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: "13.3.12", 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']
|
|
350
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
351
|
+
inputs: ['corners', 'eventDelimiter', 'format', 'from', 'individual', 'maxDate', 'minDate', 'range', 'textSelectDate', 'to'],
|
|
378
352
|
}]
|
|
379
353
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
380
354
|
let IxDatetimePicker = class IxDatetimePicker {
|
|
@@ -389,7 +363,6 @@ let IxDatetimePicker = class IxDatetimePicker {
|
|
|
389
363
|
/** @nocollapse */ IxDatetimePicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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
364
|
IxDatetimePicker = __decorate([
|
|
391
365
|
ProxyCmp({
|
|
392
|
-
defineCustomElementFn: undefined,
|
|
393
366
|
inputs: ['dateFormat', 'eventDelimiter', 'from', 'maxDate', 'minDate', 'range', 'showHour', 'showMinutes', 'showSeconds', 'showTimeReference', 'textSelectDate', 'time', 'timeFormat', 'timeReference', 'to']
|
|
394
367
|
})
|
|
395
368
|
], IxDatetimePicker);
|
|
@@ -399,7 +372,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
399
372
|
selector: 'ix-datetime-picker',
|
|
400
373
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
401
374
|
template: '<ng-content></ng-content>',
|
|
402
|
-
|
|
375
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
376
|
+
inputs: ['dateFormat', 'eventDelimiter', 'from', 'maxDate', 'minDate', 'range', 'showHour', 'showMinutes', 'showSeconds', 'showTimeReference', 'textSelectDate', 'time', 'timeFormat', 'timeReference', 'to'],
|
|
403
377
|
}]
|
|
404
378
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
405
379
|
let IxDivider = class IxDivider {
|
|
@@ -412,16 +386,16 @@ let IxDivider = class IxDivider {
|
|
|
412
386
|
/** @nocollapse */ IxDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
413
387
|
/** @nocollapse */ IxDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxDivider, selector: "ix-divider", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
414
388
|
IxDivider = __decorate([
|
|
415
|
-
ProxyCmp({
|
|
416
|
-
defineCustomElementFn: undefined
|
|
417
|
-
})
|
|
389
|
+
ProxyCmp({})
|
|
418
390
|
], IxDivider);
|
|
419
391
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxDivider, decorators: [{
|
|
420
392
|
type: Component,
|
|
421
393
|
args: [{
|
|
422
394
|
selector: 'ix-divider',
|
|
423
395
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
424
|
-
template: '<ng-content></ng-content>'
|
|
396
|
+
template: '<ng-content></ng-content>',
|
|
397
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
398
|
+
inputs: [],
|
|
425
399
|
}]
|
|
426
400
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
427
401
|
let IxDrawer = class IxDrawer {
|
|
@@ -436,7 +410,6 @@ let IxDrawer = class IxDrawer {
|
|
|
436
410
|
/** @nocollapse */ IxDrawer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
437
411
|
IxDrawer = __decorate([
|
|
438
412
|
ProxyCmp({
|
|
439
|
-
defineCustomElementFn: undefined,
|
|
440
413
|
inputs: ['closeOnClickOutside', 'fullHeight', 'maxWidth', 'minWidth', 'show', 'width'],
|
|
441
414
|
methods: ['toggleDrawer']
|
|
442
415
|
})
|
|
@@ -447,7 +420,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
447
420
|
selector: 'ix-drawer',
|
|
448
421
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
449
422
|
template: '<ng-content></ng-content>',
|
|
450
|
-
|
|
423
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
424
|
+
inputs: ['closeOnClickOutside', 'fullHeight', 'maxWidth', 'minWidth', 'show', 'width'],
|
|
451
425
|
}]
|
|
452
426
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
453
427
|
let IxDropdown = class IxDropdown {
|
|
@@ -462,7 +436,6 @@ let IxDropdown = class IxDropdown {
|
|
|
462
436
|
/** @nocollapse */ IxDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
463
437
|
IxDropdown = __decorate([
|
|
464
438
|
ProxyCmp({
|
|
465
|
-
defineCustomElementFn: undefined,
|
|
466
439
|
inputs: ['adjustDropdownWidthToReferenceWidth', 'adjustDropdownWidthToReferenceWith', 'anchor', 'closeBehavior', 'header', 'placement', 'positioningStrategy', 'show', 'trigger'],
|
|
467
440
|
methods: ['updatePosition']
|
|
468
441
|
})
|
|
@@ -473,7 +446,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
473
446
|
selector: 'ix-dropdown',
|
|
474
447
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
475
448
|
template: '<ng-content></ng-content>',
|
|
476
|
-
|
|
449
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
450
|
+
inputs: ['adjustDropdownWidthToReferenceWidth', 'adjustDropdownWidthToReferenceWith', 'anchor', 'closeBehavior', 'header', 'placement', 'positioningStrategy', 'show', 'trigger'],
|
|
477
451
|
}]
|
|
478
452
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
479
453
|
let IxDropdownButton = class IxDropdownButton {
|
|
@@ -487,7 +461,6 @@ let IxDropdownButton = class IxDropdownButton {
|
|
|
487
461
|
/** @nocollapse */ IxDropdownButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxDropdownButton, selector: "ix-dropdown-button", inputs: { active: "active", disabled: "disabled", ghost: "ghost", icon: "icon", label: "label", outline: "outline", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
488
462
|
IxDropdownButton = __decorate([
|
|
489
463
|
ProxyCmp({
|
|
490
|
-
defineCustomElementFn: undefined,
|
|
491
464
|
inputs: ['active', 'disabled', 'ghost', 'icon', 'label', 'outline', 'variant']
|
|
492
465
|
})
|
|
493
466
|
], IxDropdownButton);
|
|
@@ -497,7 +470,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
497
470
|
selector: 'ix-dropdown-button',
|
|
498
471
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
499
472
|
template: '<ng-content></ng-content>',
|
|
500
|
-
|
|
473
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
474
|
+
inputs: ['active', 'disabled', 'ghost', 'icon', 'label', 'outline', 'variant'],
|
|
501
475
|
}]
|
|
502
476
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
503
477
|
let IxDropdownItem = class IxDropdownItem {
|
|
@@ -512,7 +486,6 @@ let IxDropdownItem = class IxDropdownItem {
|
|
|
512
486
|
/** @nocollapse */ IxDropdownItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
513
487
|
IxDropdownItem = __decorate([
|
|
514
488
|
ProxyCmp({
|
|
515
|
-
defineCustomElementFn: undefined,
|
|
516
489
|
inputs: ['checked', 'disabled', 'hover', 'icon', 'label'],
|
|
517
490
|
methods: ['emitItemClick']
|
|
518
491
|
})
|
|
@@ -523,7 +496,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
523
496
|
selector: 'ix-dropdown-item',
|
|
524
497
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
525
498
|
template: '<ng-content></ng-content>',
|
|
526
|
-
|
|
499
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
500
|
+
inputs: ['checked', 'disabled', 'hover', 'icon', 'label'],
|
|
527
501
|
}]
|
|
528
502
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
529
503
|
let IxDropdownQuickActions = class IxDropdownQuickActions {
|
|
@@ -536,16 +510,16 @@ let IxDropdownQuickActions = class IxDropdownQuickActions {
|
|
|
536
510
|
/** @nocollapse */ IxDropdownQuickActions.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxDropdownQuickActions, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
537
511
|
/** @nocollapse */ IxDropdownQuickActions.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxDropdownQuickActions, selector: "ix-dropdown-quick-actions", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
538
512
|
IxDropdownQuickActions = __decorate([
|
|
539
|
-
ProxyCmp({
|
|
540
|
-
defineCustomElementFn: undefined
|
|
541
|
-
})
|
|
513
|
+
ProxyCmp({})
|
|
542
514
|
], IxDropdownQuickActions);
|
|
543
515
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxDropdownQuickActions, decorators: [{
|
|
544
516
|
type: Component,
|
|
545
517
|
args: [{
|
|
546
518
|
selector: 'ix-dropdown-quick-actions',
|
|
547
519
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
548
|
-
template: '<ng-content></ng-content>'
|
|
520
|
+
template: '<ng-content></ng-content>',
|
|
521
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
522
|
+
inputs: [],
|
|
549
523
|
}]
|
|
550
524
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
551
525
|
let IxEventList = class IxEventList {
|
|
@@ -559,7 +533,6 @@ let IxEventList = class IxEventList {
|
|
|
559
533
|
/** @nocollapse */ IxEventList.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
560
534
|
IxEventList = __decorate([
|
|
561
535
|
ProxyCmp({
|
|
562
|
-
defineCustomElementFn: undefined,
|
|
563
536
|
inputs: ['animated', 'chevron', 'compact', 'itemHeight']
|
|
564
537
|
})
|
|
565
538
|
], IxEventList);
|
|
@@ -569,7 +542,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
569
542
|
selector: 'ix-event-list',
|
|
570
543
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
571
544
|
template: '<ng-content></ng-content>',
|
|
572
|
-
|
|
545
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
546
|
+
inputs: ['animated', 'chevron', 'compact', 'itemHeight'],
|
|
573
547
|
}]
|
|
574
548
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
575
549
|
let IxEventListItem = class IxEventListItem {
|
|
@@ -584,7 +558,6 @@ let IxEventListItem = class IxEventListItem {
|
|
|
584
558
|
/** @nocollapse */ IxEventListItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
585
559
|
IxEventListItem = __decorate([
|
|
586
560
|
ProxyCmp({
|
|
587
|
-
defineCustomElementFn: undefined,
|
|
588
561
|
inputs: ['chevron', 'color', 'disabled', 'opacity', 'selected']
|
|
589
562
|
})
|
|
590
563
|
], IxEventListItem);
|
|
@@ -594,7 +567,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
594
567
|
selector: 'ix-event-list-item',
|
|
595
568
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
596
569
|
template: '<ng-content></ng-content>',
|
|
597
|
-
|
|
570
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
571
|
+
inputs: ['chevron', 'color', 'disabled', 'opacity', 'selected'],
|
|
598
572
|
}]
|
|
599
573
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
600
574
|
let IxExpandingSearch = class IxExpandingSearch {
|
|
@@ -609,7 +583,6 @@ let IxExpandingSearch = class IxExpandingSearch {
|
|
|
609
583
|
/** @nocollapse */ IxExpandingSearch.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
610
584
|
IxExpandingSearch = __decorate([
|
|
611
585
|
ProxyCmp({
|
|
612
|
-
defineCustomElementFn: undefined,
|
|
613
586
|
inputs: ['icon', 'placeholder', 'value']
|
|
614
587
|
})
|
|
615
588
|
], IxExpandingSearch);
|
|
@@ -619,7 +592,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
619
592
|
selector: 'ix-expanding-search',
|
|
620
593
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
621
594
|
template: '<ng-content></ng-content>',
|
|
622
|
-
|
|
595
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
596
|
+
inputs: ['icon', 'placeholder', 'value'],
|
|
623
597
|
}]
|
|
624
598
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
625
599
|
let IxFilterChip = class IxFilterChip {
|
|
@@ -634,7 +608,6 @@ let IxFilterChip = class IxFilterChip {
|
|
|
634
608
|
/** @nocollapse */ IxFilterChip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxFilterChip, selector: "ix-filter-chip", inputs: { disabled: "disabled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
635
609
|
IxFilterChip = __decorate([
|
|
636
610
|
ProxyCmp({
|
|
637
|
-
defineCustomElementFn: undefined,
|
|
638
611
|
inputs: ['disabled']
|
|
639
612
|
})
|
|
640
613
|
], IxFilterChip);
|
|
@@ -644,7 +617,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
644
617
|
selector: 'ix-filter-chip',
|
|
645
618
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
646
619
|
template: '<ng-content></ng-content>',
|
|
647
|
-
inputs
|
|
620
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
621
|
+
inputs: ['disabled'],
|
|
648
622
|
}]
|
|
649
623
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
650
624
|
let IxFlipTile = class IxFlipTile {
|
|
@@ -658,7 +632,6 @@ let IxFlipTile = class IxFlipTile {
|
|
|
658
632
|
/** @nocollapse */ IxFlipTile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxFlipTile, selector: "ix-flip-tile", inputs: { footer: "footer", state: "state" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
659
633
|
IxFlipTile = __decorate([
|
|
660
634
|
ProxyCmp({
|
|
661
|
-
defineCustomElementFn: undefined,
|
|
662
635
|
inputs: ['footer', 'state']
|
|
663
636
|
})
|
|
664
637
|
], IxFlipTile);
|
|
@@ -668,7 +641,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
668
641
|
selector: 'ix-flip-tile',
|
|
669
642
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
670
643
|
template: '<ng-content></ng-content>',
|
|
671
|
-
|
|
644
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
645
|
+
inputs: ['footer', 'state'],
|
|
672
646
|
}]
|
|
673
647
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
674
648
|
let IxFlipTileContent = class IxFlipTileContent {
|
|
@@ -681,16 +655,16 @@ let IxFlipTileContent = class IxFlipTileContent {
|
|
|
681
655
|
/** @nocollapse */ IxFlipTileContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxFlipTileContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
682
656
|
/** @nocollapse */ IxFlipTileContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxFlipTileContent, selector: "ix-flip-tile-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
683
657
|
IxFlipTileContent = __decorate([
|
|
684
|
-
ProxyCmp({
|
|
685
|
-
defineCustomElementFn: undefined
|
|
686
|
-
})
|
|
658
|
+
ProxyCmp({})
|
|
687
659
|
], IxFlipTileContent);
|
|
688
660
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxFlipTileContent, decorators: [{
|
|
689
661
|
type: Component,
|
|
690
662
|
args: [{
|
|
691
663
|
selector: 'ix-flip-tile-content',
|
|
692
664
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
693
|
-
template: '<ng-content></ng-content>'
|
|
665
|
+
template: '<ng-content></ng-content>',
|
|
666
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
667
|
+
inputs: [],
|
|
694
668
|
}]
|
|
695
669
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
696
670
|
let IxGroup = class IxGroup {
|
|
@@ -705,7 +679,6 @@ let IxGroup = class IxGroup {
|
|
|
705
679
|
/** @nocollapse */ IxGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
706
680
|
IxGroup = __decorate([
|
|
707
681
|
ProxyCmp({
|
|
708
|
-
defineCustomElementFn: undefined,
|
|
709
682
|
inputs: ['collapsed', 'expandOnHeaderClick', 'header', 'index', 'selected', 'subHeader', 'suppressHeaderSelection']
|
|
710
683
|
})
|
|
711
684
|
], IxGroup);
|
|
@@ -715,7 +688,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
715
688
|
selector: 'ix-group',
|
|
716
689
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
717
690
|
template: '<ng-content></ng-content>',
|
|
718
|
-
|
|
691
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
692
|
+
inputs: ['collapsed', 'expandOnHeaderClick', 'header', 'index', 'selected', 'subHeader', 'suppressHeaderSelection'],
|
|
719
693
|
}]
|
|
720
694
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
721
695
|
let IxGroupContextMenu = class IxGroupContextMenu {
|
|
@@ -728,16 +702,16 @@ let IxGroupContextMenu = class IxGroupContextMenu {
|
|
|
728
702
|
/** @nocollapse */ IxGroupContextMenu.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxGroupContextMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
729
703
|
/** @nocollapse */ IxGroupContextMenu.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxGroupContextMenu, selector: "ix-group-context-menu", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
730
704
|
IxGroupContextMenu = __decorate([
|
|
731
|
-
ProxyCmp({
|
|
732
|
-
defineCustomElementFn: undefined
|
|
733
|
-
})
|
|
705
|
+
ProxyCmp({})
|
|
734
706
|
], IxGroupContextMenu);
|
|
735
707
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxGroupContextMenu, decorators: [{
|
|
736
708
|
type: Component,
|
|
737
709
|
args: [{
|
|
738
710
|
selector: 'ix-group-context-menu',
|
|
739
711
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
740
|
-
template: '<ng-content></ng-content>'
|
|
712
|
+
template: '<ng-content></ng-content>',
|
|
713
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
714
|
+
inputs: [],
|
|
741
715
|
}]
|
|
742
716
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
743
717
|
let IxGroupDropdownItem = class IxGroupDropdownItem {
|
|
@@ -751,7 +725,6 @@ let IxGroupDropdownItem = class IxGroupDropdownItem {
|
|
|
751
725
|
/** @nocollapse */ IxGroupDropdownItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
752
726
|
IxGroupDropdownItem = __decorate([
|
|
753
727
|
ProxyCmp({
|
|
754
|
-
defineCustomElementFn: undefined,
|
|
755
728
|
inputs: ['icon', 'label']
|
|
756
729
|
})
|
|
757
730
|
], IxGroupDropdownItem);
|
|
@@ -761,7 +734,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
761
734
|
selector: 'ix-group-dropdown-item',
|
|
762
735
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
763
736
|
template: '<ng-content></ng-content>',
|
|
764
|
-
|
|
737
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
738
|
+
inputs: ['icon', 'label'],
|
|
765
739
|
}]
|
|
766
740
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
767
741
|
let IxGroupItem = class IxGroupItem {
|
|
@@ -776,7 +750,6 @@ let IxGroupItem = class IxGroupItem {
|
|
|
776
750
|
/** @nocollapse */ IxGroupItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
777
751
|
IxGroupItem = __decorate([
|
|
778
752
|
ProxyCmp({
|
|
779
|
-
defineCustomElementFn: undefined,
|
|
780
753
|
inputs: ['focusable', 'icon', 'index', 'secondaryText', 'selected', 'suppressSelection', 'text']
|
|
781
754
|
})
|
|
782
755
|
], IxGroupItem);
|
|
@@ -786,7 +759,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
786
759
|
selector: 'ix-group-item',
|
|
787
760
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
788
761
|
template: '<ng-content></ng-content>',
|
|
789
|
-
|
|
762
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
763
|
+
inputs: ['focusable', 'icon', 'index', 'secondaryText', 'selected', 'suppressSelection', 'text'],
|
|
790
764
|
}]
|
|
791
765
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
792
766
|
let IxIcon = class IxIcon {
|
|
@@ -800,7 +774,6 @@ let IxIcon = class IxIcon {
|
|
|
800
774
|
/** @nocollapse */ IxIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
801
775
|
IxIcon = __decorate([
|
|
802
776
|
ProxyCmp({
|
|
803
|
-
defineCustomElementFn: undefined,
|
|
804
777
|
inputs: ['color', 'name', 'size']
|
|
805
778
|
})
|
|
806
779
|
], IxIcon);
|
|
@@ -810,7 +783,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
810
783
|
selector: 'ix-icon',
|
|
811
784
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
812
785
|
template: '<ng-content></ng-content>',
|
|
813
|
-
|
|
786
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
787
|
+
inputs: ['color', 'name', 'size'],
|
|
814
788
|
}]
|
|
815
789
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
816
790
|
let IxIconButton = class IxIconButton {
|
|
@@ -824,7 +798,6 @@ let IxIconButton = class IxIconButton {
|
|
|
824
798
|
/** @nocollapse */ IxIconButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
825
799
|
IxIconButton = __decorate([
|
|
826
800
|
ProxyCmp({
|
|
827
|
-
defineCustomElementFn: undefined,
|
|
828
801
|
inputs: ['color', 'disabled', 'ghost', 'icon', 'invisible', 'outline', 'oval', 'selected', 'size', 'type', 'variant']
|
|
829
802
|
})
|
|
830
803
|
], IxIconButton);
|
|
@@ -834,7 +807,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
834
807
|
selector: 'ix-icon-button',
|
|
835
808
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
836
809
|
template: '<ng-content></ng-content>',
|
|
837
|
-
|
|
810
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
811
|
+
inputs: ['color', 'disabled', 'ghost', 'icon', 'invisible', 'outline', 'oval', 'selected', 'size', 'type', 'variant'],
|
|
838
812
|
}]
|
|
839
813
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
840
814
|
let IxInputGroup = class IxInputGroup {
|
|
@@ -847,16 +821,16 @@ let IxInputGroup = class IxInputGroup {
|
|
|
847
821
|
/** @nocollapse */ IxInputGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxInputGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
848
822
|
/** @nocollapse */ IxInputGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxInputGroup, selector: "ix-input-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
849
823
|
IxInputGroup = __decorate([
|
|
850
|
-
ProxyCmp({
|
|
851
|
-
defineCustomElementFn: undefined
|
|
852
|
-
})
|
|
824
|
+
ProxyCmp({})
|
|
853
825
|
], IxInputGroup);
|
|
854
826
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxInputGroup, decorators: [{
|
|
855
827
|
type: Component,
|
|
856
828
|
args: [{
|
|
857
829
|
selector: 'ix-input-group',
|
|
858
830
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
859
|
-
template: '<ng-content></ng-content>'
|
|
831
|
+
template: '<ng-content></ng-content>',
|
|
832
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
833
|
+
inputs: [],
|
|
860
834
|
}]
|
|
861
835
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
862
836
|
let IxKpi = class IxKpi {
|
|
@@ -870,7 +844,6 @@ let IxKpi = class IxKpi {
|
|
|
870
844
|
/** @nocollapse */ IxKpi.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
871
845
|
IxKpi = __decorate([
|
|
872
846
|
ProxyCmp({
|
|
873
|
-
defineCustomElementFn: undefined,
|
|
874
847
|
inputs: ['label', 'orientation', 'state', 'unit', 'value']
|
|
875
848
|
})
|
|
876
849
|
], IxKpi);
|
|
@@ -880,7 +853,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
880
853
|
selector: 'ix-kpi',
|
|
881
854
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
882
855
|
template: '<ng-content></ng-content>',
|
|
883
|
-
|
|
856
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
857
|
+
inputs: ['label', 'orientation', 'state', 'unit', 'value'],
|
|
884
858
|
}]
|
|
885
859
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
886
860
|
let IxMapNavigation = class IxMapNavigation {
|
|
@@ -895,7 +869,6 @@ let IxMapNavigation = class IxMapNavigation {
|
|
|
895
869
|
/** @nocollapse */ IxMapNavigation.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
896
870
|
IxMapNavigation = __decorate([
|
|
897
871
|
ProxyCmp({
|
|
898
|
-
defineCustomElementFn: undefined,
|
|
899
872
|
inputs: ['applicationName', 'hideContextMenu', 'navigationTitle'],
|
|
900
873
|
methods: ['openOverlay', 'closeOverlay']
|
|
901
874
|
})
|
|
@@ -906,7 +879,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
906
879
|
selector: 'ix-map-navigation',
|
|
907
880
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
908
881
|
template: '<ng-content></ng-content>',
|
|
909
|
-
|
|
882
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
883
|
+
inputs: ['applicationName', 'hideContextMenu', 'navigationTitle'],
|
|
910
884
|
}]
|
|
911
885
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
912
886
|
let IxMapNavigationOverlay = class IxMapNavigationOverlay {
|
|
@@ -921,7 +895,6 @@ let IxMapNavigationOverlay = class IxMapNavigationOverlay {
|
|
|
921
895
|
/** @nocollapse */ IxMapNavigationOverlay.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
922
896
|
IxMapNavigationOverlay = __decorate([
|
|
923
897
|
ProxyCmp({
|
|
924
|
-
defineCustomElementFn: undefined,
|
|
925
898
|
inputs: ['color', 'icon', 'name']
|
|
926
899
|
})
|
|
927
900
|
], IxMapNavigationOverlay);
|
|
@@ -931,7 +904,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
931
904
|
selector: 'ix-map-navigation-overlay',
|
|
932
905
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
933
906
|
template: '<ng-content></ng-content>',
|
|
934
|
-
|
|
907
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
908
|
+
inputs: ['color', 'icon', 'name'],
|
|
935
909
|
}]
|
|
936
910
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
937
911
|
let IxMenu = class IxMenu {
|
|
@@ -946,7 +920,6 @@ let IxMenu = class IxMenu {
|
|
|
946
920
|
/** @nocollapse */ IxMenu.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
947
921
|
IxMenu = __decorate([
|
|
948
922
|
ProxyCmp({
|
|
949
|
-
defineCustomElementFn: undefined,
|
|
950
923
|
inputs: ['applicationDescription', 'applicationName', 'enableMapExpand', 'enableSettings', 'enableToggleTheme', 'expand', 'i18nCollapse', 'i18nExpand', 'i18nLegal', 'i18nMore', 'i18nSettings', 'i18nToggleTheme', 'maxVisibleMenuItems', 'showAbout', 'showSettings'],
|
|
951
924
|
methods: ['toggleMapExpand', 'toggleMenu', 'toggleSettings', 'toggleAbout']
|
|
952
925
|
})
|
|
@@ -957,7 +930,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
957
930
|
selector: 'ix-menu',
|
|
958
931
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
959
932
|
template: '<ng-content></ng-content>',
|
|
960
|
-
|
|
933
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
934
|
+
inputs: ['applicationDescription', 'applicationName', 'enableMapExpand', 'enableSettings', 'enableToggleTheme', 'expand', 'i18nCollapse', 'i18nExpand', 'i18nLegal', 'i18nMore', 'i18nSettings', 'i18nToggleTheme', 'maxVisibleMenuItems', 'showAbout', 'showSettings'],
|
|
961
935
|
}]
|
|
962
936
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
963
937
|
let IxMenuAbout = class IxMenuAbout {
|
|
@@ -972,7 +946,6 @@ let IxMenuAbout = class IxMenuAbout {
|
|
|
972
946
|
/** @nocollapse */ IxMenuAbout.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
973
947
|
IxMenuAbout = __decorate([
|
|
974
948
|
ProxyCmp({
|
|
975
|
-
defineCustomElementFn: undefined,
|
|
976
949
|
inputs: ['activeTabLabel', 'label', 'show']
|
|
977
950
|
})
|
|
978
951
|
], IxMenuAbout);
|
|
@@ -982,7 +955,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
982
955
|
selector: 'ix-menu-about',
|
|
983
956
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
984
957
|
template: '<ng-content></ng-content>',
|
|
985
|
-
|
|
958
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
959
|
+
inputs: ['activeTabLabel', 'label', 'show'],
|
|
986
960
|
}]
|
|
987
961
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
988
962
|
let IxMenuAboutItem = class IxMenuAboutItem {
|
|
@@ -996,7 +970,6 @@ let IxMenuAboutItem = class IxMenuAboutItem {
|
|
|
996
970
|
/** @nocollapse */ IxMenuAboutItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxMenuAboutItem, selector: "ix-menu-about-item", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
997
971
|
IxMenuAboutItem = __decorate([
|
|
998
972
|
ProxyCmp({
|
|
999
|
-
defineCustomElementFn: undefined,
|
|
1000
973
|
inputs: ['label']
|
|
1001
974
|
})
|
|
1002
975
|
], IxMenuAboutItem);
|
|
@@ -1006,7 +979,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1006
979
|
selector: 'ix-menu-about-item',
|
|
1007
980
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1008
981
|
template: '<ng-content></ng-content>',
|
|
1009
|
-
inputs
|
|
982
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
983
|
+
inputs: ['label'],
|
|
1010
984
|
}]
|
|
1011
985
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1012
986
|
let IxMenuAboutNews = class IxMenuAboutNews {
|
|
@@ -1021,7 +995,6 @@ let IxMenuAboutNews = class IxMenuAboutNews {
|
|
|
1021
995
|
/** @nocollapse */ IxMenuAboutNews.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
1022
996
|
IxMenuAboutNews = __decorate([
|
|
1023
997
|
ProxyCmp({
|
|
1024
|
-
defineCustomElementFn: undefined,
|
|
1025
998
|
inputs: ['aboutItemLabel', 'expanded', 'i18nShowMore', 'label', 'offsetBottom', 'show']
|
|
1026
999
|
})
|
|
1027
1000
|
], IxMenuAboutNews);
|
|
@@ -1031,7 +1004,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1031
1004
|
selector: 'ix-menu-about-news',
|
|
1032
1005
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1033
1006
|
template: '<ng-content></ng-content>',
|
|
1034
|
-
|
|
1007
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1008
|
+
inputs: ['aboutItemLabel', 'expanded', 'i18nShowMore', 'label', 'offsetBottom', 'show'],
|
|
1035
1009
|
}]
|
|
1036
1010
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1037
1011
|
let IxMenuAvatar = class IxMenuAvatar {
|
|
@@ -1046,7 +1020,6 @@ let IxMenuAvatar = class IxMenuAvatar {
|
|
|
1046
1020
|
/** @nocollapse */ IxMenuAvatar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxMenuAvatar, selector: "ix-menu-avatar", inputs: { bottom: "bottom", i18nLogout: "i18nLogout", image: "image", initials: "initials", top: "top" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1047
1021
|
IxMenuAvatar = __decorate([
|
|
1048
1022
|
ProxyCmp({
|
|
1049
|
-
defineCustomElementFn: undefined,
|
|
1050
1023
|
inputs: ['bottom', 'i18nLogout', 'image', 'initials', 'top']
|
|
1051
1024
|
})
|
|
1052
1025
|
], IxMenuAvatar);
|
|
@@ -1056,7 +1029,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1056
1029
|
selector: 'ix-menu-avatar',
|
|
1057
1030
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1058
1031
|
template: '<ng-content></ng-content>',
|
|
1059
|
-
|
|
1032
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1033
|
+
inputs: ['bottom', 'i18nLogout', 'image', 'initials', 'top'],
|
|
1060
1034
|
}]
|
|
1061
1035
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1062
1036
|
let IxMenuAvatarItem = class IxMenuAvatarItem {
|
|
@@ -1071,7 +1045,6 @@ let IxMenuAvatarItem = class IxMenuAvatarItem {
|
|
|
1071
1045
|
/** @nocollapse */ IxMenuAvatarItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
1072
1046
|
IxMenuAvatarItem = __decorate([
|
|
1073
1047
|
ProxyCmp({
|
|
1074
|
-
defineCustomElementFn: undefined,
|
|
1075
1048
|
inputs: ['icon', 'label']
|
|
1076
1049
|
})
|
|
1077
1050
|
], IxMenuAvatarItem);
|
|
@@ -1081,7 +1054,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1081
1054
|
selector: 'ix-menu-avatar-item',
|
|
1082
1055
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1083
1056
|
template: '<ng-content></ng-content>',
|
|
1084
|
-
|
|
1057
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1058
|
+
inputs: ['icon', 'label'],
|
|
1085
1059
|
}]
|
|
1086
1060
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1087
1061
|
let IxMenuItem = class IxMenuItem {
|
|
@@ -1095,7 +1069,6 @@ let IxMenuItem = class IxMenuItem {
|
|
|
1095
1069
|
/** @nocollapse */ IxMenuItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
1096
1070
|
IxMenuItem = __decorate([
|
|
1097
1071
|
ProxyCmp({
|
|
1098
|
-
defineCustomElementFn: undefined,
|
|
1099
1072
|
inputs: ['active', 'bottom', 'disabled', 'home', 'notifications', 'tabIcon']
|
|
1100
1073
|
})
|
|
1101
1074
|
], IxMenuItem);
|
|
@@ -1105,7 +1078,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1105
1078
|
selector: 'ix-menu-item',
|
|
1106
1079
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1107
1080
|
template: '<ng-content></ng-content>',
|
|
1108
|
-
|
|
1081
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1082
|
+
inputs: ['active', 'bottom', 'disabled', 'home', 'notifications', 'tabIcon'],
|
|
1109
1083
|
}]
|
|
1110
1084
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1111
1085
|
let IxMenuSettings = class IxMenuSettings {
|
|
@@ -1120,7 +1094,6 @@ let IxMenuSettings = class IxMenuSettings {
|
|
|
1120
1094
|
/** @nocollapse */ IxMenuSettings.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
1121
1095
|
IxMenuSettings = __decorate([
|
|
1122
1096
|
ProxyCmp({
|
|
1123
|
-
defineCustomElementFn: undefined,
|
|
1124
1097
|
inputs: ['activeTabLabel', 'label', 'show']
|
|
1125
1098
|
})
|
|
1126
1099
|
], IxMenuSettings);
|
|
@@ -1130,7 +1103,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1130
1103
|
selector: 'ix-menu-settings',
|
|
1131
1104
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1132
1105
|
template: '<ng-content></ng-content>',
|
|
1133
|
-
|
|
1106
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1107
|
+
inputs: ['activeTabLabel', 'label', 'show'],
|
|
1134
1108
|
}]
|
|
1135
1109
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1136
1110
|
let IxMenuSettingsItem = class IxMenuSettingsItem {
|
|
@@ -1144,7 +1118,6 @@ let IxMenuSettingsItem = class IxMenuSettingsItem {
|
|
|
1144
1118
|
/** @nocollapse */ IxMenuSettingsItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxMenuSettingsItem, selector: "ix-menu-settings-item", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1145
1119
|
IxMenuSettingsItem = __decorate([
|
|
1146
1120
|
ProxyCmp({
|
|
1147
|
-
defineCustomElementFn: undefined,
|
|
1148
1121
|
inputs: ['label']
|
|
1149
1122
|
})
|
|
1150
1123
|
], IxMenuSettingsItem);
|
|
@@ -1154,7 +1127,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1154
1127
|
selector: 'ix-menu-settings-item',
|
|
1155
1128
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1156
1129
|
template: '<ng-content></ng-content>',
|
|
1157
|
-
inputs
|
|
1130
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1131
|
+
inputs: ['label'],
|
|
1158
1132
|
}]
|
|
1159
1133
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1160
1134
|
let IxMessageBar = class IxMessageBar {
|
|
@@ -1169,7 +1143,6 @@ let IxMessageBar = class IxMessageBar {
|
|
|
1169
1143
|
/** @nocollapse */ IxMessageBar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxMessageBar, selector: "ix-message-bar", inputs: { dismissible: "dismissible", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1170
1144
|
IxMessageBar = __decorate([
|
|
1171
1145
|
ProxyCmp({
|
|
1172
|
-
defineCustomElementFn: undefined,
|
|
1173
1146
|
inputs: ['dismissible', 'type']
|
|
1174
1147
|
})
|
|
1175
1148
|
], IxMessageBar);
|
|
@@ -1179,7 +1152,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1179
1152
|
selector: 'ix-message-bar',
|
|
1180
1153
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1181
1154
|
template: '<ng-content></ng-content>',
|
|
1182
|
-
|
|
1155
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1156
|
+
inputs: ['dismissible', 'type'],
|
|
1183
1157
|
}]
|
|
1184
1158
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1185
1159
|
let IxModal = class IxModal {
|
|
@@ -1194,7 +1168,6 @@ let IxModal = class IxModal {
|
|
|
1194
1168
|
/** @nocollapse */ IxModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
1195
1169
|
IxModal = __decorate([
|
|
1196
1170
|
ProxyCmp({
|
|
1197
|
-
defineCustomElementFn: undefined,
|
|
1198
1171
|
inputs: ['animation', 'ariaDescribedBy', 'ariaLabelledBy', 'backdrop', 'backdropClass', 'beforeDismiss', 'centered', 'content', 'headerTitle', 'icon', 'iconColor', 'keyboard', 'modalDialogClass', 'scrollable', 'size', 'windowClass'],
|
|
1199
1172
|
methods: ['dismiss', 'close']
|
|
1200
1173
|
})
|
|
@@ -1205,7 +1178,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1205
1178
|
selector: 'ix-modal',
|
|
1206
1179
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1207
1180
|
template: '<ng-content></ng-content>',
|
|
1208
|
-
|
|
1181
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1182
|
+
inputs: ['animation', 'ariaDescribedBy', 'ariaLabelledBy', 'backdrop', 'backdropClass', 'beforeDismiss', 'centered', 'content', 'headerTitle', 'icon', 'iconColor', 'keyboard', 'modalDialogClass', 'scrollable', 'size', 'windowClass'],
|
|
1209
1183
|
}]
|
|
1210
1184
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1211
1185
|
let IxModalContainer = class IxModalContainer {
|
|
@@ -1219,7 +1193,6 @@ let IxModalContainer = class IxModalContainer {
|
|
|
1219
1193
|
/** @nocollapse */ IxModalContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxModalContainer, selector: "ix-modal-container", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1220
1194
|
IxModalContainer = __decorate([
|
|
1221
1195
|
ProxyCmp({
|
|
1222
|
-
defineCustomElementFn: undefined,
|
|
1223
1196
|
methods: ['showModal']
|
|
1224
1197
|
})
|
|
1225
1198
|
], IxModalContainer);
|
|
@@ -1228,7 +1201,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1228
1201
|
args: [{
|
|
1229
1202
|
selector: 'ix-modal-container',
|
|
1230
1203
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1231
|
-
template: '<ng-content></ng-content>'
|
|
1204
|
+
template: '<ng-content></ng-content>',
|
|
1205
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1206
|
+
inputs: [],
|
|
1232
1207
|
}]
|
|
1233
1208
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1234
1209
|
let IxModalExample = class IxModalExample {
|
|
@@ -1241,16 +1216,16 @@ let IxModalExample = class IxModalExample {
|
|
|
1241
1216
|
/** @nocollapse */ IxModalExample.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModalExample, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1242
1217
|
/** @nocollapse */ IxModalExample.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxModalExample, selector: "ix-modal-example", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1243
1218
|
IxModalExample = __decorate([
|
|
1244
|
-
ProxyCmp({
|
|
1245
|
-
defineCustomElementFn: undefined
|
|
1246
|
-
})
|
|
1219
|
+
ProxyCmp({})
|
|
1247
1220
|
], IxModalExample);
|
|
1248
1221
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModalExample, decorators: [{
|
|
1249
1222
|
type: Component,
|
|
1250
1223
|
args: [{
|
|
1251
1224
|
selector: 'ix-modal-example',
|
|
1252
1225
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1253
|
-
template: '<ng-content></ng-content>'
|
|
1226
|
+
template: '<ng-content></ng-content>',
|
|
1227
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1228
|
+
inputs: [],
|
|
1254
1229
|
}]
|
|
1255
1230
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1256
1231
|
let IxPill = class IxPill {
|
|
@@ -1264,7 +1239,6 @@ let IxPill = class IxPill {
|
|
|
1264
1239
|
/** @nocollapse */ IxPill.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
1265
1240
|
IxPill = __decorate([
|
|
1266
1241
|
ProxyCmp({
|
|
1267
|
-
defineCustomElementFn: undefined,
|
|
1268
1242
|
inputs: ['alignLeft', 'background', 'color', 'icon', 'outline', 'variant']
|
|
1269
1243
|
})
|
|
1270
1244
|
], IxPill);
|
|
@@ -1274,7 +1248,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1274
1248
|
selector: 'ix-pill',
|
|
1275
1249
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1276
1250
|
template: '<ng-content></ng-content>',
|
|
1277
|
-
|
|
1251
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1252
|
+
inputs: ['alignLeft', 'background', 'color', 'icon', 'outline', 'variant'],
|
|
1278
1253
|
}]
|
|
1279
1254
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1280
1255
|
let IxSelect = class IxSelect {
|
|
@@ -1289,7 +1264,6 @@ let IxSelect = class IxSelect {
|
|
|
1289
1264
|
/** @nocollapse */ IxSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
1290
1265
|
IxSelect = __decorate([
|
|
1291
1266
|
ProxyCmp({
|
|
1292
|
-
defineCustomElementFn: undefined,
|
|
1293
1267
|
inputs: ['allowClear', 'disabled', 'editable', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'mode', 'readonly', 'selectedIndices']
|
|
1294
1268
|
})
|
|
1295
1269
|
], IxSelect);
|
|
@@ -1299,7 +1273,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1299
1273
|
selector: 'ix-select',
|
|
1300
1274
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1301
1275
|
template: '<ng-content></ng-content>',
|
|
1302
|
-
|
|
1276
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1277
|
+
inputs: ['allowClear', 'disabled', 'editable', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'mode', 'readonly', 'selectedIndices'],
|
|
1303
1278
|
}]
|
|
1304
1279
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1305
1280
|
let IxSelectItem = class IxSelectItem {
|
|
@@ -1314,7 +1289,6 @@ let IxSelectItem = class IxSelectItem {
|
|
|
1314
1289
|
/** @nocollapse */ IxSelectItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxSelectItem, selector: "ix-select-item", inputs: { label: "label", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1315
1290
|
IxSelectItem = __decorate([
|
|
1316
1291
|
ProxyCmp({
|
|
1317
|
-
defineCustomElementFn: undefined,
|
|
1318
1292
|
inputs: ['label', 'selected', 'value']
|
|
1319
1293
|
})
|
|
1320
1294
|
], IxSelectItem);
|
|
@@ -1324,7 +1298,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1324
1298
|
selector: 'ix-select-item',
|
|
1325
1299
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1326
1300
|
template: '<ng-content></ng-content>',
|
|
1327
|
-
|
|
1301
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1302
|
+
inputs: ['label', 'selected', 'value'],
|
|
1328
1303
|
}]
|
|
1329
1304
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1330
1305
|
let IxSpinner = class IxSpinner {
|
|
@@ -1338,7 +1313,6 @@ let IxSpinner = class IxSpinner {
|
|
|
1338
1313
|
/** @nocollapse */ IxSpinner.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxSpinner, selector: "ix-spinner", inputs: { size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1339
1314
|
IxSpinner = __decorate([
|
|
1340
1315
|
ProxyCmp({
|
|
1341
|
-
defineCustomElementFn: undefined,
|
|
1342
1316
|
inputs: ['size', 'variant']
|
|
1343
1317
|
})
|
|
1344
1318
|
], IxSpinner);
|
|
@@ -1348,7 +1322,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1348
1322
|
selector: 'ix-spinner',
|
|
1349
1323
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1350
1324
|
template: '<ng-content></ng-content>',
|
|
1351
|
-
|
|
1325
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1326
|
+
inputs: ['size', 'variant'],
|
|
1352
1327
|
}]
|
|
1353
1328
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1354
1329
|
let IxSplitButton = class IxSplitButton {
|
|
@@ -1363,7 +1338,6 @@ let IxSplitButton = class IxSplitButton {
|
|
|
1363
1338
|
/** @nocollapse */ IxSplitButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
1364
1339
|
IxSplitButton = __decorate([
|
|
1365
1340
|
ProxyCmp({
|
|
1366
|
-
defineCustomElementFn: undefined,
|
|
1367
1341
|
inputs: ['disabled', 'ghost', 'icon', 'invisible', 'label', 'outline', 'placement', 'splitIcon', 'variant']
|
|
1368
1342
|
})
|
|
1369
1343
|
], IxSplitButton);
|
|
@@ -1373,7 +1347,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1373
1347
|
selector: 'ix-split-button',
|
|
1374
1348
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1375
1349
|
template: '<ng-content></ng-content>',
|
|
1376
|
-
|
|
1350
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1351
|
+
inputs: ['disabled', 'ghost', 'icon', 'invisible', 'label', 'outline', 'placement', 'splitIcon', 'variant'],
|
|
1377
1352
|
}]
|
|
1378
1353
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1379
1354
|
let IxSplitButtonItem = class IxSplitButtonItem {
|
|
@@ -1388,7 +1363,6 @@ let IxSplitButtonItem = class IxSplitButtonItem {
|
|
|
1388
1363
|
/** @nocollapse */ IxSplitButtonItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
1389
1364
|
IxSplitButtonItem = __decorate([
|
|
1390
1365
|
ProxyCmp({
|
|
1391
|
-
defineCustomElementFn: undefined,
|
|
1392
1366
|
inputs: ['icon', 'label']
|
|
1393
1367
|
})
|
|
1394
1368
|
], IxSplitButtonItem);
|
|
@@ -1398,7 +1372,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1398
1372
|
selector: 'ix-split-button-item',
|
|
1399
1373
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1400
1374
|
template: '<ng-content></ng-content>',
|
|
1401
|
-
|
|
1375
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1376
|
+
inputs: ['icon', 'label'],
|
|
1402
1377
|
}]
|
|
1403
1378
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1404
1379
|
let IxTabItem = class IxTabItem {
|
|
@@ -1412,7 +1387,6 @@ let IxTabItem = class IxTabItem {
|
|
|
1412
1387
|
/** @nocollapse */ IxTabItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
1413
1388
|
IxTabItem = __decorate([
|
|
1414
1389
|
ProxyCmp({
|
|
1415
|
-
defineCustomElementFn: undefined,
|
|
1416
1390
|
inputs: ['counter', 'disabled', 'icon', 'layout', 'placement', 'rounded', 'selected', 'small']
|
|
1417
1391
|
})
|
|
1418
1392
|
], IxTabItem);
|
|
@@ -1422,7 +1396,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1422
1396
|
selector: 'ix-tab-item',
|
|
1423
1397
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1424
1398
|
template: '<ng-content></ng-content>',
|
|
1425
|
-
|
|
1399
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1400
|
+
inputs: ['counter', 'disabled', 'icon', 'layout', 'placement', 'rounded', 'selected', 'small'],
|
|
1426
1401
|
}]
|
|
1427
1402
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1428
1403
|
let IxTabs = class IxTabs {
|
|
@@ -1436,7 +1411,6 @@ let IxTabs = class IxTabs {
|
|
|
1436
1411
|
/** @nocollapse */ IxTabs.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
1437
1412
|
IxTabs = __decorate([
|
|
1438
1413
|
ProxyCmp({
|
|
1439
|
-
defineCustomElementFn: undefined,
|
|
1440
1414
|
inputs: ['layout', 'placement', 'rounded', 'selected', 'small']
|
|
1441
1415
|
})
|
|
1442
1416
|
], IxTabs);
|
|
@@ -1446,7 +1420,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1446
1420
|
selector: 'ix-tabs',
|
|
1447
1421
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1448
1422
|
template: '<ng-content></ng-content>',
|
|
1449
|
-
|
|
1423
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1424
|
+
inputs: ['layout', 'placement', 'rounded', 'selected', 'small'],
|
|
1450
1425
|
}]
|
|
1451
1426
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1452
1427
|
let IxTile = class IxTile {
|
|
@@ -1460,7 +1435,6 @@ let IxTile = class IxTile {
|
|
|
1460
1435
|
/** @nocollapse */ IxTile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxTile, selector: "ix-tile", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1461
1436
|
IxTile = __decorate([
|
|
1462
1437
|
ProxyCmp({
|
|
1463
|
-
defineCustomElementFn: undefined,
|
|
1464
1438
|
inputs: ['size']
|
|
1465
1439
|
})
|
|
1466
1440
|
], IxTile);
|
|
@@ -1470,7 +1444,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1470
1444
|
selector: 'ix-tile',
|
|
1471
1445
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1472
1446
|
template: '<ng-content></ng-content>',
|
|
1473
|
-
inputs
|
|
1447
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1448
|
+
inputs: ['size'],
|
|
1474
1449
|
}]
|
|
1475
1450
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1476
1451
|
let IxTimePicker = class IxTimePicker {
|
|
@@ -1485,7 +1460,6 @@ let IxTimePicker = class IxTimePicker {
|
|
|
1485
1460
|
/** @nocollapse */ IxTimePicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
1486
1461
|
IxTimePicker = __decorate([
|
|
1487
1462
|
ProxyCmp({
|
|
1488
|
-
defineCustomElementFn: undefined,
|
|
1489
1463
|
inputs: ['corners', 'format', 'individual', 'showHour', 'showMinutes', 'showSeconds', 'showTimeReference', 'textSelectTime', 'time', 'timeReference'],
|
|
1490
1464
|
methods: ['getCurrentTime']
|
|
1491
1465
|
})
|
|
@@ -1496,7 +1470,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1496
1470
|
selector: 'ix-time-picker',
|
|
1497
1471
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1498
1472
|
template: '<ng-content></ng-content>',
|
|
1499
|
-
|
|
1473
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1474
|
+
inputs: ['corners', 'format', 'individual', 'showHour', 'showMinutes', 'showSeconds', 'showTimeReference', 'textSelectTime', 'time', 'timeReference'],
|
|
1500
1475
|
}]
|
|
1501
1476
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1502
1477
|
let IxToast = class IxToast {
|
|
@@ -1511,7 +1486,6 @@ let IxToast = class IxToast {
|
|
|
1511
1486
|
/** @nocollapse */ IxToast.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
1512
1487
|
IxToast = __decorate([
|
|
1513
1488
|
ProxyCmp({
|
|
1514
|
-
defineCustomElementFn: undefined,
|
|
1515
1489
|
inputs: ['autoClose', 'autoCloseDelay', 'icon', 'iconColor', 'toastTitle', 'type']
|
|
1516
1490
|
})
|
|
1517
1491
|
], IxToast);
|
|
@@ -1521,7 +1495,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1521
1495
|
selector: 'ix-toast',
|
|
1522
1496
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1523
1497
|
template: '<ng-content></ng-content>',
|
|
1524
|
-
|
|
1498
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1499
|
+
inputs: ['autoClose', 'autoCloseDelay', 'icon', 'iconColor', 'toastTitle', 'type'],
|
|
1525
1500
|
}]
|
|
1526
1501
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1527
1502
|
let IxToastContainer = class IxToastContainer {
|
|
@@ -1535,7 +1510,6 @@ let IxToastContainer = class IxToastContainer {
|
|
|
1535
1510
|
/** @nocollapse */ IxToastContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
1536
1511
|
IxToastContainer = __decorate([
|
|
1537
1512
|
ProxyCmp({
|
|
1538
|
-
defineCustomElementFn: undefined,
|
|
1539
1513
|
inputs: ['containerClass', 'containerId', 'position'],
|
|
1540
1514
|
methods: ['showToast']
|
|
1541
1515
|
})
|
|
@@ -1546,7 +1520,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1546
1520
|
selector: 'ix-toast-container',
|
|
1547
1521
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1548
1522
|
template: '<ng-content></ng-content>',
|
|
1549
|
-
|
|
1523
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1524
|
+
inputs: ['containerClass', 'containerId', 'position'],
|
|
1550
1525
|
}]
|
|
1551
1526
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1552
1527
|
let IxToggle = class IxToggle {
|
|
@@ -1561,7 +1536,6 @@ let IxToggle = class IxToggle {
|
|
|
1561
1536
|
/** @nocollapse */ IxToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
1562
1537
|
IxToggle = __decorate([
|
|
1563
1538
|
ProxyCmp({
|
|
1564
|
-
defineCustomElementFn: undefined,
|
|
1565
1539
|
inputs: ['checked', 'color', 'disabled', 'hideText', 'indeterminate', 'textIndeterminate', 'textOff', 'textOn']
|
|
1566
1540
|
})
|
|
1567
1541
|
], IxToggle);
|
|
@@ -1571,7 +1545,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1571
1545
|
selector: 'ix-toggle',
|
|
1572
1546
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1573
1547
|
template: '<ng-content></ng-content>',
|
|
1574
|
-
|
|
1548
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1549
|
+
inputs: ['checked', 'color', 'disabled', 'hideText', 'indeterminate', 'textIndeterminate', 'textOff', 'textOn'],
|
|
1575
1550
|
}]
|
|
1576
1551
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1577
1552
|
let IxTooltip = class IxTooltip {
|
|
@@ -1585,7 +1560,6 @@ let IxTooltip = class IxTooltip {
|
|
|
1585
1560
|
/** @nocollapse */ IxTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxTooltip, selector: "ix-tooltip", inputs: { for: "for", interactive: "interactive", titleContent: "titleContent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1586
1561
|
IxTooltip = __decorate([
|
|
1587
1562
|
ProxyCmp({
|
|
1588
|
-
defineCustomElementFn: undefined,
|
|
1589
1563
|
inputs: ['for', 'interactive', 'titleContent']
|
|
1590
1564
|
})
|
|
1591
1565
|
], IxTooltip);
|
|
@@ -1595,7 +1569,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1595
1569
|
selector: 'ix-tooltip',
|
|
1596
1570
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1597
1571
|
template: '<ng-content></ng-content>',
|
|
1598
|
-
|
|
1572
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1573
|
+
inputs: ['for', 'interactive', 'titleContent'],
|
|
1599
1574
|
}]
|
|
1600
1575
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1601
1576
|
let IxTreeItem = class IxTreeItem {
|
|
@@ -1610,7 +1585,6 @@ let IxTreeItem = class IxTreeItem {
|
|
|
1610
1585
|
/** @nocollapse */ IxTreeItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
1611
1586
|
IxTreeItem = __decorate([
|
|
1612
1587
|
ProxyCmp({
|
|
1613
|
-
defineCustomElementFn: undefined,
|
|
1614
1588
|
inputs: ['context', 'hasChildren', 'text']
|
|
1615
1589
|
})
|
|
1616
1590
|
], IxTreeItem);
|
|
@@ -1620,7 +1594,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1620
1594
|
selector: 'ix-tree-item',
|
|
1621
1595
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1622
1596
|
template: '<ng-content></ng-content>',
|
|
1623
|
-
|
|
1597
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1598
|
+
inputs: ['context', 'hasChildren', 'text'],
|
|
1624
1599
|
}]
|
|
1625
1600
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1626
1601
|
let IxUpload = class IxUpload {
|
|
@@ -1635,7 +1610,6 @@ let IxUpload = class IxUpload {
|
|
|
1635
1610
|
/** @nocollapse */ IxUpload.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
1636
1611
|
IxUpload = __decorate([
|
|
1637
1612
|
ProxyCmp({
|
|
1638
|
-
defineCustomElementFn: undefined,
|
|
1639
1613
|
inputs: ['accept', 'disabled', 'i18nUploadDisabled', 'i18nUploadFile', 'loadingText', 'multiline', 'multiple', 'selectFileText', 'state', 'uploadFailedText', 'uploadSuccessText'],
|
|
1640
1614
|
methods: ['setFilesToUpload']
|
|
1641
1615
|
})
|
|
@@ -1646,7 +1620,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1646
1620
|
selector: 'ix-upload',
|
|
1647
1621
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1648
1622
|
template: '<ng-content></ng-content>',
|
|
1649
|
-
|
|
1623
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1624
|
+
inputs: ['accept', 'disabled', 'i18nUploadDisabled', 'i18nUploadFile', 'loadingText', 'multiline', 'multiple', 'selectFileText', 'state', 'uploadFailedText', 'uploadSuccessText'],
|
|
1650
1625
|
}]
|
|
1651
1626
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1652
1627
|
let IxValidationTooltip = class IxValidationTooltip {
|
|
@@ -1660,7 +1635,6 @@ let IxValidationTooltip = class IxValidationTooltip {
|
|
|
1660
1635
|
/** @nocollapse */ IxValidationTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxValidationTooltip, selector: "ix-validation-tooltip", inputs: { message: "message", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1661
1636
|
IxValidationTooltip = __decorate([
|
|
1662
1637
|
ProxyCmp({
|
|
1663
|
-
defineCustomElementFn: undefined,
|
|
1664
1638
|
inputs: ['message', 'placement']
|
|
1665
1639
|
})
|
|
1666
1640
|
], IxValidationTooltip);
|
|
@@ -1670,7 +1644,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1670
1644
|
selector: 'ix-validation-tooltip',
|
|
1671
1645
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1672
1646
|
template: '<ng-content></ng-content>',
|
|
1673
|
-
|
|
1647
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1648
|
+
inputs: ['message', 'placement'],
|
|
1674
1649
|
}]
|
|
1675
1650
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1676
1651
|
let IxWorkflowStep = class IxWorkflowStep {
|
|
@@ -1684,7 +1659,6 @@ let IxWorkflowStep = class IxWorkflowStep {
|
|
|
1684
1659
|
/** @nocollapse */ IxWorkflowStep.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
1685
1660
|
IxWorkflowStep = __decorate([
|
|
1686
1661
|
ProxyCmp({
|
|
1687
|
-
defineCustomElementFn: undefined,
|
|
1688
1662
|
inputs: ['clickable', 'disabled', 'position', 'selected', 'status', 'vertical']
|
|
1689
1663
|
})
|
|
1690
1664
|
], IxWorkflowStep);
|
|
@@ -1694,7 +1668,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1694
1668
|
selector: 'ix-workflow-step',
|
|
1695
1669
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1696
1670
|
template: '<ng-content></ng-content>',
|
|
1697
|
-
|
|
1671
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1672
|
+
inputs: ['clickable', 'disabled', 'position', 'selected', 'status', 'vertical'],
|
|
1698
1673
|
}]
|
|
1699
1674
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1700
1675
|
let IxWorkflowSteps = class IxWorkflowSteps {
|
|
@@ -1709,7 +1684,6 @@ let IxWorkflowSteps = class IxWorkflowSteps {
|
|
|
1709
1684
|
/** @nocollapse */ IxWorkflowSteps.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
1710
1685
|
IxWorkflowSteps = __decorate([
|
|
1711
1686
|
ProxyCmp({
|
|
1712
|
-
defineCustomElementFn: undefined,
|
|
1713
1687
|
inputs: ['clickable', 'linear', 'selectedIndex', 'vertical']
|
|
1714
1688
|
})
|
|
1715
1689
|
], IxWorkflowSteps);
|
|
@@ -1719,7 +1693,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1719
1693
|
selector: 'ix-workflow-steps',
|
|
1720
1694
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1721
1695
|
template: '<ng-content></ng-content>',
|
|
1722
|
-
|
|
1696
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1697
|
+
inputs: ['clickable', 'linear', 'selectedIndex', 'vertical'],
|
|
1723
1698
|
}]
|
|
1724
1699
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1725
1700
|
|
|
@@ -1913,7 +1888,6 @@ const DIRECTIVES = [
|
|
|
1913
1888
|
IxChip,
|
|
1914
1889
|
IxCounterPill,
|
|
1915
1890
|
IxDatePicker,
|
|
1916
|
-
IxDateTimeCard,
|
|
1917
1891
|
IxDatetimePicker,
|
|
1918
1892
|
IxDivider,
|
|
1919
1893
|
IxDrawer,
|
|
@@ -2162,7 +2136,7 @@ class IxModule {
|
|
|
2162
2136
|
}
|
|
2163
2137
|
}
|
|
2164
2138
|
/** @nocollapse */ IxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2165
|
-
/** @nocollapse */ IxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule, declarations: [IxAnimatedTab, IxAnimatedTabs, IxApplicationHeader, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCategoryFilter, IxChip, IxCounterPill, IxDatePicker,
|
|
2139
|
+
/** @nocollapse */ IxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule, declarations: [IxAnimatedTab, IxAnimatedTabs, IxApplicationHeader, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCategoryFilter, IxChip, IxCounterPill, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownItem, IxDropdownQuickActions, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent, IxGroup, IxGroupContextMenu, 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, IxTooltip, IxTreeItem, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree, IxDropdownTriggerDirective], exports: [IxAnimatedTab, IxAnimatedTabs, IxApplicationHeader, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCategoryFilter, IxChip, IxCounterPill, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownItem, IxDropdownQuickActions, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent, IxGroup, IxGroupContextMenu, 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, IxTooltip, IxTreeItem, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree, IxDropdownTriggerDirective] });
|
|
2166
2140
|
/** @nocollapse */ IxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule });
|
|
2167
2141
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule, decorators: [{
|
|
2168
2142
|
type: NgModule,
|
|
@@ -2185,5 +2159,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2185
2159
|
* Generated bundle index. Do not edit.
|
|
2186
2160
|
*/
|
|
2187
2161
|
|
|
2188
|
-
export { IxActiveModal, IxAnimatedTab, IxAnimatedTabs, IxApplicationHeader, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCategoryFilter, IxChip, IxCounterPill, IxDatePicker,
|
|
2162
|
+
export { IxActiveModal, IxAnimatedTab, IxAnimatedTabs, IxApplicationHeader, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCategoryFilter, IxChip, IxCounterPill, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownItem, IxDropdownQuickActions, IxDropdownTriggerDirective, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent, IxGroup, IxGroupContextMenu, 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, IxTooltip, IxTree, IxTreeItem, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, ModalService, ThemeService, ToastService };
|
|
2189
2163
|
//# sourceMappingURL=siemens-ix-angular.mjs.map
|