@siemens/ix-angular 1.6.3 → 2.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components.d.ts +186 -70
- package/declare-components.d.ts +1 -1
- package/esm2020/components.mjs +388 -165
- package/esm2020/declare-components.mjs +15 -6
- package/esm2020/index.mjs +2 -1
- package/esm2020/modal/modal.config.mjs +1 -1
- package/esm2020/modal/modal.service.mjs +21 -22
- package/esm2020/module.mjs +11 -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 +487 -184
- package/fesm2015/siemens-ix-angular.mjs.map +1 -1
- package/fesm2020/siemens-ix-angular.mjs +488 -186
- package/fesm2020/siemens-ix-angular.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/modal/modal.config.d.ts +2 -1
- package/module.d.ts +2 -1
- package/package.json +2 -2
- 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,12 @@
|
|
|
1
|
-
import { closeModal, dismissModal,
|
|
1
|
+
import { closeModal, dismissModal, showModal, themeSwitcher, getToastContainer, toast } from '@siemens/ix';
|
|
2
2
|
export * from '@siemens/ix';
|
|
3
3
|
import { __decorate } from 'tslib';
|
|
4
4
|
import * as i0 from '@angular/core';
|
|
5
|
-
import { Component, ChangeDetectionStrategy, Directive, Input, Type, Injector, Injectable, EventEmitter, Output, APP_INITIALIZER, NgZone, NgModule } from '@angular/core';
|
|
5
|
+
import { Component, ChangeDetectionStrategy, Directive, Input, Type, Injector, ElementRef, Injectable, HostListener, EventEmitter, Output, APP_INITIALIZER, NgZone, NgModule } from '@angular/core';
|
|
6
6
|
import { fromEvent } from 'rxjs';
|
|
7
7
|
import { DOCUMENT } from '@angular/common';
|
|
8
8
|
import { applyPolyfills, defineCustomElements } from '@siemens/ix/loader';
|
|
9
|
+
import { NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
9
10
|
|
|
10
11
|
/* eslint-disable */
|
|
11
12
|
const proxyInputs = (Cmp, inputs) => {
|
|
@@ -80,77 +81,52 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
80
81
|
inputs: ['heading', 'icon', 'selected', 'subheading', 'variant'],
|
|
81
82
|
}]
|
|
82
83
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
83
|
-
let
|
|
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 {
|
|
84
|
+
let IxApplicationHeader = class IxApplicationHeader {
|
|
108
85
|
constructor(c, r, z) {
|
|
109
86
|
this.z = z;
|
|
110
87
|
c.detach();
|
|
111
88
|
this.el = r.nativeElement;
|
|
112
|
-
proxyOutputs(this, this.el, ['tabClick']);
|
|
113
89
|
}
|
|
114
90
|
};
|
|
115
|
-
/** @nocollapse */
|
|
116
|
-
/** @nocollapse */
|
|
117
|
-
|
|
91
|
+
/** @nocollapse */ IxApplicationHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxApplicationHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
92
|
+
/** @nocollapse */ IxApplicationHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxApplicationHeader, selector: "ix-application-header", inputs: { name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
93
|
+
IxApplicationHeader = __decorate([
|
|
118
94
|
ProxyCmp({
|
|
119
|
-
inputs: ['
|
|
95
|
+
inputs: ['name']
|
|
120
96
|
})
|
|
121
|
-
],
|
|
122
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type:
|
|
97
|
+
], IxApplicationHeader);
|
|
98
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxApplicationHeader, decorators: [{
|
|
123
99
|
type: Component,
|
|
124
100
|
args: [{
|
|
125
|
-
selector: 'ix-
|
|
101
|
+
selector: 'ix-application-header',
|
|
126
102
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
127
103
|
template: '<ng-content></ng-content>',
|
|
128
104
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
129
|
-
inputs: ['
|
|
105
|
+
inputs: ['name'],
|
|
130
106
|
}]
|
|
131
107
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
132
|
-
let
|
|
108
|
+
let IxAvatar = class IxAvatar {
|
|
133
109
|
constructor(c, r, z) {
|
|
134
110
|
this.z = z;
|
|
135
111
|
c.detach();
|
|
136
112
|
this.el = r.nativeElement;
|
|
137
113
|
}
|
|
138
114
|
};
|
|
139
|
-
/** @nocollapse */
|
|
140
|
-
/** @nocollapse */
|
|
141
|
-
|
|
115
|
+
/** @nocollapse */ IxAvatar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
116
|
+
/** @nocollapse */ IxAvatar.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxAvatar, selector: "ix-avatar", inputs: { image: "image", initials: "initials" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
117
|
+
IxAvatar = __decorate([
|
|
142
118
|
ProxyCmp({
|
|
143
|
-
inputs: ['
|
|
119
|
+
inputs: ['image', 'initials']
|
|
144
120
|
})
|
|
145
|
-
],
|
|
146
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type:
|
|
121
|
+
], IxAvatar);
|
|
122
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxAvatar, decorators: [{
|
|
147
123
|
type: Component,
|
|
148
124
|
args: [{
|
|
149
|
-
selector: 'ix-
|
|
125
|
+
selector: 'ix-avatar',
|
|
150
126
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
151
127
|
template: '<ng-content></ng-content>',
|
|
152
128
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
153
|
-
inputs: ['
|
|
129
|
+
inputs: ['image', 'initials'],
|
|
154
130
|
}]
|
|
155
131
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
156
132
|
let IxBasicNavigation = class IxBasicNavigation {
|
|
@@ -161,10 +137,10 @@ let IxBasicNavigation = class IxBasicNavigation {
|
|
|
161
137
|
}
|
|
162
138
|
};
|
|
163
139
|
/** @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 });
|
|
164
|
-
/** @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 });
|
|
140
|
+
/** @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 });
|
|
165
141
|
IxBasicNavigation = __decorate([
|
|
166
142
|
ProxyCmp({
|
|
167
|
-
inputs: ['applicationName', 'hideHeader']
|
|
143
|
+
inputs: ['applicationName', 'breakpoints', 'forceBreakpoint', 'hideHeader']
|
|
168
144
|
})
|
|
169
145
|
], IxBasicNavigation);
|
|
170
146
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxBasicNavigation, decorators: [{
|
|
@@ -174,7 +150,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
174
150
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
175
151
|
template: '<ng-content></ng-content>',
|
|
176
152
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
177
|
-
inputs: ['applicationName', 'hideHeader'],
|
|
153
|
+
inputs: ['applicationName', 'breakpoints', 'forceBreakpoint', 'hideHeader'],
|
|
178
154
|
}]
|
|
179
155
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
180
156
|
let IxBlind = class IxBlind {
|
|
@@ -186,10 +162,10 @@ let IxBlind = class IxBlind {
|
|
|
186
162
|
}
|
|
187
163
|
};
|
|
188
164
|
/** @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 });
|
|
189
|
-
/** @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 });
|
|
165
|
+
/** @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" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
190
166
|
IxBlind = __decorate([
|
|
191
167
|
ProxyCmp({
|
|
192
|
-
inputs: ['collapsed', 'icon', 'label']
|
|
168
|
+
inputs: ['collapsed', 'icon', 'label', 'sublabel']
|
|
193
169
|
})
|
|
194
170
|
], IxBlind);
|
|
195
171
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxBlind, decorators: [{
|
|
@@ -199,7 +175,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
199
175
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
200
176
|
template: '<ng-content></ng-content>',
|
|
201
177
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
202
|
-
inputs: ['collapsed', 'icon', 'label'],
|
|
178
|
+
inputs: ['collapsed', 'icon', 'label', 'sublabel'],
|
|
203
179
|
}]
|
|
204
180
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
205
181
|
let IxBreadcrumb = class IxBreadcrumb {
|
|
@@ -211,10 +187,10 @@ let IxBreadcrumb = class IxBreadcrumb {
|
|
|
211
187
|
}
|
|
212
188
|
};
|
|
213
189
|
/** @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 });
|
|
214
|
-
/** @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 });
|
|
190
|
+
/** @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 });
|
|
215
191
|
IxBreadcrumb = __decorate([
|
|
216
192
|
ProxyCmp({
|
|
217
|
-
inputs: ['ghost', 'nextItems', 'visibleItemCount']
|
|
193
|
+
inputs: ['ariaLabelPreviousButton', 'ghost', 'nextItems', 'visibleItemCount']
|
|
218
194
|
})
|
|
219
195
|
], IxBreadcrumb);
|
|
220
196
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxBreadcrumb, decorators: [{
|
|
@@ -224,7 +200,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
224
200
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
225
201
|
template: '<ng-content></ng-content>',
|
|
226
202
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
227
|
-
inputs: ['ghost', 'nextItems', 'visibleItemCount'],
|
|
203
|
+
inputs: ['ariaLabelPreviousButton', 'ghost', 'nextItems', 'visibleItemCount'],
|
|
228
204
|
}]
|
|
229
205
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
230
206
|
let IxBreadcrumbItem = class IxBreadcrumbItem {
|
|
@@ -259,10 +235,10 @@ let IxButton = class IxButton {
|
|
|
259
235
|
}
|
|
260
236
|
};
|
|
261
237
|
/** @nocollapse */ IxButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
262
|
-
/** @nocollapse */ IxButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxButton, selector: "ix-button", inputs: { disabled: "disabled", ghost: "ghost",
|
|
238
|
+
/** @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 });
|
|
263
239
|
IxButton = __decorate([
|
|
264
240
|
ProxyCmp({
|
|
265
|
-
inputs: ['disabled', 'ghost', '
|
|
241
|
+
inputs: ['disabled', 'ghost', 'icon', 'loading', 'outline', 'type', 'variant']
|
|
266
242
|
})
|
|
267
243
|
], IxButton);
|
|
268
244
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxButton, decorators: [{
|
|
@@ -272,7 +248,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
272
248
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
273
249
|
template: '<ng-content></ng-content>',
|
|
274
250
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
275
|
-
inputs: ['disabled', 'ghost', '
|
|
251
|
+
inputs: ['disabled', 'ghost', 'icon', 'loading', 'outline', 'type', 'variant'],
|
|
276
252
|
}]
|
|
277
253
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
278
254
|
let IxCard = class IxCard {
|
|
@@ -395,14 +371,14 @@ let IxCategoryFilter = class IxCategoryFilter {
|
|
|
395
371
|
this.z = z;
|
|
396
372
|
c.detach();
|
|
397
373
|
this.el = r.nativeElement;
|
|
398
|
-
proxyOutputs(this, this.el, ['inputChanged', 'filterChanged']);
|
|
374
|
+
proxyOutputs(this, this.el, ['categoryChanged', 'inputChanged', 'filterChanged']);
|
|
399
375
|
}
|
|
400
376
|
};
|
|
401
377
|
/** @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 });
|
|
402
|
-
/** @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",
|
|
378
|
+
/** @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 });
|
|
403
379
|
IxCategoryFilter = __decorate([
|
|
404
380
|
ProxyCmp({
|
|
405
|
-
inputs: ['categories', 'filterState', 'hideIcon', 'i18nPlainText', 'icon', '
|
|
381
|
+
inputs: ['categories', 'disabled', 'filterState', 'hideIcon', 'i18nPlainText', 'icon', 'labelCategories', 'nonSelectableCategories', 'placeholder', 'readonly', 'repeatCategories', 'suggestions']
|
|
406
382
|
})
|
|
407
383
|
], IxCategoryFilter);
|
|
408
384
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxCategoryFilter, decorators: [{
|
|
@@ -412,7 +388,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
412
388
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
413
389
|
template: '<ng-content></ng-content>',
|
|
414
390
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
415
|
-
inputs: ['categories', 'filterState', 'hideIcon', 'i18nPlainText', 'icon', '
|
|
391
|
+
inputs: ['categories', 'disabled', 'filterState', 'hideIcon', 'i18nPlainText', 'icon', 'labelCategories', 'nonSelectableCategories', 'placeholder', 'readonly', 'repeatCategories', 'suggestions'],
|
|
416
392
|
}]
|
|
417
393
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
418
394
|
let IxChip = class IxChip {
|
|
@@ -440,53 +416,53 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
440
416
|
inputs: ['active', 'background', 'closable', 'color', 'icon', 'outline', 'variant'],
|
|
441
417
|
}]
|
|
442
418
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
443
|
-
let
|
|
419
|
+
let IxCol = class IxCol {
|
|
444
420
|
constructor(c, r, z) {
|
|
445
421
|
this.z = z;
|
|
446
422
|
c.detach();
|
|
447
423
|
this.el = r.nativeElement;
|
|
448
|
-
proxyOutputs(this, this.el, ['backButtonClick']);
|
|
449
424
|
}
|
|
450
425
|
};
|
|
451
|
-
/** @nocollapse */
|
|
452
|
-
/** @nocollapse */
|
|
453
|
-
|
|
426
|
+
/** @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 });
|
|
427
|
+
/** @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 });
|
|
428
|
+
IxCol = __decorate([
|
|
454
429
|
ProxyCmp({
|
|
455
|
-
inputs: ['
|
|
430
|
+
inputs: ['size', 'sizeLg', 'sizeMd', 'sizeSm']
|
|
456
431
|
})
|
|
457
|
-
],
|
|
458
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type:
|
|
432
|
+
], IxCol);
|
|
433
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxCol, decorators: [{
|
|
459
434
|
type: Component,
|
|
460
435
|
args: [{
|
|
461
|
-
selector: 'ix-
|
|
436
|
+
selector: 'ix-col',
|
|
462
437
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
463
438
|
template: '<ng-content></ng-content>',
|
|
464
439
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
465
|
-
inputs: ['
|
|
440
|
+
inputs: ['size', 'sizeLg', 'sizeMd', 'sizeSm'],
|
|
466
441
|
}]
|
|
467
442
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
468
|
-
let
|
|
443
|
+
let IxContentHeader = class IxContentHeader {
|
|
469
444
|
constructor(c, r, z) {
|
|
470
445
|
this.z = z;
|
|
471
446
|
c.detach();
|
|
472
447
|
this.el = r.nativeElement;
|
|
448
|
+
proxyOutputs(this, this.el, ['backButtonClick']);
|
|
473
449
|
}
|
|
474
450
|
};
|
|
475
|
-
/** @nocollapse */
|
|
476
|
-
/** @nocollapse */
|
|
477
|
-
|
|
451
|
+
/** @nocollapse */ IxContentHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxContentHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
452
|
+
/** @nocollapse */ IxContentHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", 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 });
|
|
453
|
+
IxContentHeader = __decorate([
|
|
478
454
|
ProxyCmp({
|
|
479
|
-
inputs: ['
|
|
455
|
+
inputs: ['hasBackButton', 'headerSubtitle', 'headerTitle', 'variant']
|
|
480
456
|
})
|
|
481
|
-
],
|
|
482
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type:
|
|
457
|
+
], IxContentHeader);
|
|
458
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxContentHeader, decorators: [{
|
|
483
459
|
type: Component,
|
|
484
460
|
args: [{
|
|
485
|
-
selector: 'ix-
|
|
461
|
+
selector: 'ix-content-header',
|
|
486
462
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
487
463
|
template: '<ng-content></ng-content>',
|
|
488
464
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
489
|
-
inputs: ['
|
|
465
|
+
inputs: ['hasBackButton', 'headerSubtitle', 'headerTitle', 'variant'],
|
|
490
466
|
}]
|
|
491
467
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
492
468
|
let IxDatePicker = class IxDatePicker {
|
|
@@ -597,10 +573,10 @@ let IxDropdown = class IxDropdown {
|
|
|
597
573
|
}
|
|
598
574
|
};
|
|
599
575
|
/** @nocollapse */ IxDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
600
|
-
/** @nocollapse */ IxDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxDropdown, selector: "ix-dropdown", inputs: {
|
|
576
|
+
/** @nocollapse */ IxDropdown.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxDropdown, selector: "ix-dropdown", inputs: { anchor: "anchor", closeBehavior: "closeBehavior", header: "header", placement: "placement", positioningStrategy: "positioningStrategy", show: "show", suppressAutomaticPlacement: "suppressAutomaticPlacement", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
601
577
|
IxDropdown = __decorate([
|
|
602
578
|
ProxyCmp({
|
|
603
|
-
inputs: ['
|
|
579
|
+
inputs: ['anchor', 'closeBehavior', 'header', 'placement', 'positioningStrategy', 'show', 'suppressAutomaticPlacement', 'trigger'],
|
|
604
580
|
methods: ['updatePosition']
|
|
605
581
|
})
|
|
606
582
|
], IxDropdown);
|
|
@@ -611,7 +587,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
611
587
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
612
588
|
template: '<ng-content></ng-content>',
|
|
613
589
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
614
|
-
inputs: ['
|
|
590
|
+
inputs: ['anchor', 'closeBehavior', 'header', 'placement', 'positioningStrategy', 'show', 'suppressAutomaticPlacement', 'trigger'],
|
|
615
591
|
}]
|
|
616
592
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
617
593
|
let IxDropdownButton = class IxDropdownButton {
|
|
@@ -622,10 +598,10 @@ let IxDropdownButton = class IxDropdownButton {
|
|
|
622
598
|
}
|
|
623
599
|
};
|
|
624
600
|
/** @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: { active: "active", disabled: "disabled", ghost: "ghost", icon: "icon", label: "label", outline: "outline", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
601
|
+
/** @nocollapse */ IxDropdownButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxDropdownButton, selector: "ix-dropdown-button", inputs: { active: "active", disabled: "disabled", ghost: "ghost", icon: "icon", label: "label", outline: "outline", placement: "placement", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
626
602
|
IxDropdownButton = __decorate([
|
|
627
603
|
ProxyCmp({
|
|
628
|
-
inputs: ['active', 'disabled', 'ghost', 'icon', 'label', 'outline', 'variant']
|
|
604
|
+
inputs: ['active', 'disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'variant']
|
|
629
605
|
})
|
|
630
606
|
], IxDropdownButton);
|
|
631
607
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxDropdownButton, decorators: [{
|
|
@@ -635,7 +611,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
635
611
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
636
612
|
template: '<ng-content></ng-content>',
|
|
637
613
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
638
|
-
inputs: ['active', 'disabled', 'ghost', 'icon', 'label', 'outline', 'variant'],
|
|
614
|
+
inputs: ['active', 'disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'variant'],
|
|
615
|
+
}]
|
|
616
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
617
|
+
let IxDropdownHeader = class IxDropdownHeader {
|
|
618
|
+
constructor(c, r, z) {
|
|
619
|
+
this.z = z;
|
|
620
|
+
c.detach();
|
|
621
|
+
this.el = r.nativeElement;
|
|
622
|
+
}
|
|
623
|
+
};
|
|
624
|
+
/** @nocollapse */ IxDropdownHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxDropdownHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
625
|
+
/** @nocollapse */ IxDropdownHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxDropdownHeader, selector: "ix-dropdown-header", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
626
|
+
IxDropdownHeader = __decorate([
|
|
627
|
+
ProxyCmp({
|
|
628
|
+
inputs: ['label']
|
|
629
|
+
})
|
|
630
|
+
], IxDropdownHeader);
|
|
631
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxDropdownHeader, decorators: [{
|
|
632
|
+
type: Component,
|
|
633
|
+
args: [{
|
|
634
|
+
selector: 'ix-dropdown-header',
|
|
635
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
636
|
+
template: '<ng-content></ng-content>',
|
|
637
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
638
|
+
inputs: ['label'],
|
|
639
639
|
}]
|
|
640
640
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
641
641
|
let IxDropdownItem = class IxDropdownItem {
|
|
@@ -794,10 +794,10 @@ let IxFilterChip = class IxFilterChip {
|
|
|
794
794
|
}
|
|
795
795
|
};
|
|
796
796
|
/** @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 });
|
|
797
|
-
/** @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 });
|
|
797
|
+
/** @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 });
|
|
798
798
|
IxFilterChip = __decorate([
|
|
799
799
|
ProxyCmp({
|
|
800
|
-
inputs: ['disabled']
|
|
800
|
+
inputs: ['disabled', 'readonly']
|
|
801
801
|
})
|
|
802
802
|
], IxFilterChip);
|
|
803
803
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxFilterChip, decorators: [{
|
|
@@ -807,7 +807,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
807
807
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
808
808
|
template: '<ng-content></ng-content>',
|
|
809
809
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
810
|
-
inputs: ['disabled'],
|
|
810
|
+
inputs: ['disabled', 'readonly'],
|
|
811
811
|
}]
|
|
812
812
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
813
813
|
let IxFlipTile = class IxFlipTile {
|
|
@@ -818,10 +818,10 @@ let IxFlipTile = class IxFlipTile {
|
|
|
818
818
|
}
|
|
819
819
|
};
|
|
820
820
|
/** @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 });
|
|
821
|
-
/** @nocollapse */ IxFlipTile.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxFlipTile, selector: "ix-flip-tile", inputs: {
|
|
821
|
+
/** @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 });
|
|
822
822
|
IxFlipTile = __decorate([
|
|
823
823
|
ProxyCmp({
|
|
824
|
-
inputs: ['
|
|
824
|
+
inputs: ['height', 'state', 'width']
|
|
825
825
|
})
|
|
826
826
|
], IxFlipTile);
|
|
827
827
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxFlipTile, decorators: [{
|
|
@@ -831,7 +831,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
831
831
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
832
832
|
template: '<ng-content></ng-content>',
|
|
833
833
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
834
|
-
inputs: ['
|
|
834
|
+
inputs: ['height', 'state', 'width'],
|
|
835
835
|
}]
|
|
836
836
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
837
837
|
let IxFlipTileContent = class IxFlipTileContent {
|
|
@@ -856,6 +856,54 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
856
856
|
inputs: [],
|
|
857
857
|
}]
|
|
858
858
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
859
|
+
let IxFormField = class IxFormField {
|
|
860
|
+
constructor(c, r, z) {
|
|
861
|
+
this.z = z;
|
|
862
|
+
c.detach();
|
|
863
|
+
this.el = r.nativeElement;
|
|
864
|
+
}
|
|
865
|
+
};
|
|
866
|
+
/** @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 });
|
|
867
|
+
/** @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 });
|
|
868
|
+
IxFormField = __decorate([
|
|
869
|
+
ProxyCmp({
|
|
870
|
+
inputs: ['label']
|
|
871
|
+
})
|
|
872
|
+
], IxFormField);
|
|
873
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxFormField, decorators: [{
|
|
874
|
+
type: Component,
|
|
875
|
+
args: [{
|
|
876
|
+
selector: 'ix-form-field',
|
|
877
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
878
|
+
template: '<ng-content></ng-content>',
|
|
879
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
880
|
+
inputs: ['label'],
|
|
881
|
+
}]
|
|
882
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
883
|
+
let IxGrid = class IxGrid {
|
|
884
|
+
constructor(c, r, z) {
|
|
885
|
+
this.z = z;
|
|
886
|
+
c.detach();
|
|
887
|
+
this.el = r.nativeElement;
|
|
888
|
+
}
|
|
889
|
+
};
|
|
890
|
+
/** @nocollapse */ IxGrid.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
891
|
+
/** @nocollapse */ IxGrid.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxGrid, selector: "ix-grid", inputs: { columns: "columns", noPadding: "noPadding", noRowGap: "noRowGap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
892
|
+
IxGrid = __decorate([
|
|
893
|
+
ProxyCmp({
|
|
894
|
+
inputs: ['columns', 'noPadding', 'noRowGap']
|
|
895
|
+
})
|
|
896
|
+
], IxGrid);
|
|
897
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxGrid, decorators: [{
|
|
898
|
+
type: Component,
|
|
899
|
+
args: [{
|
|
900
|
+
selector: 'ix-grid',
|
|
901
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
902
|
+
template: '<ng-content></ng-content>',
|
|
903
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
904
|
+
inputs: ['columns', 'noPadding', 'noRowGap'],
|
|
905
|
+
}]
|
|
906
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
859
907
|
let IxGroup = class IxGroup {
|
|
860
908
|
constructor(c, r, z) {
|
|
861
909
|
this.z = z;
|
|
@@ -903,30 +951,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
903
951
|
inputs: [],
|
|
904
952
|
}]
|
|
905
953
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
906
|
-
let IxGroupDropdownItem = class IxGroupDropdownItem {
|
|
907
|
-
constructor(c, r, z) {
|
|
908
|
-
this.z = z;
|
|
909
|
-
c.detach();
|
|
910
|
-
this.el = r.nativeElement;
|
|
911
|
-
}
|
|
912
|
-
};
|
|
913
|
-
/** @nocollapse */ IxGroupDropdownItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxGroupDropdownItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
914
|
-
/** @nocollapse */ IxGroupDropdownItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxGroupDropdownItem, selector: "ix-group-dropdown-item", inputs: { icon: "icon", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
915
|
-
IxGroupDropdownItem = __decorate([
|
|
916
|
-
ProxyCmp({
|
|
917
|
-
inputs: ['icon', 'label']
|
|
918
|
-
})
|
|
919
|
-
], IxGroupDropdownItem);
|
|
920
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxGroupDropdownItem, decorators: [{
|
|
921
|
-
type: Component,
|
|
922
|
-
args: [{
|
|
923
|
-
selector: 'ix-group-dropdown-item',
|
|
924
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
925
|
-
template: '<ng-content></ng-content>',
|
|
926
|
-
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
927
|
-
inputs: ['icon', 'label'],
|
|
928
|
-
}]
|
|
929
|
-
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
930
954
|
let IxGroupItem = class IxGroupItem {
|
|
931
955
|
constructor(c, r, z) {
|
|
932
956
|
this.z = z;
|
|
@@ -984,10 +1008,10 @@ let IxIconButton = class IxIconButton {
|
|
|
984
1008
|
}
|
|
985
1009
|
};
|
|
986
1010
|
/** @nocollapse */ IxIconButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxIconButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
987
|
-
/** @nocollapse */ IxIconButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxIconButton, selector: "ix-icon-button", inputs: { color: "color", disabled: "disabled", ghost: "ghost", icon: "icon",
|
|
1011
|
+
/** @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 });
|
|
988
1012
|
IxIconButton = __decorate([
|
|
989
1013
|
ProxyCmp({
|
|
990
|
-
inputs: ['color', 'disabled', 'ghost', 'icon', '
|
|
1014
|
+
inputs: ['color', 'disabled', 'ghost', 'icon', 'loading', 'outline', 'oval', 'size', 'type', 'variant']
|
|
991
1015
|
})
|
|
992
1016
|
], IxIconButton);
|
|
993
1017
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxIconButton, decorators: [{
|
|
@@ -997,7 +1021,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
997
1021
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
998
1022
|
template: '<ng-content></ng-content>',
|
|
999
1023
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1000
|
-
inputs: ['color', 'disabled', 'ghost', 'icon', '
|
|
1024
|
+
inputs: ['color', 'disabled', 'ghost', 'icon', 'loading', 'outline', 'oval', 'size', 'type', 'variant'],
|
|
1025
|
+
}]
|
|
1026
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1027
|
+
let IxIconToggleButton = class IxIconToggleButton {
|
|
1028
|
+
constructor(c, r, z) {
|
|
1029
|
+
this.z = z;
|
|
1030
|
+
c.detach();
|
|
1031
|
+
this.el = r.nativeElement;
|
|
1032
|
+
proxyOutputs(this, this.el, ['pressedChange']);
|
|
1033
|
+
}
|
|
1034
|
+
};
|
|
1035
|
+
/** @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 });
|
|
1036
|
+
/** @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 });
|
|
1037
|
+
IxIconToggleButton = __decorate([
|
|
1038
|
+
ProxyCmp({
|
|
1039
|
+
inputs: ['disabled', 'ghost', 'icon', 'loading', 'outline', 'pressed', 'size', 'variant']
|
|
1040
|
+
})
|
|
1041
|
+
], IxIconToggleButton);
|
|
1042
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxIconToggleButton, decorators: [{
|
|
1043
|
+
type: Component,
|
|
1044
|
+
args: [{
|
|
1045
|
+
selector: 'ix-icon-toggle-button',
|
|
1046
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1047
|
+
template: '<ng-content></ng-content>',
|
|
1048
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1049
|
+
inputs: ['disabled', 'ghost', 'icon', 'loading', 'outline', 'pressed', 'size', 'variant'],
|
|
1001
1050
|
}]
|
|
1002
1051
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1003
1052
|
let IxInputGroup = class IxInputGroup {
|
|
@@ -1094,6 +1143,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1094
1143
|
inputs: ['label', 'orientation', 'state', 'unit', 'value'],
|
|
1095
1144
|
}]
|
|
1096
1145
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1146
|
+
let IxLinkButton = class IxLinkButton {
|
|
1147
|
+
constructor(c, r, z) {
|
|
1148
|
+
this.z = z;
|
|
1149
|
+
c.detach();
|
|
1150
|
+
this.el = r.nativeElement;
|
|
1151
|
+
}
|
|
1152
|
+
};
|
|
1153
|
+
/** @nocollapse */ IxLinkButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxLinkButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1154
|
+
/** @nocollapse */ IxLinkButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxLinkButton, selector: "ix-link-button", inputs: { disabled: "disabled", target: "target", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1155
|
+
IxLinkButton = __decorate([
|
|
1156
|
+
ProxyCmp({
|
|
1157
|
+
inputs: ['disabled', 'target', 'url']
|
|
1158
|
+
})
|
|
1159
|
+
], IxLinkButton);
|
|
1160
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxLinkButton, decorators: [{
|
|
1161
|
+
type: Component,
|
|
1162
|
+
args: [{
|
|
1163
|
+
selector: 'ix-link-button',
|
|
1164
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1165
|
+
template: '<ng-content></ng-content>',
|
|
1166
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1167
|
+
inputs: ['disabled', 'target', 'url'],
|
|
1168
|
+
}]
|
|
1169
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1097
1170
|
let IxMapNavigation = class IxMapNavigation {
|
|
1098
1171
|
constructor(c, r, z) {
|
|
1099
1172
|
this.z = z;
|
|
@@ -1154,10 +1227,10 @@ let IxMenu = class IxMenu {
|
|
|
1154
1227
|
}
|
|
1155
1228
|
};
|
|
1156
1229
|
/** @nocollapse */ IxMenu.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1157
|
-
/** @nocollapse */ IxMenu.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxMenu, selector: "ix-menu", inputs: { applicationDescription: "applicationDescription", applicationName: "applicationName", enableMapExpand: "enableMapExpand", enableSettings: "enableSettings", enableToggleTheme: "enableToggleTheme", expand: "expand", i18nCollapse: "i18nCollapse", i18nExpand: "i18nExpand",
|
|
1230
|
+
/** @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 });
|
|
1158
1231
|
IxMenu = __decorate([
|
|
1159
1232
|
ProxyCmp({
|
|
1160
|
-
inputs: ['applicationDescription', 'applicationName', 'enableMapExpand', 'enableSettings', 'enableToggleTheme', 'expand', 'i18nCollapse', 'i18nExpand', '
|
|
1233
|
+
inputs: ['applicationDescription', 'applicationName', 'enableMapExpand', 'enableSettings', 'enableToggleTheme', 'expand', 'i18nCollapse', 'i18nExpand', 'i18nExpandSidebar', 'i18nLegal', 'i18nSettings', 'i18nToggleTheme', 'maxVisibleMenuItems', 'pinned', 'showAbout', 'showSettings'],
|
|
1161
1234
|
methods: ['toggleMapExpand', 'toggleMenu', 'toggleSettings', 'toggleAbout']
|
|
1162
1235
|
})
|
|
1163
1236
|
], IxMenu);
|
|
@@ -1168,7 +1241,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1168
1241
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1169
1242
|
template: '<ng-content></ng-content>',
|
|
1170
1243
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1171
|
-
inputs: ['applicationDescription', 'applicationName', 'enableMapExpand', 'enableSettings', 'enableToggleTheme', 'expand', 'i18nCollapse', 'i18nExpand', '
|
|
1244
|
+
inputs: ['applicationDescription', 'applicationName', 'enableMapExpand', 'enableSettings', 'enableToggleTheme', 'expand', 'i18nCollapse', 'i18nExpand', 'i18nExpandSidebar', 'i18nLegal', 'i18nSettings', 'i18nToggleTheme', 'maxVisibleMenuItems', 'pinned', 'showAbout', 'showSettings'],
|
|
1172
1245
|
}]
|
|
1173
1246
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1174
1247
|
let IxMenuAbout = class IxMenuAbout {
|
|
@@ -1295,6 +1368,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1295
1368
|
inputs: ['icon', 'label'],
|
|
1296
1369
|
}]
|
|
1297
1370
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1371
|
+
let IxMenuCategory = class IxMenuCategory {
|
|
1372
|
+
constructor(c, r, z) {
|
|
1373
|
+
this.z = z;
|
|
1374
|
+
c.detach();
|
|
1375
|
+
this.el = r.nativeElement;
|
|
1376
|
+
}
|
|
1377
|
+
};
|
|
1378
|
+
/** @nocollapse */ IxMenuCategory.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxMenuCategory, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1379
|
+
/** @nocollapse */ IxMenuCategory.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxMenuCategory, selector: "ix-menu-category", inputs: { icon: "icon", label: "label", notifications: "notifications" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1380
|
+
IxMenuCategory = __decorate([
|
|
1381
|
+
ProxyCmp({
|
|
1382
|
+
inputs: ['icon', 'label', 'notifications']
|
|
1383
|
+
})
|
|
1384
|
+
], IxMenuCategory);
|
|
1385
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxMenuCategory, decorators: [{
|
|
1386
|
+
type: Component,
|
|
1387
|
+
args: [{
|
|
1388
|
+
selector: 'ix-menu-category',
|
|
1389
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1390
|
+
template: '<ng-content></ng-content>',
|
|
1391
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1392
|
+
inputs: ['icon', 'label', 'notifications'],
|
|
1393
|
+
}]
|
|
1394
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1298
1395
|
let IxMenuItem = class IxMenuItem {
|
|
1299
1396
|
constructor(c, r, z) {
|
|
1300
1397
|
this.z = z;
|
|
@@ -1303,10 +1400,10 @@ let IxMenuItem = class IxMenuItem {
|
|
|
1303
1400
|
}
|
|
1304
1401
|
};
|
|
1305
1402
|
/** @nocollapse */ IxMenuItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1306
|
-
/** @nocollapse */ IxMenuItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxMenuItem, selector: "ix-menu-item", inputs: { active: "active", bottom: "bottom", disabled: "disabled", home: "home", notifications: "notifications", tabIcon: "tabIcon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1403
|
+
/** @nocollapse */ IxMenuItem.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxMenuItem, selector: "ix-menu-item", inputs: { active: "active", bottom: "bottom", disabled: "disabled", home: "home", icon: "icon", notifications: "notifications", tabIcon: "tabIcon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1307
1404
|
IxMenuItem = __decorate([
|
|
1308
1405
|
ProxyCmp({
|
|
1309
|
-
inputs: ['active', 'bottom', 'disabled', 'home', 'notifications', 'tabIcon']
|
|
1406
|
+
inputs: ['active', 'bottom', 'disabled', 'home', 'icon', 'notifications', 'tabIcon']
|
|
1310
1407
|
})
|
|
1311
1408
|
], IxMenuItem);
|
|
1312
1409
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxMenuItem, decorators: [{
|
|
@@ -1316,7 +1413,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1316
1413
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1317
1414
|
template: '<ng-content></ng-content>',
|
|
1318
1415
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1319
|
-
inputs: ['active', 'bottom', 'disabled', 'home', 'notifications', 'tabIcon'],
|
|
1416
|
+
inputs: ['active', 'bottom', 'disabled', 'home', 'icon', 'notifications', 'tabIcon'],
|
|
1320
1417
|
}]
|
|
1321
1418
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1322
1419
|
let IxMenuSettings = class IxMenuSettings {
|
|
@@ -1398,15 +1495,15 @@ let IxModal = class IxModal {
|
|
|
1398
1495
|
this.z = z;
|
|
1399
1496
|
c.detach();
|
|
1400
1497
|
this.el = r.nativeElement;
|
|
1401
|
-
proxyOutputs(this, this.el, ['
|
|
1498
|
+
proxyOutputs(this, this.el, ['dialogClose', 'dialogDismiss']);
|
|
1402
1499
|
}
|
|
1403
1500
|
};
|
|
1404
1501
|
/** @nocollapse */ IxModal.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1405
|
-
/** @nocollapse */ IxModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxModal, selector: "ix-modal", inputs: { animation: "animation",
|
|
1502
|
+
/** @nocollapse */ IxModal.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxModal, selector: "ix-modal", inputs: { animation: "animation", backdrop: "backdrop", beforeDismiss: "beforeDismiss", centered: "centered", closeOnBackdropClick: "closeOnBackdropClick", keyboard: "keyboard", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1406
1503
|
IxModal = __decorate([
|
|
1407
1504
|
ProxyCmp({
|
|
1408
|
-
inputs: ['animation', '
|
|
1409
|
-
methods: ['
|
|
1505
|
+
inputs: ['animation', 'backdrop', 'beforeDismiss', 'centered', 'closeOnBackdropClick', 'keyboard', 'size'],
|
|
1506
|
+
methods: ['showModal', 'dismissModal', 'closeModal']
|
|
1410
1507
|
})
|
|
1411
1508
|
], IxModal);
|
|
1412
1509
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModal, decorators: [{
|
|
@@ -1416,27 +1513,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1416
1513
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1417
1514
|
template: '<ng-content></ng-content>',
|
|
1418
1515
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1419
|
-
inputs: ['animation', '
|
|
1516
|
+
inputs: ['animation', 'backdrop', 'beforeDismiss', 'centered', 'closeOnBackdropClick', 'keyboard', 'size'],
|
|
1420
1517
|
}]
|
|
1421
1518
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1422
|
-
let
|
|
1519
|
+
let IxModalContent = class IxModalContent {
|
|
1423
1520
|
constructor(c, r, z) {
|
|
1424
1521
|
this.z = z;
|
|
1425
1522
|
c.detach();
|
|
1426
1523
|
this.el = r.nativeElement;
|
|
1427
1524
|
}
|
|
1428
1525
|
};
|
|
1429
|
-
/** @nocollapse */
|
|
1430
|
-
/** @nocollapse */
|
|
1431
|
-
|
|
1432
|
-
ProxyCmp({
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
], IxModalContainer);
|
|
1436
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModalContainer, decorators: [{
|
|
1526
|
+
/** @nocollapse */ IxModalContent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModalContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1527
|
+
/** @nocollapse */ IxModalContent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxModalContent, selector: "ix-modal-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1528
|
+
IxModalContent = __decorate([
|
|
1529
|
+
ProxyCmp({})
|
|
1530
|
+
], IxModalContent);
|
|
1531
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModalContent, decorators: [{
|
|
1437
1532
|
type: Component,
|
|
1438
1533
|
args: [{
|
|
1439
|
-
selector: 'ix-modal-
|
|
1534
|
+
selector: 'ix-modal-content',
|
|
1440
1535
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1441
1536
|
template: '<ng-content></ng-content>',
|
|
1442
1537
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
@@ -1465,6 +1560,53 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1465
1560
|
inputs: [],
|
|
1466
1561
|
}]
|
|
1467
1562
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1563
|
+
let IxModalFooter = class IxModalFooter {
|
|
1564
|
+
constructor(c, r, z) {
|
|
1565
|
+
this.z = z;
|
|
1566
|
+
c.detach();
|
|
1567
|
+
this.el = r.nativeElement;
|
|
1568
|
+
}
|
|
1569
|
+
};
|
|
1570
|
+
/** @nocollapse */ IxModalFooter.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModalFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1571
|
+
/** @nocollapse */ IxModalFooter.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxModalFooter, selector: "ix-modal-footer", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1572
|
+
IxModalFooter = __decorate([
|
|
1573
|
+
ProxyCmp({})
|
|
1574
|
+
], IxModalFooter);
|
|
1575
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModalFooter, decorators: [{
|
|
1576
|
+
type: Component,
|
|
1577
|
+
args: [{
|
|
1578
|
+
selector: 'ix-modal-footer',
|
|
1579
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1580
|
+
template: '<ng-content></ng-content>',
|
|
1581
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1582
|
+
inputs: [],
|
|
1583
|
+
}]
|
|
1584
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1585
|
+
let IxModalHeader = class IxModalHeader {
|
|
1586
|
+
constructor(c, r, z) {
|
|
1587
|
+
this.z = z;
|
|
1588
|
+
c.detach();
|
|
1589
|
+
this.el = r.nativeElement;
|
|
1590
|
+
proxyOutputs(this, this.el, ['closeClick']);
|
|
1591
|
+
}
|
|
1592
|
+
};
|
|
1593
|
+
/** @nocollapse */ IxModalHeader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModalHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1594
|
+
/** @nocollapse */ IxModalHeader.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxModalHeader, selector: "ix-modal-header", inputs: { hideClose: "hideClose", icon: "icon", iconColor: "iconColor" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1595
|
+
IxModalHeader = __decorate([
|
|
1596
|
+
ProxyCmp({
|
|
1597
|
+
inputs: ['hideClose', 'icon', 'iconColor']
|
|
1598
|
+
})
|
|
1599
|
+
], IxModalHeader);
|
|
1600
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModalHeader, decorators: [{
|
|
1601
|
+
type: Component,
|
|
1602
|
+
args: [{
|
|
1603
|
+
selector: 'ix-modal-header',
|
|
1604
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1605
|
+
template: '<ng-content></ng-content>',
|
|
1606
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1607
|
+
inputs: ['hideClose', 'icon', 'iconColor'],
|
|
1608
|
+
}]
|
|
1609
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1468
1610
|
let IxPagination = class IxPagination {
|
|
1469
1611
|
constructor(c, r, z) {
|
|
1470
1612
|
this.z = z;
|
|
@@ -1538,19 +1680,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1538
1680
|
inputs: ['heading', 'icon', 'notification', 'subheading', 'variant'],
|
|
1539
1681
|
}]
|
|
1540
1682
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1683
|
+
let IxRow = class IxRow {
|
|
1684
|
+
constructor(c, r, z) {
|
|
1685
|
+
this.z = z;
|
|
1686
|
+
c.detach();
|
|
1687
|
+
this.el = r.nativeElement;
|
|
1688
|
+
}
|
|
1689
|
+
};
|
|
1690
|
+
/** @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 });
|
|
1691
|
+
/** @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 });
|
|
1692
|
+
IxRow = __decorate([
|
|
1693
|
+
ProxyCmp({})
|
|
1694
|
+
], IxRow);
|
|
1695
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxRow, decorators: [{
|
|
1696
|
+
type: Component,
|
|
1697
|
+
args: [{
|
|
1698
|
+
selector: 'ix-row',
|
|
1699
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1700
|
+
template: '<ng-content></ng-content>',
|
|
1701
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1702
|
+
inputs: [],
|
|
1703
|
+
}]
|
|
1704
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1541
1705
|
let IxSelect = class IxSelect {
|
|
1542
1706
|
constructor(c, r, z) {
|
|
1543
1707
|
this.z = z;
|
|
1544
1708
|
c.detach();
|
|
1545
1709
|
this.el = r.nativeElement;
|
|
1546
|
-
proxyOutputs(this, this.el, ['itemSelectionChange', 'addItem']);
|
|
1710
|
+
proxyOutputs(this, this.el, ['valueChange', 'itemSelectionChange', 'inputChange', 'addItem']);
|
|
1547
1711
|
}
|
|
1548
1712
|
};
|
|
1549
1713
|
/** @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 });
|
|
1550
|
-
/** @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 });
|
|
1714
|
+
/** @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 });
|
|
1551
1715
|
IxSelect = __decorate([
|
|
1552
1716
|
ProxyCmp({
|
|
1553
|
-
inputs: ['allowClear', 'disabled', 'editable', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'mode', 'readonly', 'selectedIndices']
|
|
1717
|
+
inputs: ['allowClear', 'disabled', 'editable', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'mode', 'readonly', 'selectedIndices', 'value']
|
|
1554
1718
|
})
|
|
1555
1719
|
], IxSelect);
|
|
1556
1720
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxSelect, decorators: [{
|
|
@@ -1560,7 +1724,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1560
1724
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1561
1725
|
template: '<ng-content></ng-content>',
|
|
1562
1726
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1563
|
-
inputs: ['allowClear', 'disabled', 'editable', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'mode', 'readonly', 'selectedIndices'],
|
|
1727
|
+
inputs: ['allowClear', 'disabled', 'editable', 'hideListHeader', 'i18nNoMatches', 'i18nPlaceholder', 'i18nPlaceholderEditable', 'i18nSelectListHeader', 'mode', 'readonly', 'selectedIndices', 'value'],
|
|
1564
1728
|
}]
|
|
1565
1729
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1566
1730
|
let IxSelectItem = class IxSelectItem {
|
|
@@ -1621,10 +1785,10 @@ let IxSplitButton = class IxSplitButton {
|
|
|
1621
1785
|
}
|
|
1622
1786
|
};
|
|
1623
1787
|
/** @nocollapse */ IxSplitButton.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxSplitButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1624
|
-
/** @nocollapse */ IxSplitButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxSplitButton, selector: "ix-split-button", inputs: { disabled: "disabled", ghost: "ghost", icon: "icon",
|
|
1788
|
+
/** @nocollapse */ IxSplitButton.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxSplitButton, selector: "ix-split-button", inputs: { disabled: "disabled", ghost: "ghost", icon: "icon", label: "label", outline: "outline", placement: "placement", splitIcon: "splitIcon", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1625
1789
|
IxSplitButton = __decorate([
|
|
1626
1790
|
ProxyCmp({
|
|
1627
|
-
inputs: ['disabled', 'ghost', 'icon', '
|
|
1791
|
+
inputs: ['disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'splitIcon', 'variant']
|
|
1628
1792
|
})
|
|
1629
1793
|
], IxSplitButton);
|
|
1630
1794
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxSplitButton, decorators: [{
|
|
@@ -1634,7 +1798,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1634
1798
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1635
1799
|
template: '<ng-content></ng-content>',
|
|
1636
1800
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1637
|
-
inputs: ['disabled', 'ghost', 'icon', '
|
|
1801
|
+
inputs: ['disabled', 'ghost', 'icon', 'label', 'outline', 'placement', 'splitIcon', 'variant'],
|
|
1638
1802
|
}]
|
|
1639
1803
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1640
1804
|
let IxSplitButtonItem = class IxSplitButtonItem {
|
|
@@ -1667,6 +1831,7 @@ let IxTabItem = class IxTabItem {
|
|
|
1667
1831
|
this.z = z;
|
|
1668
1832
|
c.detach();
|
|
1669
1833
|
this.el = r.nativeElement;
|
|
1834
|
+
proxyOutputs(this, this.el, ['tabClick']);
|
|
1670
1835
|
}
|
|
1671
1836
|
};
|
|
1672
1837
|
/** @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 });
|
|
@@ -1691,6 +1856,7 @@ let IxTabs = class IxTabs {
|
|
|
1691
1856
|
this.z = z;
|
|
1692
1857
|
c.detach();
|
|
1693
1858
|
this.el = r.nativeElement;
|
|
1859
|
+
proxyOutputs(this, this.el, ['selectedChange']);
|
|
1694
1860
|
}
|
|
1695
1861
|
};
|
|
1696
1862
|
/** @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 });
|
|
@@ -1819,10 +1985,10 @@ let IxToggle = class IxToggle {
|
|
|
1819
1985
|
}
|
|
1820
1986
|
};
|
|
1821
1987
|
/** @nocollapse */ IxToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1822
|
-
/** @nocollapse */ IxToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxToggle, selector: "ix-toggle", inputs: { checked: "checked",
|
|
1988
|
+
/** @nocollapse */ IxToggle.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxToggle, selector: "ix-toggle", inputs: { checked: "checked", disabled: "disabled", hideText: "hideText", indeterminate: "indeterminate", textIndeterminate: "textIndeterminate", textOff: "textOff", textOn: "textOn" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1823
1989
|
IxToggle = __decorate([
|
|
1824
1990
|
ProxyCmp({
|
|
1825
|
-
inputs: ['checked', '
|
|
1991
|
+
inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'textIndeterminate', 'textOff', 'textOn']
|
|
1826
1992
|
})
|
|
1827
1993
|
], IxToggle);
|
|
1828
1994
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxToggle, decorators: [{
|
|
@@ -1832,7 +1998,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1832
1998
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1833
1999
|
template: '<ng-content></ng-content>',
|
|
1834
2000
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1835
|
-
inputs: ['checked', '
|
|
2001
|
+
inputs: ['checked', 'disabled', 'hideText', 'indeterminate', 'textIndeterminate', 'textOff', 'textOn'],
|
|
2002
|
+
}]
|
|
2003
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2004
|
+
let IxToggleButton = class IxToggleButton {
|
|
2005
|
+
constructor(c, r, z) {
|
|
2006
|
+
this.z = z;
|
|
2007
|
+
c.detach();
|
|
2008
|
+
this.el = r.nativeElement;
|
|
2009
|
+
proxyOutputs(this, this.el, ['pressedChange']);
|
|
2010
|
+
}
|
|
2011
|
+
};
|
|
2012
|
+
/** @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 });
|
|
2013
|
+
/** @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 });
|
|
2014
|
+
IxToggleButton = __decorate([
|
|
2015
|
+
ProxyCmp({
|
|
2016
|
+
inputs: ['disabled', 'ghost', 'icon', 'loading', 'outline', 'pressed', 'variant']
|
|
2017
|
+
})
|
|
2018
|
+
], IxToggleButton);
|
|
2019
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxToggleButton, decorators: [{
|
|
2020
|
+
type: Component,
|
|
2021
|
+
args: [{
|
|
2022
|
+
selector: 'ix-toggle-button',
|
|
2023
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2024
|
+
template: '<ng-content></ng-content>',
|
|
2025
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2026
|
+
inputs: ['disabled', 'ghost', 'icon', 'loading', 'outline', 'pressed', 'variant'],
|
|
1836
2027
|
}]
|
|
1837
2028
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1838
2029
|
let IxTooltip = class IxTooltip {
|
|
@@ -1884,6 +2075,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1884
2075
|
inputs: ['context', 'hasChildren', 'text'],
|
|
1885
2076
|
}]
|
|
1886
2077
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2078
|
+
let IxTypography = class IxTypography {
|
|
2079
|
+
constructor(c, r, z) {
|
|
2080
|
+
this.z = z;
|
|
2081
|
+
c.detach();
|
|
2082
|
+
this.el = r.nativeElement;
|
|
2083
|
+
}
|
|
2084
|
+
};
|
|
2085
|
+
/** @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 });
|
|
2086
|
+
/** @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 });
|
|
2087
|
+
IxTypography = __decorate([
|
|
2088
|
+
ProxyCmp({
|
|
2089
|
+
inputs: ['bold', 'color', 'format', 'textDecoration']
|
|
2090
|
+
})
|
|
2091
|
+
], IxTypography);
|
|
2092
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxTypography, decorators: [{
|
|
2093
|
+
type: Component,
|
|
2094
|
+
args: [{
|
|
2095
|
+
selector: 'ix-typography',
|
|
2096
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2097
|
+
template: '<ng-content></ng-content>',
|
|
2098
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2099
|
+
inputs: ['bold', 'color', 'format', 'textDecoration'],
|
|
2100
|
+
}]
|
|
2101
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1887
2102
|
let IxUpload = class IxUpload {
|
|
1888
2103
|
constructor(c, r, z) {
|
|
1889
2104
|
this.z = z;
|
|
@@ -1918,10 +2133,10 @@ let IxValidationTooltip = class IxValidationTooltip {
|
|
|
1918
2133
|
}
|
|
1919
2134
|
};
|
|
1920
2135
|
/** @nocollapse */ IxValidationTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxValidationTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1921
|
-
/** @nocollapse */ IxValidationTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxValidationTooltip, selector: "ix-validation-tooltip", inputs: { message: "message", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2136
|
+
/** @nocollapse */ IxValidationTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxValidationTooltip, selector: "ix-validation-tooltip", inputs: { message: "message", placement: "placement", suppressAutomaticPlacement: "suppressAutomaticPlacement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1922
2137
|
IxValidationTooltip = __decorate([
|
|
1923
2138
|
ProxyCmp({
|
|
1924
|
-
inputs: ['message', 'placement']
|
|
2139
|
+
inputs: ['message', 'placement', 'suppressAutomaticPlacement']
|
|
1925
2140
|
})
|
|
1926
2141
|
], IxValidationTooltip);
|
|
1927
2142
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxValidationTooltip, decorators: [{
|
|
@@ -1931,7 +2146,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1931
2146
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1932
2147
|
template: '<ng-content></ng-content>',
|
|
1933
2148
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1934
|
-
inputs: ['message', 'placement'],
|
|
2149
|
+
inputs: ['message', 'placement', 'suppressAutomaticPlacement'],
|
|
1935
2150
|
}]
|
|
1936
2151
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1937
2152
|
let IxWorkflowStep = class IxWorkflowStep {
|
|
@@ -1942,10 +2157,10 @@ let IxWorkflowStep = class IxWorkflowStep {
|
|
|
1942
2157
|
}
|
|
1943
2158
|
};
|
|
1944
2159
|
/** @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 });
|
|
1945
|
-
/** @nocollapse */ IxWorkflowStep.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxWorkflowStep, selector: "ix-workflow-step", inputs: { clickable: "clickable", disabled: "disabled",
|
|
2160
|
+
/** @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 });
|
|
1946
2161
|
IxWorkflowStep = __decorate([
|
|
1947
2162
|
ProxyCmp({
|
|
1948
|
-
inputs: ['clickable', 'disabled', '
|
|
2163
|
+
inputs: ['clickable', 'disabled', 'selected', 'status', 'vertical']
|
|
1949
2164
|
})
|
|
1950
2165
|
], IxWorkflowStep);
|
|
1951
2166
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxWorkflowStep, decorators: [{
|
|
@@ -1955,7 +2170,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1955
2170
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1956
2171
|
template: '<ng-content></ng-content>',
|
|
1957
2172
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1958
|
-
inputs: ['clickable', 'disabled', '
|
|
2173
|
+
inputs: ['clickable', 'disabled', 'selected', 'status', 'vertical'],
|
|
1959
2174
|
}]
|
|
1960
2175
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1961
2176
|
let IxWorkflowSteps = class IxWorkflowSteps {
|
|
@@ -1967,10 +2182,10 @@ let IxWorkflowSteps = class IxWorkflowSteps {
|
|
|
1967
2182
|
}
|
|
1968
2183
|
};
|
|
1969
2184
|
/** @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 });
|
|
1970
|
-
/** @nocollapse */ IxWorkflowSteps.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: IxWorkflowSteps, selector: "ix-workflow-steps", inputs: { clickable: "clickable",
|
|
2185
|
+
/** @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 });
|
|
1971
2186
|
IxWorkflowSteps = __decorate([
|
|
1972
2187
|
ProxyCmp({
|
|
1973
|
-
inputs: ['clickable', '
|
|
2188
|
+
inputs: ['clickable', 'selectedIndex', 'vertical']
|
|
1974
2189
|
})
|
|
1975
2190
|
], IxWorkflowSteps);
|
|
1976
2191
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxWorkflowSteps, decorators: [{
|
|
@@ -1980,7 +2195,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
1980
2195
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1981
2196
|
template: '<ng-content></ng-content>',
|
|
1982
2197
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1983
|
-
inputs: ['clickable', '
|
|
2198
|
+
inputs: ['clickable', 'selectedIndex', 'vertical'],
|
|
1984
2199
|
}]
|
|
1985
2200
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
1986
2201
|
|
|
@@ -2070,14 +2285,14 @@ class ModalService {
|
|
|
2070
2285
|
data: config.data,
|
|
2071
2286
|
};
|
|
2072
2287
|
if (config.content instanceof Type) {
|
|
2073
|
-
return this.createContentByComponentType(config, context);
|
|
2288
|
+
return this.createContentByComponentType(config.content, config, context);
|
|
2074
2289
|
}
|
|
2075
|
-
const modalInstance = await this.createContentByTemplateRef(config, context);
|
|
2290
|
+
const modalInstance = await this.createContentByTemplateRef(config.content, config, context);
|
|
2076
2291
|
return modalInstance;
|
|
2077
2292
|
}
|
|
2078
|
-
async createContentByComponentType(config, context) {
|
|
2293
|
+
async createContentByComponentType(componentType, config, context) {
|
|
2079
2294
|
const activeModal = new InternalIxActiveModal(context.data);
|
|
2080
|
-
const modalFactory = this.componentFactoryResolver.resolveComponentFactory(
|
|
2295
|
+
const modalFactory = this.componentFactoryResolver.resolveComponentFactory(componentType);
|
|
2081
2296
|
const modalInjector = Injector.create({
|
|
2082
2297
|
providers: [
|
|
2083
2298
|
{
|
|
@@ -2089,36 +2304,35 @@ class ModalService {
|
|
|
2089
2304
|
});
|
|
2090
2305
|
const instance = modalFactory.create(modalInjector);
|
|
2091
2306
|
this.appRef.attachView(instance.hostView);
|
|
2092
|
-
const
|
|
2093
|
-
const modalInstance = await this.createModalInstance(context,
|
|
2307
|
+
const element = instance.injector.get(ElementRef);
|
|
2308
|
+
const modalInstance = await this.createModalInstance(context, element.nativeElement, instance.hostView, config);
|
|
2094
2309
|
activeModal.setModalElement(modalInstance.htmlElement);
|
|
2095
2310
|
return modalInstance;
|
|
2096
2311
|
}
|
|
2097
|
-
async createContentByTemplateRef(config, context) {
|
|
2098
|
-
const embeddedView =
|
|
2312
|
+
async createContentByTemplateRef(templateRef, config, context) {
|
|
2313
|
+
const embeddedView = templateRef.createEmbeddedView({
|
|
2099
2314
|
$implicit: context,
|
|
2100
2315
|
});
|
|
2101
|
-
|
|
2316
|
+
this.appRef.attachView(embeddedView);
|
|
2317
|
+
return await this.createModalInstance(context, embeddedView.rootNodes[0], embeddedView, config);
|
|
2102
2318
|
}
|
|
2103
|
-
async createModalInstance(context,
|
|
2104
|
-
const node = embeddedView.rootNodes[0];
|
|
2319
|
+
async createModalInstance(context, htmlElement, viewRef, config) {
|
|
2105
2320
|
context.close = (result) => {
|
|
2106
|
-
closeModal(
|
|
2321
|
+
closeModal(htmlElement, result);
|
|
2107
2322
|
};
|
|
2108
2323
|
context.dismiss = (result) => {
|
|
2109
|
-
dismissModal(
|
|
2324
|
+
dismissModal(htmlElement, result);
|
|
2110
2325
|
};
|
|
2111
|
-
|
|
2112
|
-
const modalInstance = await
|
|
2326
|
+
viewRef.detectChanges();
|
|
2327
|
+
const modalInstance = await showModal({
|
|
2113
2328
|
...config,
|
|
2114
|
-
|
|
2115
|
-
content: node,
|
|
2329
|
+
content: htmlElement,
|
|
2116
2330
|
});
|
|
2117
2331
|
modalInstance.onClose.once(() => {
|
|
2118
|
-
|
|
2332
|
+
viewRef.destroy();
|
|
2119
2333
|
});
|
|
2120
2334
|
modalInstance.onDismiss.once(() => {
|
|
2121
|
-
|
|
2335
|
+
viewRef.destroy();
|
|
2122
2336
|
});
|
|
2123
2337
|
return modalInstance;
|
|
2124
2338
|
}
|
|
@@ -2167,9 +2381,8 @@ const appInitialize = (doc) => {
|
|
|
2167
2381
|
|
|
2168
2382
|
const DIRECTIVES = [
|
|
2169
2383
|
IxActionCard,
|
|
2170
|
-
IxAnimatedTab,
|
|
2171
|
-
IxAnimatedTabs,
|
|
2172
2384
|
IxApplicationHeader,
|
|
2385
|
+
IxAvatar,
|
|
2173
2386
|
IxBasicNavigation,
|
|
2174
2387
|
IxBlind,
|
|
2175
2388
|
IxBreadcrumb,
|
|
@@ -2182,14 +2395,15 @@ const DIRECTIVES = [
|
|
|
2182
2395
|
IxCardTitle,
|
|
2183
2396
|
IxCategoryFilter,
|
|
2184
2397
|
IxChip,
|
|
2398
|
+
IxCol,
|
|
2185
2399
|
IxContentHeader,
|
|
2186
|
-
IxCounterPill,
|
|
2187
2400
|
IxDatePicker,
|
|
2188
2401
|
IxDatetimePicker,
|
|
2189
2402
|
IxDivider,
|
|
2190
2403
|
IxDrawer,
|
|
2191
2404
|
IxDropdown,
|
|
2192
2405
|
IxDropdownButton,
|
|
2406
|
+
IxDropdownHeader,
|
|
2193
2407
|
IxDropdownItem,
|
|
2194
2408
|
IxDropdownQuickActions,
|
|
2195
2409
|
IxEmptyState,
|
|
@@ -2199,16 +2413,19 @@ const DIRECTIVES = [
|
|
|
2199
2413
|
IxFilterChip,
|
|
2200
2414
|
IxFlipTile,
|
|
2201
2415
|
IxFlipTileContent,
|
|
2416
|
+
IxFormField,
|
|
2417
|
+
IxGrid,
|
|
2202
2418
|
IxGroup,
|
|
2203
2419
|
IxGroupContextMenu,
|
|
2204
|
-
IxGroupDropdownItem,
|
|
2205
2420
|
IxGroupItem,
|
|
2206
2421
|
IxIcon,
|
|
2207
2422
|
IxIconButton,
|
|
2423
|
+
IxIconToggleButton,
|
|
2208
2424
|
IxInputGroup,
|
|
2209
2425
|
IxKeyValue,
|
|
2210
2426
|
IxKeyValueList,
|
|
2211
2427
|
IxKpi,
|
|
2428
|
+
IxLinkButton,
|
|
2212
2429
|
IxMapNavigation,
|
|
2213
2430
|
IxMapNavigationOverlay,
|
|
2214
2431
|
IxMenu,
|
|
@@ -2217,16 +2434,20 @@ const DIRECTIVES = [
|
|
|
2217
2434
|
IxMenuAboutNews,
|
|
2218
2435
|
IxMenuAvatar,
|
|
2219
2436
|
IxMenuAvatarItem,
|
|
2437
|
+
IxMenuCategory,
|
|
2220
2438
|
IxMenuItem,
|
|
2221
2439
|
IxMenuSettings,
|
|
2222
2440
|
IxMenuSettingsItem,
|
|
2223
2441
|
IxMessageBar,
|
|
2224
2442
|
IxModal,
|
|
2225
|
-
|
|
2443
|
+
IxModalContent,
|
|
2226
2444
|
IxModalExample,
|
|
2445
|
+
IxModalFooter,
|
|
2446
|
+
IxModalHeader,
|
|
2227
2447
|
IxPagination,
|
|
2228
2448
|
IxPill,
|
|
2229
2449
|
IxPushCard,
|
|
2450
|
+
IxRow,
|
|
2230
2451
|
IxSelect,
|
|
2231
2452
|
IxSelectItem,
|
|
2232
2453
|
IxSpinner,
|
|
@@ -2239,14 +2460,85 @@ const DIRECTIVES = [
|
|
|
2239
2460
|
IxToast,
|
|
2240
2461
|
IxToastContainer,
|
|
2241
2462
|
IxToggle,
|
|
2463
|
+
IxToggleButton,
|
|
2242
2464
|
IxTooltip,
|
|
2243
2465
|
IxTreeItem,
|
|
2466
|
+
IxTypography,
|
|
2244
2467
|
IxUpload,
|
|
2245
2468
|
IxValidationTooltip,
|
|
2246
2469
|
IxWorkflowStep,
|
|
2247
2470
|
IxWorkflowSteps
|
|
2248
2471
|
];
|
|
2249
2472
|
|
|
2473
|
+
class ValueAccessor {
|
|
2474
|
+
constructor(el) {
|
|
2475
|
+
this.el = el;
|
|
2476
|
+
this.onChange = () => { };
|
|
2477
|
+
this.onTouched = () => { };
|
|
2478
|
+
}
|
|
2479
|
+
writeValue(value) {
|
|
2480
|
+
this.el.nativeElement.value = this.lastValue = value == null ? '' : value;
|
|
2481
|
+
}
|
|
2482
|
+
handleChangeEvent(value) {
|
|
2483
|
+
if (value !== this.lastValue) {
|
|
2484
|
+
this.lastValue = value;
|
|
2485
|
+
this.onChange(value);
|
|
2486
|
+
}
|
|
2487
|
+
}
|
|
2488
|
+
_handleBlurEvent() {
|
|
2489
|
+
this.onTouched();
|
|
2490
|
+
}
|
|
2491
|
+
registerOnChange(fn) {
|
|
2492
|
+
this.onChange = fn;
|
|
2493
|
+
}
|
|
2494
|
+
registerOnTouched(fn) {
|
|
2495
|
+
this.onTouched = fn;
|
|
2496
|
+
}
|
|
2497
|
+
setDisabledState(isDisabled) {
|
|
2498
|
+
this.el.nativeElement.disabled = isDisabled;
|
|
2499
|
+
}
|
|
2500
|
+
}
|
|
2501
|
+
/** @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 });
|
|
2502
|
+
/** @nocollapse */ ValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 });
|
|
2503
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
2504
|
+
type: Directive,
|
|
2505
|
+
args: [{}]
|
|
2506
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { _handleBlurEvent: [{
|
|
2507
|
+
type: HostListener,
|
|
2508
|
+
args: ['focusout']
|
|
2509
|
+
}] } });
|
|
2510
|
+
|
|
2511
|
+
class SelectValueAccessor extends ValueAccessor {
|
|
2512
|
+
constructor(el) {
|
|
2513
|
+
super(el);
|
|
2514
|
+
}
|
|
2515
|
+
}
|
|
2516
|
+
/** @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 });
|
|
2517
|
+
/** @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: [
|
|
2518
|
+
{
|
|
2519
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2520
|
+
useExisting: SelectValueAccessor,
|
|
2521
|
+
multi: true
|
|
2522
|
+
}
|
|
2523
|
+
], usesInheritance: true, ngImport: i0 });
|
|
2524
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
2525
|
+
type: Directive,
|
|
2526
|
+
args: [{
|
|
2527
|
+
/* tslint:disable-next-line:directive-selector */
|
|
2528
|
+
selector: 'ix-select[ngModel],ix-select[formControlName],ix-select[formControl]',
|
|
2529
|
+
host: {
|
|
2530
|
+
'(valueChange)': 'handleChangeEvent($event.target.value)'
|
|
2531
|
+
},
|
|
2532
|
+
providers: [
|
|
2533
|
+
{
|
|
2534
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2535
|
+
useExisting: SelectValueAccessor,
|
|
2536
|
+
multi: true
|
|
2537
|
+
}
|
|
2538
|
+
]
|
|
2539
|
+
}]
|
|
2540
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
2541
|
+
|
|
2250
2542
|
/*
|
|
2251
2543
|
* SPDX-FileCopyrightText: 2023 Siemens AG
|
|
2252
2544
|
*
|
|
@@ -2255,6 +2547,9 @@ const DIRECTIVES = [
|
|
|
2255
2547
|
* This source code is licensed under the MIT license found in the
|
|
2256
2548
|
* LICENSE file in the root directory of this source tree.
|
|
2257
2549
|
*/
|
|
2550
|
+
/**
|
|
2551
|
+
* @deprecated Use themeSwitcher from core package `import { themeSwitcher } from '@siemens/ix';`
|
|
2552
|
+
*/
|
|
2258
2553
|
class ThemeService {
|
|
2259
2554
|
constructor() {
|
|
2260
2555
|
this.themeChanged = new EventEmitter();
|
|
@@ -2431,7 +2726,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2431
2726
|
* This source code is licensed under the MIT license found in the
|
|
2432
2727
|
* LICENSE file in the root directory of this source tree.
|
|
2433
2728
|
*/
|
|
2434
|
-
const DECLARATIONS = [
|
|
2729
|
+
const DECLARATIONS = [
|
|
2730
|
+
...DIRECTIVES,
|
|
2731
|
+
IxTree,
|
|
2732
|
+
IxDropdownTriggerDirective,
|
|
2733
|
+
SelectValueAccessor,
|
|
2734
|
+
];
|
|
2435
2735
|
class IxModule {
|
|
2436
2736
|
static forRoot() {
|
|
2437
2737
|
return {
|
|
@@ -2451,7 +2751,9 @@ class IxModule {
|
|
|
2451
2751
|
}
|
|
2452
2752
|
}
|
|
2453
2753
|
/** @nocollapse */ IxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2454
|
-
/** @nocollapse */ IxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule, declarations: [IxActionCard,
|
|
2754
|
+
/** @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, IxGrid, IxGroup, IxGroupContextMenu, IxGroupItem, IxIcon, IxIconButton, IxIconToggleButton, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLinkButton, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalExample, IxModalFooter, IxModalHeader, IxPagination, IxPill, IxPushCard, IxRow, IxSelect, IxSelectItem, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree, IxDropdownTriggerDirective,
|
|
2755
|
+
SelectValueAccessor], 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, IxGrid, IxGroup, IxGroupContextMenu, IxGroupItem, IxIcon, IxIconButton, IxIconToggleButton, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLinkButton, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalExample, IxModalFooter, IxModalHeader, IxPagination, IxPill, IxPushCard, IxRow, IxSelect, IxSelectItem, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, IxTree, IxDropdownTriggerDirective,
|
|
2756
|
+
SelectValueAccessor] });
|
|
2455
2757
|
/** @nocollapse */ IxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule });
|
|
2456
2758
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule, decorators: [{
|
|
2457
2759
|
type: NgModule,
|
|
@@ -2474,5 +2776,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2474
2776
|
* Generated bundle index. Do not edit.
|
|
2475
2777
|
*/
|
|
2476
2778
|
|
|
2477
|
-
export { IxActionCard, IxActiveModal,
|
|
2779
|
+
export { 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, IxGrid, IxGroup, IxGroupContextMenu, IxGroupItem, IxIcon, IxIconButton, IxIconToggleButton, IxInputGroup, IxKeyValue, IxKeyValueList, IxKpi, IxLinkButton, IxMapNavigation, IxMapNavigationOverlay, IxMenu, IxMenuAbout, IxMenuAboutItem, IxMenuAboutNews, IxMenuAvatar, IxMenuAvatarItem, IxMenuCategory, IxMenuItem, IxMenuSettings, IxMenuSettingsItem, IxMessageBar, IxModal, IxModalContent, IxModalExample, IxModalFooter, IxModalHeader, IxModule, IxPagination, IxPill, IxPushCard, IxRow, IxSelect, IxSelectItem, IxSpinner, IxSplitButton, IxSplitButtonItem, IxTabItem, IxTabs, IxTile, IxTimePicker, IxToast, IxToastContainer, IxToggle, IxToggleButton, IxTooltip, IxTree, IxTreeItem, IxTypography, IxUpload, IxValidationTooltip, IxWorkflowStep, IxWorkflowSteps, ModalService, SelectValueAccessor, ThemeService, ToastService };
|
|
2478
2780
|
//# sourceMappingURL=siemens-ix-angular.mjs.map
|