@siemens/ix-angular 2.1.2-beta.0 → 2.2.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/LICENSE +1 -1
- package/README.md +2 -2
- package/components.d.ts +4 -4
- package/esm2020/app-initialize.mjs +2 -2
- package/esm2020/boolean-value-accessor.mjs +4 -4
- package/esm2020/components.mjs +288 -288
- package/esm2020/dropdown/trigger.directive.mjs +5 -5
- package/esm2020/index.mjs +2 -2
- package/esm2020/ix-icon.mjs +5 -5
- package/esm2020/modal/index.mjs +2 -2
- package/esm2020/modal/modal-ref.mjs +2 -2
- package/esm2020/modal/modal.config.mjs +2 -2
- package/esm2020/modal/modal.service.mjs +5 -5
- package/esm2020/module.mjs +6 -6
- package/esm2020/select-value-accessor.mjs +4 -4
- package/esm2020/theme/index.mjs +2 -2
- package/esm2020/theme/theme.service.mjs +5 -5
- package/esm2020/toast/index.mjs +2 -2
- package/esm2020/toast/toast.config.mjs +2 -2
- package/esm2020/toast/toast.service.mjs +5 -5
- package/esm2020/tree/index.mjs +2 -2
- package/esm2020/tree/tree.mjs +5 -5
- package/esm2020/value-accessor.mjs +4 -4
- package/fesm2015/siemens-ix-angular.mjs +327 -327
- package/fesm2015/siemens-ix-angular.mjs.map +1 -1
- package/fesm2020/siemens-ix-angular.mjs +330 -330
- package/fesm2020/siemens-ix-angular.mjs.map +1 -1
- package/package.json +7 -3
- package/toast/toast.service.d.ts +1 -4
|
@@ -37,9 +37,9 @@ class ValueAccessor {
|
|
|
37
37
|
this.el.nativeElement.disabled = isDisabled;
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
|
-
/** @nocollapse */ ValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
41
|
-
/** @nocollapse */ ValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.
|
|
42
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
40
|
+
/** @nocollapse */ ValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
41
|
+
/** @nocollapse */ ValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 });
|
|
42
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
43
43
|
type: Directive,
|
|
44
44
|
args: [{}]
|
|
45
45
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { _handleBlurEvent: [{
|
|
@@ -55,15 +55,15 @@ class BooleanValueAccessor extends ValueAccessor {
|
|
|
55
55
|
this.el.nativeElement.checked = this.lastValue = value == null ? false : value;
|
|
56
56
|
}
|
|
57
57
|
}
|
|
58
|
-
/** @nocollapse */ BooleanValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
59
|
-
/** @nocollapse */ BooleanValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.
|
|
58
|
+
/** @nocollapse */ BooleanValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: BooleanValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
59
|
+
/** @nocollapse */ BooleanValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: BooleanValueAccessor, selector: "ix-toggle[ngModel],ix-toggle[formControlName],ix-toggle[formControl]", host: { listeners: { "checkedChange": "handleChangeEvent($event.target.checked)" } }, providers: [
|
|
60
60
|
{
|
|
61
61
|
provide: NG_VALUE_ACCESSOR,
|
|
62
62
|
useExisting: BooleanValueAccessor,
|
|
63
63
|
multi: true
|
|
64
64
|
}
|
|
65
65
|
], usesInheritance: true, ngImport: i0 });
|
|
66
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
66
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: BooleanValueAccessor, decorators: [{
|
|
67
67
|
type: Directive,
|
|
68
68
|
args: [{
|
|
69
69
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -145,14 +145,14 @@ let IxActionCard = class IxActionCard {
|
|
|
145
145
|
this.el = r.nativeElement;
|
|
146
146
|
}
|
|
147
147
|
};
|
|
148
|
-
/** @nocollapse */ IxActionCard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
149
|
-
/** @nocollapse */ IxActionCard.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
148
|
+
/** @nocollapse */ IxActionCard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxActionCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
149
|
+
/** @nocollapse */ IxActionCard.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxActionCard, selector: "ix-action-card", inputs: { heading: "heading", icon: "icon", selected: "selected", subheading: "subheading", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
150
150
|
IxActionCard = __decorate([
|
|
151
151
|
ProxyCmp({
|
|
152
152
|
inputs: ['heading', 'icon', 'selected', 'subheading', 'variant']
|
|
153
153
|
})
|
|
154
154
|
], IxActionCard);
|
|
155
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
155
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxActionCard, decorators: [{
|
|
156
156
|
type: Component,
|
|
157
157
|
args: [{
|
|
158
158
|
selector: 'ix-action-card',
|
|
@@ -169,14 +169,14 @@ let IxApplication = class IxApplication {
|
|
|
169
169
|
this.el = r.nativeElement;
|
|
170
170
|
}
|
|
171
171
|
};
|
|
172
|
-
/** @nocollapse */ IxApplication.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
173
|
-
/** @nocollapse */ IxApplication.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
172
|
+
/** @nocollapse */ IxApplication.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxApplication, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
173
|
+
/** @nocollapse */ IxApplication.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxApplication, selector: "ix-application", inputs: { appSwitchConfig: "appSwitchConfig", breakpoints: "breakpoints", forceBreakpoint: "forceBreakpoint", theme: "theme", themeSystemAppearance: "themeSystemAppearance" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
174
174
|
IxApplication = __decorate([
|
|
175
175
|
ProxyCmp({
|
|
176
176
|
inputs: ['appSwitchConfig', 'breakpoints', 'forceBreakpoint', 'theme', 'themeSystemAppearance']
|
|
177
177
|
})
|
|
178
178
|
], IxApplication);
|
|
179
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
179
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxApplication, decorators: [{
|
|
180
180
|
type: Component,
|
|
181
181
|
args: [{
|
|
182
182
|
selector: 'ix-application',
|
|
@@ -193,14 +193,14 @@ let IxApplicationHeader = class IxApplicationHeader {
|
|
|
193
193
|
this.el = r.nativeElement;
|
|
194
194
|
}
|
|
195
195
|
};
|
|
196
|
-
/** @nocollapse */ IxApplicationHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
197
|
-
/** @nocollapse */ IxApplicationHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
196
|
+
/** @nocollapse */ IxApplicationHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxApplicationHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
197
|
+
/** @nocollapse */ IxApplicationHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxApplicationHeader, selector: "ix-application-header", inputs: { name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
198
198
|
IxApplicationHeader = __decorate([
|
|
199
199
|
ProxyCmp({
|
|
200
200
|
inputs: ['name']
|
|
201
201
|
})
|
|
202
202
|
], IxApplicationHeader);
|
|
203
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
203
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxApplicationHeader, decorators: [{
|
|
204
204
|
type: Component,
|
|
205
205
|
args: [{
|
|
206
206
|
selector: 'ix-application-header',
|
|
@@ -217,14 +217,14 @@ let IxAvatar = class IxAvatar {
|
|
|
217
217
|
this.el = r.nativeElement;
|
|
218
218
|
}
|
|
219
219
|
};
|
|
220
|
-
/** @nocollapse */ IxAvatar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
221
|
-
/** @nocollapse */ IxAvatar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
220
|
+
/** @nocollapse */ IxAvatar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
221
|
+
/** @nocollapse */ IxAvatar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxAvatar, selector: "ix-avatar", inputs: { extra: "extra", image: "image", initials: "initials", username: "username" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
222
222
|
IxAvatar = __decorate([
|
|
223
223
|
ProxyCmp({
|
|
224
224
|
inputs: ['extra', 'image', 'initials', 'username']
|
|
225
225
|
})
|
|
226
226
|
], IxAvatar);
|
|
227
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
227
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxAvatar, decorators: [{
|
|
228
228
|
type: Component,
|
|
229
229
|
args: [{
|
|
230
230
|
selector: 'ix-avatar',
|
|
@@ -241,14 +241,14 @@ let IxBasicNavigation = class IxBasicNavigation {
|
|
|
241
241
|
this.el = r.nativeElement;
|
|
242
242
|
}
|
|
243
243
|
};
|
|
244
|
-
/** @nocollapse */ IxBasicNavigation.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
245
|
-
/** @nocollapse */ IxBasicNavigation.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
244
|
+
/** @nocollapse */ IxBasicNavigation.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxBasicNavigation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
245
|
+
/** @nocollapse */ IxBasicNavigation.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxBasicNavigation, selector: "ix-basic-navigation", inputs: { applicationName: "applicationName", breakpoints: "breakpoints", forceBreakpoint: "forceBreakpoint", hideHeader: "hideHeader" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
246
246
|
IxBasicNavigation = __decorate([
|
|
247
247
|
ProxyCmp({
|
|
248
248
|
inputs: ['applicationName', 'breakpoints', 'forceBreakpoint', 'hideHeader']
|
|
249
249
|
})
|
|
250
250
|
], IxBasicNavigation);
|
|
251
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
251
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxBasicNavigation, decorators: [{
|
|
252
252
|
type: Component,
|
|
253
253
|
args: [{
|
|
254
254
|
selector: 'ix-basic-navigation',
|
|
@@ -266,14 +266,14 @@ let IxBlind = class IxBlind {
|
|
|
266
266
|
proxyOutputs(this, this.el, ['collapsedChange']);
|
|
267
267
|
}
|
|
268
268
|
};
|
|
269
|
-
/** @nocollapse */ IxBlind.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
270
|
-
/** @nocollapse */ IxBlind.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
269
|
+
/** @nocollapse */ IxBlind.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxBlind, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
270
|
+
/** @nocollapse */ IxBlind.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxBlind, selector: "ix-blind", inputs: { collapsed: "collapsed", icon: "icon", label: "label", sublabel: "sublabel", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
271
271
|
IxBlind = __decorate([
|
|
272
272
|
ProxyCmp({
|
|
273
273
|
inputs: ['collapsed', 'icon', 'label', 'sublabel', 'variant']
|
|
274
274
|
})
|
|
275
275
|
], IxBlind);
|
|
276
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
276
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxBlind, decorators: [{
|
|
277
277
|
type: Component,
|
|
278
278
|
args: [{
|
|
279
279
|
selector: 'ix-blind',
|
|
@@ -291,14 +291,14 @@ let IxBreadcrumb = class IxBreadcrumb {
|
|
|
291
291
|
proxyOutputs(this, this.el, ['itemClick', 'nextClick']);
|
|
292
292
|
}
|
|
293
293
|
};
|
|
294
|
-
/** @nocollapse */ IxBreadcrumb.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
295
|
-
/** @nocollapse */ IxBreadcrumb.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
294
|
+
/** @nocollapse */ IxBreadcrumb.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
295
|
+
/** @nocollapse */ IxBreadcrumb.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxBreadcrumb, selector: "ix-breadcrumb", inputs: { ariaLabelPreviousButton: "ariaLabelPreviousButton", ghost: "ghost", nextItems: "nextItems", visibleItemCount: "visibleItemCount" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
296
296
|
IxBreadcrumb = __decorate([
|
|
297
297
|
ProxyCmp({
|
|
298
298
|
inputs: ['ariaLabelPreviousButton', 'ghost', 'nextItems', 'visibleItemCount']
|
|
299
299
|
})
|
|
300
300
|
], IxBreadcrumb);
|
|
301
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
301
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxBreadcrumb, decorators: [{
|
|
302
302
|
type: Component,
|
|
303
303
|
args: [{
|
|
304
304
|
selector: 'ix-breadcrumb',
|
|
@@ -315,14 +315,14 @@ let IxBreadcrumbItem = class IxBreadcrumbItem {
|
|
|
315
315
|
this.el = r.nativeElement;
|
|
316
316
|
}
|
|
317
317
|
};
|
|
318
|
-
/** @nocollapse */ IxBreadcrumbItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
319
|
-
/** @nocollapse */ IxBreadcrumbItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
318
|
+
/** @nocollapse */ IxBreadcrumbItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxBreadcrumbItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
319
|
+
/** @nocollapse */ IxBreadcrumbItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxBreadcrumbItem, selector: "ix-breadcrumb-item", inputs: { icon: "icon", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
320
320
|
IxBreadcrumbItem = __decorate([
|
|
321
321
|
ProxyCmp({
|
|
322
322
|
inputs: ['icon', 'label']
|
|
323
323
|
})
|
|
324
324
|
], IxBreadcrumbItem);
|
|
325
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
325
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxBreadcrumbItem, decorators: [{
|
|
326
326
|
type: Component,
|
|
327
327
|
args: [{
|
|
328
328
|
selector: 'ix-breadcrumb-item',
|
|
@@ -339,14 +339,14 @@ let IxButton = class IxButton {
|
|
|
339
339
|
this.el = r.nativeElement;
|
|
340
340
|
}
|
|
341
341
|
};
|
|
342
|
-
/** @nocollapse */ IxButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
343
|
-
/** @nocollapse */ IxButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
342
|
+
/** @nocollapse */ IxButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
343
|
+
/** @nocollapse */ IxButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxButton, selector: "ix-button", inputs: { disabled: "disabled", ghost: "ghost", icon: "icon", loading: "loading", outline: "outline", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
344
344
|
IxButton = __decorate([
|
|
345
345
|
ProxyCmp({
|
|
346
346
|
inputs: ['disabled', 'ghost', 'icon', 'loading', 'outline', 'type', 'variant']
|
|
347
347
|
})
|
|
348
348
|
], IxButton);
|
|
349
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
349
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxButton, decorators: [{
|
|
350
350
|
type: Component,
|
|
351
351
|
args: [{
|
|
352
352
|
selector: 'ix-button',
|
|
@@ -363,14 +363,14 @@ let IxCard = class IxCard {
|
|
|
363
363
|
this.el = r.nativeElement;
|
|
364
364
|
}
|
|
365
365
|
};
|
|
366
|
-
/** @nocollapse */ IxCard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
367
|
-
/** @nocollapse */ IxCard.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
366
|
+
/** @nocollapse */ IxCard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
367
|
+
/** @nocollapse */ IxCard.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxCard, selector: "ix-card", inputs: { selected: "selected", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
368
368
|
IxCard = __decorate([
|
|
369
369
|
ProxyCmp({
|
|
370
370
|
inputs: ['selected', 'variant']
|
|
371
371
|
})
|
|
372
372
|
], IxCard);
|
|
373
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
373
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCard, decorators: [{
|
|
374
374
|
type: Component,
|
|
375
375
|
args: [{
|
|
376
376
|
selector: 'ix-card',
|
|
@@ -387,14 +387,14 @@ let IxCardAccordion = class IxCardAccordion {
|
|
|
387
387
|
this.el = r.nativeElement;
|
|
388
388
|
}
|
|
389
389
|
};
|
|
390
|
-
/** @nocollapse */ IxCardAccordion.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
391
|
-
/** @nocollapse */ IxCardAccordion.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
390
|
+
/** @nocollapse */ IxCardAccordion.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCardAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
391
|
+
/** @nocollapse */ IxCardAccordion.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxCardAccordion, selector: "ix-card-accordion", inputs: { collapse: "collapse" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
392
392
|
IxCardAccordion = __decorate([
|
|
393
393
|
ProxyCmp({
|
|
394
394
|
inputs: ['collapse']
|
|
395
395
|
})
|
|
396
396
|
], IxCardAccordion);
|
|
397
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
397
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCardAccordion, decorators: [{
|
|
398
398
|
type: Component,
|
|
399
399
|
args: [{
|
|
400
400
|
selector: 'ix-card-accordion',
|
|
@@ -411,12 +411,12 @@ let IxCardContent = class IxCardContent {
|
|
|
411
411
|
this.el = r.nativeElement;
|
|
412
412
|
}
|
|
413
413
|
};
|
|
414
|
-
/** @nocollapse */ IxCardContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
415
|
-
/** @nocollapse */ IxCardContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
414
|
+
/** @nocollapse */ IxCardContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCardContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
415
|
+
/** @nocollapse */ IxCardContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxCardContent, selector: "ix-card-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
416
416
|
IxCardContent = __decorate([
|
|
417
417
|
ProxyCmp({})
|
|
418
418
|
], IxCardContent);
|
|
419
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
419
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCardContent, decorators: [{
|
|
420
420
|
type: Component,
|
|
421
421
|
args: [{
|
|
422
422
|
selector: 'ix-card-content',
|
|
@@ -434,21 +434,21 @@ let IxCardList = class IxCardList {
|
|
|
434
434
|
proxyOutputs(this, this.el, ['collapseChanged', 'showAllClick', 'showMoreCardClick']);
|
|
435
435
|
}
|
|
436
436
|
};
|
|
437
|
-
/** @nocollapse */ IxCardList.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
438
|
-
/** @nocollapse */ IxCardList.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
437
|
+
/** @nocollapse */ IxCardList.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCardList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
438
|
+
/** @nocollapse */ IxCardList.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxCardList, selector: "ix-card-list", inputs: { collapse: "collapse", hideShowAll: "hideShowAll", i18nMoreCards: "i18nMoreCards", i18nShowAll: "i18nShowAll", label: "label", listStyle: "listStyle", showAllCount: "showAllCount", suppressOverflowHandling: "suppressOverflowHandling" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
439
439
|
IxCardList = __decorate([
|
|
440
440
|
ProxyCmp({
|
|
441
|
-
inputs: ['collapse', 'i18nMoreCards', 'i18nShowAll', 'label', 'listStyle', 'showAllCount', 'suppressOverflowHandling']
|
|
441
|
+
inputs: ['collapse', 'hideShowAll', 'i18nMoreCards', 'i18nShowAll', 'label', 'listStyle', 'showAllCount', 'suppressOverflowHandling']
|
|
442
442
|
})
|
|
443
443
|
], IxCardList);
|
|
444
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
444
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCardList, decorators: [{
|
|
445
445
|
type: Component,
|
|
446
446
|
args: [{
|
|
447
447
|
selector: 'ix-card-list',
|
|
448
448
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
449
449
|
template: '<ng-content></ng-content>',
|
|
450
450
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
451
|
-
inputs: ['collapse', 'i18nMoreCards', 'i18nShowAll', 'label', 'listStyle', 'showAllCount', 'suppressOverflowHandling'],
|
|
451
|
+
inputs: ['collapse', 'hideShowAll', 'i18nMoreCards', 'i18nShowAll', 'label', 'listStyle', 'showAllCount', 'suppressOverflowHandling'],
|
|
452
452
|
}]
|
|
453
453
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
454
454
|
let IxCardTitle = class IxCardTitle {
|
|
@@ -458,12 +458,12 @@ let IxCardTitle = class IxCardTitle {
|
|
|
458
458
|
this.el = r.nativeElement;
|
|
459
459
|
}
|
|
460
460
|
};
|
|
461
|
-
/** @nocollapse */ IxCardTitle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
462
|
-
/** @nocollapse */ IxCardTitle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
461
|
+
/** @nocollapse */ IxCardTitle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCardTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
462
|
+
/** @nocollapse */ IxCardTitle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxCardTitle, selector: "ix-card-title", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
463
463
|
IxCardTitle = __decorate([
|
|
464
464
|
ProxyCmp({})
|
|
465
465
|
], IxCardTitle);
|
|
466
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
466
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCardTitle, decorators: [{
|
|
467
467
|
type: Component,
|
|
468
468
|
args: [{
|
|
469
469
|
selector: 'ix-card-title',
|
|
@@ -481,21 +481,21 @@ let IxCategoryFilter = class IxCategoryFilter {
|
|
|
481
481
|
proxyOutputs(this, this.el, ['categoryChanged', 'inputChanged', 'filterChanged']);
|
|
482
482
|
}
|
|
483
483
|
};
|
|
484
|
-
/** @nocollapse */ IxCategoryFilter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
485
|
-
/** @nocollapse */ IxCategoryFilter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
484
|
+
/** @nocollapse */ IxCategoryFilter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCategoryFilter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
485
|
+
/** @nocollapse */ IxCategoryFilter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxCategoryFilter, selector: "ix-category-filter", inputs: { categories: "categories", disabled: "disabled", filterState: "filterState", hideIcon: "hideIcon", i18nPlainText: "i18nPlainText", icon: "icon", labelCategories: "labelCategories", nonSelectableCategories: "nonSelectableCategories", placeholder: "placeholder", readonly: "readonly", repeatCategories: "repeatCategories", staticOperator: "staticOperator", suggestions: "suggestions" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
486
486
|
IxCategoryFilter = __decorate([
|
|
487
487
|
ProxyCmp({
|
|
488
|
-
inputs: ['categories', 'disabled', 'filterState', 'hideIcon', 'i18nPlainText', 'icon', 'labelCategories', 'nonSelectableCategories', 'placeholder', 'readonly', 'repeatCategories', 'suggestions']
|
|
488
|
+
inputs: ['categories', 'disabled', 'filterState', 'hideIcon', 'i18nPlainText', 'icon', 'labelCategories', 'nonSelectableCategories', 'placeholder', 'readonly', 'repeatCategories', 'staticOperator', 'suggestions']
|
|
489
489
|
})
|
|
490
490
|
], IxCategoryFilter);
|
|
491
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
491
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCategoryFilter, decorators: [{
|
|
492
492
|
type: Component,
|
|
493
493
|
args: [{
|
|
494
494
|
selector: 'ix-category-filter',
|
|
495
495
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
496
496
|
template: '<ng-content></ng-content>',
|
|
497
497
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
498
|
-
inputs: ['categories', 'disabled', 'filterState', 'hideIcon', 'i18nPlainText', 'icon', 'labelCategories', 'nonSelectableCategories', 'placeholder', 'readonly', 'repeatCategories', 'suggestions'],
|
|
498
|
+
inputs: ['categories', 'disabled', 'filterState', 'hideIcon', 'i18nPlainText', 'icon', 'labelCategories', 'nonSelectableCategories', 'placeholder', 'readonly', 'repeatCategories', 'staticOperator', 'suggestions'],
|
|
499
499
|
}]
|
|
500
500
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
501
501
|
let IxChip = class IxChip {
|
|
@@ -506,14 +506,14 @@ let IxChip = class IxChip {
|
|
|
506
506
|
proxyOutputs(this, this.el, ['closeChip']);
|
|
507
507
|
}
|
|
508
508
|
};
|
|
509
|
-
/** @nocollapse */ IxChip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
510
|
-
/** @nocollapse */ IxChip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
509
|
+
/** @nocollapse */ IxChip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
510
|
+
/** @nocollapse */ IxChip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxChip, selector: "ix-chip", inputs: { active: "active", background: "background", chipColor: "chipColor", closable: "closable", color: "color", icon: "icon", outline: "outline", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
511
511
|
IxChip = __decorate([
|
|
512
512
|
ProxyCmp({
|
|
513
513
|
inputs: ['active', 'background', 'chipColor', 'closable', 'color', 'icon', 'outline', 'variant']
|
|
514
514
|
})
|
|
515
515
|
], IxChip);
|
|
516
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
516
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxChip, decorators: [{
|
|
517
517
|
type: Component,
|
|
518
518
|
args: [{
|
|
519
519
|
selector: 'ix-chip',
|
|
@@ -530,14 +530,14 @@ let IxCol = class IxCol {
|
|
|
530
530
|
this.el = r.nativeElement;
|
|
531
531
|
}
|
|
532
532
|
};
|
|
533
|
-
/** @nocollapse */ IxCol.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
534
|
-
/** @nocollapse */ IxCol.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
533
|
+
/** @nocollapse */ IxCol.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCol, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
534
|
+
/** @nocollapse */ IxCol.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxCol, selector: "ix-col", inputs: { size: "size", sizeLg: "sizeLg", sizeMd: "sizeMd", sizeSm: "sizeSm" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
535
535
|
IxCol = __decorate([
|
|
536
536
|
ProxyCmp({
|
|
537
537
|
inputs: ['size', 'sizeLg', 'sizeMd', 'sizeSm']
|
|
538
538
|
})
|
|
539
539
|
], IxCol);
|
|
540
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
540
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxCol, decorators: [{
|
|
541
541
|
type: Component,
|
|
542
542
|
args: [{
|
|
543
543
|
selector: 'ix-col',
|
|
@@ -554,12 +554,12 @@ let IxContent = class IxContent {
|
|
|
554
554
|
this.el = r.nativeElement;
|
|
555
555
|
}
|
|
556
556
|
};
|
|
557
|
-
/** @nocollapse */ IxContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
558
|
-
/** @nocollapse */ IxContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
557
|
+
/** @nocollapse */ IxContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
558
|
+
/** @nocollapse */ IxContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxContent, selector: "ix-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
559
559
|
IxContent = __decorate([
|
|
560
560
|
ProxyCmp({})
|
|
561
561
|
], IxContent);
|
|
562
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
562
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxContent, decorators: [{
|
|
563
563
|
type: Component,
|
|
564
564
|
args: [{
|
|
565
565
|
selector: 'ix-content',
|
|
@@ -577,14 +577,14 @@ let IxContentHeader = class IxContentHeader {
|
|
|
577
577
|
proxyOutputs(this, this.el, ['backButtonClick']);
|
|
578
578
|
}
|
|
579
579
|
};
|
|
580
|
-
/** @nocollapse */ IxContentHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
581
|
-
/** @nocollapse */ IxContentHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
580
|
+
/** @nocollapse */ IxContentHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxContentHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
581
|
+
/** @nocollapse */ IxContentHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxContentHeader, selector: "ix-content-header", inputs: { hasBackButton: "hasBackButton", headerSubtitle: "headerSubtitle", headerTitle: "headerTitle", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
582
582
|
IxContentHeader = __decorate([
|
|
583
583
|
ProxyCmp({
|
|
584
584
|
inputs: ['hasBackButton', 'headerSubtitle', 'headerTitle', 'variant']
|
|
585
585
|
})
|
|
586
586
|
], IxContentHeader);
|
|
587
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
587
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxContentHeader, decorators: [{
|
|
588
588
|
type: Component,
|
|
589
589
|
args: [{
|
|
590
590
|
selector: 'ix-content-header',
|
|
@@ -602,15 +602,15 @@ let IxDateDropdown = class IxDateDropdown {
|
|
|
602
602
|
proxyOutputs(this, this.el, ['dateRangeChange']);
|
|
603
603
|
}
|
|
604
604
|
};
|
|
605
|
-
/** @nocollapse */ IxDateDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
606
|
-
/** @nocollapse */ IxDateDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
605
|
+
/** @nocollapse */ IxDateDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDateDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
606
|
+
/** @nocollapse */ IxDateDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxDateDropdown, selector: "ix-date-dropdown", inputs: { customRangeAllowed: "customRangeAllowed", dateRangeId: "dateRangeId", dateRangeOptions: "dateRangeOptions", format: "format", from: "from", i18nCustomItem: "i18nCustomItem", i18nDone: "i18nDone", i18nNoRange: "i18nNoRange", maxDate: "maxDate", minDate: "minDate", range: "range", to: "to" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
607
607
|
IxDateDropdown = __decorate([
|
|
608
608
|
ProxyCmp({
|
|
609
609
|
inputs: ['customRangeAllowed', 'dateRangeId', 'dateRangeOptions', 'format', 'from', 'i18nCustomItem', 'i18nDone', 'i18nNoRange', 'maxDate', 'minDate', 'range', 'to'],
|
|
610
610
|
methods: ['getDateRange']
|
|
611
611
|
})
|
|
612
612
|
], IxDateDropdown);
|
|
613
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
613
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDateDropdown, decorators: [{
|
|
614
614
|
type: Component,
|
|
615
615
|
args: [{
|
|
616
616
|
selector: 'ix-date-dropdown',
|
|
@@ -628,15 +628,15 @@ let IxDatePicker = class IxDatePicker {
|
|
|
628
628
|
proxyOutputs(this, this.el, ['dateChange', 'dateRangeChange', 'dateSelect', 'done']);
|
|
629
629
|
}
|
|
630
630
|
};
|
|
631
|
-
/** @nocollapse */ IxDatePicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
632
|
-
/** @nocollapse */ IxDatePicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
631
|
+
/** @nocollapse */ IxDatePicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDatePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
632
|
+
/** @nocollapse */ IxDatePicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxDatePicker, selector: "ix-date-picker", inputs: { corners: "corners", eventDelimiter: "eventDelimiter", format: "format", from: "from", i18nDone: "i18nDone", individual: "individual", locale: "locale", maxDate: "maxDate", minDate: "minDate", range: "range", textSelectDate: "textSelectDate", to: "to", weekStartIndex: "weekStartIndex" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
633
633
|
IxDatePicker = __decorate([
|
|
634
634
|
ProxyCmp({
|
|
635
635
|
inputs: ['corners', 'eventDelimiter', 'format', 'from', 'i18nDone', 'individual', 'locale', 'maxDate', 'minDate', 'range', 'textSelectDate', 'to', 'weekStartIndex'],
|
|
636
636
|
methods: ['getCurrentDate']
|
|
637
637
|
})
|
|
638
638
|
], IxDatePicker);
|
|
639
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
639
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDatePicker, decorators: [{
|
|
640
640
|
type: Component,
|
|
641
641
|
args: [{
|
|
642
642
|
selector: 'ix-date-picker',
|
|
@@ -654,14 +654,14 @@ let IxDatetimePicker = class IxDatetimePicker {
|
|
|
654
654
|
proxyOutputs(this, this.el, ['done', 'timeChange', 'dateChange', 'dateSelect']);
|
|
655
655
|
}
|
|
656
656
|
};
|
|
657
|
-
/** @nocollapse */ IxDatetimePicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
658
|
-
/** @nocollapse */ IxDatetimePicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
657
|
+
/** @nocollapse */ IxDatetimePicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDatetimePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
658
|
+
/** @nocollapse */ IxDatetimePicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxDatetimePicker, selector: "ix-datetime-picker", inputs: { dateFormat: "dateFormat", eventDelimiter: "eventDelimiter", from: "from", i18nDone: "i18nDone", locale: "locale", maxDate: "maxDate", minDate: "minDate", range: "range", showHour: "showHour", showMinutes: "showMinutes", showSeconds: "showSeconds", showTimeReference: "showTimeReference", textSelectDate: "textSelectDate", time: "time", timeFormat: "timeFormat", timeReference: "timeReference", to: "to", weekStartIndex: "weekStartIndex" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
659
659
|
IxDatetimePicker = __decorate([
|
|
660
660
|
ProxyCmp({
|
|
661
661
|
inputs: ['dateFormat', 'eventDelimiter', 'from', 'i18nDone', 'locale', 'maxDate', 'minDate', 'range', 'showHour', 'showMinutes', 'showSeconds', 'showTimeReference', 'textSelectDate', 'time', 'timeFormat', 'timeReference', 'to', 'weekStartIndex']
|
|
662
662
|
})
|
|
663
663
|
], IxDatetimePicker);
|
|
664
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
664
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDatetimePicker, decorators: [{
|
|
665
665
|
type: Component,
|
|
666
666
|
args: [{
|
|
667
667
|
selector: 'ix-datetime-picker',
|
|
@@ -678,12 +678,12 @@ let IxDivider = class IxDivider {
|
|
|
678
678
|
this.el = r.nativeElement;
|
|
679
679
|
}
|
|
680
680
|
};
|
|
681
|
-
/** @nocollapse */ IxDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
682
|
-
/** @nocollapse */ IxDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
681
|
+
/** @nocollapse */ IxDivider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
682
|
+
/** @nocollapse */ IxDivider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxDivider, selector: "ix-divider", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
683
683
|
IxDivider = __decorate([
|
|
684
684
|
ProxyCmp({})
|
|
685
685
|
], IxDivider);
|
|
686
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
686
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDivider, decorators: [{
|
|
687
687
|
type: Component,
|
|
688
688
|
args: [{
|
|
689
689
|
selector: 'ix-divider',
|
|
@@ -701,15 +701,15 @@ let IxDrawer = class IxDrawer {
|
|
|
701
701
|
proxyOutputs(this, this.el, ['open', 'drawerClose']);
|
|
702
702
|
}
|
|
703
703
|
};
|
|
704
|
-
/** @nocollapse */ IxDrawer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
705
|
-
/** @nocollapse */ IxDrawer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
704
|
+
/** @nocollapse */ IxDrawer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDrawer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
705
|
+
/** @nocollapse */ IxDrawer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxDrawer, selector: "ix-drawer", inputs: { closeOnClickOutside: "closeOnClickOutside", fullHeight: "fullHeight", maxWidth: "maxWidth", minWidth: "minWidth", show: "show", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
706
706
|
IxDrawer = __decorate([
|
|
707
707
|
ProxyCmp({
|
|
708
708
|
inputs: ['closeOnClickOutside', 'fullHeight', 'maxWidth', 'minWidth', 'show', 'width'],
|
|
709
709
|
methods: ['toggleDrawer']
|
|
710
710
|
})
|
|
711
711
|
], IxDrawer);
|
|
712
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
712
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDrawer, decorators: [{
|
|
713
713
|
type: Component,
|
|
714
714
|
args: [{
|
|
715
715
|
selector: 'ix-drawer',
|
|
@@ -727,15 +727,15 @@ let IxDropdown = class IxDropdown {
|
|
|
727
727
|
proxyOutputs(this, this.el, ['showChanged']);
|
|
728
728
|
}
|
|
729
729
|
};
|
|
730
|
-
/** @nocollapse */ IxDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
731
|
-
/** @nocollapse */ IxDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
730
|
+
/** @nocollapse */ IxDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
731
|
+
/** @nocollapse */ IxDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxDropdown, selector: "ix-dropdown", inputs: { anchor: "anchor", closeBehavior: "closeBehavior", header: "header", placement: "placement", positioningStrategy: "positioningStrategy", show: "show", suppressAutomaticPlacement: "suppressAutomaticPlacement", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
732
732
|
IxDropdown = __decorate([
|
|
733
733
|
ProxyCmp({
|
|
734
734
|
inputs: ['anchor', 'closeBehavior', 'header', 'placement', 'positioningStrategy', 'show', 'suppressAutomaticPlacement', 'trigger'],
|
|
735
735
|
methods: ['updatePosition']
|
|
736
736
|
})
|
|
737
737
|
], IxDropdown);
|
|
738
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
738
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDropdown, decorators: [{
|
|
739
739
|
type: Component,
|
|
740
740
|
args: [{
|
|
741
741
|
selector: 'ix-dropdown',
|
|
@@ -752,14 +752,14 @@ let IxDropdownButton = class IxDropdownButton {
|
|
|
752
752
|
this.el = r.nativeElement;
|
|
753
753
|
}
|
|
754
754
|
};
|
|
755
|
-
/** @nocollapse */ IxDropdownButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
756
|
-
/** @nocollapse */ IxDropdownButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
755
|
+
/** @nocollapse */ IxDropdownButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDropdownButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
756
|
+
/** @nocollapse */ IxDropdownButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxDropdownButton, selector: "ix-dropdown-button", inputs: { closeBehavior: "closeBehavior", disabled: "disabled", ghost: "ghost", icon: "icon", label: "label", outline: "outline", placement: "placement", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
757
757
|
IxDropdownButton = __decorate([
|
|
758
758
|
ProxyCmp({
|
|
759
759
|
inputs: ['closeBehavior', 'disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'variant']
|
|
760
760
|
})
|
|
761
761
|
], IxDropdownButton);
|
|
762
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
762
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDropdownButton, decorators: [{
|
|
763
763
|
type: Component,
|
|
764
764
|
args: [{
|
|
765
765
|
selector: 'ix-dropdown-button',
|
|
@@ -776,14 +776,14 @@ let IxDropdownHeader = class IxDropdownHeader {
|
|
|
776
776
|
this.el = r.nativeElement;
|
|
777
777
|
}
|
|
778
778
|
};
|
|
779
|
-
/** @nocollapse */ IxDropdownHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
780
|
-
/** @nocollapse */ IxDropdownHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
779
|
+
/** @nocollapse */ IxDropdownHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDropdownHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
780
|
+
/** @nocollapse */ IxDropdownHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxDropdownHeader, selector: "ix-dropdown-header", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
781
781
|
IxDropdownHeader = __decorate([
|
|
782
782
|
ProxyCmp({
|
|
783
783
|
inputs: ['label']
|
|
784
784
|
})
|
|
785
785
|
], IxDropdownHeader);
|
|
786
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
786
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDropdownHeader, decorators: [{
|
|
787
787
|
type: Component,
|
|
788
788
|
args: [{
|
|
789
789
|
selector: 'ix-dropdown-header',
|
|
@@ -800,15 +800,15 @@ let IxDropdownItem = class IxDropdownItem {
|
|
|
800
800
|
this.el = r.nativeElement;
|
|
801
801
|
}
|
|
802
802
|
};
|
|
803
|
-
/** @nocollapse */ IxDropdownItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
804
|
-
/** @nocollapse */ IxDropdownItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
803
|
+
/** @nocollapse */ IxDropdownItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDropdownItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
804
|
+
/** @nocollapse */ IxDropdownItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxDropdownItem, selector: "ix-dropdown-item", inputs: { checked: "checked", disabled: "disabled", hover: "hover", icon: "icon", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
805
805
|
IxDropdownItem = __decorate([
|
|
806
806
|
ProxyCmp({
|
|
807
807
|
inputs: ['checked', 'disabled', 'hover', 'icon', 'label'],
|
|
808
808
|
methods: ['emitItemClick']
|
|
809
809
|
})
|
|
810
810
|
], IxDropdownItem);
|
|
811
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
811
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDropdownItem, decorators: [{
|
|
812
812
|
type: Component,
|
|
813
813
|
args: [{
|
|
814
814
|
selector: 'ix-dropdown-item',
|
|
@@ -825,12 +825,12 @@ let IxDropdownQuickActions = class IxDropdownQuickActions {
|
|
|
825
825
|
this.el = r.nativeElement;
|
|
826
826
|
}
|
|
827
827
|
};
|
|
828
|
-
/** @nocollapse */ IxDropdownQuickActions.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
829
|
-
/** @nocollapse */ IxDropdownQuickActions.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
828
|
+
/** @nocollapse */ IxDropdownQuickActions.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDropdownQuickActions, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
829
|
+
/** @nocollapse */ IxDropdownQuickActions.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxDropdownQuickActions, selector: "ix-dropdown-quick-actions", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
830
830
|
IxDropdownQuickActions = __decorate([
|
|
831
831
|
ProxyCmp({})
|
|
832
832
|
], IxDropdownQuickActions);
|
|
833
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
833
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDropdownQuickActions, decorators: [{
|
|
834
834
|
type: Component,
|
|
835
835
|
args: [{
|
|
836
836
|
selector: 'ix-dropdown-quick-actions',
|
|
@@ -848,14 +848,14 @@ let IxEmptyState = class IxEmptyState {
|
|
|
848
848
|
proxyOutputs(this, this.el, ['actionClick']);
|
|
849
849
|
}
|
|
850
850
|
};
|
|
851
|
-
/** @nocollapse */ IxEmptyState.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
852
|
-
/** @nocollapse */ IxEmptyState.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
851
|
+
/** @nocollapse */ IxEmptyState.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxEmptyState, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
852
|
+
/** @nocollapse */ IxEmptyState.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxEmptyState, selector: "ix-empty-state", inputs: { action: "action", header: "header", icon: "icon", layout: "layout", subHeader: "subHeader" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
853
853
|
IxEmptyState = __decorate([
|
|
854
854
|
ProxyCmp({
|
|
855
855
|
inputs: ['action', 'header', 'icon', 'layout', 'subHeader']
|
|
856
856
|
})
|
|
857
857
|
], IxEmptyState);
|
|
858
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
858
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxEmptyState, decorators: [{
|
|
859
859
|
type: Component,
|
|
860
860
|
args: [{
|
|
861
861
|
selector: 'ix-empty-state',
|
|
@@ -872,14 +872,14 @@ let IxEventList = class IxEventList {
|
|
|
872
872
|
this.el = r.nativeElement;
|
|
873
873
|
}
|
|
874
874
|
};
|
|
875
|
-
/** @nocollapse */ IxEventList.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
876
|
-
/** @nocollapse */ IxEventList.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
875
|
+
/** @nocollapse */ IxEventList.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxEventList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
876
|
+
/** @nocollapse */ IxEventList.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxEventList, selector: "ix-event-list", inputs: { animated: "animated", chevron: "chevron", compact: "compact", itemHeight: "itemHeight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
877
877
|
IxEventList = __decorate([
|
|
878
878
|
ProxyCmp({
|
|
879
879
|
inputs: ['animated', 'chevron', 'compact', 'itemHeight']
|
|
880
880
|
})
|
|
881
881
|
], IxEventList);
|
|
882
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
882
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxEventList, decorators: [{
|
|
883
883
|
type: Component,
|
|
884
884
|
args: [{
|
|
885
885
|
selector: 'ix-event-list',
|
|
@@ -897,14 +897,14 @@ let IxEventListItem = class IxEventListItem {
|
|
|
897
897
|
proxyOutputs(this, this.el, ['itemClick']);
|
|
898
898
|
}
|
|
899
899
|
};
|
|
900
|
-
/** @nocollapse */ IxEventListItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
901
|
-
/** @nocollapse */ IxEventListItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
900
|
+
/** @nocollapse */ IxEventListItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxEventListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
901
|
+
/** @nocollapse */ IxEventListItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxEventListItem, selector: "ix-event-list-item", inputs: { chevron: "chevron", color: "color", disabled: "disabled", itemColor: "itemColor", selected: "selected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
902
902
|
IxEventListItem = __decorate([
|
|
903
903
|
ProxyCmp({
|
|
904
904
|
inputs: ['chevron', 'color', 'disabled', 'itemColor', 'selected']
|
|
905
905
|
})
|
|
906
906
|
], IxEventListItem);
|
|
907
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
907
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxEventListItem, decorators: [{
|
|
908
908
|
type: Component,
|
|
909
909
|
args: [{
|
|
910
910
|
selector: 'ix-event-list-item',
|
|
@@ -922,14 +922,14 @@ let IxExpandingSearch = class IxExpandingSearch {
|
|
|
922
922
|
proxyOutputs(this, this.el, ['valueChange']);
|
|
923
923
|
}
|
|
924
924
|
};
|
|
925
|
-
/** @nocollapse */ IxExpandingSearch.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
926
|
-
/** @nocollapse */ IxExpandingSearch.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
925
|
+
/** @nocollapse */ IxExpandingSearch.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxExpandingSearch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
926
|
+
/** @nocollapse */ IxExpandingSearch.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxExpandingSearch, selector: "ix-expanding-search", inputs: { fullWidth: "fullWidth", icon: "icon", placeholder: "placeholder", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
927
927
|
IxExpandingSearch = __decorate([
|
|
928
928
|
ProxyCmp({
|
|
929
929
|
inputs: ['fullWidth', 'icon', 'placeholder', 'value']
|
|
930
930
|
})
|
|
931
931
|
], IxExpandingSearch);
|
|
932
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
932
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxExpandingSearch, decorators: [{
|
|
933
933
|
type: Component,
|
|
934
934
|
args: [{
|
|
935
935
|
selector: 'ix-expanding-search',
|
|
@@ -947,14 +947,14 @@ let IxFilterChip = class IxFilterChip {
|
|
|
947
947
|
proxyOutputs(this, this.el, ['closeClick']);
|
|
948
948
|
}
|
|
949
949
|
};
|
|
950
|
-
/** @nocollapse */ IxFilterChip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
951
|
-
/** @nocollapse */ IxFilterChip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
950
|
+
/** @nocollapse */ IxFilterChip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFilterChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
951
|
+
/** @nocollapse */ IxFilterChip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxFilterChip, selector: "ix-filter-chip", inputs: { disabled: "disabled", readonly: "readonly" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
952
952
|
IxFilterChip = __decorate([
|
|
953
953
|
ProxyCmp({
|
|
954
954
|
inputs: ['disabled', 'readonly']
|
|
955
955
|
})
|
|
956
956
|
], IxFilterChip);
|
|
957
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
957
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFilterChip, decorators: [{
|
|
958
958
|
type: Component,
|
|
959
959
|
args: [{
|
|
960
960
|
selector: 'ix-filter-chip',
|
|
@@ -971,14 +971,14 @@ let IxFlipTile = class IxFlipTile {
|
|
|
971
971
|
this.el = r.nativeElement;
|
|
972
972
|
}
|
|
973
973
|
};
|
|
974
|
-
/** @nocollapse */ IxFlipTile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
975
|
-
/** @nocollapse */ IxFlipTile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
974
|
+
/** @nocollapse */ IxFlipTile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFlipTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
975
|
+
/** @nocollapse */ IxFlipTile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxFlipTile, selector: "ix-flip-tile", inputs: { height: "height", state: "state", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
976
976
|
IxFlipTile = __decorate([
|
|
977
977
|
ProxyCmp({
|
|
978
978
|
inputs: ['height', 'state', 'width']
|
|
979
979
|
})
|
|
980
980
|
], IxFlipTile);
|
|
981
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
981
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFlipTile, decorators: [{
|
|
982
982
|
type: Component,
|
|
983
983
|
args: [{
|
|
984
984
|
selector: 'ix-flip-tile',
|
|
@@ -995,12 +995,12 @@ let IxFlipTileContent = class IxFlipTileContent {
|
|
|
995
995
|
this.el = r.nativeElement;
|
|
996
996
|
}
|
|
997
997
|
};
|
|
998
|
-
/** @nocollapse */ IxFlipTileContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
999
|
-
/** @nocollapse */ IxFlipTileContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
998
|
+
/** @nocollapse */ IxFlipTileContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFlipTileContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
999
|
+
/** @nocollapse */ IxFlipTileContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxFlipTileContent, selector: "ix-flip-tile-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1000
1000
|
IxFlipTileContent = __decorate([
|
|
1001
1001
|
ProxyCmp({})
|
|
1002
1002
|
], IxFlipTileContent);
|
|
1003
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1003
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFlipTileContent, decorators: [{
|
|
1004
1004
|
type: Component,
|
|
1005
1005
|
args: [{
|
|
1006
1006
|
selector: 'ix-flip-tile-content',
|
|
@@ -1017,14 +1017,14 @@ let IxFormField = class IxFormField {
|
|
|
1017
1017
|
this.el = r.nativeElement;
|
|
1018
1018
|
}
|
|
1019
1019
|
};
|
|
1020
|
-
/** @nocollapse */ IxFormField.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1021
|
-
/** @nocollapse */ IxFormField.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1020
|
+
/** @nocollapse */ IxFormField.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFormField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1021
|
+
/** @nocollapse */ IxFormField.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxFormField, selector: "ix-form-field", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1022
1022
|
IxFormField = __decorate([
|
|
1023
1023
|
ProxyCmp({
|
|
1024
1024
|
inputs: ['label']
|
|
1025
1025
|
})
|
|
1026
1026
|
], IxFormField);
|
|
1027
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1027
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxFormField, decorators: [{
|
|
1028
1028
|
type: Component,
|
|
1029
1029
|
args: [{
|
|
1030
1030
|
selector: 'ix-form-field',
|
|
@@ -1042,14 +1042,14 @@ let IxGroup = class IxGroup {
|
|
|
1042
1042
|
proxyOutputs(this, this.el, ['selectGroup', 'selectItem', 'collapsedChanged']);
|
|
1043
1043
|
}
|
|
1044
1044
|
};
|
|
1045
|
-
/** @nocollapse */ IxGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1046
|
-
/** @nocollapse */ IxGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1045
|
+
/** @nocollapse */ IxGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1046
|
+
/** @nocollapse */ IxGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxGroup, selector: "ix-group", inputs: { collapsed: "collapsed", expandOnHeaderClick: "expandOnHeaderClick", header: "header", index: "index", selected: "selected", subHeader: "subHeader", suppressHeaderSelection: "suppressHeaderSelection" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1047
1047
|
IxGroup = __decorate([
|
|
1048
1048
|
ProxyCmp({
|
|
1049
1049
|
inputs: ['collapsed', 'expandOnHeaderClick', 'header', 'index', 'selected', 'subHeader', 'suppressHeaderSelection']
|
|
1050
1050
|
})
|
|
1051
1051
|
], IxGroup);
|
|
1052
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1052
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxGroup, decorators: [{
|
|
1053
1053
|
type: Component,
|
|
1054
1054
|
args: [{
|
|
1055
1055
|
selector: 'ix-group',
|
|
@@ -1066,12 +1066,12 @@ let IxGroupContextMenu = class IxGroupContextMenu {
|
|
|
1066
1066
|
this.el = r.nativeElement;
|
|
1067
1067
|
}
|
|
1068
1068
|
};
|
|
1069
|
-
/** @nocollapse */ IxGroupContextMenu.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1070
|
-
/** @nocollapse */ IxGroupContextMenu.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1069
|
+
/** @nocollapse */ IxGroupContextMenu.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxGroupContextMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1070
|
+
/** @nocollapse */ IxGroupContextMenu.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxGroupContextMenu, selector: "ix-group-context-menu", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1071
1071
|
IxGroupContextMenu = __decorate([
|
|
1072
1072
|
ProxyCmp({})
|
|
1073
1073
|
], IxGroupContextMenu);
|
|
1074
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1074
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxGroupContextMenu, decorators: [{
|
|
1075
1075
|
type: Component,
|
|
1076
1076
|
args: [{
|
|
1077
1077
|
selector: 'ix-group-context-menu',
|
|
@@ -1089,14 +1089,14 @@ let IxGroupItem = class IxGroupItem {
|
|
|
1089
1089
|
proxyOutputs(this, this.el, ['selectedChanged']);
|
|
1090
1090
|
}
|
|
1091
1091
|
};
|
|
1092
|
-
/** @nocollapse */ IxGroupItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1093
|
-
/** @nocollapse */ IxGroupItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1092
|
+
/** @nocollapse */ IxGroupItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxGroupItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1093
|
+
/** @nocollapse */ IxGroupItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxGroupItem, selector: "ix-group-item", inputs: { focusable: "focusable", icon: "icon", index: "index", secondaryText: "secondaryText", selected: "selected", suppressSelection: "suppressSelection", text: "text" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1094
1094
|
IxGroupItem = __decorate([
|
|
1095
1095
|
ProxyCmp({
|
|
1096
1096
|
inputs: ['focusable', 'icon', 'index', 'secondaryText', 'selected', 'suppressSelection', 'text']
|
|
1097
1097
|
})
|
|
1098
1098
|
], IxGroupItem);
|
|
1099
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1099
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxGroupItem, decorators: [{
|
|
1100
1100
|
type: Component,
|
|
1101
1101
|
args: [{
|
|
1102
1102
|
selector: 'ix-group-item',
|
|
@@ -1113,14 +1113,14 @@ let IxIconButton = class IxIconButton {
|
|
|
1113
1113
|
this.el = r.nativeElement;
|
|
1114
1114
|
}
|
|
1115
1115
|
};
|
|
1116
|
-
/** @nocollapse */ IxIconButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1117
|
-
/** @nocollapse */ IxIconButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1116
|
+
/** @nocollapse */ IxIconButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxIconButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1117
|
+
/** @nocollapse */ IxIconButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxIconButton, selector: "ix-icon-button", inputs: { a11yLabel: "a11yLabel", color: "color", disabled: "disabled", ghost: "ghost", icon: "icon", iconColor: "iconColor", loading: "loading", outline: "outline", oval: "oval", size: "size", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1118
1118
|
IxIconButton = __decorate([
|
|
1119
1119
|
ProxyCmp({
|
|
1120
1120
|
inputs: ['a11yLabel', 'color', 'disabled', 'ghost', 'icon', 'iconColor', 'loading', 'outline', 'oval', 'size', 'type', 'variant']
|
|
1121
1121
|
})
|
|
1122
1122
|
], IxIconButton);
|
|
1123
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1123
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxIconButton, decorators: [{
|
|
1124
1124
|
type: Component,
|
|
1125
1125
|
args: [{
|
|
1126
1126
|
selector: 'ix-icon-button',
|
|
@@ -1138,14 +1138,14 @@ let IxIconToggleButton = class IxIconToggleButton {
|
|
|
1138
1138
|
proxyOutputs(this, this.el, ['pressedChange']);
|
|
1139
1139
|
}
|
|
1140
1140
|
};
|
|
1141
|
-
/** @nocollapse */ IxIconToggleButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1142
|
-
/** @nocollapse */ IxIconToggleButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1141
|
+
/** @nocollapse */ IxIconToggleButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxIconToggleButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1142
|
+
/** @nocollapse */ IxIconToggleButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxIconToggleButton, selector: "ix-icon-toggle-button", inputs: { disabled: "disabled", ghost: "ghost", icon: "icon", loading: "loading", outline: "outline", pressed: "pressed", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1143
1143
|
IxIconToggleButton = __decorate([
|
|
1144
1144
|
ProxyCmp({
|
|
1145
1145
|
inputs: ['disabled', 'ghost', 'icon', 'loading', 'outline', 'pressed', 'size', 'variant']
|
|
1146
1146
|
})
|
|
1147
1147
|
], IxIconToggleButton);
|
|
1148
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1148
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxIconToggleButton, decorators: [{
|
|
1149
1149
|
type: Component,
|
|
1150
1150
|
args: [{
|
|
1151
1151
|
selector: 'ix-icon-toggle-button',
|
|
@@ -1162,12 +1162,12 @@ let IxInputGroup = class IxInputGroup {
|
|
|
1162
1162
|
this.el = r.nativeElement;
|
|
1163
1163
|
}
|
|
1164
1164
|
};
|
|
1165
|
-
/** @nocollapse */ IxInputGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1166
|
-
/** @nocollapse */ IxInputGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1165
|
+
/** @nocollapse */ IxInputGroup.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxInputGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1166
|
+
/** @nocollapse */ IxInputGroup.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxInputGroup, selector: "ix-input-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1167
1167
|
IxInputGroup = __decorate([
|
|
1168
1168
|
ProxyCmp({})
|
|
1169
1169
|
], IxInputGroup);
|
|
1170
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1170
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxInputGroup, decorators: [{
|
|
1171
1171
|
type: Component,
|
|
1172
1172
|
args: [{
|
|
1173
1173
|
selector: 'ix-input-group',
|
|
@@ -1184,14 +1184,14 @@ let IxKeyValue = class IxKeyValue {
|
|
|
1184
1184
|
this.el = r.nativeElement;
|
|
1185
1185
|
}
|
|
1186
1186
|
};
|
|
1187
|
-
/** @nocollapse */ IxKeyValue.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1188
|
-
/** @nocollapse */ IxKeyValue.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1187
|
+
/** @nocollapse */ IxKeyValue.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxKeyValue, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1188
|
+
/** @nocollapse */ IxKeyValue.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxKeyValue, selector: "ix-key-value", inputs: { icon: "icon", label: "label", labelPosition: "labelPosition", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1189
1189
|
IxKeyValue = __decorate([
|
|
1190
1190
|
ProxyCmp({
|
|
1191
1191
|
inputs: ['icon', 'label', 'labelPosition', 'value']
|
|
1192
1192
|
})
|
|
1193
1193
|
], IxKeyValue);
|
|
1194
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1194
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxKeyValue, decorators: [{
|
|
1195
1195
|
type: Component,
|
|
1196
1196
|
args: [{
|
|
1197
1197
|
selector: 'ix-key-value',
|
|
@@ -1208,14 +1208,14 @@ let IxKeyValueList = class IxKeyValueList {
|
|
|
1208
1208
|
this.el = r.nativeElement;
|
|
1209
1209
|
}
|
|
1210
1210
|
};
|
|
1211
|
-
/** @nocollapse */ IxKeyValueList.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1212
|
-
/** @nocollapse */ IxKeyValueList.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1211
|
+
/** @nocollapse */ IxKeyValueList.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxKeyValueList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1212
|
+
/** @nocollapse */ IxKeyValueList.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxKeyValueList, selector: "ix-key-value-list", inputs: { striped: "striped" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1213
1213
|
IxKeyValueList = __decorate([
|
|
1214
1214
|
ProxyCmp({
|
|
1215
1215
|
inputs: ['striped']
|
|
1216
1216
|
})
|
|
1217
1217
|
], IxKeyValueList);
|
|
1218
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1218
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxKeyValueList, decorators: [{
|
|
1219
1219
|
type: Component,
|
|
1220
1220
|
args: [{
|
|
1221
1221
|
selector: 'ix-key-value-list',
|
|
@@ -1232,14 +1232,14 @@ let IxKpi = class IxKpi {
|
|
|
1232
1232
|
this.el = r.nativeElement;
|
|
1233
1233
|
}
|
|
1234
1234
|
};
|
|
1235
|
-
/** @nocollapse */ IxKpi.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1236
|
-
/** @nocollapse */ IxKpi.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1235
|
+
/** @nocollapse */ IxKpi.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxKpi, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1236
|
+
/** @nocollapse */ IxKpi.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxKpi, selector: "ix-kpi", inputs: { label: "label", orientation: "orientation", state: "state", unit: "unit", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1237
1237
|
IxKpi = __decorate([
|
|
1238
1238
|
ProxyCmp({
|
|
1239
1239
|
inputs: ['label', 'orientation', 'state', 'unit', 'value']
|
|
1240
1240
|
})
|
|
1241
1241
|
], IxKpi);
|
|
1242
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1242
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxKpi, decorators: [{
|
|
1243
1243
|
type: Component,
|
|
1244
1244
|
args: [{
|
|
1245
1245
|
selector: 'ix-kpi',
|
|
@@ -1256,14 +1256,14 @@ let IxLayoutGrid = class IxLayoutGrid {
|
|
|
1256
1256
|
this.el = r.nativeElement;
|
|
1257
1257
|
}
|
|
1258
1258
|
};
|
|
1259
|
-
/** @nocollapse */ IxLayoutGrid.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1260
|
-
/** @nocollapse */ IxLayoutGrid.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1259
|
+
/** @nocollapse */ IxLayoutGrid.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxLayoutGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1260
|
+
/** @nocollapse */ IxLayoutGrid.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxLayoutGrid, selector: "ix-layout-grid", inputs: { columns: "columns", gap: "gap", noMargin: "noMargin" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1261
1261
|
IxLayoutGrid = __decorate([
|
|
1262
1262
|
ProxyCmp({
|
|
1263
1263
|
inputs: ['columns', 'gap', 'noMargin']
|
|
1264
1264
|
})
|
|
1265
1265
|
], IxLayoutGrid);
|
|
1266
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1266
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxLayoutGrid, decorators: [{
|
|
1267
1267
|
type: Component,
|
|
1268
1268
|
args: [{
|
|
1269
1269
|
selector: 'ix-layout-grid',
|
|
@@ -1280,14 +1280,14 @@ let IxLinkButton = class IxLinkButton {
|
|
|
1280
1280
|
this.el = r.nativeElement;
|
|
1281
1281
|
}
|
|
1282
1282
|
};
|
|
1283
|
-
/** @nocollapse */ IxLinkButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1284
|
-
/** @nocollapse */ IxLinkButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1283
|
+
/** @nocollapse */ IxLinkButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxLinkButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1284
|
+
/** @nocollapse */ IxLinkButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxLinkButton, selector: "ix-link-button", inputs: { disabled: "disabled", target: "target", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1285
1285
|
IxLinkButton = __decorate([
|
|
1286
1286
|
ProxyCmp({
|
|
1287
1287
|
inputs: ['disabled', 'target', 'url']
|
|
1288
1288
|
})
|
|
1289
1289
|
], IxLinkButton);
|
|
1290
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1290
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxLinkButton, decorators: [{
|
|
1291
1291
|
type: Component,
|
|
1292
1292
|
args: [{
|
|
1293
1293
|
selector: 'ix-link-button',
|
|
@@ -1305,15 +1305,15 @@ let IxMapNavigation = class IxMapNavigation {
|
|
|
1305
1305
|
proxyOutputs(this, this.el, ['navigationToggled', 'contextMenuClick']);
|
|
1306
1306
|
}
|
|
1307
1307
|
};
|
|
1308
|
-
/** @nocollapse */ IxMapNavigation.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1309
|
-
/** @nocollapse */ IxMapNavigation.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1308
|
+
/** @nocollapse */ IxMapNavigation.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMapNavigation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1309
|
+
/** @nocollapse */ IxMapNavigation.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxMapNavigation, selector: "ix-map-navigation", inputs: { applicationName: "applicationName", hideContextMenu: "hideContextMenu", navigationTitle: "navigationTitle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1310
1310
|
IxMapNavigation = __decorate([
|
|
1311
1311
|
ProxyCmp({
|
|
1312
1312
|
inputs: ['applicationName', 'hideContextMenu', 'navigationTitle'],
|
|
1313
1313
|
methods: ['toggleSidebar', 'openOverlay', 'closeOverlay']
|
|
1314
1314
|
})
|
|
1315
1315
|
], IxMapNavigation);
|
|
1316
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1316
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMapNavigation, decorators: [{
|
|
1317
1317
|
type: Component,
|
|
1318
1318
|
args: [{
|
|
1319
1319
|
selector: 'ix-map-navigation',
|
|
@@ -1331,14 +1331,14 @@ let IxMapNavigationOverlay = class IxMapNavigationOverlay {
|
|
|
1331
1331
|
proxyOutputs(this, this.el, ['closeClick']);
|
|
1332
1332
|
}
|
|
1333
1333
|
};
|
|
1334
|
-
/** @nocollapse */ IxMapNavigationOverlay.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1335
|
-
/** @nocollapse */ IxMapNavigationOverlay.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1334
|
+
/** @nocollapse */ IxMapNavigationOverlay.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMapNavigationOverlay, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1335
|
+
/** @nocollapse */ IxMapNavigationOverlay.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxMapNavigationOverlay, selector: "ix-map-navigation-overlay", inputs: { color: "color", icon: "icon", iconColor: "iconColor", name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1336
1336
|
IxMapNavigationOverlay = __decorate([
|
|
1337
1337
|
ProxyCmp({
|
|
1338
1338
|
inputs: ['color', 'icon', 'iconColor', 'name']
|
|
1339
1339
|
})
|
|
1340
1340
|
], IxMapNavigationOverlay);
|
|
1341
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1341
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMapNavigationOverlay, decorators: [{
|
|
1342
1342
|
type: Component,
|
|
1343
1343
|
args: [{
|
|
1344
1344
|
selector: 'ix-map-navigation-overlay',
|
|
@@ -1356,22 +1356,22 @@ let IxMenu = class IxMenu {
|
|
|
1356
1356
|
proxyOutputs(this, this.el, ['expandChange', 'mapExpandChange']);
|
|
1357
1357
|
}
|
|
1358
1358
|
};
|
|
1359
|
-
/** @nocollapse */ IxMenu.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1360
|
-
/** @nocollapse */ IxMenu.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1359
|
+
/** @nocollapse */ IxMenu.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1360
|
+
/** @nocollapse */ IxMenu.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxMenu, selector: "ix-menu", inputs: { applicationDescription: "applicationDescription", applicationName: "applicationName", enableMapExpand: "enableMapExpand", enableSettings: "enableSettings", enableToggleTheme: "enableToggleTheme", expand: "expand", i18nCollapse: "i18nCollapse", i18nExpand: "i18nExpand", i18nExpandSidebar: "i18nExpandSidebar", i18nLegal: "i18nLegal", i18nSettings: "i18nSettings", i18nToggleTheme: "i18nToggleTheme", maxVisibleMenuItems: "maxVisibleMenuItems", pinned: "pinned", showAbout: "showAbout", showSettings: "showSettings", startExpanded: "startExpanded" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1361
1361
|
IxMenu = __decorate([
|
|
1362
1362
|
ProxyCmp({
|
|
1363
|
-
inputs: ['applicationDescription', 'applicationName', 'enableMapExpand', 'enableSettings', 'enableToggleTheme', 'expand', 'i18nCollapse', 'i18nExpand', 'i18nExpandSidebar', 'i18nLegal', 'i18nSettings', 'i18nToggleTheme', 'maxVisibleMenuItems', 'pinned', 'showAbout', 'showSettings'],
|
|
1363
|
+
inputs: ['applicationDescription', 'applicationName', 'enableMapExpand', 'enableSettings', 'enableToggleTheme', 'expand', 'i18nCollapse', 'i18nExpand', 'i18nExpandSidebar', 'i18nLegal', 'i18nSettings', 'i18nToggleTheme', 'maxVisibleMenuItems', 'pinned', 'showAbout', 'showSettings', 'startExpanded'],
|
|
1364
1364
|
methods: ['toggleMapExpand', 'toggleMenu', 'toggleSettings', 'toggleAbout']
|
|
1365
1365
|
})
|
|
1366
1366
|
], IxMenu);
|
|
1367
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1367
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenu, decorators: [{
|
|
1368
1368
|
type: Component,
|
|
1369
1369
|
args: [{
|
|
1370
1370
|
selector: 'ix-menu',
|
|
1371
1371
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1372
1372
|
template: '<ng-content></ng-content>',
|
|
1373
1373
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1374
|
-
inputs: ['applicationDescription', 'applicationName', 'enableMapExpand', 'enableSettings', 'enableToggleTheme', 'expand', 'i18nCollapse', 'i18nExpand', 'i18nExpandSidebar', 'i18nLegal', 'i18nSettings', 'i18nToggleTheme', 'maxVisibleMenuItems', 'pinned', 'showAbout', 'showSettings'],
|
|
1374
|
+
inputs: ['applicationDescription', 'applicationName', 'enableMapExpand', 'enableSettings', 'enableToggleTheme', 'expand', 'i18nCollapse', 'i18nExpand', 'i18nExpandSidebar', 'i18nLegal', 'i18nSettings', 'i18nToggleTheme', 'maxVisibleMenuItems', 'pinned', 'showAbout', 'showSettings', 'startExpanded'],
|
|
1375
1375
|
}]
|
|
1376
1376
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1377
1377
|
let IxMenuAbout = class IxMenuAbout {
|
|
@@ -1382,14 +1382,14 @@ let IxMenuAbout = class IxMenuAbout {
|
|
|
1382
1382
|
proxyOutputs(this, this.el, ['close']);
|
|
1383
1383
|
}
|
|
1384
1384
|
};
|
|
1385
|
-
/** @nocollapse */ IxMenuAbout.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1386
|
-
/** @nocollapse */ IxMenuAbout.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1385
|
+
/** @nocollapse */ IxMenuAbout.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuAbout, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1386
|
+
/** @nocollapse */ IxMenuAbout.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxMenuAbout, selector: "ix-menu-about", inputs: { activeTabLabel: "activeTabLabel", label: "label", show: "show" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1387
1387
|
IxMenuAbout = __decorate([
|
|
1388
1388
|
ProxyCmp({
|
|
1389
1389
|
inputs: ['activeTabLabel', 'label', 'show']
|
|
1390
1390
|
})
|
|
1391
1391
|
], IxMenuAbout);
|
|
1392
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1392
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuAbout, decorators: [{
|
|
1393
1393
|
type: Component,
|
|
1394
1394
|
args: [{
|
|
1395
1395
|
selector: 'ix-menu-about',
|
|
@@ -1407,14 +1407,14 @@ let IxMenuAboutItem = class IxMenuAboutItem {
|
|
|
1407
1407
|
proxyOutputs(this, this.el, ['labelChange']);
|
|
1408
1408
|
}
|
|
1409
1409
|
};
|
|
1410
|
-
/** @nocollapse */ IxMenuAboutItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1411
|
-
/** @nocollapse */ IxMenuAboutItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1410
|
+
/** @nocollapse */ IxMenuAboutItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuAboutItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1411
|
+
/** @nocollapse */ IxMenuAboutItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxMenuAboutItem, selector: "ix-menu-about-item", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1412
1412
|
IxMenuAboutItem = __decorate([
|
|
1413
1413
|
ProxyCmp({
|
|
1414
1414
|
inputs: ['label']
|
|
1415
1415
|
})
|
|
1416
1416
|
], IxMenuAboutItem);
|
|
1417
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1417
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuAboutItem, decorators: [{
|
|
1418
1418
|
type: Component,
|
|
1419
1419
|
args: [{
|
|
1420
1420
|
selector: 'ix-menu-about-item',
|
|
@@ -1432,14 +1432,14 @@ let IxMenuAboutNews = class IxMenuAboutNews {
|
|
|
1432
1432
|
proxyOutputs(this, this.el, ['showMore', 'closePopover']);
|
|
1433
1433
|
}
|
|
1434
1434
|
};
|
|
1435
|
-
/** @nocollapse */ IxMenuAboutNews.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1436
|
-
/** @nocollapse */ IxMenuAboutNews.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1435
|
+
/** @nocollapse */ IxMenuAboutNews.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuAboutNews, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1436
|
+
/** @nocollapse */ IxMenuAboutNews.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxMenuAboutNews, selector: "ix-menu-about-news", inputs: { aboutItemLabel: "aboutItemLabel", expanded: "expanded", i18nShowMore: "i18nShowMore", label: "label", offsetBottom: "offsetBottom", show: "show" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1437
1437
|
IxMenuAboutNews = __decorate([
|
|
1438
1438
|
ProxyCmp({
|
|
1439
1439
|
inputs: ['aboutItemLabel', 'expanded', 'i18nShowMore', 'label', 'offsetBottom', 'show']
|
|
1440
1440
|
})
|
|
1441
1441
|
], IxMenuAboutNews);
|
|
1442
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1442
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuAboutNews, decorators: [{
|
|
1443
1443
|
type: Component,
|
|
1444
1444
|
args: [{
|
|
1445
1445
|
selector: 'ix-menu-about-news',
|
|
@@ -1457,14 +1457,14 @@ let IxMenuAvatar = class IxMenuAvatar {
|
|
|
1457
1457
|
proxyOutputs(this, this.el, ['logoutClick']);
|
|
1458
1458
|
}
|
|
1459
1459
|
};
|
|
1460
|
-
/** @nocollapse */ IxMenuAvatar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1461
|
-
/** @nocollapse */ IxMenuAvatar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1460
|
+
/** @nocollapse */ IxMenuAvatar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1461
|
+
/** @nocollapse */ IxMenuAvatar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxMenuAvatar, selector: "ix-menu-avatar", inputs: { bottom: "bottom", i18nLogout: "i18nLogout", image: "image", initials: "initials", showLogoutButton: "showLogoutButton", top: "top" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1462
1462
|
IxMenuAvatar = __decorate([
|
|
1463
1463
|
ProxyCmp({
|
|
1464
1464
|
inputs: ['bottom', 'i18nLogout', 'image', 'initials', 'showLogoutButton', 'top']
|
|
1465
1465
|
})
|
|
1466
1466
|
], IxMenuAvatar);
|
|
1467
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1467
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuAvatar, decorators: [{
|
|
1468
1468
|
type: Component,
|
|
1469
1469
|
args: [{
|
|
1470
1470
|
selector: 'ix-menu-avatar',
|
|
@@ -1482,14 +1482,14 @@ let IxMenuAvatarItem = class IxMenuAvatarItem {
|
|
|
1482
1482
|
proxyOutputs(this, this.el, ['itemClick']);
|
|
1483
1483
|
}
|
|
1484
1484
|
};
|
|
1485
|
-
/** @nocollapse */ IxMenuAvatarItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1486
|
-
/** @nocollapse */ IxMenuAvatarItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1485
|
+
/** @nocollapse */ IxMenuAvatarItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuAvatarItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1486
|
+
/** @nocollapse */ IxMenuAvatarItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxMenuAvatarItem, selector: "ix-menu-avatar-item", inputs: { icon: "icon", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1487
1487
|
IxMenuAvatarItem = __decorate([
|
|
1488
1488
|
ProxyCmp({
|
|
1489
1489
|
inputs: ['icon', 'label']
|
|
1490
1490
|
})
|
|
1491
1491
|
], IxMenuAvatarItem);
|
|
1492
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1492
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuAvatarItem, decorators: [{
|
|
1493
1493
|
type: Component,
|
|
1494
1494
|
args: [{
|
|
1495
1495
|
selector: 'ix-menu-avatar-item',
|
|
@@ -1506,14 +1506,14 @@ let IxMenuCategory = class IxMenuCategory {
|
|
|
1506
1506
|
this.el = r.nativeElement;
|
|
1507
1507
|
}
|
|
1508
1508
|
};
|
|
1509
|
-
/** @nocollapse */ IxMenuCategory.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1510
|
-
/** @nocollapse */ IxMenuCategory.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1509
|
+
/** @nocollapse */ IxMenuCategory.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuCategory, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1510
|
+
/** @nocollapse */ IxMenuCategory.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxMenuCategory, selector: "ix-menu-category", inputs: { icon: "icon", label: "label", notifications: "notifications" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1511
1511
|
IxMenuCategory = __decorate([
|
|
1512
1512
|
ProxyCmp({
|
|
1513
1513
|
inputs: ['icon', 'label', 'notifications']
|
|
1514
1514
|
})
|
|
1515
1515
|
], IxMenuCategory);
|
|
1516
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1516
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuCategory, decorators: [{
|
|
1517
1517
|
type: Component,
|
|
1518
1518
|
args: [{
|
|
1519
1519
|
selector: 'ix-menu-category',
|
|
@@ -1530,21 +1530,21 @@ let IxMenuItem = class IxMenuItem {
|
|
|
1530
1530
|
this.el = r.nativeElement;
|
|
1531
1531
|
}
|
|
1532
1532
|
};
|
|
1533
|
-
/** @nocollapse */ IxMenuItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1534
|
-
/** @nocollapse */ IxMenuItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1533
|
+
/** @nocollapse */ IxMenuItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1534
|
+
/** @nocollapse */ IxMenuItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxMenuItem, selector: "ix-menu-item", inputs: { active: "active", bottom: "bottom", disabled: "disabled", home: "home", icon: "icon", label: "label", notifications: "notifications", tabIcon: "tabIcon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1535
1535
|
IxMenuItem = __decorate([
|
|
1536
1536
|
ProxyCmp({
|
|
1537
|
-
inputs: ['active', 'bottom', 'disabled', 'home', 'icon', 'notifications', 'tabIcon']
|
|
1537
|
+
inputs: ['active', 'bottom', 'disabled', 'home', 'icon', 'label', 'notifications', 'tabIcon']
|
|
1538
1538
|
})
|
|
1539
1539
|
], IxMenuItem);
|
|
1540
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1540
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuItem, decorators: [{
|
|
1541
1541
|
type: Component,
|
|
1542
1542
|
args: [{
|
|
1543
1543
|
selector: 'ix-menu-item',
|
|
1544
1544
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1545
1545
|
template: '<ng-content></ng-content>',
|
|
1546
1546
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1547
|
-
inputs: ['active', 'bottom', 'disabled', 'home', 'icon', 'notifications', 'tabIcon'],
|
|
1547
|
+
inputs: ['active', 'bottom', 'disabled', 'home', 'icon', 'label', 'notifications', 'tabIcon'],
|
|
1548
1548
|
}]
|
|
1549
1549
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1550
1550
|
let IxMenuSettings = class IxMenuSettings {
|
|
@@ -1555,14 +1555,14 @@ let IxMenuSettings = class IxMenuSettings {
|
|
|
1555
1555
|
proxyOutputs(this, this.el, ['close']);
|
|
1556
1556
|
}
|
|
1557
1557
|
};
|
|
1558
|
-
/** @nocollapse */ IxMenuSettings.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1559
|
-
/** @nocollapse */ IxMenuSettings.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1558
|
+
/** @nocollapse */ IxMenuSettings.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuSettings, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1559
|
+
/** @nocollapse */ IxMenuSettings.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxMenuSettings, selector: "ix-menu-settings", inputs: { activeTabLabel: "activeTabLabel", label: "label", show: "show" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1560
1560
|
IxMenuSettings = __decorate([
|
|
1561
1561
|
ProxyCmp({
|
|
1562
1562
|
inputs: ['activeTabLabel', 'label', 'show']
|
|
1563
1563
|
})
|
|
1564
1564
|
], IxMenuSettings);
|
|
1565
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1565
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuSettings, decorators: [{
|
|
1566
1566
|
type: Component,
|
|
1567
1567
|
args: [{
|
|
1568
1568
|
selector: 'ix-menu-settings',
|
|
@@ -1580,14 +1580,14 @@ let IxMenuSettingsItem = class IxMenuSettingsItem {
|
|
|
1580
1580
|
proxyOutputs(this, this.el, ['labelChange']);
|
|
1581
1581
|
}
|
|
1582
1582
|
};
|
|
1583
|
-
/** @nocollapse */ IxMenuSettingsItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1584
|
-
/** @nocollapse */ IxMenuSettingsItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1583
|
+
/** @nocollapse */ IxMenuSettingsItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuSettingsItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1584
|
+
/** @nocollapse */ IxMenuSettingsItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxMenuSettingsItem, selector: "ix-menu-settings-item", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1585
1585
|
IxMenuSettingsItem = __decorate([
|
|
1586
1586
|
ProxyCmp({
|
|
1587
1587
|
inputs: ['label']
|
|
1588
1588
|
})
|
|
1589
1589
|
], IxMenuSettingsItem);
|
|
1590
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1590
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMenuSettingsItem, decorators: [{
|
|
1591
1591
|
type: Component,
|
|
1592
1592
|
args: [{
|
|
1593
1593
|
selector: 'ix-menu-settings-item',
|
|
@@ -1605,14 +1605,14 @@ let IxMessageBar = class IxMessageBar {
|
|
|
1605
1605
|
proxyOutputs(this, this.el, ['closedChange']);
|
|
1606
1606
|
}
|
|
1607
1607
|
};
|
|
1608
|
-
/** @nocollapse */ IxMessageBar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1609
|
-
/** @nocollapse */ IxMessageBar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1608
|
+
/** @nocollapse */ IxMessageBar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMessageBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1609
|
+
/** @nocollapse */ IxMessageBar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxMessageBar, selector: "ix-message-bar", inputs: { dismissible: "dismissible", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1610
1610
|
IxMessageBar = __decorate([
|
|
1611
1611
|
ProxyCmp({
|
|
1612
1612
|
inputs: ['dismissible', 'type']
|
|
1613
1613
|
})
|
|
1614
1614
|
], IxMessageBar);
|
|
1615
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1615
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxMessageBar, decorators: [{
|
|
1616
1616
|
type: Component,
|
|
1617
1617
|
args: [{
|
|
1618
1618
|
selector: 'ix-message-bar',
|
|
@@ -1630,15 +1630,15 @@ let IxModal = class IxModal {
|
|
|
1630
1630
|
proxyOutputs(this, this.el, ['dialogClose', 'dialogDismiss']);
|
|
1631
1631
|
}
|
|
1632
1632
|
};
|
|
1633
|
-
/** @nocollapse */ IxModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1634
|
-
/** @nocollapse */ IxModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1633
|
+
/** @nocollapse */ IxModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1634
|
+
/** @nocollapse */ IxModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxModal, selector: "ix-modal", inputs: { animation: "animation", backdrop: "backdrop", beforeDismiss: "beforeDismiss", centered: "centered", closeOnBackdropClick: "closeOnBackdropClick", closeOnEscape: "closeOnEscape", keyboard: "keyboard", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1635
1635
|
IxModal = __decorate([
|
|
1636
1636
|
ProxyCmp({
|
|
1637
1637
|
inputs: ['animation', 'backdrop', 'beforeDismiss', 'centered', 'closeOnBackdropClick', 'closeOnEscape', 'keyboard', 'size'],
|
|
1638
1638
|
methods: ['showModal', 'dismissModal', 'closeModal']
|
|
1639
1639
|
})
|
|
1640
1640
|
], IxModal);
|
|
1641
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1641
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModal, decorators: [{
|
|
1642
1642
|
type: Component,
|
|
1643
1643
|
args: [{
|
|
1644
1644
|
selector: 'ix-modal',
|
|
@@ -1655,12 +1655,12 @@ let IxModalContent = class IxModalContent {
|
|
|
1655
1655
|
this.el = r.nativeElement;
|
|
1656
1656
|
}
|
|
1657
1657
|
};
|
|
1658
|
-
/** @nocollapse */ IxModalContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1659
|
-
/** @nocollapse */ IxModalContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1658
|
+
/** @nocollapse */ IxModalContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModalContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1659
|
+
/** @nocollapse */ IxModalContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxModalContent, selector: "ix-modal-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1660
1660
|
IxModalContent = __decorate([
|
|
1661
1661
|
ProxyCmp({})
|
|
1662
1662
|
], IxModalContent);
|
|
1663
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1663
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModalContent, decorators: [{
|
|
1664
1664
|
type: Component,
|
|
1665
1665
|
args: [{
|
|
1666
1666
|
selector: 'ix-modal-content',
|
|
@@ -1677,12 +1677,12 @@ let IxModalExample = class IxModalExample {
|
|
|
1677
1677
|
this.el = r.nativeElement;
|
|
1678
1678
|
}
|
|
1679
1679
|
};
|
|
1680
|
-
/** @nocollapse */ IxModalExample.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1681
|
-
/** @nocollapse */ IxModalExample.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1680
|
+
/** @nocollapse */ IxModalExample.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModalExample, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1681
|
+
/** @nocollapse */ IxModalExample.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxModalExample, selector: "ix-modal-example", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1682
1682
|
IxModalExample = __decorate([
|
|
1683
1683
|
ProxyCmp({})
|
|
1684
1684
|
], IxModalExample);
|
|
1685
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1685
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModalExample, decorators: [{
|
|
1686
1686
|
type: Component,
|
|
1687
1687
|
args: [{
|
|
1688
1688
|
selector: 'ix-modal-example',
|
|
@@ -1699,12 +1699,12 @@ let IxModalFooter = class IxModalFooter {
|
|
|
1699
1699
|
this.el = r.nativeElement;
|
|
1700
1700
|
}
|
|
1701
1701
|
};
|
|
1702
|
-
/** @nocollapse */ IxModalFooter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1703
|
-
/** @nocollapse */ IxModalFooter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1702
|
+
/** @nocollapse */ IxModalFooter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModalFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1703
|
+
/** @nocollapse */ IxModalFooter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxModalFooter, selector: "ix-modal-footer", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1704
1704
|
IxModalFooter = __decorate([
|
|
1705
1705
|
ProxyCmp({})
|
|
1706
1706
|
], IxModalFooter);
|
|
1707
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1707
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModalFooter, decorators: [{
|
|
1708
1708
|
type: Component,
|
|
1709
1709
|
args: [{
|
|
1710
1710
|
selector: 'ix-modal-footer',
|
|
@@ -1722,14 +1722,14 @@ let IxModalHeader = class IxModalHeader {
|
|
|
1722
1722
|
proxyOutputs(this, this.el, ['closeClick']);
|
|
1723
1723
|
}
|
|
1724
1724
|
};
|
|
1725
|
-
/** @nocollapse */ IxModalHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1726
|
-
/** @nocollapse */ IxModalHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1725
|
+
/** @nocollapse */ IxModalHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModalHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1726
|
+
/** @nocollapse */ IxModalHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxModalHeader, selector: "ix-modal-header", inputs: { hideClose: "hideClose", icon: "icon", iconColor: "iconColor" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1727
1727
|
IxModalHeader = __decorate([
|
|
1728
1728
|
ProxyCmp({
|
|
1729
1729
|
inputs: ['hideClose', 'icon', 'iconColor']
|
|
1730
1730
|
})
|
|
1731
1731
|
], IxModalHeader);
|
|
1732
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1732
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModalHeader, decorators: [{
|
|
1733
1733
|
type: Component,
|
|
1734
1734
|
args: [{
|
|
1735
1735
|
selector: 'ix-modal-header',
|
|
@@ -1747,14 +1747,14 @@ let IxPagination = class IxPagination {
|
|
|
1747
1747
|
proxyOutputs(this, this.el, ['pageSelected', 'itemCountChanged']);
|
|
1748
1748
|
}
|
|
1749
1749
|
};
|
|
1750
|
-
/** @nocollapse */ IxPagination.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1751
|
-
/** @nocollapse */ IxPagination.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1750
|
+
/** @nocollapse */ IxPagination.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1751
|
+
/** @nocollapse */ IxPagination.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxPagination, selector: "ix-pagination", inputs: { advanced: "advanced", count: "count", i18nItems: "i18nItems", i18nOf: "i18nOf", i18nPage: "i18nPage", itemCount: "itemCount", selectedPage: "selectedPage", showItemCount: "showItemCount" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1752
1752
|
IxPagination = __decorate([
|
|
1753
1753
|
ProxyCmp({
|
|
1754
1754
|
inputs: ['advanced', 'count', 'i18nItems', 'i18nOf', 'i18nPage', 'itemCount', 'selectedPage', 'showItemCount']
|
|
1755
1755
|
})
|
|
1756
1756
|
], IxPagination);
|
|
1757
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1757
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxPagination, decorators: [{
|
|
1758
1758
|
type: Component,
|
|
1759
1759
|
args: [{
|
|
1760
1760
|
selector: 'ix-pagination',
|
|
@@ -1772,14 +1772,14 @@ let IxPane = class IxPane {
|
|
|
1772
1772
|
proxyOutputs(this, this.el, ['expandedChanged', 'variantChanged', 'borderlessChanged']);
|
|
1773
1773
|
}
|
|
1774
1774
|
};
|
|
1775
|
-
/** @nocollapse */ IxPane.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1776
|
-
/** @nocollapse */ IxPane.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1775
|
+
/** @nocollapse */ IxPane.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxPane, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1776
|
+
/** @nocollapse */ IxPane.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxPane, selector: "ix-pane", inputs: { borderless: "borderless", composition: "composition", expanded: "expanded", heading: "heading", hideOnCollapse: "hideOnCollapse", icon: "icon", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1777
1777
|
IxPane = __decorate([
|
|
1778
1778
|
ProxyCmp({
|
|
1779
1779
|
inputs: ['borderless', 'composition', 'expanded', 'heading', 'hideOnCollapse', 'icon', 'size', 'variant']
|
|
1780
1780
|
})
|
|
1781
1781
|
], IxPane);
|
|
1782
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1782
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxPane, decorators: [{
|
|
1783
1783
|
type: Component,
|
|
1784
1784
|
args: [{
|
|
1785
1785
|
selector: 'ix-pane',
|
|
@@ -1796,14 +1796,14 @@ let IxPaneLayout = class IxPaneLayout {
|
|
|
1796
1796
|
this.el = r.nativeElement;
|
|
1797
1797
|
}
|
|
1798
1798
|
};
|
|
1799
|
-
/** @nocollapse */ IxPaneLayout.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1800
|
-
/** @nocollapse */ IxPaneLayout.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1799
|
+
/** @nocollapse */ IxPaneLayout.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxPaneLayout, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1800
|
+
/** @nocollapse */ IxPaneLayout.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxPaneLayout, selector: "ix-pane-layout", inputs: { borderless: "borderless", layout: "layout", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1801
1801
|
IxPaneLayout = __decorate([
|
|
1802
1802
|
ProxyCmp({
|
|
1803
1803
|
inputs: ['borderless', 'layout', 'variant']
|
|
1804
1804
|
})
|
|
1805
1805
|
], IxPaneLayout);
|
|
1806
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1806
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxPaneLayout, decorators: [{
|
|
1807
1807
|
type: Component,
|
|
1808
1808
|
args: [{
|
|
1809
1809
|
selector: 'ix-pane-layout',
|
|
@@ -1820,14 +1820,14 @@ let IxPill = class IxPill {
|
|
|
1820
1820
|
this.el = r.nativeElement;
|
|
1821
1821
|
}
|
|
1822
1822
|
};
|
|
1823
|
-
/** @nocollapse */ IxPill.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1824
|
-
/** @nocollapse */ IxPill.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1823
|
+
/** @nocollapse */ IxPill.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxPill, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1824
|
+
/** @nocollapse */ IxPill.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxPill, selector: "ix-pill", inputs: { alignLeft: "alignLeft", background: "background", color: "color", icon: "icon", outline: "outline", pillColor: "pillColor", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1825
1825
|
IxPill = __decorate([
|
|
1826
1826
|
ProxyCmp({
|
|
1827
1827
|
inputs: ['alignLeft', 'background', 'color', 'icon', 'outline', 'pillColor', 'variant']
|
|
1828
1828
|
})
|
|
1829
1829
|
], IxPill);
|
|
1830
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1830
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxPill, decorators: [{
|
|
1831
1831
|
type: Component,
|
|
1832
1832
|
args: [{
|
|
1833
1833
|
selector: 'ix-pill',
|
|
@@ -1844,14 +1844,14 @@ let IxPushCard = class IxPushCard {
|
|
|
1844
1844
|
this.el = r.nativeElement;
|
|
1845
1845
|
}
|
|
1846
1846
|
};
|
|
1847
|
-
/** @nocollapse */ IxPushCard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1848
|
-
/** @nocollapse */ IxPushCard.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1847
|
+
/** @nocollapse */ IxPushCard.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxPushCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1848
|
+
/** @nocollapse */ IxPushCard.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxPushCard, selector: "ix-push-card", inputs: { collapse: "collapse", heading: "heading", icon: "icon", notification: "notification", subheading: "subheading", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1849
1849
|
IxPushCard = __decorate([
|
|
1850
1850
|
ProxyCmp({
|
|
1851
1851
|
inputs: ['collapse', 'heading', 'icon', 'notification', 'subheading', 'variant']
|
|
1852
1852
|
})
|
|
1853
1853
|
], IxPushCard);
|
|
1854
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1854
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxPushCard, decorators: [{
|
|
1855
1855
|
type: Component,
|
|
1856
1856
|
args: [{
|
|
1857
1857
|
selector: 'ix-push-card',
|
|
@@ -1868,12 +1868,12 @@ let IxRow = class IxRow {
|
|
|
1868
1868
|
this.el = r.nativeElement;
|
|
1869
1869
|
}
|
|
1870
1870
|
};
|
|
1871
|
-
/** @nocollapse */ IxRow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1872
|
-
/** @nocollapse */ IxRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1871
|
+
/** @nocollapse */ IxRow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1872
|
+
/** @nocollapse */ IxRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxRow, selector: "ix-row", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1873
1873
|
IxRow = __decorate([
|
|
1874
1874
|
ProxyCmp({})
|
|
1875
1875
|
], IxRow);
|
|
1876
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1876
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxRow, decorators: [{
|
|
1877
1877
|
type: Component,
|
|
1878
1878
|
args: [{
|
|
1879
1879
|
selector: 'ix-row',
|
|
@@ -1891,14 +1891,14 @@ let IxSelect = class IxSelect {
|
|
|
1891
1891
|
proxyOutputs(this, this.el, ['valueChange', 'itemSelectionChange', 'inputChange', 'addItem']);
|
|
1892
1892
|
}
|
|
1893
1893
|
};
|
|
1894
|
-
/** @nocollapse */ IxSelect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1895
|
-
/** @nocollapse */ IxSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1894
|
+
/** @nocollapse */ IxSelect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1895
|
+
/** @nocollapse */ IxSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxSelect, selector: "ix-select", inputs: { allowClear: "allowClear", disabled: "disabled", editable: "editable", hideListHeader: "hideListHeader", i18nNoMatches: "i18nNoMatches", i18nPlaceholder: "i18nPlaceholder", i18nPlaceholderEditable: "i18nPlaceholderEditable", i18nSelectListHeader: "i18nSelectListHeader", mode: "mode", readonly: "readonly", selectedIndices: "selectedIndices", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1896
1896
|
IxSelect = __decorate([
|
|
1897
1897
|
ProxyCmp({
|
|
1898
1898
|
inputs: ['allowClear', 'disabled', 'editable', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'mode', 'readonly', 'selectedIndices', 'value']
|
|
1899
1899
|
})
|
|
1900
1900
|
], IxSelect);
|
|
1901
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1901
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSelect, decorators: [{
|
|
1902
1902
|
type: Component,
|
|
1903
1903
|
args: [{
|
|
1904
1904
|
selector: 'ix-select',
|
|
@@ -1916,14 +1916,14 @@ let IxSelectItem = class IxSelectItem {
|
|
|
1916
1916
|
proxyOutputs(this, this.el, ['itemClick']);
|
|
1917
1917
|
}
|
|
1918
1918
|
};
|
|
1919
|
-
/** @nocollapse */ IxSelectItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1920
|
-
/** @nocollapse */ IxSelectItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1919
|
+
/** @nocollapse */ IxSelectItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSelectItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1920
|
+
/** @nocollapse */ IxSelectItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxSelectItem, selector: "ix-select-item", inputs: { label: "label", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1921
1921
|
IxSelectItem = __decorate([
|
|
1922
1922
|
ProxyCmp({
|
|
1923
1923
|
inputs: ['label', 'selected', 'value']
|
|
1924
1924
|
})
|
|
1925
1925
|
], IxSelectItem);
|
|
1926
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1926
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSelectItem, decorators: [{
|
|
1927
1927
|
type: Component,
|
|
1928
1928
|
args: [{
|
|
1929
1929
|
selector: 'ix-select-item',
|
|
@@ -1941,14 +1941,14 @@ let IxSlider = class IxSlider {
|
|
|
1941
1941
|
proxyOutputs(this, this.el, ['valueChange']);
|
|
1942
1942
|
}
|
|
1943
1943
|
};
|
|
1944
|
-
/** @nocollapse */ IxSlider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1945
|
-
/** @nocollapse */ IxSlider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1944
|
+
/** @nocollapse */ IxSlider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1945
|
+
/** @nocollapse */ IxSlider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxSlider, selector: "ix-slider", inputs: { disabled: "disabled", error: "error", marker: "marker", max: "max", min: "min", step: "step", trace: "trace", traceReference: "traceReference", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1946
1946
|
IxSlider = __decorate([
|
|
1947
1947
|
ProxyCmp({
|
|
1948
1948
|
inputs: ['disabled', 'error', 'marker', 'max', 'min', 'step', 'trace', 'traceReference', 'value']
|
|
1949
1949
|
})
|
|
1950
1950
|
], IxSlider);
|
|
1951
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1951
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSlider, decorators: [{
|
|
1952
1952
|
type: Component,
|
|
1953
1953
|
args: [{
|
|
1954
1954
|
selector: 'ix-slider',
|
|
@@ -1965,14 +1965,14 @@ let IxSpinner = class IxSpinner {
|
|
|
1965
1965
|
this.el = r.nativeElement;
|
|
1966
1966
|
}
|
|
1967
1967
|
};
|
|
1968
|
-
/** @nocollapse */ IxSpinner.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1969
|
-
/** @nocollapse */ IxSpinner.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1968
|
+
/** @nocollapse */ IxSpinner.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1969
|
+
/** @nocollapse */ IxSpinner.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxSpinner, selector: "ix-spinner", inputs: { size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1970
1970
|
IxSpinner = __decorate([
|
|
1971
1971
|
ProxyCmp({
|
|
1972
1972
|
inputs: ['size', 'variant']
|
|
1973
1973
|
})
|
|
1974
1974
|
], IxSpinner);
|
|
1975
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
1975
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSpinner, decorators: [{
|
|
1976
1976
|
type: Component,
|
|
1977
1977
|
args: [{
|
|
1978
1978
|
selector: 'ix-spinner',
|
|
@@ -1990,14 +1990,14 @@ let IxSplitButton = class IxSplitButton {
|
|
|
1990
1990
|
proxyOutputs(this, this.el, ['buttonClick']);
|
|
1991
1991
|
}
|
|
1992
1992
|
};
|
|
1993
|
-
/** @nocollapse */ IxSplitButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
1994
|
-
/** @nocollapse */ IxSplitButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
1993
|
+
/** @nocollapse */ IxSplitButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSplitButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1994
|
+
/** @nocollapse */ IxSplitButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxSplitButton, selector: "ix-split-button", inputs: { disabled: "disabled", ghost: "ghost", icon: "icon", label: "label", outline: "outline", placement: "placement", splitIcon: "splitIcon", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1995
1995
|
IxSplitButton = __decorate([
|
|
1996
1996
|
ProxyCmp({
|
|
1997
1997
|
inputs: ['disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'splitIcon', 'variant']
|
|
1998
1998
|
})
|
|
1999
1999
|
], IxSplitButton);
|
|
2000
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
2000
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSplitButton, decorators: [{
|
|
2001
2001
|
type: Component,
|
|
2002
2002
|
args: [{
|
|
2003
2003
|
selector: 'ix-split-button',
|
|
@@ -2015,14 +2015,14 @@ let IxSplitButtonItem = class IxSplitButtonItem {
|
|
|
2015
2015
|
proxyOutputs(this, this.el, ['itemClick']);
|
|
2016
2016
|
}
|
|
2017
2017
|
};
|
|
2018
|
-
/** @nocollapse */ IxSplitButtonItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
2019
|
-
/** @nocollapse */ IxSplitButtonItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
2018
|
+
/** @nocollapse */ IxSplitButtonItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSplitButtonItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2019
|
+
/** @nocollapse */ IxSplitButtonItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxSplitButtonItem, selector: "ix-split-button-item", inputs: { icon: "icon", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2020
2020
|
IxSplitButtonItem = __decorate([
|
|
2021
2021
|
ProxyCmp({
|
|
2022
2022
|
inputs: ['icon', 'label']
|
|
2023
2023
|
})
|
|
2024
2024
|
], IxSplitButtonItem);
|
|
2025
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
2025
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxSplitButtonItem, decorators: [{
|
|
2026
2026
|
type: Component,
|
|
2027
2027
|
args: [{
|
|
2028
2028
|
selector: 'ix-split-button-item',
|
|
@@ -2040,14 +2040,14 @@ let IxTabItem = class IxTabItem {
|
|
|
2040
2040
|
proxyOutputs(this, this.el, ['tabClick']);
|
|
2041
2041
|
}
|
|
2042
2042
|
};
|
|
2043
|
-
/** @nocollapse */ IxTabItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
2044
|
-
/** @nocollapse */ IxTabItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
2043
|
+
/** @nocollapse */ IxTabItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTabItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2044
|
+
/** @nocollapse */ IxTabItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxTabItem, selector: "ix-tab-item", inputs: { counter: "counter", disabled: "disabled", icon: "icon", layout: "layout", placement: "placement", rounded: "rounded", selected: "selected", small: "small" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2045
2045
|
IxTabItem = __decorate([
|
|
2046
2046
|
ProxyCmp({
|
|
2047
2047
|
inputs: ['counter', 'disabled', 'icon', 'layout', 'placement', 'rounded', 'selected', 'small']
|
|
2048
2048
|
})
|
|
2049
2049
|
], IxTabItem);
|
|
2050
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
2050
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTabItem, decorators: [{
|
|
2051
2051
|
type: Component,
|
|
2052
2052
|
args: [{
|
|
2053
2053
|
selector: 'ix-tab-item',
|
|
@@ -2065,14 +2065,14 @@ let IxTabs = class IxTabs {
|
|
|
2065
2065
|
proxyOutputs(this, this.el, ['selectedChange']);
|
|
2066
2066
|
}
|
|
2067
2067
|
};
|
|
2068
|
-
/** @nocollapse */ IxTabs.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
2069
|
-
/** @nocollapse */ IxTabs.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
2068
|
+
/** @nocollapse */ IxTabs.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTabs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2069
|
+
/** @nocollapse */ IxTabs.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxTabs, selector: "ix-tabs", inputs: { layout: "layout", placement: "placement", rounded: "rounded", selected: "selected", small: "small" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2070
2070
|
IxTabs = __decorate([
|
|
2071
2071
|
ProxyCmp({
|
|
2072
2072
|
inputs: ['layout', 'placement', 'rounded', 'selected', 'small']
|
|
2073
2073
|
})
|
|
2074
2074
|
], IxTabs);
|
|
2075
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
2075
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTabs, decorators: [{
|
|
2076
2076
|
type: Component,
|
|
2077
2077
|
args: [{
|
|
2078
2078
|
selector: 'ix-tabs',
|
|
@@ -2089,14 +2089,14 @@ let IxTile = class IxTile {
|
|
|
2089
2089
|
this.el = r.nativeElement;
|
|
2090
2090
|
}
|
|
2091
2091
|
};
|
|
2092
|
-
/** @nocollapse */ IxTile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
2093
|
-
/** @nocollapse */ IxTile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
2092
|
+
/** @nocollapse */ IxTile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2093
|
+
/** @nocollapse */ IxTile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxTile, selector: "ix-tile", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2094
2094
|
IxTile = __decorate([
|
|
2095
2095
|
ProxyCmp({
|
|
2096
2096
|
inputs: ['size']
|
|
2097
2097
|
})
|
|
2098
2098
|
], IxTile);
|
|
2099
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
2099
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTile, decorators: [{
|
|
2100
2100
|
type: Component,
|
|
2101
2101
|
args: [{
|
|
2102
2102
|
selector: 'ix-tile',
|
|
@@ -2114,15 +2114,15 @@ let IxTimePicker = class IxTimePicker {
|
|
|
2114
2114
|
proxyOutputs(this, this.el, ['timeSelect', 'done', 'timeChange']);
|
|
2115
2115
|
}
|
|
2116
2116
|
};
|
|
2117
|
-
/** @nocollapse */ IxTimePicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
2118
|
-
/** @nocollapse */ IxTimePicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
2117
|
+
/** @nocollapse */ IxTimePicker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTimePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2118
|
+
/** @nocollapse */ IxTimePicker.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxTimePicker, selector: "ix-time-picker", inputs: { corners: "corners", format: "format", individual: "individual", showHour: "showHour", showMinutes: "showMinutes", showSeconds: "showSeconds", showTimeReference: "showTimeReference", standaloneAppearance: "standaloneAppearance", textSelectTime: "textSelectTime", textTime: "textTime", time: "time", timeReference: "timeReference" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2119
2119
|
IxTimePicker = __decorate([
|
|
2120
2120
|
ProxyCmp({
|
|
2121
2121
|
inputs: ['corners', 'format', 'individual', 'showHour', 'showMinutes', 'showSeconds', 'showTimeReference', 'standaloneAppearance', 'textSelectTime', 'textTime', 'time', 'timeReference'],
|
|
2122
2122
|
methods: ['getCurrentTime']
|
|
2123
2123
|
})
|
|
2124
2124
|
], IxTimePicker);
|
|
2125
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
2125
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTimePicker, decorators: [{
|
|
2126
2126
|
type: Component,
|
|
2127
2127
|
args: [{
|
|
2128
2128
|
selector: 'ix-time-picker',
|
|
@@ -2140,14 +2140,14 @@ let IxToast = class IxToast {
|
|
|
2140
2140
|
proxyOutputs(this, this.el, ['closeToast']);
|
|
2141
2141
|
}
|
|
2142
2142
|
};
|
|
2143
|
-
/** @nocollapse */ IxToast.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
2144
|
-
/** @nocollapse */ IxToast.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
2143
|
+
/** @nocollapse */ IxToast.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2144
|
+
/** @nocollapse */ IxToast.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxToast, selector: "ix-toast", inputs: { autoClose: "autoClose", autoCloseDelay: "autoCloseDelay", icon: "icon", iconColor: "iconColor", toastTitle: "toastTitle", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2145
2145
|
IxToast = __decorate([
|
|
2146
2146
|
ProxyCmp({
|
|
2147
2147
|
inputs: ['autoClose', 'autoCloseDelay', 'icon', 'iconColor', 'toastTitle', 'type']
|
|
2148
2148
|
})
|
|
2149
2149
|
], IxToast);
|
|
2150
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
2150
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxToast, decorators: [{
|
|
2151
2151
|
type: Component,
|
|
2152
2152
|
args: [{
|
|
2153
2153
|
selector: 'ix-toast',
|
|
@@ -2164,15 +2164,15 @@ let IxToastContainer = class IxToastContainer {
|
|
|
2164
2164
|
this.el = r.nativeElement;
|
|
2165
2165
|
}
|
|
2166
2166
|
};
|
|
2167
|
-
/** @nocollapse */ IxToastContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
2168
|
-
/** @nocollapse */ IxToastContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
2167
|
+
/** @nocollapse */ IxToastContainer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxToastContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2168
|
+
/** @nocollapse */ IxToastContainer.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxToastContainer, selector: "ix-toast-container", inputs: { containerClass: "containerClass", containerId: "containerId", position: "position" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2169
2169
|
IxToastContainer = __decorate([
|
|
2170
2170
|
ProxyCmp({
|
|
2171
2171
|
inputs: ['containerClass', 'containerId', 'position'],
|
|
2172
2172
|
methods: ['showToast']
|
|
2173
2173
|
})
|
|
2174
2174
|
], IxToastContainer);
|
|
2175
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
2175
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxToastContainer, decorators: [{
|
|
2176
2176
|
type: Component,
|
|
2177
2177
|
args: [{
|
|
2178
2178
|
selector: 'ix-toast-container',
|
|
@@ -2190,14 +2190,14 @@ let IxToggle = class IxToggle {
|
|
|
2190
2190
|
proxyOutputs(this, this.el, ['checkedChange']);
|
|
2191
2191
|
}
|
|
2192
2192
|
};
|
|
2193
|
-
/** @nocollapse */ IxToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
2194
|
-
/** @nocollapse */ IxToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
2193
|
+
/** @nocollapse */ IxToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2194
|
+
/** @nocollapse */ IxToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxToggle, selector: "ix-toggle", inputs: { checked: "checked", disabled: "disabled", hideText: "hideText", indeterminate: "indeterminate", textIndeterminate: "textIndeterminate", textOff: "textOff", textOn: "textOn" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2195
2195
|
IxToggle = __decorate([
|
|
2196
2196
|
ProxyCmp({
|
|
2197
2197
|
inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'textIndeterminate', 'textOff', 'textOn']
|
|
2198
2198
|
})
|
|
2199
2199
|
], IxToggle);
|
|
2200
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
2200
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxToggle, decorators: [{
|
|
2201
2201
|
type: Component,
|
|
2202
2202
|
args: [{
|
|
2203
2203
|
selector: 'ix-toggle',
|
|
@@ -2215,14 +2215,14 @@ let IxToggleButton = class IxToggleButton {
|
|
|
2215
2215
|
proxyOutputs(this, this.el, ['pressedChange']);
|
|
2216
2216
|
}
|
|
2217
2217
|
};
|
|
2218
|
-
/** @nocollapse */ IxToggleButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
2219
|
-
/** @nocollapse */ IxToggleButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
2218
|
+
/** @nocollapse */ IxToggleButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxToggleButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2219
|
+
/** @nocollapse */ IxToggleButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxToggleButton, selector: "ix-toggle-button", inputs: { disabled: "disabled", ghost: "ghost", icon: "icon", loading: "loading", outline: "outline", pressed: "pressed", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2220
2220
|
IxToggleButton = __decorate([
|
|
2221
2221
|
ProxyCmp({
|
|
2222
2222
|
inputs: ['disabled', 'ghost', 'icon', 'loading', 'outline', 'pressed', 'variant']
|
|
2223
2223
|
})
|
|
2224
2224
|
], IxToggleButton);
|
|
2225
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
2225
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxToggleButton, decorators: [{
|
|
2226
2226
|
type: Component,
|
|
2227
2227
|
args: [{
|
|
2228
2228
|
selector: 'ix-toggle-button',
|
|
@@ -2239,14 +2239,14 @@ let IxTooltip = class IxTooltip {
|
|
|
2239
2239
|
this.el = r.nativeElement;
|
|
2240
2240
|
}
|
|
2241
2241
|
};
|
|
2242
|
-
/** @nocollapse */ IxTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
2243
|
-
/** @nocollapse */ IxTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
2242
|
+
/** @nocollapse */ IxTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2243
|
+
/** @nocollapse */ IxTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxTooltip, selector: "ix-tooltip", inputs: { for: "for", interactive: "interactive", placement: "placement", titleContent: "titleContent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2244
2244
|
IxTooltip = __decorate([
|
|
2245
2245
|
ProxyCmp({
|
|
2246
2246
|
inputs: ['for', 'interactive', 'placement', 'titleContent']
|
|
2247
2247
|
})
|
|
2248
2248
|
], IxTooltip);
|
|
2249
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
2249
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTooltip, decorators: [{
|
|
2250
2250
|
type: Component,
|
|
2251
2251
|
args: [{
|
|
2252
2252
|
selector: 'ix-tooltip',
|
|
@@ -2264,14 +2264,14 @@ let IxTreeItem = class IxTreeItem {
|
|
|
2264
2264
|
proxyOutputs(this, this.el, ['toggle', 'itemClick']);
|
|
2265
2265
|
}
|
|
2266
2266
|
};
|
|
2267
|
-
/** @nocollapse */ IxTreeItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
2268
|
-
/** @nocollapse */ IxTreeItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
2267
|
+
/** @nocollapse */ IxTreeItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTreeItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2268
|
+
/** @nocollapse */ IxTreeItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxTreeItem, selector: "ix-tree-item", inputs: { context: "context", hasChildren: "hasChildren", text: "text" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2269
2269
|
IxTreeItem = __decorate([
|
|
2270
2270
|
ProxyCmp({
|
|
2271
2271
|
inputs: ['context', 'hasChildren', 'text']
|
|
2272
2272
|
})
|
|
2273
2273
|
], IxTreeItem);
|
|
2274
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
2274
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTreeItem, decorators: [{
|
|
2275
2275
|
type: Component,
|
|
2276
2276
|
args: [{
|
|
2277
2277
|
selector: 'ix-tree-item',
|
|
@@ -2288,14 +2288,14 @@ let IxTypography = class IxTypography {
|
|
|
2288
2288
|
this.el = r.nativeElement;
|
|
2289
2289
|
}
|
|
2290
2290
|
};
|
|
2291
|
-
/** @nocollapse */ IxTypography.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
2292
|
-
/** @nocollapse */ IxTypography.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
2291
|
+
/** @nocollapse */ IxTypography.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTypography, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2292
|
+
/** @nocollapse */ IxTypography.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxTypography, selector: "ix-typography", inputs: { bold: "bold", color: "color", format: "format", textColor: "textColor", textDecoration: "textDecoration" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2293
2293
|
IxTypography = __decorate([
|
|
2294
2294
|
ProxyCmp({
|
|
2295
2295
|
inputs: ['bold', 'color', 'format', 'textColor', 'textDecoration']
|
|
2296
2296
|
})
|
|
2297
2297
|
], IxTypography);
|
|
2298
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
2298
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTypography, decorators: [{
|
|
2299
2299
|
type: Component,
|
|
2300
2300
|
args: [{
|
|
2301
2301
|
selector: 'ix-typography',
|
|
@@ -2313,15 +2313,15 @@ let IxUpload = class IxUpload {
|
|
|
2313
2313
|
proxyOutputs(this, this.el, ['filesChanged']);
|
|
2314
2314
|
}
|
|
2315
2315
|
};
|
|
2316
|
-
/** @nocollapse */ IxUpload.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
2317
|
-
/** @nocollapse */ IxUpload.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
2316
|
+
/** @nocollapse */ IxUpload.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxUpload, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2317
|
+
/** @nocollapse */ IxUpload.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxUpload, selector: "ix-upload", inputs: { accept: "accept", disabled: "disabled", i18nUploadDisabled: "i18nUploadDisabled", i18nUploadFile: "i18nUploadFile", loadingText: "loadingText", multiline: "multiline", multiple: "multiple", selectFileText: "selectFileText", state: "state", uploadFailedText: "uploadFailedText", uploadSuccessText: "uploadSuccessText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2318
2318
|
IxUpload = __decorate([
|
|
2319
2319
|
ProxyCmp({
|
|
2320
2320
|
inputs: ['accept', 'disabled', 'i18nUploadDisabled', 'i18nUploadFile', 'loadingText', 'multiline', 'multiple', 'selectFileText', 'state', 'uploadFailedText', 'uploadSuccessText'],
|
|
2321
2321
|
methods: ['setFilesToUpload']
|
|
2322
2322
|
})
|
|
2323
2323
|
], IxUpload);
|
|
2324
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
2324
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxUpload, decorators: [{
|
|
2325
2325
|
type: Component,
|
|
2326
2326
|
args: [{
|
|
2327
2327
|
selector: 'ix-upload',
|
|
@@ -2338,14 +2338,14 @@ let IxValidationTooltip = class IxValidationTooltip {
|
|
|
2338
2338
|
this.el = r.nativeElement;
|
|
2339
2339
|
}
|
|
2340
2340
|
};
|
|
2341
|
-
/** @nocollapse */ IxValidationTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
2342
|
-
/** @nocollapse */ IxValidationTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
2341
|
+
/** @nocollapse */ IxValidationTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxValidationTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2342
|
+
/** @nocollapse */ IxValidationTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxValidationTooltip, selector: "ix-validation-tooltip", inputs: { message: "message", placement: "placement", suppressAutomaticPlacement: "suppressAutomaticPlacement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2343
2343
|
IxValidationTooltip = __decorate([
|
|
2344
2344
|
ProxyCmp({
|
|
2345
2345
|
inputs: ['message', 'placement', 'suppressAutomaticPlacement']
|
|
2346
2346
|
})
|
|
2347
2347
|
], IxValidationTooltip);
|
|
2348
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
2348
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxValidationTooltip, decorators: [{
|
|
2349
2349
|
type: Component,
|
|
2350
2350
|
args: [{
|
|
2351
2351
|
selector: 'ix-validation-tooltip',
|
|
@@ -2362,14 +2362,14 @@ let IxWorkflowStep = class IxWorkflowStep {
|
|
|
2362
2362
|
this.el = r.nativeElement;
|
|
2363
2363
|
}
|
|
2364
2364
|
};
|
|
2365
|
-
/** @nocollapse */ IxWorkflowStep.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
2366
|
-
/** @nocollapse */ IxWorkflowStep.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
2365
|
+
/** @nocollapse */ IxWorkflowStep.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxWorkflowStep, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2366
|
+
/** @nocollapse */ IxWorkflowStep.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxWorkflowStep, selector: "ix-workflow-step", inputs: { clickable: "clickable", disabled: "disabled", selected: "selected", status: "status", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2367
2367
|
IxWorkflowStep = __decorate([
|
|
2368
2368
|
ProxyCmp({
|
|
2369
2369
|
inputs: ['clickable', 'disabled', 'selected', 'status', 'vertical']
|
|
2370
2370
|
})
|
|
2371
2371
|
], IxWorkflowStep);
|
|
2372
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
2372
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxWorkflowStep, decorators: [{
|
|
2373
2373
|
type: Component,
|
|
2374
2374
|
args: [{
|
|
2375
2375
|
selector: 'ix-workflow-step',
|
|
@@ -2387,14 +2387,14 @@ let IxWorkflowSteps = class IxWorkflowSteps {
|
|
|
2387
2387
|
proxyOutputs(this, this.el, ['stepSelected']);
|
|
2388
2388
|
}
|
|
2389
2389
|
};
|
|
2390
|
-
/** @nocollapse */ IxWorkflowSteps.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
2391
|
-
/** @nocollapse */ IxWorkflowSteps.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
2390
|
+
/** @nocollapse */ IxWorkflowSteps.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxWorkflowSteps, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2391
|
+
/** @nocollapse */ IxWorkflowSteps.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxWorkflowSteps, selector: "ix-workflow-steps", inputs: { clickable: "clickable", selectedIndex: "selectedIndex", vertical: "vertical" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2392
2392
|
IxWorkflowSteps = __decorate([
|
|
2393
2393
|
ProxyCmp({
|
|
2394
2394
|
inputs: ['clickable', 'selectedIndex', 'vertical']
|
|
2395
2395
|
})
|
|
2396
2396
|
], IxWorkflowSteps);
|
|
2397
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
2397
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxWorkflowSteps, decorators: [{
|
|
2398
2398
|
type: Component,
|
|
2399
2399
|
args: [{
|
|
2400
2400
|
selector: 'ix-workflow-steps',
|
|
@@ -2406,7 +2406,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2406
2406
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2407
2407
|
|
|
2408
2408
|
/*
|
|
2409
|
-
* SPDX-FileCopyrightText:
|
|
2409
|
+
* SPDX-FileCopyrightText: 2024 Siemens AG
|
|
2410
2410
|
*
|
|
2411
2411
|
* SPDX-License-Identifier: MIT
|
|
2412
2412
|
*
|
|
@@ -2421,9 +2421,9 @@ class IxDropdownTriggerDirective {
|
|
|
2421
2421
|
this.element.nativeElement.trigger = this.ixDropdownTrigger.el;
|
|
2422
2422
|
}
|
|
2423
2423
|
}
|
|
2424
|
-
/** @nocollapse */ IxDropdownTriggerDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
2425
|
-
/** @nocollapse */ IxDropdownTriggerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.
|
|
2426
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
2424
|
+
/** @nocollapse */ IxDropdownTriggerDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDropdownTriggerDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2425
|
+
/** @nocollapse */ IxDropdownTriggerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: IxDropdownTriggerDirective, selector: "[ixDropdownTrigger]", inputs: { ixDropdownTrigger: "ixDropdownTrigger" }, usesOnChanges: true, ngImport: i0 });
|
|
2426
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxDropdownTriggerDirective, decorators: [{
|
|
2427
2427
|
type: Directive,
|
|
2428
2428
|
args: [{
|
|
2429
2429
|
selector: '[ixDropdownTrigger]',
|
|
@@ -2439,15 +2439,15 @@ let IxIcon = class IxIcon {
|
|
|
2439
2439
|
this.el = r.nativeElement;
|
|
2440
2440
|
}
|
|
2441
2441
|
};
|
|
2442
|
-
/** @nocollapse */ IxIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
2443
|
-
/** @nocollapse */ IxIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
2442
|
+
/** @nocollapse */ IxIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2443
|
+
/** @nocollapse */ IxIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxIcon, selector: "ix-icon", inputs: { color: "color", name: "name", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2444
2444
|
IxIcon = __decorate([
|
|
2445
2445
|
ProxyCmp({
|
|
2446
2446
|
defineCustomElementFn: undefined,
|
|
2447
2447
|
inputs: ['color', 'name', 'size'],
|
|
2448
2448
|
})
|
|
2449
2449
|
], IxIcon);
|
|
2450
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
2450
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxIcon, decorators: [{
|
|
2451
2451
|
type: Component,
|
|
2452
2452
|
args: [{
|
|
2453
2453
|
selector: 'ix-icon',
|
|
@@ -2458,7 +2458,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2458
2458
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2459
2459
|
|
|
2460
2460
|
/*
|
|
2461
|
-
* SPDX-FileCopyrightText:
|
|
2461
|
+
* SPDX-FileCopyrightText: 2024 Siemens AG
|
|
2462
2462
|
*
|
|
2463
2463
|
* SPDX-License-Identifier: MIT
|
|
2464
2464
|
*
|
|
@@ -2565,9 +2565,9 @@ class ModalService {
|
|
|
2565
2565
|
});
|
|
2566
2566
|
}
|
|
2567
2567
|
}
|
|
2568
|
-
/** @nocollapse */ ModalService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
2569
|
-
/** @nocollapse */ ModalService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.
|
|
2570
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
2568
|
+
/** @nocollapse */ ModalService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ModalService, deps: [{ token: i0.ApplicationRef }, { token: i0.ComponentFactoryResolver }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2569
|
+
/** @nocollapse */ ModalService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ModalService, providedIn: 'root' });
|
|
2570
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ModalService, decorators: [{
|
|
2571
2571
|
type: Injectable,
|
|
2572
2572
|
args: [{
|
|
2573
2573
|
providedIn: 'root',
|
|
@@ -2575,7 +2575,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2575
2575
|
}], ctorParameters: function () { return [{ type: i0.ApplicationRef }, { type: i0.ComponentFactoryResolver }, { type: i0.Injector }]; } });
|
|
2576
2576
|
|
|
2577
2577
|
/*
|
|
2578
|
-
* SPDX-FileCopyrightText:
|
|
2578
|
+
* SPDX-FileCopyrightText: 2024 Siemens AG
|
|
2579
2579
|
*
|
|
2580
2580
|
* SPDX-License-Identifier: MIT
|
|
2581
2581
|
*
|
|
@@ -2700,15 +2700,15 @@ class SelectValueAccessor extends ValueAccessor {
|
|
|
2700
2700
|
super(el);
|
|
2701
2701
|
}
|
|
2702
2702
|
}
|
|
2703
|
-
/** @nocollapse */ SelectValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
2704
|
-
/** @nocollapse */ SelectValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.
|
|
2703
|
+
/** @nocollapse */ SelectValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SelectValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2704
|
+
/** @nocollapse */ SelectValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.4.0", type: SelectValueAccessor, selector: "ix-select[ngModel],ix-select[formControlName],ix-select[formControl]", host: { listeners: { "valueChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
2705
2705
|
{
|
|
2706
2706
|
provide: NG_VALUE_ACCESSOR,
|
|
2707
2707
|
useExisting: SelectValueAccessor,
|
|
2708
2708
|
multi: true
|
|
2709
2709
|
}
|
|
2710
2710
|
], usesInheritance: true, ngImport: i0 });
|
|
2711
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
2711
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
2712
2712
|
type: Directive,
|
|
2713
2713
|
args: [{
|
|
2714
2714
|
/* tslint:disable-next-line:directive-selector */
|
|
@@ -2727,7 +2727,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2727
2727
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
2728
2728
|
|
|
2729
2729
|
/*
|
|
2730
|
-
* SPDX-FileCopyrightText:
|
|
2730
|
+
* SPDX-FileCopyrightText: 2024 Siemens AG
|
|
2731
2731
|
*
|
|
2732
2732
|
* SPDX-License-Identifier: MIT
|
|
2733
2733
|
*
|
|
@@ -2750,9 +2750,9 @@ class ThemeService {
|
|
|
2750
2750
|
this.themeSwitcher.setTheme(themeName);
|
|
2751
2751
|
}
|
|
2752
2752
|
}
|
|
2753
|
-
/** @nocollapse */ ThemeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
2754
|
-
/** @nocollapse */ ThemeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.
|
|
2755
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
2753
|
+
/** @nocollapse */ ThemeService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ThemeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2754
|
+
/** @nocollapse */ ThemeService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ThemeService, providedIn: 'root' });
|
|
2755
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ThemeService, decorators: [{
|
|
2756
2756
|
type: Injectable,
|
|
2757
2757
|
args: [{
|
|
2758
2758
|
providedIn: 'root',
|
|
@@ -2762,7 +2762,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2762
2762
|
}] } });
|
|
2763
2763
|
|
|
2764
2764
|
/*
|
|
2765
|
-
* SPDX-FileCopyrightText:
|
|
2765
|
+
* SPDX-FileCopyrightText: 2024 Siemens AG
|
|
2766
2766
|
*
|
|
2767
2767
|
* SPDX-License-Identifier: MIT
|
|
2768
2768
|
*
|
|
@@ -2801,9 +2801,9 @@ class ToastService {
|
|
|
2801
2801
|
});
|
|
2802
2802
|
}
|
|
2803
2803
|
}
|
|
2804
|
-
/** @nocollapse */ ToastService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
2805
|
-
/** @nocollapse */ ToastService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.
|
|
2806
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
2804
|
+
/** @nocollapse */ ToastService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ToastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2805
|
+
/** @nocollapse */ ToastService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ToastService, providedIn: 'root' });
|
|
2806
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: ToastService, decorators: [{
|
|
2807
2807
|
type: Injectable,
|
|
2808
2808
|
args: [{
|
|
2809
2809
|
providedIn: 'root',
|
|
@@ -2811,7 +2811,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2811
2811
|
}] });
|
|
2812
2812
|
|
|
2813
2813
|
/*
|
|
2814
|
-
* SPDX-FileCopyrightText:
|
|
2814
|
+
* SPDX-FileCopyrightText: 2024 Siemens AG
|
|
2815
2815
|
*
|
|
2816
2816
|
* SPDX-License-Identifier: MIT
|
|
2817
2817
|
*
|
|
@@ -2869,15 +2869,15 @@ let IxTree = class IxTree {
|
|
|
2869
2869
|
};
|
|
2870
2870
|
}
|
|
2871
2871
|
};
|
|
2872
|
-
/** @nocollapse */ IxTree.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
2873
|
-
/** @nocollapse */ IxTree.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.
|
|
2872
|
+
/** @nocollapse */ IxTree.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTree, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2873
|
+
/** @nocollapse */ IxTree.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.4.0", type: IxTree, selector: "ix-tree", inputs: { context: "context", model: "model", root: "root", renderItem: "renderItem" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2874
2874
|
IxTree = __decorate([
|
|
2875
2875
|
ProxyCmp({
|
|
2876
2876
|
defineCustomElementFn: undefined,
|
|
2877
2877
|
inputs: ['context', 'model', 'root'],
|
|
2878
2878
|
})
|
|
2879
2879
|
], IxTree);
|
|
2880
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
2880
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxTree, decorators: [{
|
|
2881
2881
|
type: Component,
|
|
2882
2882
|
args: [{
|
|
2883
2883
|
selector: 'ix-tree',
|
|
@@ -2890,7 +2890,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2890
2890
|
}] } });
|
|
2891
2891
|
|
|
2892
2892
|
/*
|
|
2893
|
-
* SPDX-FileCopyrightText:
|
|
2893
|
+
* SPDX-FileCopyrightText: 2024 Siemens AG
|
|
2894
2894
|
*
|
|
2895
2895
|
* SPDX-License-Identifier: MIT
|
|
2896
2896
|
*
|
|
@@ -2899,7 +2899,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2899
2899
|
*/
|
|
2900
2900
|
|
|
2901
2901
|
/*
|
|
2902
|
-
* SPDX-FileCopyrightText:
|
|
2902
|
+
* SPDX-FileCopyrightText: 2024 Siemens AG
|
|
2903
2903
|
*
|
|
2904
2904
|
* SPDX-License-Identifier: MIT
|
|
2905
2905
|
*
|
|
@@ -2932,16 +2932,16 @@ class IxModule {
|
|
|
2932
2932
|
};
|
|
2933
2933
|
}
|
|
2934
2934
|
}
|
|
2935
|
-
/** @nocollapse */ IxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.
|
|
2936
|
-
/** @nocollapse */ IxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.
|
|
2935
|
+
/** @nocollapse */ IxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2936
|
+
/** @nocollapse */ IxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule, declarations: [IxActionCard, IxApplication, IxApplicationHeader, IxAvatar, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxChip, IxCol, IxContent, IxContentHeader, IxDateDropdown, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent, IxFormField, IxGroup, IxGroupContextMenu, IxGroupItem, IxIconButton, IxIconToggleButton, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLayoutGrid, IxLinkButton, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalExample, IxModalFooter, IxModalHeader, IxPagination, IxPane, IxPaneLayout, IxPill, IxPushCard, IxRow, IxSelect, IxSelectItem, IxSlider, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree, IxDropdownTriggerDirective,
|
|
2937
2937
|
IxIcon,
|
|
2938
2938
|
SelectValueAccessor,
|
|
2939
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,
|
|
2940
2940
|
IxIcon,
|
|
2941
2941
|
SelectValueAccessor,
|
|
2942
2942
|
BooleanValueAccessor] });
|
|
2943
|
-
/** @nocollapse */ IxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.
|
|
2944
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.
|
|
2943
|
+
/** @nocollapse */ IxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule });
|
|
2944
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.4.0", ngImport: i0, type: IxModule, decorators: [{
|
|
2945
2945
|
type: NgModule,
|
|
2946
2946
|
args: [{
|
|
2947
2947
|
declarations: DECLARATIONS,
|
|
@@ -2950,7 +2950,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2950
2950
|
}] });
|
|
2951
2951
|
|
|
2952
2952
|
/*
|
|
2953
|
-
* SPDX-FileCopyrightText:
|
|
2953
|
+
* SPDX-FileCopyrightText: 2024 Siemens AG
|
|
2954
2954
|
*
|
|
2955
2955
|
* SPDX-License-Identifier: MIT
|
|
2956
2956
|
*
|