@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, __awaiter } 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
|
|
|
@@ -2063,16 +2278,16 @@ class ModalService {
|
|
|
2063
2278
|
data: config.data,
|
|
2064
2279
|
};
|
|
2065
2280
|
if (config.content instanceof Type) {
|
|
2066
|
-
return this.createContentByComponentType(config, context);
|
|
2281
|
+
return this.createContentByComponentType(config.content, config, context);
|
|
2067
2282
|
}
|
|
2068
|
-
const modalInstance = yield this.createContentByTemplateRef(config, context);
|
|
2283
|
+
const modalInstance = yield this.createContentByTemplateRef(config.content, config, context);
|
|
2069
2284
|
return modalInstance;
|
|
2070
2285
|
});
|
|
2071
2286
|
}
|
|
2072
|
-
createContentByComponentType(config, context) {
|
|
2287
|
+
createContentByComponentType(componentType, config, context) {
|
|
2073
2288
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2074
2289
|
const activeModal = new InternalIxActiveModal(context.data);
|
|
2075
|
-
const modalFactory = this.componentFactoryResolver.resolveComponentFactory(
|
|
2290
|
+
const modalFactory = this.componentFactoryResolver.resolveComponentFactory(componentType);
|
|
2076
2291
|
const modalInjector = Injector.create({
|
|
2077
2292
|
providers: [
|
|
2078
2293
|
{
|
|
@@ -2084,36 +2299,36 @@ class ModalService {
|
|
|
2084
2299
|
});
|
|
2085
2300
|
const instance = modalFactory.create(modalInjector);
|
|
2086
2301
|
this.appRef.attachView(instance.hostView);
|
|
2087
|
-
const
|
|
2088
|
-
const modalInstance = yield this.createModalInstance(context,
|
|
2302
|
+
const element = instance.injector.get(ElementRef);
|
|
2303
|
+
const modalInstance = yield this.createModalInstance(context, element.nativeElement, instance.hostView, config);
|
|
2089
2304
|
activeModal.setModalElement(modalInstance.htmlElement);
|
|
2090
2305
|
return modalInstance;
|
|
2091
2306
|
});
|
|
2092
2307
|
}
|
|
2093
|
-
createContentByTemplateRef(config, context) {
|
|
2308
|
+
createContentByTemplateRef(templateRef, config, context) {
|
|
2094
2309
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2095
|
-
const embeddedView =
|
|
2310
|
+
const embeddedView = templateRef.createEmbeddedView({
|
|
2096
2311
|
$implicit: context,
|
|
2097
2312
|
});
|
|
2098
|
-
|
|
2313
|
+
this.appRef.attachView(embeddedView);
|
|
2314
|
+
return yield this.createModalInstance(context, embeddedView.rootNodes[0], embeddedView, config);
|
|
2099
2315
|
});
|
|
2100
2316
|
}
|
|
2101
|
-
createModalInstance(context,
|
|
2317
|
+
createModalInstance(context, htmlElement, viewRef, config) {
|
|
2102
2318
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2103
|
-
const node = embeddedView.rootNodes[0];
|
|
2104
2319
|
context.close = (result) => {
|
|
2105
|
-
closeModal(
|
|
2320
|
+
closeModal(htmlElement, result);
|
|
2106
2321
|
};
|
|
2107
2322
|
context.dismiss = (result) => {
|
|
2108
|
-
dismissModal(
|
|
2323
|
+
dismissModal(htmlElement, result);
|
|
2109
2324
|
};
|
|
2110
|
-
|
|
2111
|
-
const modalInstance = yield
|
|
2325
|
+
viewRef.detectChanges();
|
|
2326
|
+
const modalInstance = yield showModal(Object.assign(Object.assign({}, config), { content: htmlElement }));
|
|
2112
2327
|
modalInstance.onClose.once(() => {
|
|
2113
|
-
|
|
2328
|
+
viewRef.destroy();
|
|
2114
2329
|
});
|
|
2115
2330
|
modalInstance.onDismiss.once(() => {
|
|
2116
|
-
|
|
2331
|
+
viewRef.destroy();
|
|
2117
2332
|
});
|
|
2118
2333
|
return modalInstance;
|
|
2119
2334
|
});
|
|
@@ -2163,9 +2378,8 @@ const appInitialize = (doc) => {
|
|
|
2163
2378
|
|
|
2164
2379
|
const DIRECTIVES = [
|
|
2165
2380
|
IxActionCard,
|
|
2166
|
-
IxAnimatedTab,
|
|
2167
|
-
IxAnimatedTabs,
|
|
2168
2381
|
IxApplicationHeader,
|
|
2382
|
+
IxAvatar,
|
|
2169
2383
|
IxBasicNavigation,
|
|
2170
2384
|
IxBlind,
|
|
2171
2385
|
IxBreadcrumb,
|
|
@@ -2178,14 +2392,15 @@ const DIRECTIVES = [
|
|
|
2178
2392
|
IxCardTitle,
|
|
2179
2393
|
IxCategoryFilter,
|
|
2180
2394
|
IxChip,
|
|
2395
|
+
IxCol,
|
|
2181
2396
|
IxContentHeader,
|
|
2182
|
-
IxCounterPill,
|
|
2183
2397
|
IxDatePicker,
|
|
2184
2398
|
IxDatetimePicker,
|
|
2185
2399
|
IxDivider,
|
|
2186
2400
|
IxDrawer,
|
|
2187
2401
|
IxDropdown,
|
|
2188
2402
|
IxDropdownButton,
|
|
2403
|
+
IxDropdownHeader,
|
|
2189
2404
|
IxDropdownItem,
|
|
2190
2405
|
IxDropdownQuickActions,
|
|
2191
2406
|
IxEmptyState,
|
|
@@ -2195,16 +2410,19 @@ const DIRECTIVES = [
|
|
|
2195
2410
|
IxFilterChip,
|
|
2196
2411
|
IxFlipTile,
|
|
2197
2412
|
IxFlipTileContent,
|
|
2413
|
+
IxFormField,
|
|
2414
|
+
IxGrid,
|
|
2198
2415
|
IxGroup,
|
|
2199
2416
|
IxGroupContextMenu,
|
|
2200
|
-
IxGroupDropdownItem,
|
|
2201
2417
|
IxGroupItem,
|
|
2202
2418
|
IxIcon,
|
|
2203
2419
|
IxIconButton,
|
|
2420
|
+
IxIconToggleButton,
|
|
2204
2421
|
IxInputGroup,
|
|
2205
2422
|
IxKeyValue,
|
|
2206
2423
|
IxKeyValueList,
|
|
2207
2424
|
IxKpi,
|
|
2425
|
+
IxLinkButton,
|
|
2208
2426
|
IxMapNavigation,
|
|
2209
2427
|
IxMapNavigationOverlay,
|
|
2210
2428
|
IxMenu,
|
|
@@ -2213,16 +2431,20 @@ const DIRECTIVES = [
|
|
|
2213
2431
|
IxMenuAboutNews,
|
|
2214
2432
|
IxMenuAvatar,
|
|
2215
2433
|
IxMenuAvatarItem,
|
|
2434
|
+
IxMenuCategory,
|
|
2216
2435
|
IxMenuItem,
|
|
2217
2436
|
IxMenuSettings,
|
|
2218
2437
|
IxMenuSettingsItem,
|
|
2219
2438
|
IxMessageBar,
|
|
2220
2439
|
IxModal,
|
|
2221
|
-
|
|
2440
|
+
IxModalContent,
|
|
2222
2441
|
IxModalExample,
|
|
2442
|
+
IxModalFooter,
|
|
2443
|
+
IxModalHeader,
|
|
2223
2444
|
IxPagination,
|
|
2224
2445
|
IxPill,
|
|
2225
2446
|
IxPushCard,
|
|
2447
|
+
IxRow,
|
|
2226
2448
|
IxSelect,
|
|
2227
2449
|
IxSelectItem,
|
|
2228
2450
|
IxSpinner,
|
|
@@ -2235,14 +2457,85 @@ const DIRECTIVES = [
|
|
|
2235
2457
|
IxToast,
|
|
2236
2458
|
IxToastContainer,
|
|
2237
2459
|
IxToggle,
|
|
2460
|
+
IxToggleButton,
|
|
2238
2461
|
IxTooltip,
|
|
2239
2462
|
IxTreeItem,
|
|
2463
|
+
IxTypography,
|
|
2240
2464
|
IxUpload,
|
|
2241
2465
|
IxValidationTooltip,
|
|
2242
2466
|
IxWorkflowStep,
|
|
2243
2467
|
IxWorkflowSteps
|
|
2244
2468
|
];
|
|
2245
2469
|
|
|
2470
|
+
class ValueAccessor {
|
|
2471
|
+
constructor(el) {
|
|
2472
|
+
this.el = el;
|
|
2473
|
+
this.onChange = () => { };
|
|
2474
|
+
this.onTouched = () => { };
|
|
2475
|
+
}
|
|
2476
|
+
writeValue(value) {
|
|
2477
|
+
this.el.nativeElement.value = this.lastValue = value == null ? '' : value;
|
|
2478
|
+
}
|
|
2479
|
+
handleChangeEvent(value) {
|
|
2480
|
+
if (value !== this.lastValue) {
|
|
2481
|
+
this.lastValue = value;
|
|
2482
|
+
this.onChange(value);
|
|
2483
|
+
}
|
|
2484
|
+
}
|
|
2485
|
+
_handleBlurEvent() {
|
|
2486
|
+
this.onTouched();
|
|
2487
|
+
}
|
|
2488
|
+
registerOnChange(fn) {
|
|
2489
|
+
this.onChange = fn;
|
|
2490
|
+
}
|
|
2491
|
+
registerOnTouched(fn) {
|
|
2492
|
+
this.onTouched = fn;
|
|
2493
|
+
}
|
|
2494
|
+
setDisabledState(isDisabled) {
|
|
2495
|
+
this.el.nativeElement.disabled = isDisabled;
|
|
2496
|
+
}
|
|
2497
|
+
}
|
|
2498
|
+
/** @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 });
|
|
2499
|
+
/** @nocollapse */ ValueAccessor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 });
|
|
2500
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ValueAccessor, decorators: [{
|
|
2501
|
+
type: Directive,
|
|
2502
|
+
args: [{}]
|
|
2503
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { _handleBlurEvent: [{
|
|
2504
|
+
type: HostListener,
|
|
2505
|
+
args: ['focusout']
|
|
2506
|
+
}] } });
|
|
2507
|
+
|
|
2508
|
+
class SelectValueAccessor extends ValueAccessor {
|
|
2509
|
+
constructor(el) {
|
|
2510
|
+
super(el);
|
|
2511
|
+
}
|
|
2512
|
+
}
|
|
2513
|
+
/** @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 });
|
|
2514
|
+
/** @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: [
|
|
2515
|
+
{
|
|
2516
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2517
|
+
useExisting: SelectValueAccessor,
|
|
2518
|
+
multi: true
|
|
2519
|
+
}
|
|
2520
|
+
], usesInheritance: true, ngImport: i0 });
|
|
2521
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SelectValueAccessor, decorators: [{
|
|
2522
|
+
type: Directive,
|
|
2523
|
+
args: [{
|
|
2524
|
+
/* tslint:disable-next-line:directive-selector */
|
|
2525
|
+
selector: 'ix-select[ngModel],ix-select[formControlName],ix-select[formControl]',
|
|
2526
|
+
host: {
|
|
2527
|
+
'(valueChange)': 'handleChangeEvent($event.target.value)'
|
|
2528
|
+
},
|
|
2529
|
+
providers: [
|
|
2530
|
+
{
|
|
2531
|
+
provide: NG_VALUE_ACCESSOR,
|
|
2532
|
+
useExisting: SelectValueAccessor,
|
|
2533
|
+
multi: true
|
|
2534
|
+
}
|
|
2535
|
+
]
|
|
2536
|
+
}]
|
|
2537
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
2538
|
+
|
|
2246
2539
|
/*
|
|
2247
2540
|
* SPDX-FileCopyrightText: 2023 Siemens AG
|
|
2248
2541
|
*
|
|
@@ -2251,6 +2544,9 @@ const DIRECTIVES = [
|
|
|
2251
2544
|
* This source code is licensed under the MIT license found in the
|
|
2252
2545
|
* LICENSE file in the root directory of this source tree.
|
|
2253
2546
|
*/
|
|
2547
|
+
/**
|
|
2548
|
+
* @deprecated Use themeSwitcher from core package `import { themeSwitcher } from '@siemens/ix';`
|
|
2549
|
+
*/
|
|
2254
2550
|
class ThemeService {
|
|
2255
2551
|
constructor() {
|
|
2256
2552
|
this.themeChanged = new EventEmitter();
|
|
@@ -2420,7 +2716,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2420
2716
|
* This source code is licensed under the MIT license found in the
|
|
2421
2717
|
* LICENSE file in the root directory of this source tree.
|
|
2422
2718
|
*/
|
|
2423
|
-
const DECLARATIONS = [
|
|
2719
|
+
const DECLARATIONS = [
|
|
2720
|
+
...DIRECTIVES,
|
|
2721
|
+
IxTree,
|
|
2722
|
+
IxDropdownTriggerDirective,
|
|
2723
|
+
SelectValueAccessor,
|
|
2724
|
+
];
|
|
2424
2725
|
class IxModule {
|
|
2425
2726
|
static forRoot() {
|
|
2426
2727
|
return {
|
|
@@ -2440,7 +2741,9 @@ class IxModule {
|
|
|
2440
2741
|
}
|
|
2441
2742
|
}
|
|
2442
2743
|
/** @nocollapse */ IxModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2443
|
-
/** @nocollapse */ IxModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule, declarations: [IxActionCard,
|
|
2744
|
+
/** @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,
|
|
2745
|
+
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,
|
|
2746
|
+
SelectValueAccessor] });
|
|
2444
2747
|
/** @nocollapse */ IxModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule });
|
|
2445
2748
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: IxModule, decorators: [{
|
|
2446
2749
|
type: NgModule,
|
|
@@ -2463,5 +2766,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
2463
2766
|
* Generated bundle index. Do not edit.
|
|
2464
2767
|
*/
|
|
2465
2768
|
|
|
2466
|
-
export { IxActionCard, IxActiveModal,
|
|
2769
|
+
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 };
|
|
2467
2770
|
//# sourceMappingURL=siemens-ix-angular.mjs.map
|