@siemens/ix-angular 2.1.0-beta.0 → 2.1.0-beta.2
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 +115 -39
- package/declare-components.d.ts +1 -1
- package/esm2020/angular-component-lib/utils.mjs +9 -1
- package/esm2020/components.mjs +181 -51
- package/esm2020/declare-components.mjs +6 -1
- package/esm2020/module.mjs +3 -3
- package/fesm2015/siemens-ix-angular.mjs +191 -53
- package/fesm2015/siemens-ix-angular.mjs.map +1 -1
- package/fesm2020/siemens-ix-angular.mjs +191 -53
- package/fesm2020/siemens-ix-angular.mjs.map +1 -1
- package/module.d.ts +1 -1
- package/package.json +2 -2
|
@@ -92,6 +92,14 @@ const proxyInputs = (Cmp, inputs) => {
|
|
|
92
92
|
set(val) {
|
|
93
93
|
this.z.runOutsideAngular(() => (this.el[item] = val));
|
|
94
94
|
},
|
|
95
|
+
/**
|
|
96
|
+
* In the event that proxyInputs is called
|
|
97
|
+
* multiple times re-defining these inputs
|
|
98
|
+
* will cause an error to be thrown. As a result
|
|
99
|
+
* we set configurable: true to indicate these
|
|
100
|
+
* properties can be changed.
|
|
101
|
+
*/
|
|
102
|
+
configurable: true,
|
|
95
103
|
});
|
|
96
104
|
});
|
|
97
105
|
};
|
|
@@ -154,6 +162,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
154
162
|
inputs: ['heading', 'icon', 'selected', 'subheading', 'variant'],
|
|
155
163
|
}]
|
|
156
164
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
165
|
+
let IxApplication = class IxApplication {
|
|
166
|
+
constructor(c, r, z) {
|
|
167
|
+
this.z = z;
|
|
168
|
+
c.detach();
|
|
169
|
+
this.el = r.nativeElement;
|
|
170
|
+
}
|
|
171
|
+
};
|
|
172
|
+
/** @nocollapse */ IxApplication.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxApplication, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
173
|
+
/** @nocollapse */ IxApplication.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxApplication, selector: "ix-application", inputs: { appSwitchConfig: "appSwitchConfig", breakpoints: "breakpoints", forceBreakpoint: "forceBreakpoint", theme: "theme", themeSystemAppearance: "themeSystemAppearance" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
174
|
+
IxApplication = __decorate([
|
|
175
|
+
ProxyCmp({
|
|
176
|
+
inputs: ['appSwitchConfig', 'breakpoints', 'forceBreakpoint', 'theme', 'themeSystemAppearance']
|
|
177
|
+
})
|
|
178
|
+
], IxApplication);
|
|
179
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxApplication, decorators: [{
|
|
180
|
+
type: Component,
|
|
181
|
+
args: [{
|
|
182
|
+
selector: 'ix-application',
|
|
183
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
184
|
+
template: '<ng-content></ng-content>',
|
|
185
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
186
|
+
inputs: ['appSwitchConfig', 'breakpoints', 'forceBreakpoint', 'theme', 'themeSystemAppearance'],
|
|
187
|
+
}]
|
|
188
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
157
189
|
let IxApplicationHeader = class IxApplicationHeader {
|
|
158
190
|
constructor(c, r, z) {
|
|
159
191
|
this.z = z;
|
|
@@ -186,10 +218,10 @@ let IxAvatar = class IxAvatar {
|
|
|
186
218
|
}
|
|
187
219
|
};
|
|
188
220
|
/** @nocollapse */ IxAvatar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
189
|
-
/** @nocollapse */ IxAvatar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxAvatar, selector: "ix-avatar", inputs: { image: "image", initials: "initials" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
221
|
+
/** @nocollapse */ IxAvatar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxAvatar, selector: "ix-avatar", inputs: { extra: "extra", image: "image", initials: "initials", username: "username" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
190
222
|
IxAvatar = __decorate([
|
|
191
223
|
ProxyCmp({
|
|
192
|
-
inputs: ['image', 'initials']
|
|
224
|
+
inputs: ['extra', 'image', 'initials', 'username']
|
|
193
225
|
})
|
|
194
226
|
], IxAvatar);
|
|
195
227
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxAvatar, decorators: [{
|
|
@@ -199,7 +231,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
199
231
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
200
232
|
template: '<ng-content></ng-content>',
|
|
201
233
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
202
|
-
inputs: ['image', 'initials'],
|
|
234
|
+
inputs: ['extra', 'image', 'initials', 'username'],
|
|
203
235
|
}]
|
|
204
236
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
205
237
|
let IxBasicNavigation = class IxBasicNavigation {
|
|
@@ -332,10 +364,10 @@ let IxCard = class IxCard {
|
|
|
332
364
|
}
|
|
333
365
|
};
|
|
334
366
|
/** @nocollapse */ IxCard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
335
|
-
/** @nocollapse */ IxCard.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxCard, selector: "ix-card", inputs: { variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
367
|
+
/** @nocollapse */ IxCard.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxCard, selector: "ix-card", inputs: { selected: "selected", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
336
368
|
IxCard = __decorate([
|
|
337
369
|
ProxyCmp({
|
|
338
|
-
inputs: ['variant']
|
|
370
|
+
inputs: ['selected', 'variant']
|
|
339
371
|
})
|
|
340
372
|
], IxCard);
|
|
341
373
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxCard, decorators: [{
|
|
@@ -345,7 +377,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
345
377
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
346
378
|
template: '<ng-content></ng-content>',
|
|
347
379
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
348
|
-
inputs: ['variant'],
|
|
380
|
+
inputs: ['selected', 'variant'],
|
|
349
381
|
}]
|
|
350
382
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
351
383
|
let IxCardAccordion = class IxCardAccordion {
|
|
@@ -356,9 +388,11 @@ let IxCardAccordion = class IxCardAccordion {
|
|
|
356
388
|
}
|
|
357
389
|
};
|
|
358
390
|
/** @nocollapse */ IxCardAccordion.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxCardAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
359
|
-
/** @nocollapse */ IxCardAccordion.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxCardAccordion, selector: "ix-card-accordion", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
391
|
+
/** @nocollapse */ IxCardAccordion.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxCardAccordion, selector: "ix-card-accordion", inputs: { collapse: "collapse" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
360
392
|
IxCardAccordion = __decorate([
|
|
361
|
-
ProxyCmp({
|
|
393
|
+
ProxyCmp({
|
|
394
|
+
inputs: ['collapse']
|
|
395
|
+
})
|
|
362
396
|
], IxCardAccordion);
|
|
363
397
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxCardAccordion, decorators: [{
|
|
364
398
|
type: Component,
|
|
@@ -367,7 +401,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
367
401
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
368
402
|
template: '<ng-content></ng-content>',
|
|
369
403
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
370
|
-
inputs: [],
|
|
404
|
+
inputs: ['collapse'],
|
|
371
405
|
}]
|
|
372
406
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
373
407
|
let IxCardContent = class IxCardContent {
|
|
@@ -473,10 +507,10 @@ let IxChip = class IxChip {
|
|
|
473
507
|
}
|
|
474
508
|
};
|
|
475
509
|
/** @nocollapse */ IxChip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
476
|
-
/** @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 });
|
|
510
|
+
/** @nocollapse */ IxChip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxChip, selector: "ix-chip", inputs: { active: "active", background: "background", chipColor: "chipColor", closable: "closable", color: "color", icon: "icon", outline: "outline", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
477
511
|
IxChip = __decorate([
|
|
478
512
|
ProxyCmp({
|
|
479
|
-
inputs: ['active', 'background', 'closable', 'color', 'icon', 'outline', 'variant']
|
|
513
|
+
inputs: ['active', 'background', 'chipColor', 'closable', 'color', 'icon', 'outline', 'variant']
|
|
480
514
|
})
|
|
481
515
|
], IxChip);
|
|
482
516
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxChip, decorators: [{
|
|
@@ -486,7 +520,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
486
520
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
487
521
|
template: '<ng-content></ng-content>',
|
|
488
522
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
489
|
-
inputs: ['active', 'background', 'closable', 'color', 'icon', 'outline', 'variant'],
|
|
523
|
+
inputs: ['active', 'background', 'chipColor', 'closable', 'color', 'icon', 'outline', 'variant'],
|
|
490
524
|
}]
|
|
491
525
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
492
526
|
let IxCol = class IxCol {
|
|
@@ -513,6 +547,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
513
547
|
inputs: ['size', 'sizeLg', 'sizeMd', 'sizeSm'],
|
|
514
548
|
}]
|
|
515
549
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
550
|
+
let IxContent = class IxContent {
|
|
551
|
+
constructor(c, r, z) {
|
|
552
|
+
this.z = z;
|
|
553
|
+
c.detach();
|
|
554
|
+
this.el = r.nativeElement;
|
|
555
|
+
}
|
|
556
|
+
};
|
|
557
|
+
/** @nocollapse */ IxContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
558
|
+
/** @nocollapse */ IxContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxContent, selector: "ix-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
559
|
+
IxContent = __decorate([
|
|
560
|
+
ProxyCmp({})
|
|
561
|
+
], IxContent);
|
|
562
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxContent, decorators: [{
|
|
563
|
+
type: Component,
|
|
564
|
+
args: [{
|
|
565
|
+
selector: 'ix-content',
|
|
566
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
567
|
+
template: '<ng-content></ng-content>',
|
|
568
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
569
|
+
inputs: [],
|
|
570
|
+
}]
|
|
571
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
516
572
|
let IxContentHeader = class IxContentHeader {
|
|
517
573
|
constructor(c, r, z) {
|
|
518
574
|
this.z = z;
|
|
@@ -538,19 +594,45 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
538
594
|
inputs: ['hasBackButton', 'headerSubtitle', 'headerTitle', 'variant'],
|
|
539
595
|
}]
|
|
540
596
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
597
|
+
let IxDateDropdown = class IxDateDropdown {
|
|
598
|
+
constructor(c, r, z) {
|
|
599
|
+
this.z = z;
|
|
600
|
+
c.detach();
|
|
601
|
+
this.el = r.nativeElement;
|
|
602
|
+
proxyOutputs(this, this.el, ['dateRangeChange']);
|
|
603
|
+
}
|
|
604
|
+
};
|
|
605
|
+
/** @nocollapse */ IxDateDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxDateDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
606
|
+
/** @nocollapse */ IxDateDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxDateDropdown, selector: "ix-date-dropdown", inputs: { customRangeAllowed: "customRangeAllowed", dateRangeId: "dateRangeId", dateRangeOptions: "dateRangeOptions", format: "format", from: "from", i18nCustomItem: "i18nCustomItem", i18nDone: "i18nDone", i18nNoRange: "i18nNoRange", maxDate: "maxDate", minDate: "minDate", range: "range", to: "to" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
607
|
+
IxDateDropdown = __decorate([
|
|
608
|
+
ProxyCmp({
|
|
609
|
+
inputs: ['customRangeAllowed', 'dateRangeId', 'dateRangeOptions', 'format', 'from', 'i18nCustomItem', 'i18nDone', 'i18nNoRange', 'maxDate', 'minDate', 'range', 'to'],
|
|
610
|
+
methods: ['getDateRange']
|
|
611
|
+
})
|
|
612
|
+
], IxDateDropdown);
|
|
613
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxDateDropdown, decorators: [{
|
|
614
|
+
type: Component,
|
|
615
|
+
args: [{
|
|
616
|
+
selector: 'ix-date-dropdown',
|
|
617
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
618
|
+
template: '<ng-content></ng-content>',
|
|
619
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
620
|
+
inputs: ['customRangeAllowed', 'dateRangeId', 'dateRangeOptions', 'format', 'from', 'i18nCustomItem', 'i18nDone', 'i18nNoRange', 'maxDate', 'minDate', 'range', 'to'],
|
|
621
|
+
}]
|
|
622
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
541
623
|
let IxDatePicker = class IxDatePicker {
|
|
542
624
|
constructor(c, r, z) {
|
|
543
625
|
this.z = z;
|
|
544
626
|
c.detach();
|
|
545
627
|
this.el = r.nativeElement;
|
|
546
|
-
proxyOutputs(this, this.el, ['dateChange', 'dateRangeChange', '
|
|
628
|
+
proxyOutputs(this, this.el, ['dateChange', 'dateRangeChange', 'dateSelect', 'done']);
|
|
547
629
|
}
|
|
548
630
|
};
|
|
549
631
|
/** @nocollapse */ IxDatePicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxDatePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
550
|
-
/** @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 });
|
|
632
|
+
/** @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", i18nDone: "i18nDone", individual: "individual", locale: "locale", maxDate: "maxDate", minDate: "minDate", range: "range", textSelectDate: "textSelectDate", to: "to", weekStartIndex: "weekStartIndex" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
551
633
|
IxDatePicker = __decorate([
|
|
552
634
|
ProxyCmp({
|
|
553
|
-
inputs: ['corners', 'eventDelimiter', 'format', 'from', 'individual', 'maxDate', 'minDate', 'range', 'textSelectDate', 'to'],
|
|
635
|
+
inputs: ['corners', 'eventDelimiter', 'format', 'from', 'i18nDone', 'individual', 'locale', 'maxDate', 'minDate', 'range', 'textSelectDate', 'to', 'weekStartIndex'],
|
|
554
636
|
methods: ['getCurrentDate']
|
|
555
637
|
})
|
|
556
638
|
], IxDatePicker);
|
|
@@ -561,7 +643,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
561
643
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
562
644
|
template: '<ng-content></ng-content>',
|
|
563
645
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
564
|
-
inputs: ['corners', 'eventDelimiter', 'format', 'from', 'individual', 'maxDate', 'minDate', 'range', 'textSelectDate', 'to'],
|
|
646
|
+
inputs: ['corners', 'eventDelimiter', 'format', 'from', 'i18nDone', 'individual', 'locale', 'maxDate', 'minDate', 'range', 'textSelectDate', 'to', 'weekStartIndex'],
|
|
565
647
|
}]
|
|
566
648
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
567
649
|
let IxDatetimePicker = class IxDatetimePicker {
|
|
@@ -573,10 +655,10 @@ let IxDatetimePicker = class IxDatetimePicker {
|
|
|
573
655
|
}
|
|
574
656
|
};
|
|
575
657
|
/** @nocollapse */ IxDatetimePicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxDatetimePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
576
|
-
/** @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 });
|
|
658
|
+
/** @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", i18nDone: "i18nDone", locale: "locale", maxDate: "maxDate", minDate: "minDate", range: "range", showHour: "showHour", showMinutes: "showMinutes", showSeconds: "showSeconds", showTimeReference: "showTimeReference", textSelectDate: "textSelectDate", time: "time", timeFormat: "timeFormat", timeReference: "timeReference", to: "to", weekStartIndex: "weekStartIndex" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
577
659
|
IxDatetimePicker = __decorate([
|
|
578
660
|
ProxyCmp({
|
|
579
|
-
inputs: ['dateFormat', 'eventDelimiter', 'from', 'maxDate', 'minDate', 'range', 'showHour', 'showMinutes', 'showSeconds', 'showTimeReference', 'textSelectDate', 'time', 'timeFormat', 'timeReference', 'to']
|
|
661
|
+
inputs: ['dateFormat', 'eventDelimiter', 'from', 'i18nDone', 'locale', 'maxDate', 'minDate', 'range', 'showHour', 'showMinutes', 'showSeconds', 'showTimeReference', 'textSelectDate', 'time', 'timeFormat', 'timeReference', 'to', 'weekStartIndex']
|
|
580
662
|
})
|
|
581
663
|
], IxDatetimePicker);
|
|
582
664
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxDatetimePicker, decorators: [{
|
|
@@ -586,7 +668,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
586
668
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
587
669
|
template: '<ng-content></ng-content>',
|
|
588
670
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
589
|
-
inputs: ['dateFormat', 'eventDelimiter', 'from', 'maxDate', 'minDate', 'range', 'showHour', 'showMinutes', 'showSeconds', 'showTimeReference', 'textSelectDate', 'time', 'timeFormat', 'timeReference', 'to'],
|
|
671
|
+
inputs: ['dateFormat', 'eventDelimiter', 'from', 'i18nDone', 'locale', 'maxDate', 'minDate', 'range', 'showHour', 'showMinutes', 'showSeconds', 'showTimeReference', 'textSelectDate', 'time', 'timeFormat', 'timeReference', 'to', 'weekStartIndex'],
|
|
590
672
|
}]
|
|
591
673
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
592
674
|
let IxDivider = class IxDivider {
|
|
@@ -671,10 +753,10 @@ let IxDropdownButton = class IxDropdownButton {
|
|
|
671
753
|
}
|
|
672
754
|
};
|
|
673
755
|
/** @nocollapse */ IxDropdownButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxDropdownButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
674
|
-
/** @nocollapse */ IxDropdownButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxDropdownButton, selector: "ix-dropdown-button", inputs: { disabled: "disabled", ghost: "ghost", icon: "icon", label: "label", outline: "outline", placement: "placement", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
756
|
+
/** @nocollapse */ IxDropdownButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxDropdownButton, selector: "ix-dropdown-button", inputs: { closeBehavior: "closeBehavior", disabled: "disabled", ghost: "ghost", icon: "icon", label: "label", outline: "outline", placement: "placement", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
675
757
|
IxDropdownButton = __decorate([
|
|
676
758
|
ProxyCmp({
|
|
677
|
-
inputs: ['disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'variant']
|
|
759
|
+
inputs: ['closeBehavior', 'disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'variant']
|
|
678
760
|
})
|
|
679
761
|
], IxDropdownButton);
|
|
680
762
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxDropdownButton, decorators: [{
|
|
@@ -684,7 +766,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
684
766
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
685
767
|
template: '<ng-content></ng-content>',
|
|
686
768
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
687
|
-
inputs: ['disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'variant'],
|
|
769
|
+
inputs: ['closeBehavior', 'disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'variant'],
|
|
688
770
|
}]
|
|
689
771
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
690
772
|
let IxDropdownHeader = class IxDropdownHeader {
|
|
@@ -816,10 +898,10 @@ let IxEventListItem = class IxEventListItem {
|
|
|
816
898
|
}
|
|
817
899
|
};
|
|
818
900
|
/** @nocollapse */ IxEventListItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxEventListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
819
|
-
/** @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", selected: "selected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
901
|
+
/** @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", itemColor: "itemColor", selected: "selected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
820
902
|
IxEventListItem = __decorate([
|
|
821
903
|
ProxyCmp({
|
|
822
|
-
inputs: ['chevron', 'color', 'disabled', 'selected']
|
|
904
|
+
inputs: ['chevron', 'color', 'disabled', 'itemColor', 'selected']
|
|
823
905
|
})
|
|
824
906
|
], IxEventListItem);
|
|
825
907
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxEventListItem, decorators: [{
|
|
@@ -829,7 +911,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
829
911
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
830
912
|
template: '<ng-content></ng-content>',
|
|
831
913
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
832
|
-
inputs: ['chevron', 'color', 'disabled', 'selected'],
|
|
914
|
+
inputs: ['chevron', 'color', 'disabled', 'itemColor', 'selected'],
|
|
833
915
|
}]
|
|
834
916
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
835
917
|
let IxExpandingSearch = class IxExpandingSearch {
|
|
@@ -1032,10 +1114,10 @@ let IxIconButton = class IxIconButton {
|
|
|
1032
1114
|
}
|
|
1033
1115
|
};
|
|
1034
1116
|
/** @nocollapse */ IxIconButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxIconButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1035
|
-
/** @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", loading: "loading", outline: "outline", oval: "oval", size: "size", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1117
|
+
/** @nocollapse */ IxIconButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxIconButton, selector: "ix-icon-button", inputs: { a11yLabel: "a11yLabel", color: "color", disabled: "disabled", ghost: "ghost", icon: "icon", iconColor: "iconColor", loading: "loading", outline: "outline", oval: "oval", size: "size", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1036
1118
|
IxIconButton = __decorate([
|
|
1037
1119
|
ProxyCmp({
|
|
1038
|
-
inputs: ['color', 'disabled', 'ghost', 'icon', 'loading', 'outline', 'oval', 'size', 'type', 'variant']
|
|
1120
|
+
inputs: ['a11yLabel', 'color', 'disabled', 'ghost', 'icon', 'iconColor', 'loading', 'outline', 'oval', 'size', 'type', 'variant']
|
|
1039
1121
|
})
|
|
1040
1122
|
], IxIconButton);
|
|
1041
1123
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxIconButton, decorators: [{
|
|
@@ -1045,7 +1127,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1045
1127
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1046
1128
|
template: '<ng-content></ng-content>',
|
|
1047
1129
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1048
|
-
inputs: ['color', 'disabled', 'ghost', 'icon', 'loading', 'outline', 'oval', 'size', 'type', 'variant'],
|
|
1130
|
+
inputs: ['a11yLabel', 'color', 'disabled', 'ghost', 'icon', 'iconColor', 'loading', 'outline', 'oval', 'size', 'type', 'variant'],
|
|
1049
1131
|
}]
|
|
1050
1132
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1051
1133
|
let IxIconToggleButton = class IxIconToggleButton {
|
|
@@ -1250,10 +1332,10 @@ let IxMapNavigationOverlay = class IxMapNavigationOverlay {
|
|
|
1250
1332
|
}
|
|
1251
1333
|
};
|
|
1252
1334
|
/** @nocollapse */ IxMapNavigationOverlay.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxMapNavigationOverlay, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1253
|
-
/** @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 });
|
|
1335
|
+
/** @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", iconColor: "iconColor", name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1254
1336
|
IxMapNavigationOverlay = __decorate([
|
|
1255
1337
|
ProxyCmp({
|
|
1256
|
-
inputs: ['color', 'icon', 'name']
|
|
1338
|
+
inputs: ['color', 'icon', 'iconColor', 'name']
|
|
1257
1339
|
})
|
|
1258
1340
|
], IxMapNavigationOverlay);
|
|
1259
1341
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxMapNavigationOverlay, decorators: [{
|
|
@@ -1263,7 +1345,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1263
1345
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1264
1346
|
template: '<ng-content></ng-content>',
|
|
1265
1347
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1266
|
-
inputs: ['color', 'icon', 'name'],
|
|
1348
|
+
inputs: ['color', 'icon', 'iconColor', 'name'],
|
|
1267
1349
|
}]
|
|
1268
1350
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1269
1351
|
let IxMenu = class IxMenu {
|
|
@@ -1322,6 +1404,7 @@ let IxMenuAboutItem = class IxMenuAboutItem {
|
|
|
1322
1404
|
this.z = z;
|
|
1323
1405
|
c.detach();
|
|
1324
1406
|
this.el = r.nativeElement;
|
|
1407
|
+
proxyOutputs(this, this.el, ['labelChange']);
|
|
1325
1408
|
}
|
|
1326
1409
|
};
|
|
1327
1410
|
/** @nocollapse */ IxMenuAboutItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxMenuAboutItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1375,10 +1458,10 @@ let IxMenuAvatar = class IxMenuAvatar {
|
|
|
1375
1458
|
}
|
|
1376
1459
|
};
|
|
1377
1460
|
/** @nocollapse */ IxMenuAvatar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxMenuAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1378
|
-
/** @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 });
|
|
1461
|
+
/** @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", showLogoutButton: "showLogoutButton", top: "top" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1379
1462
|
IxMenuAvatar = __decorate([
|
|
1380
1463
|
ProxyCmp({
|
|
1381
|
-
inputs: ['bottom', 'i18nLogout', 'image', 'initials', 'top']
|
|
1464
|
+
inputs: ['bottom', 'i18nLogout', 'image', 'initials', 'showLogoutButton', 'top']
|
|
1382
1465
|
})
|
|
1383
1466
|
], IxMenuAvatar);
|
|
1384
1467
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxMenuAvatar, decorators: [{
|
|
@@ -1388,7 +1471,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1388
1471
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1389
1472
|
template: '<ng-content></ng-content>',
|
|
1390
1473
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1391
|
-
inputs: ['bottom', 'i18nLogout', 'image', 'initials', 'top'],
|
|
1474
|
+
inputs: ['bottom', 'i18nLogout', 'image', 'initials', 'showLogoutButton', 'top'],
|
|
1392
1475
|
}]
|
|
1393
1476
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1394
1477
|
let IxMenuAvatarItem = class IxMenuAvatarItem {
|
|
@@ -1494,6 +1577,7 @@ let IxMenuSettingsItem = class IxMenuSettingsItem {
|
|
|
1494
1577
|
this.z = z;
|
|
1495
1578
|
c.detach();
|
|
1496
1579
|
this.el = r.nativeElement;
|
|
1580
|
+
proxyOutputs(this, this.el, ['labelChange']);
|
|
1497
1581
|
}
|
|
1498
1582
|
};
|
|
1499
1583
|
/** @nocollapse */ IxMenuSettingsItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxMenuSettingsItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1547,10 +1631,10 @@ let IxModal = class IxModal {
|
|
|
1547
1631
|
}
|
|
1548
1632
|
};
|
|
1549
1633
|
/** @nocollapse */ IxModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1550
|
-
/** @nocollapse */ IxModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxModal, selector: "ix-modal", inputs: { animation: "animation", backdrop: "backdrop", beforeDismiss: "beforeDismiss", centered: "centered", closeOnBackdropClick: "closeOnBackdropClick", keyboard: "keyboard", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1634
|
+
/** @nocollapse */ IxModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxModal, selector: "ix-modal", inputs: { animation: "animation", backdrop: "backdrop", beforeDismiss: "beforeDismiss", centered: "centered", closeOnBackdropClick: "closeOnBackdropClick", closeOnEscape: "closeOnEscape", keyboard: "keyboard", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1551
1635
|
IxModal = __decorate([
|
|
1552
1636
|
ProxyCmp({
|
|
1553
|
-
inputs: ['animation', 'backdrop', 'beforeDismiss', 'centered', 'closeOnBackdropClick', 'keyboard', 'size'],
|
|
1637
|
+
inputs: ['animation', 'backdrop', 'beforeDismiss', 'centered', 'closeOnBackdropClick', 'closeOnEscape', 'keyboard', 'size'],
|
|
1554
1638
|
methods: ['showModal', 'dismissModal', 'closeModal']
|
|
1555
1639
|
})
|
|
1556
1640
|
], IxModal);
|
|
@@ -1561,7 +1645,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1561
1645
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1562
1646
|
template: '<ng-content></ng-content>',
|
|
1563
1647
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1564
|
-
inputs: ['animation', 'backdrop', 'beforeDismiss', 'centered', 'closeOnBackdropClick', 'keyboard', 'size'],
|
|
1648
|
+
inputs: ['animation', 'backdrop', 'beforeDismiss', 'centered', 'closeOnBackdropClick', 'closeOnEscape', 'keyboard', 'size'],
|
|
1565
1649
|
}]
|
|
1566
1650
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1567
1651
|
let IxModalContent = class IxModalContent {
|
|
@@ -1680,6 +1764,55 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1680
1764
|
inputs: ['advanced', 'count', 'i18nItems', 'i18nOf', 'i18nPage', 'itemCount', 'selectedPage', 'showItemCount'],
|
|
1681
1765
|
}]
|
|
1682
1766
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1767
|
+
let IxPane = class IxPane {
|
|
1768
|
+
constructor(c, r, z) {
|
|
1769
|
+
this.z = z;
|
|
1770
|
+
c.detach();
|
|
1771
|
+
this.el = r.nativeElement;
|
|
1772
|
+
proxyOutputs(this, this.el, ['expandedChanged', 'variantChanged', 'borderlessChanged']);
|
|
1773
|
+
}
|
|
1774
|
+
};
|
|
1775
|
+
/** @nocollapse */ IxPane.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxPane, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1776
|
+
/** @nocollapse */ IxPane.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxPane, selector: "ix-pane", inputs: { borderless: "borderless", composition: "composition", expanded: "expanded", heading: "heading", hideOnCollapse: "hideOnCollapse", icon: "icon", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1777
|
+
IxPane = __decorate([
|
|
1778
|
+
ProxyCmp({
|
|
1779
|
+
inputs: ['borderless', 'composition', 'expanded', 'heading', 'hideOnCollapse', 'icon', 'size', 'variant']
|
|
1780
|
+
})
|
|
1781
|
+
], IxPane);
|
|
1782
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxPane, decorators: [{
|
|
1783
|
+
type: Component,
|
|
1784
|
+
args: [{
|
|
1785
|
+
selector: 'ix-pane',
|
|
1786
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1787
|
+
template: '<ng-content></ng-content>',
|
|
1788
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1789
|
+
inputs: ['borderless', 'composition', 'expanded', 'heading', 'hideOnCollapse', 'icon', 'size', 'variant'],
|
|
1790
|
+
}]
|
|
1791
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1792
|
+
let IxPaneLayout = class IxPaneLayout {
|
|
1793
|
+
constructor(c, r, z) {
|
|
1794
|
+
this.z = z;
|
|
1795
|
+
c.detach();
|
|
1796
|
+
this.el = r.nativeElement;
|
|
1797
|
+
}
|
|
1798
|
+
};
|
|
1799
|
+
/** @nocollapse */ IxPaneLayout.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxPaneLayout, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1800
|
+
/** @nocollapse */ IxPaneLayout.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxPaneLayout, selector: "ix-pane-layout", inputs: { borderless: "borderless", layout: "layout", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1801
|
+
IxPaneLayout = __decorate([
|
|
1802
|
+
ProxyCmp({
|
|
1803
|
+
inputs: ['borderless', 'layout', 'variant']
|
|
1804
|
+
})
|
|
1805
|
+
], IxPaneLayout);
|
|
1806
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxPaneLayout, decorators: [{
|
|
1807
|
+
type: Component,
|
|
1808
|
+
args: [{
|
|
1809
|
+
selector: 'ix-pane-layout',
|
|
1810
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1811
|
+
template: '<ng-content></ng-content>',
|
|
1812
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1813
|
+
inputs: ['borderless', 'layout', 'variant'],
|
|
1814
|
+
}]
|
|
1815
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1683
1816
|
let IxPill = class IxPill {
|
|
1684
1817
|
constructor(c, r, z) {
|
|
1685
1818
|
this.z = z;
|
|
@@ -1688,10 +1821,10 @@ let IxPill = class IxPill {
|
|
|
1688
1821
|
}
|
|
1689
1822
|
};
|
|
1690
1823
|
/** @nocollapse */ IxPill.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxPill, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1691
|
-
/** @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 });
|
|
1824
|
+
/** @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", pillColor: "pillColor", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1692
1825
|
IxPill = __decorate([
|
|
1693
1826
|
ProxyCmp({
|
|
1694
|
-
inputs: ['alignLeft', 'background', 'color', 'icon', 'outline', 'variant']
|
|
1827
|
+
inputs: ['alignLeft', 'background', 'color', 'icon', 'outline', 'pillColor', 'variant']
|
|
1695
1828
|
})
|
|
1696
1829
|
], IxPill);
|
|
1697
1830
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxPill, decorators: [{
|
|
@@ -1701,7 +1834,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1701
1834
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1702
1835
|
template: '<ng-content></ng-content>',
|
|
1703
1836
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1704
|
-
inputs: ['alignLeft', 'background', 'color', 'icon', 'outline', 'variant'],
|
|
1837
|
+
inputs: ['alignLeft', 'background', 'color', 'icon', 'outline', 'pillColor', 'variant'],
|
|
1705
1838
|
}]
|
|
1706
1839
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1707
1840
|
let IxPushCard = class IxPushCard {
|
|
@@ -1712,10 +1845,10 @@ let IxPushCard = class IxPushCard {
|
|
|
1712
1845
|
}
|
|
1713
1846
|
};
|
|
1714
1847
|
/** @nocollapse */ IxPushCard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxPushCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1715
|
-
/** @nocollapse */ IxPushCard.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxPushCard, selector: "ix-push-card", inputs: { heading: "heading", icon: "icon", notification: "notification", subheading: "subheading", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1848
|
+
/** @nocollapse */ IxPushCard.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxPushCard, selector: "ix-push-card", inputs: { collapse: "collapse", heading: "heading", icon: "icon", notification: "notification", subheading: "subheading", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1716
1849
|
IxPushCard = __decorate([
|
|
1717
1850
|
ProxyCmp({
|
|
1718
|
-
inputs: ['heading', 'icon', 'notification', 'subheading', 'variant']
|
|
1851
|
+
inputs: ['collapse', 'heading', 'icon', 'notification', 'subheading', 'variant']
|
|
1719
1852
|
})
|
|
1720
1853
|
], IxPushCard);
|
|
1721
1854
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxPushCard, decorators: [{
|
|
@@ -1725,7 +1858,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1725
1858
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1726
1859
|
template: '<ng-content></ng-content>',
|
|
1727
1860
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1728
|
-
inputs: ['heading', 'icon', 'notification', 'subheading', 'variant'],
|
|
1861
|
+
inputs: ['collapse', 'heading', 'icon', 'notification', 'subheading', 'variant'],
|
|
1729
1862
|
}]
|
|
1730
1863
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1731
1864
|
let IxRow = class IxRow {
|
|
@@ -1978,14 +2111,14 @@ let IxTimePicker = class IxTimePicker {
|
|
|
1978
2111
|
this.z = z;
|
|
1979
2112
|
c.detach();
|
|
1980
2113
|
this.el = r.nativeElement;
|
|
1981
|
-
proxyOutputs(this, this.el, ['done', 'timeChange']);
|
|
2114
|
+
proxyOutputs(this, this.el, ['timeSelect', 'done', 'timeChange']);
|
|
1982
2115
|
}
|
|
1983
2116
|
};
|
|
1984
2117
|
/** @nocollapse */ IxTimePicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxTimePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1985
|
-
/** @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 });
|
|
2118
|
+
/** @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", standaloneAppearance: "standaloneAppearance", textSelectTime: "textSelectTime", textTime: "textTime", time: "time", timeReference: "timeReference" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1986
2119
|
IxTimePicker = __decorate([
|
|
1987
2120
|
ProxyCmp({
|
|
1988
|
-
inputs: ['corners', 'format', 'individual', 'showHour', 'showMinutes', 'showSeconds', 'showTimeReference', 'textSelectTime', 'time', 'timeReference'],
|
|
2121
|
+
inputs: ['corners', 'format', 'individual', 'showHour', 'showMinutes', 'showSeconds', 'showTimeReference', 'standaloneAppearance', 'textSelectTime', 'textTime', 'time', 'timeReference'],
|
|
1989
2122
|
methods: ['getCurrentTime']
|
|
1990
2123
|
})
|
|
1991
2124
|
], IxTimePicker);
|
|
@@ -1996,7 +2129,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1996
2129
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1997
2130
|
template: '<ng-content></ng-content>',
|
|
1998
2131
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1999
|
-
inputs: ['corners', 'format', 'individual', 'showHour', 'showMinutes', 'showSeconds', 'showTimeReference', 'textSelectTime', 'time', 'timeReference'],
|
|
2132
|
+
inputs: ['corners', 'format', 'individual', 'showHour', 'showMinutes', 'showSeconds', 'showTimeReference', 'standaloneAppearance', 'textSelectTime', 'textTime', 'time', 'timeReference'],
|
|
2000
2133
|
}]
|
|
2001
2134
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2002
2135
|
let IxToast = class IxToast {
|
|
@@ -2156,10 +2289,10 @@ let IxTypography = class IxTypography {
|
|
|
2156
2289
|
}
|
|
2157
2290
|
};
|
|
2158
2291
|
/** @nocollapse */ IxTypography.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxTypography, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2159
|
-
/** @nocollapse */ IxTypography.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxTypography, selector: "ix-typography", inputs: { bold: "bold", color: "color", format: "format", textDecoration: "textDecoration" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2292
|
+
/** @nocollapse */ IxTypography.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxTypography, selector: "ix-typography", inputs: { bold: "bold", color: "color", format: "format", textColor: "textColor", textDecoration: "textDecoration" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2160
2293
|
IxTypography = __decorate([
|
|
2161
2294
|
ProxyCmp({
|
|
2162
|
-
inputs: ['bold', 'color', 'format', 'textDecoration']
|
|
2295
|
+
inputs: ['bold', 'color', 'format', 'textColor', 'textDecoration']
|
|
2163
2296
|
})
|
|
2164
2297
|
], IxTypography);
|
|
2165
2298
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxTypography, decorators: [{
|
|
@@ -2169,7 +2302,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2169
2302
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2170
2303
|
template: '<ng-content></ng-content>',
|
|
2171
2304
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2172
|
-
inputs: ['bold', 'color', 'format', 'textDecoration'],
|
|
2305
|
+
inputs: ['bold', 'color', 'format', 'textColor', 'textDecoration'],
|
|
2173
2306
|
}]
|
|
2174
2307
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2175
2308
|
let IxUpload = class IxUpload {
|
|
@@ -2468,6 +2601,7 @@ const appInitialize = (doc) => {
|
|
|
2468
2601
|
|
|
2469
2602
|
const DIRECTIVES = [
|
|
2470
2603
|
IxActionCard,
|
|
2604
|
+
IxApplication,
|
|
2471
2605
|
IxApplicationHeader,
|
|
2472
2606
|
IxAvatar,
|
|
2473
2607
|
IxBasicNavigation,
|
|
@@ -2483,7 +2617,9 @@ const DIRECTIVES = [
|
|
|
2483
2617
|
IxCategoryFilter,
|
|
2484
2618
|
IxChip,
|
|
2485
2619
|
IxCol,
|
|
2620
|
+
IxContent,
|
|
2486
2621
|
IxContentHeader,
|
|
2622
|
+
IxDateDropdown,
|
|
2487
2623
|
IxDatePicker,
|
|
2488
2624
|
IxDatetimePicker,
|
|
2489
2625
|
IxDivider,
|
|
@@ -2531,6 +2667,8 @@ const DIRECTIVES = [
|
|
|
2531
2667
|
IxModalFooter,
|
|
2532
2668
|
IxModalHeader,
|
|
2533
2669
|
IxPagination,
|
|
2670
|
+
IxPane,
|
|
2671
|
+
IxPaneLayout,
|
|
2534
2672
|
IxPill,
|
|
2535
2673
|
IxPushCard,
|
|
2536
2674
|
IxRow,
|
|
@@ -2795,10 +2933,10 @@ class IxModule {
|
|
|
2795
2933
|
}
|
|
2796
2934
|
}
|
|
2797
2935
|
/** @nocollapse */ IxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2798
|
-
/** @nocollapse */ IxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule, declarations: [IxActionCard, IxApplicationHeader, IxAvatar, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxChip, IxCol, IxContentHeader, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent, IxFormField, IxGroup, IxGroupContextMenu, IxGroupItem, IxIconButton, IxIconToggleButton, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLayoutGrid, IxLinkButton, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalExample, IxModalFooter, IxModalHeader, IxPagination, IxPill, IxPushCard, IxRow, IxSelect, IxSelectItem, IxSlider, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree, IxDropdownTriggerDirective,
|
|
2936
|
+
/** @nocollapse */ IxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule, declarations: [IxActionCard, IxApplication, IxApplicationHeader, IxAvatar, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxChip, IxCol, IxContent, IxContentHeader, IxDateDropdown, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent, IxFormField, IxGroup, IxGroupContextMenu, IxGroupItem, IxIconButton, IxIconToggleButton, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLayoutGrid, IxLinkButton, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalExample, IxModalFooter, IxModalHeader, IxPagination, IxPane, IxPaneLayout, IxPill, IxPushCard, IxRow, IxSelect, IxSelectItem, IxSlider, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree, IxDropdownTriggerDirective,
|
|
2799
2937
|
IxIcon,
|
|
2800
2938
|
SelectValueAccessor,
|
|
2801
|
-
BooleanValueAccessor], exports: [IxActionCard, IxApplicationHeader, IxAvatar, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxChip, IxCol, IxContentHeader, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent, IxFormField, IxGroup, IxGroupContextMenu, IxGroupItem, IxIconButton, IxIconToggleButton, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLayoutGrid, IxLinkButton, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalExample, IxModalFooter, IxModalHeader, IxPagination, IxPill, IxPushCard, IxRow, IxSelect, IxSelectItem, IxSlider, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree, IxDropdownTriggerDirective,
|
|
2939
|
+
BooleanValueAccessor], exports: [IxActionCard, IxApplication, IxApplicationHeader, IxAvatar, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxChip, IxCol, IxContent, IxContentHeader, IxDateDropdown, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent, IxFormField, IxGroup, IxGroupContextMenu, IxGroupItem, IxIconButton, IxIconToggleButton, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLayoutGrid, IxLinkButton, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalExample, IxModalFooter, IxModalHeader, IxPagination, IxPane, IxPaneLayout, IxPill, IxPushCard, IxRow, IxSelect, IxSelectItem, IxSlider, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree, IxDropdownTriggerDirective,
|
|
2802
2940
|
IxIcon,
|
|
2803
2941
|
SelectValueAccessor,
|
|
2804
2942
|
BooleanValueAccessor] });
|
|
@@ -2824,5 +2962,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2824
2962
|
* Generated bundle index. Do not edit.
|
|
2825
2963
|
*/
|
|
2826
2964
|
|
|
2827
|
-
export { BooleanValueAccessor, IxActionCard, IxActiveModal, IxApplicationHeader, IxAvatar, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxChip, IxCol, IxContentHeader, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxDropdownTriggerDirective, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent, IxFormField, IxGroup, IxGroupContextMenu, IxGroupItem, IxIcon, IxIconButton, IxIconToggleButton, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLayoutGrid, IxLinkButton, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalExample, IxModalFooter, IxModalHeader, IxModule, IxPagination, IxPill, IxPushCard, IxRow, IxSelect, IxSelectItem, IxSlider, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTree, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, ModalService, SelectValueAccessor, ThemeService, ToastService };
|
|
2965
|
+
export { BooleanValueAccessor, IxActionCard, IxActiveModal, IxApplication, IxApplicationHeader, IxAvatar, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxChip, IxCol, IxContent, IxContentHeader, IxDateDropdown, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxDropdownTriggerDirective, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent, IxFormField, IxGroup, IxGroupContextMenu, IxGroupItem, IxIcon, IxIconButton, IxIconToggleButton, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLayoutGrid, IxLinkButton, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalExample, IxModalFooter, IxModalHeader, IxModule, IxPagination, IxPane, IxPaneLayout, IxPill, IxPushCard, IxRow, IxSelect, IxSelectItem, IxSlider, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTree, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, ModalService, SelectValueAccessor, ThemeService, ToastService };
|
|
2828
2966
|
//# sourceMappingURL=siemens-ix-angular.mjs.map
|