@siemens/ix-angular 1.6.2 → 2.0.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 +87 -37
- package/declare-components.d.ts +1 -1
- package/esm2020/components.mjs +189 -92
- package/esm2020/declare-components.mjs +8 -4
- package/esm2020/modal/modal.service.mjs +3 -4
- package/esm2020/module.mjs +2 -2
- package/fesm2015/siemens-ix-angular.mjs +192 -95
- package/fesm2015/siemens-ix-angular.mjs.map +1 -1
- package/fesm2020/siemens-ix-angular.mjs +192 -96
- package/fesm2020/siemens-ix-angular.mjs.map +1 -1
- package/module.d.ts +1 -1
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { closeModal, dismissModal,
|
|
1
|
+
import { closeModal, dismissModal, showModal, themeSwitcher, getToastContainer, toast } from '@siemens/ix';
|
|
2
2
|
export * from '@siemens/ix';
|
|
3
3
|
import { __decorate, __awaiter } from 'tslib';
|
|
4
4
|
import * as i0 from '@angular/core';
|
|
@@ -153,6 +153,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
153
153
|
inputs: ['name'],
|
|
154
154
|
}]
|
|
155
155
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
156
|
+
let IxAvatar = class IxAvatar {
|
|
157
|
+
constructor(c, r, z) {
|
|
158
|
+
this.z = z;
|
|
159
|
+
c.detach();
|
|
160
|
+
this.el = r.nativeElement;
|
|
161
|
+
}
|
|
162
|
+
};
|
|
163
|
+
/** @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 });
|
|
164
|
+
/** @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 });
|
|
165
|
+
IxAvatar = __decorate([
|
|
166
|
+
ProxyCmp({
|
|
167
|
+
inputs: ['image', 'initials']
|
|
168
|
+
})
|
|
169
|
+
], IxAvatar);
|
|
170
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxAvatar, decorators: [{
|
|
171
|
+
type: Component,
|
|
172
|
+
args: [{
|
|
173
|
+
selector: 'ix-avatar',
|
|
174
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
175
|
+
template: '<ng-content></ng-content>',
|
|
176
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
177
|
+
inputs: ['image', 'initials'],
|
|
178
|
+
}]
|
|
179
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
156
180
|
let IxBasicNavigation = class IxBasicNavigation {
|
|
157
181
|
constructor(c, r, z) {
|
|
158
182
|
this.z = z;
|
|
@@ -259,10 +283,10 @@ let IxButton = class IxButton {
|
|
|
259
283
|
}
|
|
260
284
|
};
|
|
261
285
|
/** @nocollapse */ IxButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
262
|
-
/** @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 });
|
|
286
|
+
/** @nocollapse */ IxButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxButton, selector: "ix-button", inputs: { disabled: "disabled", ghost: "ghost", icon: "icon", invisible: "invisible", loading: "loading", outline: "outline", selected: "selected", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
263
287
|
IxButton = __decorate([
|
|
264
288
|
ProxyCmp({
|
|
265
|
-
inputs: ['disabled', 'ghost', 'invisible', 'outline', 'selected', 'type', 'variant']
|
|
289
|
+
inputs: ['disabled', 'ghost', 'icon', 'invisible', 'loading', 'outline', 'selected', 'type', 'variant']
|
|
266
290
|
})
|
|
267
291
|
], IxButton);
|
|
268
292
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxButton, decorators: [{
|
|
@@ -272,7 +296,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
272
296
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
273
297
|
template: '<ng-content></ng-content>',
|
|
274
298
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
275
|
-
inputs: ['disabled', 'ghost', 'invisible', 'outline', 'selected', 'type', 'variant'],
|
|
299
|
+
inputs: ['disabled', 'ghost', 'icon', 'invisible', 'loading', 'outline', 'selected', 'type', 'variant'],
|
|
276
300
|
}]
|
|
277
301
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
278
302
|
let IxCard = class IxCard {
|
|
@@ -465,30 +489,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
465
489
|
inputs: ['hasBackButton', 'headerSubtitle', 'headerTitle', 'variant'],
|
|
466
490
|
}]
|
|
467
491
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
468
|
-
let IxCounterPill = class IxCounterPill {
|
|
469
|
-
constructor(c, r, z) {
|
|
470
|
-
this.z = z;
|
|
471
|
-
c.detach();
|
|
472
|
-
this.el = r.nativeElement;
|
|
473
|
-
}
|
|
474
|
-
};
|
|
475
|
-
/** @nocollapse */ IxCounterPill.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxCounterPill, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
476
|
-
/** @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 });
|
|
477
|
-
IxCounterPill = __decorate([
|
|
478
|
-
ProxyCmp({
|
|
479
|
-
inputs: ['alignLeft', 'background', 'color', 'outline', 'variant']
|
|
480
|
-
})
|
|
481
|
-
], IxCounterPill);
|
|
482
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxCounterPill, decorators: [{
|
|
483
|
-
type: Component,
|
|
484
|
-
args: [{
|
|
485
|
-
selector: 'ix-counter-pill',
|
|
486
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
487
|
-
template: '<ng-content></ng-content>',
|
|
488
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
489
|
-
inputs: ['alignLeft', 'background', 'color', 'outline', 'variant'],
|
|
490
|
-
}]
|
|
491
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
492
492
|
let IxDatePicker = class IxDatePicker {
|
|
493
493
|
constructor(c, r, z) {
|
|
494
494
|
this.z = z;
|
|
@@ -597,10 +597,10 @@ let IxDropdown = class IxDropdown {
|
|
|
597
597
|
}
|
|
598
598
|
};
|
|
599
599
|
/** @nocollapse */ IxDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
600
|
-
/** @nocollapse */ IxDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxDropdown, selector: "ix-dropdown", inputs: {
|
|
600
|
+
/** @nocollapse */ IxDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxDropdown, selector: "ix-dropdown", inputs: { anchor: "anchor", closeBehavior: "closeBehavior", header: "header", placement: "placement", positioningStrategy: "positioningStrategy", show: "show", suppressAutomaticPlacement: "suppressAutomaticPlacement", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
601
601
|
IxDropdown = __decorate([
|
|
602
602
|
ProxyCmp({
|
|
603
|
-
inputs: ['
|
|
603
|
+
inputs: ['anchor', 'closeBehavior', 'header', 'placement', 'positioningStrategy', 'show', 'suppressAutomaticPlacement', 'trigger'],
|
|
604
604
|
methods: ['updatePosition']
|
|
605
605
|
})
|
|
606
606
|
], IxDropdown);
|
|
@@ -611,7 +611,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
611
611
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
612
612
|
template: '<ng-content></ng-content>',
|
|
613
613
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
614
|
-
inputs: ['
|
|
614
|
+
inputs: ['anchor', 'closeBehavior', 'header', 'placement', 'positioningStrategy', 'show', 'suppressAutomaticPlacement', 'trigger'],
|
|
615
615
|
}]
|
|
616
616
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
617
617
|
let IxDropdownButton = class IxDropdownButton {
|
|
@@ -638,6 +638,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
638
638
|
inputs: ['active', 'disabled', 'ghost', 'icon', 'label', 'outline', 'variant'],
|
|
639
639
|
}]
|
|
640
640
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
641
|
+
let IxDropdownHeader = class IxDropdownHeader {
|
|
642
|
+
constructor(c, r, z) {
|
|
643
|
+
this.z = z;
|
|
644
|
+
c.detach();
|
|
645
|
+
this.el = r.nativeElement;
|
|
646
|
+
}
|
|
647
|
+
};
|
|
648
|
+
/** @nocollapse */ IxDropdownHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxDropdownHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
649
|
+
/** @nocollapse */ IxDropdownHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxDropdownHeader, selector: "ix-dropdown-header", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
650
|
+
IxDropdownHeader = __decorate([
|
|
651
|
+
ProxyCmp({
|
|
652
|
+
inputs: ['label']
|
|
653
|
+
})
|
|
654
|
+
], IxDropdownHeader);
|
|
655
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxDropdownHeader, decorators: [{
|
|
656
|
+
type: Component,
|
|
657
|
+
args: [{
|
|
658
|
+
selector: 'ix-dropdown-header',
|
|
659
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
660
|
+
template: '<ng-content></ng-content>',
|
|
661
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
662
|
+
inputs: ['label'],
|
|
663
|
+
}]
|
|
664
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
641
665
|
let IxDropdownItem = class IxDropdownItem {
|
|
642
666
|
constructor(c, r, z) {
|
|
643
667
|
this.z = z;
|
|
@@ -903,30 +927,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
903
927
|
inputs: [],
|
|
904
928
|
}]
|
|
905
929
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
906
|
-
let IxGroupDropdownItem = class IxGroupDropdownItem {
|
|
907
|
-
constructor(c, r, z) {
|
|
908
|
-
this.z = z;
|
|
909
|
-
c.detach();
|
|
910
|
-
this.el = r.nativeElement;
|
|
911
|
-
}
|
|
912
|
-
};
|
|
913
|
-
/** @nocollapse */ IxGroupDropdownItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxGroupDropdownItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
914
|
-
/** @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 });
|
|
915
|
-
IxGroupDropdownItem = __decorate([
|
|
916
|
-
ProxyCmp({
|
|
917
|
-
inputs: ['icon', 'label']
|
|
918
|
-
})
|
|
919
|
-
], IxGroupDropdownItem);
|
|
920
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxGroupDropdownItem, decorators: [{
|
|
921
|
-
type: Component,
|
|
922
|
-
args: [{
|
|
923
|
-
selector: 'ix-group-dropdown-item',
|
|
924
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
925
|
-
template: '<ng-content></ng-content>',
|
|
926
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
927
|
-
inputs: ['icon', 'label'],
|
|
928
|
-
}]
|
|
929
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
930
930
|
let IxGroupItem = class IxGroupItem {
|
|
931
931
|
constructor(c, r, z) {
|
|
932
932
|
this.z = z;
|
|
@@ -984,10 +984,10 @@ let IxIconButton = class IxIconButton {
|
|
|
984
984
|
}
|
|
985
985
|
};
|
|
986
986
|
/** @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 });
|
|
987
|
-
/** @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 });
|
|
987
|
+
/** @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", loading: "loading", 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 });
|
|
988
988
|
IxIconButton = __decorate([
|
|
989
989
|
ProxyCmp({
|
|
990
|
-
inputs: ['color', 'disabled', 'ghost', 'icon', 'invisible', 'outline', 'oval', 'selected', 'size', 'type', 'variant']
|
|
990
|
+
inputs: ['color', 'disabled', 'ghost', 'icon', 'invisible', 'loading', 'outline', 'oval', 'selected', 'size', 'type', 'variant']
|
|
991
991
|
})
|
|
992
992
|
], IxIconButton);
|
|
993
993
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxIconButton, decorators: [{
|
|
@@ -997,7 +997,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
997
997
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
998
998
|
template: '<ng-content></ng-content>',
|
|
999
999
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1000
|
-
inputs: ['color', 'disabled', 'ghost', 'icon', 'invisible', 'outline', 'oval', 'selected', 'size', 'type', 'variant'],
|
|
1000
|
+
inputs: ['color', 'disabled', 'ghost', 'icon', 'invisible', 'loading', 'outline', 'oval', 'selected', 'size', 'type', 'variant'],
|
|
1001
1001
|
}]
|
|
1002
1002
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1003
1003
|
let IxInputGroup = class IxInputGroup {
|
|
@@ -1094,6 +1094,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1094
1094
|
inputs: ['label', 'orientation', 'state', 'unit', 'value'],
|
|
1095
1095
|
}]
|
|
1096
1096
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1097
|
+
let IxLinkButton = class IxLinkButton {
|
|
1098
|
+
constructor(c, r, z) {
|
|
1099
|
+
this.z = z;
|
|
1100
|
+
c.detach();
|
|
1101
|
+
this.el = r.nativeElement;
|
|
1102
|
+
}
|
|
1103
|
+
};
|
|
1104
|
+
/** @nocollapse */ IxLinkButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxLinkButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1105
|
+
/** @nocollapse */ IxLinkButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxLinkButton, selector: "ix-link-button", inputs: { disabled: "disabled", target: "target", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1106
|
+
IxLinkButton = __decorate([
|
|
1107
|
+
ProxyCmp({
|
|
1108
|
+
inputs: ['disabled', 'target', 'url']
|
|
1109
|
+
})
|
|
1110
|
+
], IxLinkButton);
|
|
1111
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxLinkButton, decorators: [{
|
|
1112
|
+
type: Component,
|
|
1113
|
+
args: [{
|
|
1114
|
+
selector: 'ix-link-button',
|
|
1115
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1116
|
+
template: '<ng-content></ng-content>',
|
|
1117
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1118
|
+
inputs: ['disabled', 'target', 'url'],
|
|
1119
|
+
}]
|
|
1120
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1097
1121
|
let IxMapNavigation = class IxMapNavigation {
|
|
1098
1122
|
constructor(c, r, z) {
|
|
1099
1123
|
this.z = z;
|
|
@@ -1154,10 +1178,10 @@ let IxMenu = class IxMenu {
|
|
|
1154
1178
|
}
|
|
1155
1179
|
};
|
|
1156
1180
|
/** @nocollapse */ IxMenu.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1157
|
-
/** @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",
|
|
1181
|
+
/** @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", forceLayout: "forceLayout", i18nCollapse: "i18nCollapse", i18nExpand: "i18nExpand", i18nExpandSidebar: "i18nExpandSidebar", i18nLegal: "i18nLegal", i18nSettings: "i18nSettings", i18nToggleTheme: "i18nToggleTheme", maxVisibleMenuItems: "maxVisibleMenuItems", pinned: "pinned", showAbout: "showAbout", showSettings: "showSettings", supportedModes: "supportedModes" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1158
1182
|
IxMenu = __decorate([
|
|
1159
1183
|
ProxyCmp({
|
|
1160
|
-
inputs: ['applicationDescription', 'applicationName', 'enableMapExpand', 'enableSettings', 'enableToggleTheme', 'expand', 'i18nCollapse', 'i18nExpand', '
|
|
1184
|
+
inputs: ['applicationDescription', 'applicationName', 'enableMapExpand', 'enableSettings', 'enableToggleTheme', 'expand', 'forceLayout', 'i18nCollapse', 'i18nExpand', 'i18nExpandSidebar', 'i18nLegal', 'i18nSettings', 'i18nToggleTheme', 'maxVisibleMenuItems', 'pinned', 'showAbout', 'showSettings', 'supportedModes'],
|
|
1161
1185
|
methods: ['toggleMapExpand', 'toggleMenu', 'toggleSettings', 'toggleAbout']
|
|
1162
1186
|
})
|
|
1163
1187
|
], IxMenu);
|
|
@@ -1168,7 +1192,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1168
1192
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1169
1193
|
template: '<ng-content></ng-content>',
|
|
1170
1194
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1171
|
-
inputs: ['applicationDescription', 'applicationName', 'enableMapExpand', 'enableSettings', 'enableToggleTheme', 'expand', 'i18nCollapse', 'i18nExpand', '
|
|
1195
|
+
inputs: ['applicationDescription', 'applicationName', 'enableMapExpand', 'enableSettings', 'enableToggleTheme', 'expand', 'forceLayout', 'i18nCollapse', 'i18nExpand', 'i18nExpandSidebar', 'i18nLegal', 'i18nSettings', 'i18nToggleTheme', 'maxVisibleMenuItems', 'pinned', 'showAbout', 'showSettings', 'supportedModes'],
|
|
1172
1196
|
}]
|
|
1173
1197
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1174
1198
|
let IxMenuAbout = class IxMenuAbout {
|
|
@@ -1295,6 +1319,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1295
1319
|
inputs: ['icon', 'label'],
|
|
1296
1320
|
}]
|
|
1297
1321
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1322
|
+
let IxMenuCategory = class IxMenuCategory {
|
|
1323
|
+
constructor(c, r, z) {
|
|
1324
|
+
this.z = z;
|
|
1325
|
+
c.detach();
|
|
1326
|
+
this.el = r.nativeElement;
|
|
1327
|
+
}
|
|
1328
|
+
};
|
|
1329
|
+
/** @nocollapse */ IxMenuCategory.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxMenuCategory, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1330
|
+
/** @nocollapse */ IxMenuCategory.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxMenuCategory, selector: "ix-menu-category", inputs: { icon: "icon", label: "label", notifications: "notifications" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1331
|
+
IxMenuCategory = __decorate([
|
|
1332
|
+
ProxyCmp({
|
|
1333
|
+
inputs: ['icon', 'label', 'notifications']
|
|
1334
|
+
})
|
|
1335
|
+
], IxMenuCategory);
|
|
1336
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxMenuCategory, decorators: [{
|
|
1337
|
+
type: Component,
|
|
1338
|
+
args: [{
|
|
1339
|
+
selector: 'ix-menu-category',
|
|
1340
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1341
|
+
template: '<ng-content></ng-content>',
|
|
1342
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1343
|
+
inputs: ['icon', 'label', 'notifications'],
|
|
1344
|
+
}]
|
|
1345
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1298
1346
|
let IxMenuItem = class IxMenuItem {
|
|
1299
1347
|
constructor(c, r, z) {
|
|
1300
1348
|
this.z = z;
|
|
@@ -1303,10 +1351,10 @@ let IxMenuItem = class IxMenuItem {
|
|
|
1303
1351
|
}
|
|
1304
1352
|
};
|
|
1305
1353
|
/** @nocollapse */ IxMenuItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1306
|
-
/** @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 });
|
|
1354
|
+
/** @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", icon: "icon", notifications: "notifications", tabIcon: "tabIcon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1307
1355
|
IxMenuItem = __decorate([
|
|
1308
1356
|
ProxyCmp({
|
|
1309
|
-
inputs: ['active', 'bottom', 'disabled', 'home', 'notifications', 'tabIcon']
|
|
1357
|
+
inputs: ['active', 'bottom', 'disabled', 'home', 'icon', 'notifications', 'tabIcon']
|
|
1310
1358
|
})
|
|
1311
1359
|
], IxMenuItem);
|
|
1312
1360
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxMenuItem, decorators: [{
|
|
@@ -1316,7 +1364,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1316
1364
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1317
1365
|
template: '<ng-content></ng-content>',
|
|
1318
1366
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1319
|
-
inputs: ['active', 'bottom', 'disabled', 'home', 'notifications', 'tabIcon'],
|
|
1367
|
+
inputs: ['active', 'bottom', 'disabled', 'home', 'icon', 'notifications', 'tabIcon'],
|
|
1320
1368
|
}]
|
|
1321
1369
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1322
1370
|
let IxMenuSettings = class IxMenuSettings {
|
|
@@ -1398,15 +1446,15 @@ let IxModal = class IxModal {
|
|
|
1398
1446
|
this.z = z;
|
|
1399
1447
|
c.detach();
|
|
1400
1448
|
this.el = r.nativeElement;
|
|
1401
|
-
proxyOutputs(this, this.el, ['
|
|
1449
|
+
proxyOutputs(this, this.el, ['dialogClose', 'dialogDismiss']);
|
|
1402
1450
|
}
|
|
1403
1451
|
};
|
|
1404
1452
|
/** @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 });
|
|
1405
|
-
/** @nocollapse */ IxModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxModal, selector: "ix-modal", inputs: { animation: "animation",
|
|
1453
|
+
/** @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 });
|
|
1406
1454
|
IxModal = __decorate([
|
|
1407
1455
|
ProxyCmp({
|
|
1408
|
-
inputs: ['animation', '
|
|
1409
|
-
methods: ['
|
|
1456
|
+
inputs: ['animation', 'backdrop', 'beforeDismiss', 'centered', 'closeOnBackdropClick', 'keyboard', 'size'],
|
|
1457
|
+
methods: ['showModal', 'dismissModal', 'closeModal']
|
|
1410
1458
|
})
|
|
1411
1459
|
], IxModal);
|
|
1412
1460
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModal, decorators: [{
|
|
@@ -1416,27 +1464,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1416
1464
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1417
1465
|
template: '<ng-content></ng-content>',
|
|
1418
1466
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1419
|
-
inputs: ['animation', '
|
|
1467
|
+
inputs: ['animation', 'backdrop', 'beforeDismiss', 'centered', 'closeOnBackdropClick', 'keyboard', 'size'],
|
|
1420
1468
|
}]
|
|
1421
1469
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1422
|
-
let
|
|
1470
|
+
let IxModalContent = class IxModalContent {
|
|
1423
1471
|
constructor(c, r, z) {
|
|
1424
1472
|
this.z = z;
|
|
1425
1473
|
c.detach();
|
|
1426
1474
|
this.el = r.nativeElement;
|
|
1427
1475
|
}
|
|
1428
1476
|
};
|
|
1429
|
-
/** @nocollapse */
|
|
1430
|
-
/** @nocollapse */
|
|
1431
|
-
|
|
1432
|
-
ProxyCmp({
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
], IxModalContainer);
|
|
1436
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModalContainer, decorators: [{
|
|
1477
|
+
/** @nocollapse */ IxModalContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModalContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1478
|
+
/** @nocollapse */ IxModalContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxModalContent, selector: "ix-modal-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1479
|
+
IxModalContent = __decorate([
|
|
1480
|
+
ProxyCmp({})
|
|
1481
|
+
], IxModalContent);
|
|
1482
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModalContent, decorators: [{
|
|
1437
1483
|
type: Component,
|
|
1438
1484
|
args: [{
|
|
1439
|
-
selector: 'ix-modal-
|
|
1485
|
+
selector: 'ix-modal-content',
|
|
1440
1486
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1441
1487
|
template: '<ng-content></ng-content>',
|
|
1442
1488
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
@@ -1465,6 +1511,53 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1465
1511
|
inputs: [],
|
|
1466
1512
|
}]
|
|
1467
1513
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1514
|
+
let IxModalFooter = class IxModalFooter {
|
|
1515
|
+
constructor(c, r, z) {
|
|
1516
|
+
this.z = z;
|
|
1517
|
+
c.detach();
|
|
1518
|
+
this.el = r.nativeElement;
|
|
1519
|
+
}
|
|
1520
|
+
};
|
|
1521
|
+
/** @nocollapse */ IxModalFooter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModalFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1522
|
+
/** @nocollapse */ IxModalFooter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxModalFooter, selector: "ix-modal-footer", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1523
|
+
IxModalFooter = __decorate([
|
|
1524
|
+
ProxyCmp({})
|
|
1525
|
+
], IxModalFooter);
|
|
1526
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModalFooter, decorators: [{
|
|
1527
|
+
type: Component,
|
|
1528
|
+
args: [{
|
|
1529
|
+
selector: 'ix-modal-footer',
|
|
1530
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1531
|
+
template: '<ng-content></ng-content>',
|
|
1532
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1533
|
+
inputs: [],
|
|
1534
|
+
}]
|
|
1535
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1536
|
+
let IxModalHeader = class IxModalHeader {
|
|
1537
|
+
constructor(c, r, z) {
|
|
1538
|
+
this.z = z;
|
|
1539
|
+
c.detach();
|
|
1540
|
+
this.el = r.nativeElement;
|
|
1541
|
+
proxyOutputs(this, this.el, ['closeClick']);
|
|
1542
|
+
}
|
|
1543
|
+
};
|
|
1544
|
+
/** @nocollapse */ IxModalHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModalHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1545
|
+
/** @nocollapse */ IxModalHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxModalHeader, selector: "ix-modal-header", inputs: { hideClose: "hideClose", icon: "icon", iconColor: "iconColor" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1546
|
+
IxModalHeader = __decorate([
|
|
1547
|
+
ProxyCmp({
|
|
1548
|
+
inputs: ['hideClose', 'icon', 'iconColor']
|
|
1549
|
+
})
|
|
1550
|
+
], IxModalHeader);
|
|
1551
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModalHeader, decorators: [{
|
|
1552
|
+
type: Component,
|
|
1553
|
+
args: [{
|
|
1554
|
+
selector: 'ix-modal-header',
|
|
1555
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1556
|
+
template: '<ng-content></ng-content>',
|
|
1557
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1558
|
+
inputs: ['hideClose', 'icon', 'iconColor'],
|
|
1559
|
+
}]
|
|
1560
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1468
1561
|
let IxPagination = class IxPagination {
|
|
1469
1562
|
constructor(c, r, z) {
|
|
1470
1563
|
this.z = z;
|
|
@@ -1543,7 +1636,7 @@ let IxSelect = class IxSelect {
|
|
|
1543
1636
|
this.z = z;
|
|
1544
1637
|
c.detach();
|
|
1545
1638
|
this.el = r.nativeElement;
|
|
1546
|
-
proxyOutputs(this, this.el, ['itemSelectionChange', 'addItem']);
|
|
1639
|
+
proxyOutputs(this, this.el, ['itemSelectionChange', 'inputChange', 'addItem']);
|
|
1547
1640
|
}
|
|
1548
1641
|
};
|
|
1549
1642
|
/** @nocollapse */ IxSelect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1621,10 +1714,10 @@ let IxSplitButton = class IxSplitButton {
|
|
|
1621
1714
|
}
|
|
1622
1715
|
};
|
|
1623
1716
|
/** @nocollapse */ IxSplitButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxSplitButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1624
|
-
/** @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",
|
|
1717
|
+
/** @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", label: "label", outline: "outline", placement: "placement", splitIcon: "splitIcon", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1625
1718
|
IxSplitButton = __decorate([
|
|
1626
1719
|
ProxyCmp({
|
|
1627
|
-
inputs: ['disabled', 'ghost', 'icon', '
|
|
1720
|
+
inputs: ['disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'splitIcon', 'variant']
|
|
1628
1721
|
})
|
|
1629
1722
|
], IxSplitButton);
|
|
1630
1723
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxSplitButton, decorators: [{
|
|
@@ -1634,7 +1727,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1634
1727
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1635
1728
|
template: '<ng-content></ng-content>',
|
|
1636
1729
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1637
|
-
inputs: ['disabled', 'ghost', 'icon', '
|
|
1730
|
+
inputs: ['disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'splitIcon', 'variant'],
|
|
1638
1731
|
}]
|
|
1639
1732
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1640
1733
|
let IxSplitButtonItem = class IxSplitButtonItem {
|
|
@@ -1819,10 +1912,10 @@ let IxToggle = class IxToggle {
|
|
|
1819
1912
|
}
|
|
1820
1913
|
};
|
|
1821
1914
|
/** @nocollapse */ IxToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1822
|
-
/** @nocollapse */ IxToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxToggle, selector: "ix-toggle", inputs: { checked: "checked",
|
|
1915
|
+
/** @nocollapse */ IxToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxToggle, selector: "ix-toggle", inputs: { checked: "checked", disabled: "disabled", hideText: "hideText", indeterminate: "indeterminate", textIndeterminate: "textIndeterminate", textOff: "textOff", textOn: "textOn" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1823
1916
|
IxToggle = __decorate([
|
|
1824
1917
|
ProxyCmp({
|
|
1825
|
-
inputs: ['checked', '
|
|
1918
|
+
inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'textIndeterminate', 'textOff', 'textOn']
|
|
1826
1919
|
})
|
|
1827
1920
|
], IxToggle);
|
|
1828
1921
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxToggle, decorators: [{
|
|
@@ -1832,7 +1925,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1832
1925
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1833
1926
|
template: '<ng-content></ng-content>',
|
|
1834
1927
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1835
|
-
inputs: ['checked', '
|
|
1928
|
+
inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'textIndeterminate', 'textOff', 'textOn'],
|
|
1836
1929
|
}]
|
|
1837
1930
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1838
1931
|
let IxTooltip = class IxTooltip {
|
|
@@ -1918,10 +2011,10 @@ let IxValidationTooltip = class IxValidationTooltip {
|
|
|
1918
2011
|
}
|
|
1919
2012
|
};
|
|
1920
2013
|
/** @nocollapse */ IxValidationTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxValidationTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1921
|
-
/** @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 });
|
|
2014
|
+
/** @nocollapse */ IxValidationTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxValidationTooltip, selector: "ix-validation-tooltip", inputs: { message: "message", placement: "placement", suppressAutomaticPlacement: "suppressAutomaticPlacement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1922
2015
|
IxValidationTooltip = __decorate([
|
|
1923
2016
|
ProxyCmp({
|
|
1924
|
-
inputs: ['message', 'placement']
|
|
2017
|
+
inputs: ['message', 'placement', 'suppressAutomaticPlacement']
|
|
1925
2018
|
})
|
|
1926
2019
|
], IxValidationTooltip);
|
|
1927
2020
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxValidationTooltip, decorators: [{
|
|
@@ -1931,7 +2024,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1931
2024
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1932
2025
|
template: '<ng-content></ng-content>',
|
|
1933
2026
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1934
|
-
inputs: ['message', 'placement'],
|
|
2027
|
+
inputs: ['message', 'placement', 'suppressAutomaticPlacement'],
|
|
1935
2028
|
}]
|
|
1936
2029
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1937
2030
|
let IxWorkflowStep = class IxWorkflowStep {
|
|
@@ -2108,7 +2201,7 @@ class ModalService {
|
|
|
2108
2201
|
dismissModal(node, result);
|
|
2109
2202
|
};
|
|
2110
2203
|
embeddedView.detectChanges();
|
|
2111
|
-
const modalInstance = yield
|
|
2204
|
+
const modalInstance = yield showModal(Object.assign(Object.assign({}, config), { content: node }));
|
|
2112
2205
|
modalInstance.onClose.once(() => {
|
|
2113
2206
|
embeddedView.destroy();
|
|
2114
2207
|
});
|
|
@@ -2166,6 +2259,7 @@ const DIRECTIVES = [
|
|
|
2166
2259
|
IxAnimatedTab,
|
|
2167
2260
|
IxAnimatedTabs,
|
|
2168
2261
|
IxApplicationHeader,
|
|
2262
|
+
IxAvatar,
|
|
2169
2263
|
IxBasicNavigation,
|
|
2170
2264
|
IxBlind,
|
|
2171
2265
|
IxBreadcrumb,
|
|
@@ -2179,13 +2273,13 @@ const DIRECTIVES = [
|
|
|
2179
2273
|
IxCategoryFilter,
|
|
2180
2274
|
IxChip,
|
|
2181
2275
|
IxContentHeader,
|
|
2182
|
-
IxCounterPill,
|
|
2183
2276
|
IxDatePicker,
|
|
2184
2277
|
IxDatetimePicker,
|
|
2185
2278
|
IxDivider,
|
|
2186
2279
|
IxDrawer,
|
|
2187
2280
|
IxDropdown,
|
|
2188
2281
|
IxDropdownButton,
|
|
2282
|
+
IxDropdownHeader,
|
|
2189
2283
|
IxDropdownItem,
|
|
2190
2284
|
IxDropdownQuickActions,
|
|
2191
2285
|
IxEmptyState,
|
|
@@ -2197,7 +2291,6 @@ const DIRECTIVES = [
|
|
|
2197
2291
|
IxFlipTileContent,
|
|
2198
2292
|
IxGroup,
|
|
2199
2293
|
IxGroupContextMenu,
|
|
2200
|
-
IxGroupDropdownItem,
|
|
2201
2294
|
IxGroupItem,
|
|
2202
2295
|
IxIcon,
|
|
2203
2296
|
IxIconButton,
|
|
@@ -2205,6 +2298,7 @@ const DIRECTIVES = [
|
|
|
2205
2298
|
IxKeyValue,
|
|
2206
2299
|
IxKeyValueList,
|
|
2207
2300
|
IxKpi,
|
|
2301
|
+
IxLinkButton,
|
|
2208
2302
|
IxMapNavigation,
|
|
2209
2303
|
IxMapNavigationOverlay,
|
|
2210
2304
|
IxMenu,
|
|
@@ -2213,13 +2307,16 @@ const DIRECTIVES = [
|
|
|
2213
2307
|
IxMenuAboutNews,
|
|
2214
2308
|
IxMenuAvatar,
|
|
2215
2309
|
IxMenuAvatarItem,
|
|
2310
|
+
IxMenuCategory,
|
|
2216
2311
|
IxMenuItem,
|
|
2217
2312
|
IxMenuSettings,
|
|
2218
2313
|
IxMenuSettingsItem,
|
|
2219
2314
|
IxMessageBar,
|
|
2220
2315
|
IxModal,
|
|
2221
|
-
|
|
2316
|
+
IxModalContent,
|
|
2222
2317
|
IxModalExample,
|
|
2318
|
+
IxModalFooter,
|
|
2319
|
+
IxModalHeader,
|
|
2223
2320
|
IxPagination,
|
|
2224
2321
|
IxPill,
|
|
2225
2322
|
IxPushCard,
|
|
@@ -2440,7 +2537,7 @@ class IxModule {
|
|
|
2440
2537
|
}
|
|
2441
2538
|
}
|
|
2442
2539
|
/** @nocollapse */ IxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2443
|
-
/** @nocollapse */ IxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule, declarations: [IxActionCard, IxAnimatedTab, IxAnimatedTabs, IxApplicationHeader, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxChip, IxContentHeader,
|
|
2540
|
+
/** @nocollapse */ IxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule, declarations: [IxActionCard, IxAnimatedTab, IxAnimatedTabs, IxApplicationHeader, IxAvatar, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxChip, IxContentHeader, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent, IxGroup, IxGroupContextMenu, IxGroupItem, IxIcon, IxIconButton, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLinkButton, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalExample, IxModalFooter, IxModalHeader, IxPagination, IxPill, IxPushCard, IxSelect, IxSelectItem, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxTooltip, IxTreeItem, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree, IxDropdownTriggerDirective], exports: [IxActionCard, IxAnimatedTab, IxAnimatedTabs, IxApplicationHeader, IxAvatar, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxChip, IxContentHeader, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent, IxGroup, IxGroupContextMenu, IxGroupItem, IxIcon, IxIconButton, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLinkButton, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalExample, IxModalFooter, IxModalHeader, IxPagination, IxPill, IxPushCard, IxSelect, IxSelectItem, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxTooltip, IxTreeItem, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree, IxDropdownTriggerDirective] });
|
|
2444
2541
|
/** @nocollapse */ IxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule });
|
|
2445
2542
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule, decorators: [{
|
|
2446
2543
|
type: NgModule,
|
|
@@ -2463,5 +2560,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2463
2560
|
* Generated bundle index. Do not edit.
|
|
2464
2561
|
*/
|
|
2465
2562
|
|
|
2466
|
-
export { IxActionCard, IxActiveModal, IxAnimatedTab, IxAnimatedTabs, IxApplicationHeader, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxChip, IxContentHeader,
|
|
2563
|
+
export { IxActionCard, IxActiveModal, IxAnimatedTab, IxAnimatedTabs, IxApplicationHeader, IxAvatar, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxChip, IxContentHeader, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxDropdownTriggerDirective, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent, IxGroup, IxGroupContextMenu, IxGroupItem, IxIcon, IxIconButton, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLinkButton, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalExample, IxModalFooter, IxModalHeader, IxModule, IxPagination, IxPill, IxPushCard, IxSelect, IxSelectItem, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxTooltip, IxTree, IxTreeItem, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, ModalService, ThemeService, ToastService };
|
|
2467
2564
|
//# sourceMappingURL=siemens-ix-angular.mjs.map
|