@siemens/ix-angular 2.0.0-beta.0 → 2.0.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/app-initialize.d.ts +1 -1
- package/boolean-value-accessor.d.ts +9 -0
- package/components.d.ts +112 -53
- package/declare-components.d.ts +1 -1
- package/esm2020/app-initialize.mjs +6 -5
- package/esm2020/boolean-value-accessor.mjs +38 -0
- package/esm2020/components.mjs +241 -115
- package/esm2020/declare-components.mjs +9 -4
- package/esm2020/index.mjs +4 -1
- package/esm2020/ix-icon.mjs +38 -0
- package/esm2020/modal/modal.config.mjs +1 -1
- package/esm2020/modal/modal.service.mjs +19 -19
- package/esm2020/module.mjs +19 -3
- package/esm2020/select-value-accessor.mjs +35 -0
- package/esm2020/theme/theme.service.mjs +4 -1
- package/esm2020/value-accessor.mjs +40 -0
- package/fesm2015/siemens-ix-angular.mjs +413 -149
- package/fesm2015/siemens-ix-angular.mjs.map +1 -1
- package/fesm2020/siemens-ix-angular.mjs +412 -140
- package/fesm2020/siemens-ix-angular.mjs.map +1 -1
- package/index.d.ts +3 -0
- package/ix-icon.d.ts +12 -0
- package/modal/modal.config.d.ts +2 -1
- package/module.d.ts +4 -1
- package/package.json +4 -4
- package/select-value-accessor.d.ts +8 -0
- package/theme/theme.service.d.ts +3 -0
- package/value-accessor.d.ts +18 -0
|
@@ -1,11 +1,85 @@
|
|
|
1
1
|
import { closeModal, dismissModal, showModal, themeSwitcher, getToastContainer, toast } from '@siemens/ix';
|
|
2
2
|
export * from '@siemens/ix';
|
|
3
|
-
import { __decorate } from 'tslib';
|
|
4
3
|
import * as i0 from '@angular/core';
|
|
5
|
-
import { Component, ChangeDetectionStrategy,
|
|
4
|
+
import { Directive, HostListener, Component, ChangeDetectionStrategy, Input, Type, Injector, ElementRef, Injectable, EventEmitter, Output, APP_INITIALIZER, NgZone, NgModule } from '@angular/core';
|
|
5
|
+
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
6
|
+
import { __decorate } from 'tslib';
|
|
6
7
|
import { fromEvent } from 'rxjs';
|
|
7
8
|
import { DOCUMENT } from '@angular/common';
|
|
8
|
-
import {
|
|
9
|
+
import { defineCustomElements } from '@siemens/ix-icons/loader';
|
|
10
|
+
import { applyPolyfills, defineCustomElements as defineCustomElements$1 } from '@siemens/ix/loader';
|
|
11
|
+
|
|
12
|
+
class ValueAccessor {
|
|
13
|
+
constructor(el) {
|
|
14
|
+
this.el = el;
|
|
15
|
+
this.onChange = () => { };
|
|
16
|
+
this.onTouched = () => { };
|
|
17
|
+
}
|
|
18
|
+
writeValue(value) {
|
|
19
|
+
this.el.nativeElement.value = this.lastValue = value == null ? '' : value;
|
|
20
|
+
}
|
|
21
|
+
handleChangeEvent(value) {
|
|
22
|
+
if (value !== this.lastValue) {
|
|
23
|
+
this.lastValue = value;
|
|
24
|
+
this.onChange(value);
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
_handleBlurEvent() {
|
|
28
|
+
this.onTouched();
|
|
29
|
+
}
|
|
30
|
+
registerOnChange(fn) {
|
|
31
|
+
this.onChange = fn;
|
|
32
|
+
}
|
|
33
|
+
registerOnTouched(fn) {
|
|
34
|
+
this.onTouched = fn;
|
|
35
|
+
}
|
|
36
|
+
setDisabledState(isDisabled) {
|
|
37
|
+
this.el.nativeElement.disabled = isDisabled;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
/** @nocollapse */ ValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
41
|
+
/** @nocollapse */ ValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 });
|
|
42
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
43
|
+
type: Directive,
|
|
44
|
+
args: [{}]
|
|
45
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { _handleBlurEvent: [{
|
|
46
|
+
type: HostListener,
|
|
47
|
+
args: ['focusout']
|
|
48
|
+
}] } });
|
|
49
|
+
|
|
50
|
+
class BooleanValueAccessor extends ValueAccessor {
|
|
51
|
+
constructor(el) {
|
|
52
|
+
super(el);
|
|
53
|
+
}
|
|
54
|
+
writeValue(value) {
|
|
55
|
+
this.el.nativeElement.checked = this.lastValue = value == null ? false : value;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
/** @nocollapse */ BooleanValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BooleanValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
59
|
+
/** @nocollapse */ BooleanValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: BooleanValueAccessor, selector: "ix-toggle[ngModel],ix-toggle[formControlName],ix-toggle[formControl]", host: { listeners: { "checkedChange": "handleChangeEvent($event.target.checked)" } }, providers: [
|
|
60
|
+
{
|
|
61
|
+
provide: NG_VALUE_ACCESSOR,
|
|
62
|
+
useExisting: BooleanValueAccessor,
|
|
63
|
+
multi: true
|
|
64
|
+
}
|
|
65
|
+
], usesInheritance: true, ngImport: i0 });
|
|
66
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: BooleanValueAccessor, decorators: [{
|
|
67
|
+
type: Directive,
|
|
68
|
+
args: [{
|
|
69
|
+
/* tslint:disable-next-line:directive-selector */
|
|
70
|
+
selector: 'ix-toggle[ngModel],ix-toggle[formControlName],ix-toggle[formControl]',
|
|
71
|
+
host: {
|
|
72
|
+
'(checkedChange)': 'handleChangeEvent($event.target.checked)'
|
|
73
|
+
},
|
|
74
|
+
providers: [
|
|
75
|
+
{
|
|
76
|
+
provide: NG_VALUE_ACCESSOR,
|
|
77
|
+
useExisting: BooleanValueAccessor,
|
|
78
|
+
multi: true
|
|
79
|
+
}
|
|
80
|
+
]
|
|
81
|
+
}]
|
|
82
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
9
83
|
|
|
10
84
|
/* eslint-disable */
|
|
11
85
|
const proxyInputs = (Cmp, inputs) => {
|
|
@@ -80,55 +154,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
80
154
|
inputs: ['heading', 'icon', 'selected', 'subheading', 'variant'],
|
|
81
155
|
}]
|
|
82
156
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
83
|
-
let IxAnimatedTab = class IxAnimatedTab {
|
|
84
|
-
constructor(c, r, z) {
|
|
85
|
-
this.z = z;
|
|
86
|
-
c.detach();
|
|
87
|
-
this.el = r.nativeElement;
|
|
88
|
-
}
|
|
89
|
-
};
|
|
90
|
-
/** @nocollapse */ IxAnimatedTab.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxAnimatedTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
91
|
-
/** @nocollapse */ IxAnimatedTab.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxAnimatedTab, selector: "ix-animated-tab", inputs: { count: "count", icon: "icon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
92
|
-
IxAnimatedTab = __decorate([
|
|
93
|
-
ProxyCmp({
|
|
94
|
-
inputs: ['count', 'icon']
|
|
95
|
-
})
|
|
96
|
-
], IxAnimatedTab);
|
|
97
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxAnimatedTab, decorators: [{
|
|
98
|
-
type: Component,
|
|
99
|
-
args: [{
|
|
100
|
-
selector: 'ix-animated-tab',
|
|
101
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
102
|
-
template: '<ng-content></ng-content>',
|
|
103
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
104
|
-
inputs: ['count', 'icon'],
|
|
105
|
-
}]
|
|
106
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
107
|
-
let IxAnimatedTabs = class IxAnimatedTabs {
|
|
108
|
-
constructor(c, r, z) {
|
|
109
|
-
this.z = z;
|
|
110
|
-
c.detach();
|
|
111
|
-
this.el = r.nativeElement;
|
|
112
|
-
proxyOutputs(this, this.el, ['tabClick']);
|
|
113
|
-
}
|
|
114
|
-
};
|
|
115
|
-
/** @nocollapse */ IxAnimatedTabs.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxAnimatedTabs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
116
|
-
/** @nocollapse */ IxAnimatedTabs.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxAnimatedTabs, selector: "ix-animated-tabs", inputs: { selectedIndex: "selectedIndex", tabPlacement: "tabPlacement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
117
|
-
IxAnimatedTabs = __decorate([
|
|
118
|
-
ProxyCmp({
|
|
119
|
-
inputs: ['selectedIndex', 'tabPlacement']
|
|
120
|
-
})
|
|
121
|
-
], IxAnimatedTabs);
|
|
122
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxAnimatedTabs, decorators: [{
|
|
123
|
-
type: Component,
|
|
124
|
-
args: [{
|
|
125
|
-
selector: 'ix-animated-tabs',
|
|
126
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
127
|
-
template: '<ng-content></ng-content>',
|
|
128
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
129
|
-
inputs: ['selectedIndex', 'tabPlacement'],
|
|
130
|
-
}]
|
|
131
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
132
157
|
let IxApplicationHeader = class IxApplicationHeader {
|
|
133
158
|
constructor(c, r, z) {
|
|
134
159
|
this.z = z;
|
|
@@ -185,10 +210,10 @@ let IxBasicNavigation = class IxBasicNavigation {
|
|
|
185
210
|
}
|
|
186
211
|
};
|
|
187
212
|
/** @nocollapse */ IxBasicNavigation.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxBasicNavigation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
188
|
-
/** @nocollapse */ IxBasicNavigation.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxBasicNavigation, selector: "ix-basic-navigation", inputs: { applicationName: "applicationName", hideHeader: "hideHeader" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
213
|
+
/** @nocollapse */ IxBasicNavigation.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
189
214
|
IxBasicNavigation = __decorate([
|
|
190
215
|
ProxyCmp({
|
|
191
|
-
inputs: ['applicationName', 'hideHeader']
|
|
216
|
+
inputs: ['applicationName', 'breakpoints', 'forceBreakpoint', 'hideHeader']
|
|
192
217
|
})
|
|
193
218
|
], IxBasicNavigation);
|
|
194
219
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxBasicNavigation, decorators: [{
|
|
@@ -198,7 +223,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
198
223
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
199
224
|
template: '<ng-content></ng-content>',
|
|
200
225
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
201
|
-
inputs: ['applicationName', 'hideHeader'],
|
|
226
|
+
inputs: ['applicationName', 'breakpoints', 'forceBreakpoint', 'hideHeader'],
|
|
202
227
|
}]
|
|
203
228
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
204
229
|
let IxBlind = class IxBlind {
|
|
@@ -210,10 +235,10 @@ let IxBlind = class IxBlind {
|
|
|
210
235
|
}
|
|
211
236
|
};
|
|
212
237
|
/** @nocollapse */ IxBlind.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxBlind, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
213
|
-
/** @nocollapse */ IxBlind.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxBlind, selector: "ix-blind", inputs: { collapsed: "collapsed", icon: "icon", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
238
|
+
/** @nocollapse */ IxBlind.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
214
239
|
IxBlind = __decorate([
|
|
215
240
|
ProxyCmp({
|
|
216
|
-
inputs: ['collapsed', 'icon', 'label']
|
|
241
|
+
inputs: ['collapsed', 'icon', 'label', 'sublabel', 'variant']
|
|
217
242
|
})
|
|
218
243
|
], IxBlind);
|
|
219
244
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxBlind, decorators: [{
|
|
@@ -223,7 +248,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
223
248
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
224
249
|
template: '<ng-content></ng-content>',
|
|
225
250
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
226
|
-
inputs: ['collapsed', 'icon', 'label'],
|
|
251
|
+
inputs: ['collapsed', 'icon', 'label', 'sublabel', 'variant'],
|
|
227
252
|
}]
|
|
228
253
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
229
254
|
let IxBreadcrumb = class IxBreadcrumb {
|
|
@@ -235,10 +260,10 @@ let IxBreadcrumb = class IxBreadcrumb {
|
|
|
235
260
|
}
|
|
236
261
|
};
|
|
237
262
|
/** @nocollapse */ IxBreadcrumb.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
238
|
-
/** @nocollapse */ IxBreadcrumb.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxBreadcrumb, selector: "ix-breadcrumb", inputs: { ghost: "ghost", nextItems: "nextItems", visibleItemCount: "visibleItemCount" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
263
|
+
/** @nocollapse */ IxBreadcrumb.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
239
264
|
IxBreadcrumb = __decorate([
|
|
240
265
|
ProxyCmp({
|
|
241
|
-
inputs: ['ghost', 'nextItems', 'visibleItemCount']
|
|
266
|
+
inputs: ['ariaLabelPreviousButton', 'ghost', 'nextItems', 'visibleItemCount']
|
|
242
267
|
})
|
|
243
268
|
], IxBreadcrumb);
|
|
244
269
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxBreadcrumb, decorators: [{
|
|
@@ -248,7 +273,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
248
273
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
249
274
|
template: '<ng-content></ng-content>',
|
|
250
275
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
251
|
-
inputs: ['ghost', 'nextItems', 'visibleItemCount'],
|
|
276
|
+
inputs: ['ariaLabelPreviousButton', 'ghost', 'nextItems', 'visibleItemCount'],
|
|
252
277
|
}]
|
|
253
278
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
254
279
|
let IxBreadcrumbItem = class IxBreadcrumbItem {
|
|
@@ -283,10 +308,10 @@ let IxButton = class IxButton {
|
|
|
283
308
|
}
|
|
284
309
|
};
|
|
285
310
|
/** @nocollapse */ IxButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
286
|
-
/** @nocollapse */ IxButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxButton, selector: "ix-button", inputs: { disabled: "disabled", ghost: "ghost", icon: "icon",
|
|
311
|
+
/** @nocollapse */ IxButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxButton, selector: "ix-button", inputs: { disabled: "disabled", ghost: "ghost", icon: "icon", loading: "loading", outline: "outline", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
287
312
|
IxButton = __decorate([
|
|
288
313
|
ProxyCmp({
|
|
289
|
-
inputs: ['disabled', 'ghost', 'icon', '
|
|
314
|
+
inputs: ['disabled', 'ghost', 'icon', 'loading', 'outline', 'type', 'variant']
|
|
290
315
|
})
|
|
291
316
|
], IxButton);
|
|
292
317
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxButton, decorators: [{
|
|
@@ -296,7 +321,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
296
321
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
297
322
|
template: '<ng-content></ng-content>',
|
|
298
323
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
299
|
-
inputs: ['disabled', 'ghost', 'icon', '
|
|
324
|
+
inputs: ['disabled', 'ghost', 'icon', 'loading', 'outline', 'type', 'variant'],
|
|
300
325
|
}]
|
|
301
326
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
302
327
|
let IxCard = class IxCard {
|
|
@@ -419,14 +444,14 @@ let IxCategoryFilter = class IxCategoryFilter {
|
|
|
419
444
|
this.z = z;
|
|
420
445
|
c.detach();
|
|
421
446
|
this.el = r.nativeElement;
|
|
422
|
-
proxyOutputs(this, this.el, ['inputChanged', 'filterChanged']);
|
|
447
|
+
proxyOutputs(this, this.el, ['categoryChanged', 'inputChanged', 'filterChanged']);
|
|
423
448
|
}
|
|
424
449
|
};
|
|
425
450
|
/** @nocollapse */ IxCategoryFilter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxCategoryFilter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
426
|
-
/** @nocollapse */ IxCategoryFilter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxCategoryFilter, selector: "ix-category-filter", inputs: { categories: "categories", filterState: "filterState", hideIcon: "hideIcon", i18nPlainText: "i18nPlainText", icon: "icon",
|
|
451
|
+
/** @nocollapse */ IxCategoryFilter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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", suggestions: "suggestions" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
427
452
|
IxCategoryFilter = __decorate([
|
|
428
453
|
ProxyCmp({
|
|
429
|
-
inputs: ['categories', 'filterState', 'hideIcon', 'i18nPlainText', 'icon', '
|
|
454
|
+
inputs: ['categories', 'disabled', 'filterState', 'hideIcon', 'i18nPlainText', 'icon', 'labelCategories', 'nonSelectableCategories', 'placeholder', 'readonly', 'repeatCategories', 'suggestions']
|
|
430
455
|
})
|
|
431
456
|
], IxCategoryFilter);
|
|
432
457
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxCategoryFilter, decorators: [{
|
|
@@ -436,7 +461,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
436
461
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
437
462
|
template: '<ng-content></ng-content>',
|
|
438
463
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
439
|
-
inputs: ['categories', 'filterState', 'hideIcon', 'i18nPlainText', 'icon', '
|
|
464
|
+
inputs: ['categories', 'disabled', 'filterState', 'hideIcon', 'i18nPlainText', 'icon', 'labelCategories', 'nonSelectableCategories', 'placeholder', 'readonly', 'repeatCategories', 'suggestions'],
|
|
440
465
|
}]
|
|
441
466
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
442
467
|
let IxChip = class IxChip {
|
|
@@ -444,7 +469,7 @@ let IxChip = class IxChip {
|
|
|
444
469
|
this.z = z;
|
|
445
470
|
c.detach();
|
|
446
471
|
this.el = r.nativeElement;
|
|
447
|
-
proxyOutputs(this, this.el, ['
|
|
472
|
+
proxyOutputs(this, this.el, ['closeChip']);
|
|
448
473
|
}
|
|
449
474
|
};
|
|
450
475
|
/** @nocollapse */ IxChip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -464,6 +489,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
464
489
|
inputs: ['active', 'background', 'closable', 'color', 'icon', 'outline', 'variant'],
|
|
465
490
|
}]
|
|
466
491
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
492
|
+
let IxCol = class IxCol {
|
|
493
|
+
constructor(c, r, z) {
|
|
494
|
+
this.z = z;
|
|
495
|
+
c.detach();
|
|
496
|
+
this.el = r.nativeElement;
|
|
497
|
+
}
|
|
498
|
+
};
|
|
499
|
+
/** @nocollapse */ IxCol.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxCol, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
500
|
+
/** @nocollapse */ IxCol.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
501
|
+
IxCol = __decorate([
|
|
502
|
+
ProxyCmp({
|
|
503
|
+
inputs: ['size', 'sizeLg', 'sizeMd', 'sizeSm']
|
|
504
|
+
})
|
|
505
|
+
], IxCol);
|
|
506
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxCol, decorators: [{
|
|
507
|
+
type: Component,
|
|
508
|
+
args: [{
|
|
509
|
+
selector: 'ix-col',
|
|
510
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
511
|
+
template: '<ng-content></ng-content>',
|
|
512
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
513
|
+
inputs: ['size', 'sizeLg', 'sizeMd', 'sizeSm'],
|
|
514
|
+
}]
|
|
515
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
467
516
|
let IxContentHeader = class IxContentHeader {
|
|
468
517
|
constructor(c, r, z) {
|
|
469
518
|
this.z = z;
|
|
@@ -622,10 +671,10 @@ let IxDropdownButton = class IxDropdownButton {
|
|
|
622
671
|
}
|
|
623
672
|
};
|
|
624
673
|
/** @nocollapse */ IxDropdownButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxDropdownButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
625
|
-
/** @nocollapse */ IxDropdownButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxDropdownButton, selector: "ix-dropdown-button", inputs: {
|
|
674
|
+
/** @nocollapse */ IxDropdownButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxDropdownButton, selector: "ix-dropdown-button", inputs: { disabled: "disabled", ghost: "ghost", icon: "icon", label: "label", outline: "outline", placement: "placement", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
626
675
|
IxDropdownButton = __decorate([
|
|
627
676
|
ProxyCmp({
|
|
628
|
-
inputs: ['
|
|
677
|
+
inputs: ['disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'variant']
|
|
629
678
|
})
|
|
630
679
|
], IxDropdownButton);
|
|
631
680
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxDropdownButton, decorators: [{
|
|
@@ -635,7 +684,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
635
684
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
636
685
|
template: '<ng-content></ng-content>',
|
|
637
686
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
638
|
-
inputs: ['
|
|
687
|
+
inputs: ['disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'variant'],
|
|
639
688
|
}]
|
|
640
689
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
641
690
|
let IxDropdownHeader = class IxDropdownHeader {
|
|
@@ -667,7 +716,6 @@ let IxDropdownItem = class IxDropdownItem {
|
|
|
667
716
|
this.z = z;
|
|
668
717
|
c.detach();
|
|
669
718
|
this.el = r.nativeElement;
|
|
670
|
-
proxyOutputs(this, this.el, ['itemClick']);
|
|
671
719
|
}
|
|
672
720
|
};
|
|
673
721
|
/** @nocollapse */ IxDropdownItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxDropdownItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -768,10 +816,10 @@ let IxEventListItem = class IxEventListItem {
|
|
|
768
816
|
}
|
|
769
817
|
};
|
|
770
818
|
/** @nocollapse */ IxEventListItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxEventListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
771
|
-
/** @nocollapse */ IxEventListItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxEventListItem, selector: "ix-event-list-item", inputs: { chevron: "chevron", color: "color", disabled: "disabled",
|
|
819
|
+
/** @nocollapse */ IxEventListItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxEventListItem, selector: "ix-event-list-item", inputs: { chevron: "chevron", color: "color", disabled: "disabled", selected: "selected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
772
820
|
IxEventListItem = __decorate([
|
|
773
821
|
ProxyCmp({
|
|
774
|
-
inputs: ['chevron', 'color', 'disabled', '
|
|
822
|
+
inputs: ['chevron', 'color', 'disabled', 'selected']
|
|
775
823
|
})
|
|
776
824
|
], IxEventListItem);
|
|
777
825
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxEventListItem, decorators: [{
|
|
@@ -781,7 +829,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
781
829
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
782
830
|
template: '<ng-content></ng-content>',
|
|
783
831
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
784
|
-
inputs: ['chevron', 'color', 'disabled', '
|
|
832
|
+
inputs: ['chevron', 'color', 'disabled', 'selected'],
|
|
785
833
|
}]
|
|
786
834
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
787
835
|
let IxExpandingSearch = class IxExpandingSearch {
|
|
@@ -818,10 +866,10 @@ let IxFilterChip = class IxFilterChip {
|
|
|
818
866
|
}
|
|
819
867
|
};
|
|
820
868
|
/** @nocollapse */ IxFilterChip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxFilterChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
821
|
-
/** @nocollapse */ IxFilterChip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxFilterChip, selector: "ix-filter-chip", inputs: { disabled: "disabled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
869
|
+
/** @nocollapse */ IxFilterChip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxFilterChip, selector: "ix-filter-chip", inputs: { disabled: "disabled", readonly: "readonly" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
822
870
|
IxFilterChip = __decorate([
|
|
823
871
|
ProxyCmp({
|
|
824
|
-
inputs: ['disabled']
|
|
872
|
+
inputs: ['disabled', 'readonly']
|
|
825
873
|
})
|
|
826
874
|
], IxFilterChip);
|
|
827
875
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxFilterChip, decorators: [{
|
|
@@ -831,7 +879,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
831
879
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
832
880
|
template: '<ng-content></ng-content>',
|
|
833
881
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
834
|
-
inputs: ['disabled'],
|
|
882
|
+
inputs: ['disabled', 'readonly'],
|
|
835
883
|
}]
|
|
836
884
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
837
885
|
let IxFlipTile = class IxFlipTile {
|
|
@@ -842,10 +890,10 @@ let IxFlipTile = class IxFlipTile {
|
|
|
842
890
|
}
|
|
843
891
|
};
|
|
844
892
|
/** @nocollapse */ IxFlipTile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxFlipTile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
845
|
-
/** @nocollapse */ IxFlipTile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxFlipTile, selector: "ix-flip-tile", inputs: {
|
|
893
|
+
/** @nocollapse */ IxFlipTile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
846
894
|
IxFlipTile = __decorate([
|
|
847
895
|
ProxyCmp({
|
|
848
|
-
inputs: ['
|
|
896
|
+
inputs: ['height', 'state', 'width']
|
|
849
897
|
})
|
|
850
898
|
], IxFlipTile);
|
|
851
899
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxFlipTile, decorators: [{
|
|
@@ -855,7 +903,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
855
903
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
856
904
|
template: '<ng-content></ng-content>',
|
|
857
905
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
858
|
-
inputs: ['
|
|
906
|
+
inputs: ['height', 'state', 'width'],
|
|
859
907
|
}]
|
|
860
908
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
861
909
|
let IxFlipTileContent = class IxFlipTileContent {
|
|
@@ -880,6 +928,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
880
928
|
inputs: [],
|
|
881
929
|
}]
|
|
882
930
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
931
|
+
let IxFormField = class IxFormField {
|
|
932
|
+
constructor(c, r, z) {
|
|
933
|
+
this.z = z;
|
|
934
|
+
c.detach();
|
|
935
|
+
this.el = r.nativeElement;
|
|
936
|
+
}
|
|
937
|
+
};
|
|
938
|
+
/** @nocollapse */ IxFormField.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxFormField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
939
|
+
/** @nocollapse */ IxFormField.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxFormField, selector: "ix-form-field", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
940
|
+
IxFormField = __decorate([
|
|
941
|
+
ProxyCmp({
|
|
942
|
+
inputs: ['label']
|
|
943
|
+
})
|
|
944
|
+
], IxFormField);
|
|
945
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxFormField, decorators: [{
|
|
946
|
+
type: Component,
|
|
947
|
+
args: [{
|
|
948
|
+
selector: 'ix-form-field',
|
|
949
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
950
|
+
template: '<ng-content></ng-content>',
|
|
951
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
952
|
+
inputs: ['label'],
|
|
953
|
+
}]
|
|
954
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
883
955
|
let IxGroup = class IxGroup {
|
|
884
956
|
constructor(c, r, z) {
|
|
885
957
|
this.z = z;
|
|
@@ -952,52 +1024,53 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
952
1024
|
inputs: ['focusable', 'icon', 'index', 'secondaryText', 'selected', 'suppressSelection', 'text'],
|
|
953
1025
|
}]
|
|
954
1026
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
955
|
-
let
|
|
1027
|
+
let IxIconButton = class IxIconButton {
|
|
956
1028
|
constructor(c, r, z) {
|
|
957
1029
|
this.z = z;
|
|
958
1030
|
c.detach();
|
|
959
1031
|
this.el = r.nativeElement;
|
|
960
1032
|
}
|
|
961
1033
|
};
|
|
962
|
-
/** @nocollapse */
|
|
963
|
-
/** @nocollapse */
|
|
964
|
-
|
|
1034
|
+
/** @nocollapse */ IxIconButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxIconButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1035
|
+
/** @nocollapse */ IxIconButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxIconButton, selector: "ix-icon-button", inputs: { color: "color", disabled: "disabled", ghost: "ghost", icon: "icon", loading: "loading", outline: "outline", oval: "oval", size: "size", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1036
|
+
IxIconButton = __decorate([
|
|
965
1037
|
ProxyCmp({
|
|
966
|
-
inputs: ['color', '
|
|
1038
|
+
inputs: ['color', 'disabled', 'ghost', 'icon', 'loading', 'outline', 'oval', 'size', 'type', 'variant']
|
|
967
1039
|
})
|
|
968
|
-
],
|
|
969
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type:
|
|
1040
|
+
], IxIconButton);
|
|
1041
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxIconButton, decorators: [{
|
|
970
1042
|
type: Component,
|
|
971
1043
|
args: [{
|
|
972
|
-
selector: 'ix-icon',
|
|
1044
|
+
selector: 'ix-icon-button',
|
|
973
1045
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
974
1046
|
template: '<ng-content></ng-content>',
|
|
975
1047
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
976
|
-
inputs: ['color', '
|
|
1048
|
+
inputs: ['color', 'disabled', 'ghost', 'icon', 'loading', 'outline', 'oval', 'size', 'type', 'variant'],
|
|
977
1049
|
}]
|
|
978
1050
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
979
|
-
let
|
|
1051
|
+
let IxIconToggleButton = class IxIconToggleButton {
|
|
980
1052
|
constructor(c, r, z) {
|
|
981
1053
|
this.z = z;
|
|
982
1054
|
c.detach();
|
|
983
1055
|
this.el = r.nativeElement;
|
|
1056
|
+
proxyOutputs(this, this.el, ['pressedChange']);
|
|
984
1057
|
}
|
|
985
1058
|
};
|
|
986
|
-
/** @nocollapse */
|
|
987
|
-
/** @nocollapse */
|
|
988
|
-
|
|
1059
|
+
/** @nocollapse */ IxIconToggleButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxIconToggleButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1060
|
+
/** @nocollapse */ IxIconToggleButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
1061
|
+
IxIconToggleButton = __decorate([
|
|
989
1062
|
ProxyCmp({
|
|
990
|
-
inputs: ['
|
|
1063
|
+
inputs: ['disabled', 'ghost', 'icon', 'loading', 'outline', 'pressed', 'size', 'variant']
|
|
991
1064
|
})
|
|
992
|
-
],
|
|
993
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type:
|
|
1065
|
+
], IxIconToggleButton);
|
|
1066
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxIconToggleButton, decorators: [{
|
|
994
1067
|
type: Component,
|
|
995
1068
|
args: [{
|
|
996
|
-
selector: 'ix-icon-button',
|
|
1069
|
+
selector: 'ix-icon-toggle-button',
|
|
997
1070
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
998
1071
|
template: '<ng-content></ng-content>',
|
|
999
1072
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1000
|
-
inputs: ['
|
|
1073
|
+
inputs: ['disabled', 'ghost', 'icon', 'loading', 'outline', 'pressed', 'size', 'variant'],
|
|
1001
1074
|
}]
|
|
1002
1075
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1003
1076
|
let IxInputGroup = class IxInputGroup {
|
|
@@ -1094,6 +1167,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1094
1167
|
inputs: ['label', 'orientation', 'state', 'unit', 'value'],
|
|
1095
1168
|
}]
|
|
1096
1169
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1170
|
+
let IxLayoutGrid = class IxLayoutGrid {
|
|
1171
|
+
constructor(c, r, z) {
|
|
1172
|
+
this.z = z;
|
|
1173
|
+
c.detach();
|
|
1174
|
+
this.el = r.nativeElement;
|
|
1175
|
+
}
|
|
1176
|
+
};
|
|
1177
|
+
/** @nocollapse */ IxLayoutGrid.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxLayoutGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1178
|
+
/** @nocollapse */ IxLayoutGrid.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
1179
|
+
IxLayoutGrid = __decorate([
|
|
1180
|
+
ProxyCmp({
|
|
1181
|
+
inputs: ['columns', 'gap', 'noMargin']
|
|
1182
|
+
})
|
|
1183
|
+
], IxLayoutGrid);
|
|
1184
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxLayoutGrid, decorators: [{
|
|
1185
|
+
type: Component,
|
|
1186
|
+
args: [{
|
|
1187
|
+
selector: 'ix-layout-grid',
|
|
1188
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1189
|
+
template: '<ng-content></ng-content>',
|
|
1190
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1191
|
+
inputs: ['columns', 'gap', 'noMargin'],
|
|
1192
|
+
}]
|
|
1193
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1097
1194
|
let IxLinkButton = class IxLinkButton {
|
|
1098
1195
|
constructor(c, r, z) {
|
|
1099
1196
|
this.z = z;
|
|
@@ -1178,10 +1275,10 @@ let IxMenu = class IxMenu {
|
|
|
1178
1275
|
}
|
|
1179
1276
|
};
|
|
1180
1277
|
/** @nocollapse */ IxMenu.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1181
|
-
/** @nocollapse */ IxMenu.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxMenu, selector: "ix-menu", inputs: { applicationDescription: "applicationDescription", applicationName: "applicationName", enableMapExpand: "enableMapExpand", enableSettings: "enableSettings", enableToggleTheme: "enableToggleTheme", expand: "expand",
|
|
1278
|
+
/** @nocollapse */ IxMenu.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxMenu, selector: "ix-menu", inputs: { applicationDescription: "applicationDescription", applicationName: "applicationName", enableMapExpand: "enableMapExpand", enableSettings: "enableSettings", enableToggleTheme: "enableToggleTheme", expand: "expand", i18nCollapse: "i18nCollapse", i18nExpand: "i18nExpand", i18nExpandSidebar: "i18nExpandSidebar", i18nLegal: "i18nLegal", i18nSettings: "i18nSettings", i18nToggleTheme: "i18nToggleTheme", maxVisibleMenuItems: "maxVisibleMenuItems", pinned: "pinned", showAbout: "showAbout", showSettings: "showSettings" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1182
1279
|
IxMenu = __decorate([
|
|
1183
1280
|
ProxyCmp({
|
|
1184
|
-
inputs: ['applicationDescription', 'applicationName', 'enableMapExpand', 'enableSettings', 'enableToggleTheme', 'expand', '
|
|
1281
|
+
inputs: ['applicationDescription', 'applicationName', 'enableMapExpand', 'enableSettings', 'enableToggleTheme', 'expand', 'i18nCollapse', 'i18nExpand', 'i18nExpandSidebar', 'i18nLegal', 'i18nSettings', 'i18nToggleTheme', 'maxVisibleMenuItems', 'pinned', 'showAbout', 'showSettings'],
|
|
1185
1282
|
methods: ['toggleMapExpand', 'toggleMenu', 'toggleSettings', 'toggleAbout']
|
|
1186
1283
|
})
|
|
1187
1284
|
], IxMenu);
|
|
@@ -1192,7 +1289,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1192
1289
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1193
1290
|
template: '<ng-content></ng-content>',
|
|
1194
1291
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1195
|
-
inputs: ['applicationDescription', 'applicationName', 'enableMapExpand', 'enableSettings', 'enableToggleTheme', 'expand', '
|
|
1292
|
+
inputs: ['applicationDescription', 'applicationName', 'enableMapExpand', 'enableSettings', 'enableToggleTheme', 'expand', 'i18nCollapse', 'i18nExpand', 'i18nExpandSidebar', 'i18nLegal', 'i18nSettings', 'i18nToggleTheme', 'maxVisibleMenuItems', 'pinned', 'showAbout', 'showSettings'],
|
|
1196
1293
|
}]
|
|
1197
1294
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1198
1295
|
let IxMenuAbout = class IxMenuAbout {
|
|
@@ -1631,19 +1728,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1631
1728
|
inputs: ['heading', 'icon', 'notification', 'subheading', 'variant'],
|
|
1632
1729
|
}]
|
|
1633
1730
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1731
|
+
let IxRow = class IxRow {
|
|
1732
|
+
constructor(c, r, z) {
|
|
1733
|
+
this.z = z;
|
|
1734
|
+
c.detach();
|
|
1735
|
+
this.el = r.nativeElement;
|
|
1736
|
+
}
|
|
1737
|
+
};
|
|
1738
|
+
/** @nocollapse */ IxRow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1739
|
+
/** @nocollapse */ IxRow.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxRow, selector: "ix-row", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1740
|
+
IxRow = __decorate([
|
|
1741
|
+
ProxyCmp({})
|
|
1742
|
+
], IxRow);
|
|
1743
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxRow, decorators: [{
|
|
1744
|
+
type: Component,
|
|
1745
|
+
args: [{
|
|
1746
|
+
selector: 'ix-row',
|
|
1747
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1748
|
+
template: '<ng-content></ng-content>',
|
|
1749
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1750
|
+
inputs: [],
|
|
1751
|
+
}]
|
|
1752
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1634
1753
|
let IxSelect = class IxSelect {
|
|
1635
1754
|
constructor(c, r, z) {
|
|
1636
1755
|
this.z = z;
|
|
1637
1756
|
c.detach();
|
|
1638
1757
|
this.el = r.nativeElement;
|
|
1639
|
-
proxyOutputs(this, this.el, ['itemSelectionChange', 'inputChange', 'addItem']);
|
|
1758
|
+
proxyOutputs(this, this.el, ['valueChange', 'itemSelectionChange', 'inputChange', 'addItem']);
|
|
1640
1759
|
}
|
|
1641
1760
|
};
|
|
1642
1761
|
/** @nocollapse */ IxSelect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1643
|
-
/** @nocollapse */ IxSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxSelect, selector: "ix-select", inputs: { allowClear: "allowClear", disabled: "disabled", editable: "editable", hideListHeader: "hideListHeader", i18nNoMatches: "i18nNoMatches", i18nPlaceholder: "i18nPlaceholder", i18nPlaceholderEditable: "i18nPlaceholderEditable", i18nSelectListHeader: "i18nSelectListHeader", mode: "mode", readonly: "readonly", selectedIndices: "selectedIndices" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1762
|
+
/** @nocollapse */ IxSelect.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxSelect, selector: "ix-select", inputs: { allowClear: "allowClear", disabled: "disabled", editable: "editable", 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 });
|
|
1644
1763
|
IxSelect = __decorate([
|
|
1645
1764
|
ProxyCmp({
|
|
1646
|
-
inputs: ['allowClear', 'disabled', 'editable', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'mode', 'readonly', 'selectedIndices']
|
|
1765
|
+
inputs: ['allowClear', 'disabled', 'editable', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'mode', 'readonly', 'selectedIndices', 'value']
|
|
1647
1766
|
})
|
|
1648
1767
|
], IxSelect);
|
|
1649
1768
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxSelect, decorators: [{
|
|
@@ -1653,7 +1772,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1653
1772
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1654
1773
|
template: '<ng-content></ng-content>',
|
|
1655
1774
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1656
|
-
inputs: ['allowClear', 'disabled', 'editable', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'mode', 'readonly', 'selectedIndices'],
|
|
1775
|
+
inputs: ['allowClear', 'disabled', 'editable', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'mode', 'readonly', 'selectedIndices', 'value'],
|
|
1657
1776
|
}]
|
|
1658
1777
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1659
1778
|
let IxSelectItem = class IxSelectItem {
|
|
@@ -1681,6 +1800,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1681
1800
|
inputs: ['label', 'selected', 'value'],
|
|
1682
1801
|
}]
|
|
1683
1802
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1803
|
+
let IxSlider = class IxSlider {
|
|
1804
|
+
constructor(c, r, z) {
|
|
1805
|
+
this.z = z;
|
|
1806
|
+
c.detach();
|
|
1807
|
+
this.el = r.nativeElement;
|
|
1808
|
+
proxyOutputs(this, this.el, ['valueChange']);
|
|
1809
|
+
}
|
|
1810
|
+
};
|
|
1811
|
+
/** @nocollapse */ IxSlider.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1812
|
+
/** @nocollapse */ IxSlider.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
1813
|
+
IxSlider = __decorate([
|
|
1814
|
+
ProxyCmp({
|
|
1815
|
+
inputs: ['disabled', 'error', 'marker', 'max', 'min', 'step', 'trace', 'traceReference', 'value']
|
|
1816
|
+
})
|
|
1817
|
+
], IxSlider);
|
|
1818
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxSlider, decorators: [{
|
|
1819
|
+
type: Component,
|
|
1820
|
+
args: [{
|
|
1821
|
+
selector: 'ix-slider',
|
|
1822
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1823
|
+
template: '<ng-content></ng-content>',
|
|
1824
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1825
|
+
inputs: ['disabled', 'error', 'marker', 'max', 'min', 'step', 'trace', 'traceReference', 'value'],
|
|
1826
|
+
}]
|
|
1827
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1684
1828
|
let IxSpinner = class IxSpinner {
|
|
1685
1829
|
constructor(c, r, z) {
|
|
1686
1830
|
this.z = z;
|
|
@@ -1760,6 +1904,7 @@ let IxTabItem = class IxTabItem {
|
|
|
1760
1904
|
this.z = z;
|
|
1761
1905
|
c.detach();
|
|
1762
1906
|
this.el = r.nativeElement;
|
|
1907
|
+
proxyOutputs(this, this.el, ['tabClick']);
|
|
1763
1908
|
}
|
|
1764
1909
|
};
|
|
1765
1910
|
/** @nocollapse */ IxTabItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxTabItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1784,6 +1929,7 @@ let IxTabs = class IxTabs {
|
|
|
1784
1929
|
this.z = z;
|
|
1785
1930
|
c.detach();
|
|
1786
1931
|
this.el = r.nativeElement;
|
|
1932
|
+
proxyOutputs(this, this.el, ['selectedChange']);
|
|
1787
1933
|
}
|
|
1788
1934
|
};
|
|
1789
1935
|
/** @nocollapse */ IxTabs.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxTabs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -1928,6 +2074,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1928
2074
|
inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'textIndeterminate', 'textOff', 'textOn'],
|
|
1929
2075
|
}]
|
|
1930
2076
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2077
|
+
let IxToggleButton = class IxToggleButton {
|
|
2078
|
+
constructor(c, r, z) {
|
|
2079
|
+
this.z = z;
|
|
2080
|
+
c.detach();
|
|
2081
|
+
this.el = r.nativeElement;
|
|
2082
|
+
proxyOutputs(this, this.el, ['pressedChange']);
|
|
2083
|
+
}
|
|
2084
|
+
};
|
|
2085
|
+
/** @nocollapse */ IxToggleButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxToggleButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2086
|
+
/** @nocollapse */ IxToggleButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
2087
|
+
IxToggleButton = __decorate([
|
|
2088
|
+
ProxyCmp({
|
|
2089
|
+
inputs: ['disabled', 'ghost', 'icon', 'loading', 'outline', 'pressed', 'variant']
|
|
2090
|
+
})
|
|
2091
|
+
], IxToggleButton);
|
|
2092
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxToggleButton, decorators: [{
|
|
2093
|
+
type: Component,
|
|
2094
|
+
args: [{
|
|
2095
|
+
selector: 'ix-toggle-button',
|
|
2096
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2097
|
+
template: '<ng-content></ng-content>',
|
|
2098
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2099
|
+
inputs: ['disabled', 'ghost', 'icon', 'loading', 'outline', 'pressed', 'variant'],
|
|
2100
|
+
}]
|
|
2101
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1931
2102
|
let IxTooltip = class IxTooltip {
|
|
1932
2103
|
constructor(c, r, z) {
|
|
1933
2104
|
this.z = z;
|
|
@@ -1977,6 +2148,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1977
2148
|
inputs: ['context', 'hasChildren', 'text'],
|
|
1978
2149
|
}]
|
|
1979
2150
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2151
|
+
let IxTypography = class IxTypography {
|
|
2152
|
+
constructor(c, r, z) {
|
|
2153
|
+
this.z = z;
|
|
2154
|
+
c.detach();
|
|
2155
|
+
this.el = r.nativeElement;
|
|
2156
|
+
}
|
|
2157
|
+
};
|
|
2158
|
+
/** @nocollapse */ IxTypography.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxTypography, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2159
|
+
/** @nocollapse */ IxTypography.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxTypography, selector: "ix-typography", inputs: { bold: "bold", color: "color", format: "format", textDecoration: "textDecoration" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2160
|
+
IxTypography = __decorate([
|
|
2161
|
+
ProxyCmp({
|
|
2162
|
+
inputs: ['bold', 'color', 'format', 'textDecoration']
|
|
2163
|
+
})
|
|
2164
|
+
], IxTypography);
|
|
2165
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxTypography, decorators: [{
|
|
2166
|
+
type: Component,
|
|
2167
|
+
args: [{
|
|
2168
|
+
selector: 'ix-typography',
|
|
2169
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2170
|
+
template: '<ng-content></ng-content>',
|
|
2171
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2172
|
+
inputs: ['bold', 'color', 'format', 'textDecoration'],
|
|
2173
|
+
}]
|
|
2174
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1980
2175
|
let IxUpload = class IxUpload {
|
|
1981
2176
|
constructor(c, r, z) {
|
|
1982
2177
|
this.z = z;
|
|
@@ -2035,10 +2230,10 @@ let IxWorkflowStep = class IxWorkflowStep {
|
|
|
2035
2230
|
}
|
|
2036
2231
|
};
|
|
2037
2232
|
/** @nocollapse */ IxWorkflowStep.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxWorkflowStep, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2038
|
-
/** @nocollapse */ IxWorkflowStep.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxWorkflowStep, selector: "ix-workflow-step", inputs: { clickable: "clickable", disabled: "disabled",
|
|
2233
|
+
/** @nocollapse */ IxWorkflowStep.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
2039
2234
|
IxWorkflowStep = __decorate([
|
|
2040
2235
|
ProxyCmp({
|
|
2041
|
-
inputs: ['clickable', 'disabled', '
|
|
2236
|
+
inputs: ['clickable', 'disabled', 'selected', 'status', 'vertical']
|
|
2042
2237
|
})
|
|
2043
2238
|
], IxWorkflowStep);
|
|
2044
2239
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxWorkflowStep, decorators: [{
|
|
@@ -2048,7 +2243,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2048
2243
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2049
2244
|
template: '<ng-content></ng-content>',
|
|
2050
2245
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2051
|
-
inputs: ['clickable', 'disabled', '
|
|
2246
|
+
inputs: ['clickable', 'disabled', 'selected', 'status', 'vertical'],
|
|
2052
2247
|
}]
|
|
2053
2248
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2054
2249
|
let IxWorkflowSteps = class IxWorkflowSteps {
|
|
@@ -2060,10 +2255,10 @@ let IxWorkflowSteps = class IxWorkflowSteps {
|
|
|
2060
2255
|
}
|
|
2061
2256
|
};
|
|
2062
2257
|
/** @nocollapse */ IxWorkflowSteps.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxWorkflowSteps, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2063
|
-
/** @nocollapse */ IxWorkflowSteps.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxWorkflowSteps, selector: "ix-workflow-steps", inputs: { clickable: "clickable",
|
|
2258
|
+
/** @nocollapse */ IxWorkflowSteps.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
2064
2259
|
IxWorkflowSteps = __decorate([
|
|
2065
2260
|
ProxyCmp({
|
|
2066
|
-
inputs: ['clickable', '
|
|
2261
|
+
inputs: ['clickable', 'selectedIndex', 'vertical']
|
|
2067
2262
|
})
|
|
2068
2263
|
], IxWorkflowSteps);
|
|
2069
2264
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxWorkflowSteps, decorators: [{
|
|
@@ -2073,7 +2268,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2073
2268
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2074
2269
|
template: '<ng-content></ng-content>',
|
|
2075
2270
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2076
|
-
inputs: ['clickable', '
|
|
2271
|
+
inputs: ['clickable', 'selectedIndex', 'vertical'],
|
|
2077
2272
|
}]
|
|
2078
2273
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2079
2274
|
|
|
@@ -2104,6 +2299,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2104
2299
|
type: Input
|
|
2105
2300
|
}] } });
|
|
2106
2301
|
|
|
2302
|
+
let IxIcon = class IxIcon {
|
|
2303
|
+
constructor(c, r, z) {
|
|
2304
|
+
this.z = z;
|
|
2305
|
+
c.detach();
|
|
2306
|
+
this.el = r.nativeElement;
|
|
2307
|
+
}
|
|
2308
|
+
};
|
|
2309
|
+
/** @nocollapse */ IxIcon.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2310
|
+
/** @nocollapse */ IxIcon.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxIcon, selector: "ix-icon", inputs: { color: "color", name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2311
|
+
IxIcon = __decorate([
|
|
2312
|
+
ProxyCmp({
|
|
2313
|
+
defineCustomElementFn: undefined,
|
|
2314
|
+
inputs: ['color', 'name'],
|
|
2315
|
+
})
|
|
2316
|
+
], IxIcon);
|
|
2317
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxIcon, decorators: [{
|
|
2318
|
+
type: Component,
|
|
2319
|
+
args: [{
|
|
2320
|
+
selector: 'ix-icon',
|
|
2321
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2322
|
+
template: '<ng-content></ng-content>',
|
|
2323
|
+
inputs: ['color', 'name'],
|
|
2324
|
+
}]
|
|
2325
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2326
|
+
|
|
2107
2327
|
/*
|
|
2108
2328
|
* SPDX-FileCopyrightText: 2023 Siemens AG
|
|
2109
2329
|
*
|
|
@@ -2163,14 +2383,14 @@ class ModalService {
|
|
|
2163
2383
|
data: config.data,
|
|
2164
2384
|
};
|
|
2165
2385
|
if (config.content instanceof Type) {
|
|
2166
|
-
return this.createContentByComponentType(config, context);
|
|
2386
|
+
return this.createContentByComponentType(config.content, config, context);
|
|
2167
2387
|
}
|
|
2168
|
-
const modalInstance = await this.createContentByTemplateRef(config, context);
|
|
2388
|
+
const modalInstance = await this.createContentByTemplateRef(config.content, config, context);
|
|
2169
2389
|
return modalInstance;
|
|
2170
2390
|
}
|
|
2171
|
-
async createContentByComponentType(config, context) {
|
|
2391
|
+
async createContentByComponentType(componentType, config, context) {
|
|
2172
2392
|
const activeModal = new InternalIxActiveModal(context.data);
|
|
2173
|
-
const modalFactory = this.componentFactoryResolver.resolveComponentFactory(
|
|
2393
|
+
const modalFactory = this.componentFactoryResolver.resolveComponentFactory(componentType);
|
|
2174
2394
|
const modalInjector = Injector.create({
|
|
2175
2395
|
providers: [
|
|
2176
2396
|
{
|
|
@@ -2182,35 +2402,35 @@ class ModalService {
|
|
|
2182
2402
|
});
|
|
2183
2403
|
const instance = modalFactory.create(modalInjector);
|
|
2184
2404
|
this.appRef.attachView(instance.hostView);
|
|
2185
|
-
const
|
|
2186
|
-
const modalInstance = await this.createModalInstance(context,
|
|
2405
|
+
const element = instance.injector.get(ElementRef);
|
|
2406
|
+
const modalInstance = await this.createModalInstance(context, element.nativeElement, instance.hostView, config);
|
|
2187
2407
|
activeModal.setModalElement(modalInstance.htmlElement);
|
|
2188
2408
|
return modalInstance;
|
|
2189
2409
|
}
|
|
2190
|
-
async createContentByTemplateRef(config, context) {
|
|
2191
|
-
const embeddedView =
|
|
2410
|
+
async createContentByTemplateRef(templateRef, config, context) {
|
|
2411
|
+
const embeddedView = templateRef.createEmbeddedView({
|
|
2192
2412
|
$implicit: context,
|
|
2193
2413
|
});
|
|
2194
|
-
|
|
2414
|
+
this.appRef.attachView(embeddedView);
|
|
2415
|
+
return await this.createModalInstance(context, embeddedView.rootNodes[0], embeddedView, config);
|
|
2195
2416
|
}
|
|
2196
|
-
async createModalInstance(context,
|
|
2197
|
-
const node = embeddedView.rootNodes[0];
|
|
2417
|
+
async createModalInstance(context, htmlElement, viewRef, config) {
|
|
2198
2418
|
context.close = (result) => {
|
|
2199
|
-
closeModal(
|
|
2419
|
+
closeModal(htmlElement, result);
|
|
2200
2420
|
};
|
|
2201
2421
|
context.dismiss = (result) => {
|
|
2202
|
-
dismissModal(
|
|
2422
|
+
dismissModal(htmlElement, result);
|
|
2203
2423
|
};
|
|
2204
|
-
|
|
2424
|
+
viewRef.detectChanges();
|
|
2205
2425
|
const modalInstance = await showModal({
|
|
2206
2426
|
...config,
|
|
2207
|
-
content:
|
|
2427
|
+
content: htmlElement,
|
|
2208
2428
|
});
|
|
2209
2429
|
modalInstance.onClose.once(() => {
|
|
2210
|
-
|
|
2430
|
+
viewRef.destroy();
|
|
2211
2431
|
});
|
|
2212
2432
|
modalInstance.onDismiss.once(() => {
|
|
2213
|
-
|
|
2433
|
+
viewRef.destroy();
|
|
2214
2434
|
});
|
|
2215
2435
|
return modalInstance;
|
|
2216
2436
|
}
|
|
@@ -2243,24 +2463,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2243
2463
|
*/
|
|
2244
2464
|
let didInitialize = false;
|
|
2245
2465
|
const appInitialize = (doc) => {
|
|
2246
|
-
return () => {
|
|
2466
|
+
return async () => {
|
|
2247
2467
|
const win = doc.defaultView;
|
|
2248
2468
|
if (win && typeof window !== 'undefined') {
|
|
2249
2469
|
if (didInitialize) {
|
|
2250
2470
|
return;
|
|
2251
2471
|
}
|
|
2252
2472
|
didInitialize = true;
|
|
2253
|
-
applyPolyfills()
|
|
2254
|
-
|
|
2255
|
-
|
|
2473
|
+
await applyPolyfills();
|
|
2474
|
+
await defineCustomElements();
|
|
2475
|
+
await defineCustomElements$1();
|
|
2256
2476
|
}
|
|
2257
2477
|
};
|
|
2258
2478
|
};
|
|
2259
2479
|
|
|
2260
2480
|
const DIRECTIVES = [
|
|
2261
2481
|
IxActionCard,
|
|
2262
|
-
IxAnimatedTab,
|
|
2263
|
-
IxAnimatedTabs,
|
|
2264
2482
|
IxApplicationHeader,
|
|
2265
2483
|
IxAvatar,
|
|
2266
2484
|
IxBasicNavigation,
|
|
@@ -2275,6 +2493,7 @@ const DIRECTIVES = [
|
|
|
2275
2493
|
IxCardTitle,
|
|
2276
2494
|
IxCategoryFilter,
|
|
2277
2495
|
IxChip,
|
|
2496
|
+
IxCol,
|
|
2278
2497
|
IxContentHeader,
|
|
2279
2498
|
IxDatePicker,
|
|
2280
2499
|
IxDatetimePicker,
|
|
@@ -2292,15 +2511,17 @@ const DIRECTIVES = [
|
|
|
2292
2511
|
IxFilterChip,
|
|
2293
2512
|
IxFlipTile,
|
|
2294
2513
|
IxFlipTileContent,
|
|
2514
|
+
IxFormField,
|
|
2295
2515
|
IxGroup,
|
|
2296
2516
|
IxGroupContextMenu,
|
|
2297
2517
|
IxGroupItem,
|
|
2298
|
-
IxIcon,
|
|
2299
2518
|
IxIconButton,
|
|
2519
|
+
IxIconToggleButton,
|
|
2300
2520
|
IxInputGroup,
|
|
2301
2521
|
IxKeyValue,
|
|
2302
2522
|
IxKeyValueList,
|
|
2303
2523
|
IxKpi,
|
|
2524
|
+
IxLayoutGrid,
|
|
2304
2525
|
IxLinkButton,
|
|
2305
2526
|
IxMapNavigation,
|
|
2306
2527
|
IxMapNavigationOverlay,
|
|
@@ -2323,8 +2544,10 @@ const DIRECTIVES = [
|
|
|
2323
2544
|
IxPagination,
|
|
2324
2545
|
IxPill,
|
|
2325
2546
|
IxPushCard,
|
|
2547
|
+
IxRow,
|
|
2326
2548
|
IxSelect,
|
|
2327
2549
|
IxSelectItem,
|
|
2550
|
+
IxSlider,
|
|
2328
2551
|
IxSpinner,
|
|
2329
2552
|
IxSplitButton,
|
|
2330
2553
|
IxSplitButtonItem,
|
|
@@ -2335,14 +2558,47 @@ const DIRECTIVES = [
|
|
|
2335
2558
|
IxToast,
|
|
2336
2559
|
IxToastContainer,
|
|
2337
2560
|
IxToggle,
|
|
2561
|
+
IxToggleButton,
|
|
2338
2562
|
IxTooltip,
|
|
2339
2563
|
IxTreeItem,
|
|
2564
|
+
IxTypography,
|
|
2340
2565
|
IxUpload,
|
|
2341
2566
|
IxValidationTooltip,
|
|
2342
2567
|
IxWorkflowStep,
|
|
2343
2568
|
IxWorkflowSteps
|
|
2344
2569
|
];
|
|
2345
2570
|
|
|
2571
|
+
class SelectValueAccessor extends ValueAccessor {
|
|
2572
|
+
constructor(el) {
|
|
2573
|
+
super(el);
|
|
2574
|
+
}
|
|
2575
|
+
}
|
|
2576
|
+
/** @nocollapse */ SelectValueAccessor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SelectValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2577
|
+
/** @nocollapse */ SelectValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: SelectValueAccessor, selector: "ix-select[ngModel],ix-select[formControlName],ix-select[formControl]", host: { listeners: { "valueChange": "handleChangeEvent($event.target.value)" } }, providers: [
|
|
2578
|
+
{
|
|
2579
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2580
|
+
useExisting: SelectValueAccessor,
|
|
2581
|
+
multi: true
|
|
2582
|
+
}
|
|
2583
|
+
], usesInheritance: true, ngImport: i0 });
|
|
2584
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
2585
|
+
type: Directive,
|
|
2586
|
+
args: [{
|
|
2587
|
+
/* tslint:disable-next-line:directive-selector */
|
|
2588
|
+
selector: 'ix-select[ngModel],ix-select[formControlName],ix-select[formControl]',
|
|
2589
|
+
host: {
|
|
2590
|
+
'(valueChange)': 'handleChangeEvent($event.target.value)'
|
|
2591
|
+
},
|
|
2592
|
+
providers: [
|
|
2593
|
+
{
|
|
2594
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2595
|
+
useExisting: SelectValueAccessor,
|
|
2596
|
+
multi: true
|
|
2597
|
+
}
|
|
2598
|
+
]
|
|
2599
|
+
}]
|
|
2600
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
2601
|
+
|
|
2346
2602
|
/*
|
|
2347
2603
|
* SPDX-FileCopyrightText: 2023 Siemens AG
|
|
2348
2604
|
*
|
|
@@ -2351,6 +2607,9 @@ const DIRECTIVES = [
|
|
|
2351
2607
|
* This source code is licensed under the MIT license found in the
|
|
2352
2608
|
* LICENSE file in the root directory of this source tree.
|
|
2353
2609
|
*/
|
|
2610
|
+
/**
|
|
2611
|
+
* @deprecated Use themeSwitcher from core package `import { themeSwitcher } from '@siemens/ix';`
|
|
2612
|
+
*/
|
|
2354
2613
|
class ThemeService {
|
|
2355
2614
|
constructor() {
|
|
2356
2615
|
this.themeChanged = new EventEmitter();
|
|
@@ -2527,7 +2786,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2527
2786
|
* This source code is licensed under the MIT license found in the
|
|
2528
2787
|
* LICENSE file in the root directory of this source tree.
|
|
2529
2788
|
*/
|
|
2530
|
-
const DECLARATIONS = [
|
|
2789
|
+
const DECLARATIONS = [
|
|
2790
|
+
...DIRECTIVES,
|
|
2791
|
+
IxTree,
|
|
2792
|
+
IxDropdownTriggerDirective,
|
|
2793
|
+
IxIcon,
|
|
2794
|
+
SelectValueAccessor,
|
|
2795
|
+
BooleanValueAccessor
|
|
2796
|
+
];
|
|
2531
2797
|
class IxModule {
|
|
2532
2798
|
static forRoot() {
|
|
2533
2799
|
return {
|
|
@@ -2547,7 +2813,13 @@ class IxModule {
|
|
|
2547
2813
|
}
|
|
2548
2814
|
}
|
|
2549
2815
|
/** @nocollapse */ IxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2550
|
-
/** @nocollapse */ IxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule, declarations: [IxActionCard,
|
|
2816
|
+
/** @nocollapse */ IxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule, declarations: [IxActionCard, IxApplicationHeader, IxAvatar, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxChip, IxCol, IxContentHeader, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent, IxFormField, IxGroup, IxGroupContextMenu, IxGroupItem, IxIconButton, IxIconToggleButton, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLayoutGrid, IxLinkButton, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalExample, IxModalFooter, IxModalHeader, IxPagination, IxPill, IxPushCard, IxRow, IxSelect, IxSelectItem, IxSlider, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree, IxDropdownTriggerDirective,
|
|
2817
|
+
IxIcon,
|
|
2818
|
+
SelectValueAccessor,
|
|
2819
|
+
BooleanValueAccessor], exports: [IxActionCard, IxApplicationHeader, IxAvatar, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxChip, IxCol, IxContentHeader, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent, IxFormField, IxGroup, IxGroupContextMenu, IxGroupItem, IxIconButton, IxIconToggleButton, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLayoutGrid, IxLinkButton, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalExample, IxModalFooter, IxModalHeader, IxPagination, IxPill, IxPushCard, IxRow, IxSelect, IxSelectItem, IxSlider, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree, IxDropdownTriggerDirective,
|
|
2820
|
+
IxIcon,
|
|
2821
|
+
SelectValueAccessor,
|
|
2822
|
+
BooleanValueAccessor] });
|
|
2551
2823
|
/** @nocollapse */ IxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule });
|
|
2552
2824
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule, decorators: [{
|
|
2553
2825
|
type: NgModule,
|
|
@@ -2570,5 +2842,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2570
2842
|
* Generated bundle index. Do not edit.
|
|
2571
2843
|
*/
|
|
2572
2844
|
|
|
2573
|
-
export { IxActionCard, IxActiveModal,
|
|
2845
|
+
export { BooleanValueAccessor, IxActionCard, IxActiveModal, IxApplicationHeader, IxAvatar, IxBasicNavigation, IxBlind, IxBreadcrumb, IxBreadcrumbItem, IxButton, IxCard, IxCardAccordion, IxCardContent, IxCardList, IxCardTitle, IxCategoryFilter, IxChip, IxCol, IxContentHeader, IxDatePicker, IxDatetimePicker, IxDivider, IxDrawer, IxDropdown, IxDropdownButton, IxDropdownHeader, IxDropdownItem, IxDropdownQuickActions, IxDropdownTriggerDirective, IxEmptyState, IxEventList, IxEventListItem, IxExpandingSearch, IxFilterChip, IxFlipTile, IxFlipTileContent, IxFormField, IxGroup, IxGroupContextMenu, IxGroupItem, IxIcon, IxIconButton, IxIconToggleButton, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLayoutGrid, IxLinkButton, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalExample, IxModalFooter, IxModalHeader, IxModule, IxPagination, IxPill, IxPushCard, IxRow, IxSelect, IxSelectItem, IxSlider, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTree, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, ModalService, SelectValueAccessor, ThemeService, ToastService };
|
|
2574
2846
|
//# sourceMappingURL=siemens-ix-angular.mjs.map
|