@infineon/infineon-design-system-angular 39.6.0--canary.2100.20337516878.0 → 39.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/infineon-infineon-design-system-angular.mjs +304 -791
- package/fesm2022/infineon-infineon-design-system-angular.mjs.map +1 -1
- package/index.d.ts +176 -301
- package/package.json +21 -35
- package/LICENSE +0 -21
- package/fesm2022/infineon-infineon-design-system-angular-standalone.mjs +0 -2681
- package/fesm2022/infineon-infineon-design-system-angular-standalone.mjs.map +0 -1
- package/src/styles.css +0 -1
- package/standalone/index.d.ts +0 -1002
|
@@ -1,10 +1,32 @@
|
|
|
1
|
-
import { __decorate } from 'tslib';
|
|
2
1
|
import * as i0 from '@angular/core';
|
|
3
|
-
import {
|
|
4
|
-
import { fromEvent } from 'rxjs';
|
|
5
|
-
import '@infineon/infineon-design-system-stencil/styles.css';
|
|
6
|
-
import { DOCUMENT, CommonModule } from '@angular/common';
|
|
2
|
+
import { APP_INITIALIZER, NgModule, ChangeDetectionStrategy, Component } from '@angular/core';
|
|
7
3
|
import { defineCustomElements } from '@infineon/infineon-design-system-stencil/loader';
|
|
4
|
+
import { __decorate } from 'tslib';
|
|
5
|
+
import { fromEvent } from 'rxjs';
|
|
6
|
+
|
|
7
|
+
class ComponentLibraryModule {
|
|
8
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: ComponentLibraryModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
9
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.15", ngImport: i0, type: ComponentLibraryModule }); }
|
|
10
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: ComponentLibraryModule, providers: [
|
|
11
|
+
{
|
|
12
|
+
provide: APP_INITIALIZER,
|
|
13
|
+
useFactory: () => defineCustomElements,
|
|
14
|
+
multi: true
|
|
15
|
+
},
|
|
16
|
+
] }); }
|
|
17
|
+
}
|
|
18
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: ComponentLibraryModule, decorators: [{
|
|
19
|
+
type: NgModule,
|
|
20
|
+
args: [{
|
|
21
|
+
providers: [
|
|
22
|
+
{
|
|
23
|
+
provide: APP_INITIALIZER,
|
|
24
|
+
useFactory: () => defineCustomElements,
|
|
25
|
+
multi: true
|
|
26
|
+
},
|
|
27
|
+
]
|
|
28
|
+
}]
|
|
29
|
+
}] });
|
|
8
30
|
|
|
9
31
|
/* eslint-disable */
|
|
10
32
|
/* tslint:disable */
|
|
@@ -65,15 +87,13 @@ function ProxyCmp(opts) {
|
|
|
65
87
|
}
|
|
66
88
|
|
|
67
89
|
let IfxAccordion = class IfxAccordion {
|
|
68
|
-
z;
|
|
69
|
-
el;
|
|
70
90
|
constructor(c, r, z) {
|
|
71
91
|
this.z = z;
|
|
72
92
|
c.detach();
|
|
73
93
|
this.el = r.nativeElement;
|
|
74
94
|
}
|
|
75
|
-
|
|
76
|
-
|
|
95
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
96
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxAccordion, isStandalone: true, selector: "ifx-accordion", inputs: { autoCollapse: "autoCollapse" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
77
97
|
};
|
|
78
98
|
IfxAccordion = __decorate([
|
|
79
99
|
ProxyCmp({
|
|
@@ -88,21 +108,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
88
108
|
template: '<ng-content></ng-content>',
|
|
89
109
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
90
110
|
inputs: ['autoCollapse'],
|
|
91
|
-
standalone: false
|
|
92
111
|
}]
|
|
93
112
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
94
113
|
let IfxAccordionItem = class IfxAccordionItem {
|
|
95
|
-
z;
|
|
96
|
-
el;
|
|
97
|
-
ifxOpen = new EventEmitter();
|
|
98
|
-
ifxClose = new EventEmitter();
|
|
99
114
|
constructor(c, r, z) {
|
|
100
115
|
this.z = z;
|
|
101
116
|
c.detach();
|
|
102
117
|
this.el = r.nativeElement;
|
|
118
|
+
proxyOutputs(this, this.el, ['ifxOpen', 'ifxClose']);
|
|
103
119
|
}
|
|
104
|
-
|
|
105
|
-
|
|
120
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxAccordionItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
121
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxAccordionItem, isStandalone: true, selector: "ifx-accordion-item", inputs: { AriaLevel: "AriaLevel", caption: "caption", open: "open" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
106
122
|
};
|
|
107
123
|
IfxAccordionItem = __decorate([
|
|
108
124
|
ProxyCmp({
|
|
@@ -117,24 +133,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
117
133
|
template: '<ng-content></ng-content>',
|
|
118
134
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
119
135
|
inputs: ['AriaLevel', 'caption', 'open'],
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
}]
|
|
123
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ifxOpen: [{
|
|
124
|
-
type: Output
|
|
125
|
-
}], ifxClose: [{
|
|
126
|
-
type: Output
|
|
127
|
-
}] } });
|
|
136
|
+
}]
|
|
137
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
128
138
|
let IfxActionList = class IfxActionList {
|
|
129
|
-
z;
|
|
130
|
-
el;
|
|
131
139
|
constructor(c, r, z) {
|
|
132
140
|
this.z = z;
|
|
133
141
|
c.detach();
|
|
134
142
|
this.el = r.nativeElement;
|
|
135
143
|
}
|
|
136
|
-
|
|
137
|
-
|
|
144
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxActionList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
145
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxActionList, isStandalone: true, selector: "ifx-action-list", inputs: { listAriaLabel: "listAriaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
138
146
|
};
|
|
139
147
|
IfxActionList = __decorate([
|
|
140
148
|
ProxyCmp({
|
|
@@ -149,20 +157,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
149
157
|
template: '<ng-content></ng-content>',
|
|
150
158
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
151
159
|
inputs: ['listAriaLabel'],
|
|
152
|
-
standalone: false
|
|
153
160
|
}]
|
|
154
161
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
155
162
|
let IfxActionListItem = class IfxActionListItem {
|
|
156
|
-
z;
|
|
157
|
-
el;
|
|
158
|
-
ifxActionListItemClick = new EventEmitter();
|
|
159
163
|
constructor(c, r, z) {
|
|
160
164
|
this.z = z;
|
|
161
165
|
c.detach();
|
|
162
166
|
this.el = r.nativeElement;
|
|
167
|
+
proxyOutputs(this, this.el, ['ifxActionListItemClick']);
|
|
163
168
|
}
|
|
164
|
-
|
|
165
|
-
|
|
169
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxActionListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
170
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxActionListItem, isStandalone: true, selector: "ifx-action-list-item", inputs: { description: "description", disabled: "disabled", href: "href", itemAriaLabel: "itemAriaLabel", itemTitle: "itemTitle", target: "target", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
166
171
|
};
|
|
167
172
|
IfxActionListItem = __decorate([
|
|
168
173
|
ProxyCmp({
|
|
@@ -177,23 +182,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
177
182
|
template: '<ng-content></ng-content>',
|
|
178
183
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
179
184
|
inputs: ['description', 'disabled', 'href', 'itemAriaLabel', 'itemTitle', 'target', 'value'],
|
|
180
|
-
outputs: ['ifxActionListItemClick'],
|
|
181
|
-
standalone: false
|
|
182
185
|
}]
|
|
183
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
184
|
-
type: Output
|
|
185
|
-
}] } });
|
|
186
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
186
187
|
let IfxAlert = class IfxAlert {
|
|
187
|
-
z;
|
|
188
|
-
el;
|
|
189
|
-
ifxClose = new EventEmitter();
|
|
190
188
|
constructor(c, r, z) {
|
|
191
189
|
this.z = z;
|
|
192
190
|
c.detach();
|
|
193
191
|
this.el = r.nativeElement;
|
|
192
|
+
proxyOutputs(this, this.el, ['ifxClose']);
|
|
194
193
|
}
|
|
195
|
-
|
|
196
|
-
|
|
194
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
195
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxAlert, isStandalone: true, selector: "ifx-alert", inputs: { AriaLive: "AriaLive", closable: "closable", icon: "icon", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
197
196
|
};
|
|
198
197
|
IfxAlert = __decorate([
|
|
199
198
|
ProxyCmp({
|
|
@@ -208,22 +207,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
208
207
|
template: '<ng-content></ng-content>',
|
|
209
208
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
210
209
|
inputs: ['AriaLive', 'closable', 'icon', 'variant'],
|
|
211
|
-
outputs: ['ifxClose'],
|
|
212
|
-
standalone: false
|
|
213
210
|
}]
|
|
214
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
215
|
-
type: Output
|
|
216
|
-
}] } });
|
|
211
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
217
212
|
let IfxBasicTable = class IfxBasicTable {
|
|
218
|
-
z;
|
|
219
|
-
el;
|
|
220
213
|
constructor(c, r, z) {
|
|
221
214
|
this.z = z;
|
|
222
215
|
c.detach();
|
|
223
216
|
this.el = r.nativeElement;
|
|
224
217
|
}
|
|
225
|
-
|
|
226
|
-
|
|
218
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxBasicTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
219
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxBasicTable, isStandalone: true, selector: "ifx-basic-table", inputs: { cols: "cols", rowHeight: "rowHeight", rows: "rows", tableHeight: "tableHeight", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
227
220
|
};
|
|
228
221
|
IfxBasicTable = __decorate([
|
|
229
222
|
ProxyCmp({
|
|
@@ -238,19 +231,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
238
231
|
template: '<ng-content></ng-content>',
|
|
239
232
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
240
233
|
inputs: ['cols', 'rowHeight', 'rows', 'tableHeight', 'variant'],
|
|
241
|
-
standalone: false
|
|
242
234
|
}]
|
|
243
235
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
244
236
|
let IfxBreadcrumb = class IfxBreadcrumb {
|
|
245
|
-
z;
|
|
246
|
-
el;
|
|
247
237
|
constructor(c, r, z) {
|
|
248
238
|
this.z = z;
|
|
249
239
|
c.detach();
|
|
250
240
|
this.el = r.nativeElement;
|
|
251
241
|
}
|
|
252
|
-
|
|
253
|
-
|
|
242
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
243
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxBreadcrumb, isStandalone: true, selector: "ifx-breadcrumb", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
254
244
|
};
|
|
255
245
|
IfxBreadcrumb = __decorate([
|
|
256
246
|
ProxyCmp({})
|
|
@@ -263,19 +253,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
263
253
|
template: '<ng-content></ng-content>',
|
|
264
254
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
265
255
|
inputs: [],
|
|
266
|
-
standalone: false
|
|
267
256
|
}]
|
|
268
257
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
269
258
|
let IfxBreadcrumbItem = class IfxBreadcrumbItem {
|
|
270
|
-
z;
|
|
271
|
-
el;
|
|
272
259
|
constructor(c, r, z) {
|
|
273
260
|
this.z = z;
|
|
274
261
|
c.detach();
|
|
275
262
|
this.el = r.nativeElement;
|
|
276
263
|
}
|
|
277
|
-
|
|
278
|
-
|
|
264
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxBreadcrumbItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
265
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxBreadcrumbItem, isStandalone: true, selector: "ifx-breadcrumb-item", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
279
266
|
};
|
|
280
267
|
IfxBreadcrumbItem = __decorate([
|
|
281
268
|
ProxyCmp({})
|
|
@@ -288,20 +275,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
288
275
|
template: '<ng-content></ng-content>',
|
|
289
276
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
290
277
|
inputs: [],
|
|
291
|
-
standalone: false
|
|
292
278
|
}]
|
|
293
279
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
294
280
|
let IfxBreadcrumbItemLabel = class IfxBreadcrumbItemLabel {
|
|
295
|
-
z;
|
|
296
|
-
el;
|
|
297
|
-
breadcrumbMenuIconWrapper = new EventEmitter();
|
|
298
281
|
constructor(c, r, z) {
|
|
299
282
|
this.z = z;
|
|
300
283
|
c.detach();
|
|
301
284
|
this.el = r.nativeElement;
|
|
285
|
+
proxyOutputs(this, this.el, ['breadcrumbMenuIconWrapper']);
|
|
302
286
|
}
|
|
303
|
-
|
|
304
|
-
|
|
287
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxBreadcrumbItemLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
288
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxBreadcrumbItemLabel, isStandalone: true, selector: "ifx-breadcrumb-item-label", inputs: { href: "href", icon: "icon", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
305
289
|
};
|
|
306
290
|
IfxBreadcrumbItemLabel = __decorate([
|
|
307
291
|
ProxyCmp({
|
|
@@ -316,22 +300,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
316
300
|
template: '<ng-content></ng-content>',
|
|
317
301
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
318
302
|
inputs: ['href', 'icon', 'target'],
|
|
319
|
-
outputs: ['breadcrumbMenuIconWrapper'],
|
|
320
|
-
standalone: false
|
|
321
303
|
}]
|
|
322
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
323
|
-
type: Output
|
|
324
|
-
}] } });
|
|
304
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
325
305
|
let IfxButton = class IfxButton {
|
|
326
|
-
z;
|
|
327
|
-
el;
|
|
328
306
|
constructor(c, r, z) {
|
|
329
307
|
this.z = z;
|
|
330
308
|
c.detach();
|
|
331
309
|
this.el = r.nativeElement;
|
|
332
310
|
}
|
|
333
|
-
|
|
334
|
-
|
|
311
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
312
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxButton, isStandalone: true, selector: "ifx-button", inputs: { ariaLabel: "ariaLabel", disabled: "disabled", fullWidth: "fullWidth", href: "href", size: "size", target: "target", theme: "theme", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
335
313
|
};
|
|
336
314
|
IfxButton = __decorate([
|
|
337
315
|
ProxyCmp({
|
|
@@ -347,19 +325,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
347
325
|
template: '<ng-content></ng-content>',
|
|
348
326
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
349
327
|
inputs: ['ariaLabel', 'disabled', 'fullWidth', 'href', 'size', 'target', 'theme', 'type', 'variant'],
|
|
350
|
-
standalone: false
|
|
351
328
|
}]
|
|
352
329
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
353
330
|
let IfxCard = class IfxCard {
|
|
354
|
-
z;
|
|
355
|
-
el;
|
|
356
331
|
constructor(c, r, z) {
|
|
357
332
|
this.z = z;
|
|
358
333
|
c.detach();
|
|
359
334
|
this.el = r.nativeElement;
|
|
360
335
|
}
|
|
361
|
-
|
|
362
|
-
|
|
336
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
337
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxCard, isStandalone: true, selector: "ifx-card", inputs: { ariaLabel: "ariaLabel", direction: "direction", href: "href", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
363
338
|
};
|
|
364
339
|
IfxCard = __decorate([
|
|
365
340
|
ProxyCmp({
|
|
@@ -374,19 +349,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
374
349
|
template: '<ng-content></ng-content>',
|
|
375
350
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
376
351
|
inputs: ['ariaLabel', 'direction', 'href', 'target'],
|
|
377
|
-
standalone: false
|
|
378
352
|
}]
|
|
379
353
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
380
354
|
let IfxCardHeadline = class IfxCardHeadline {
|
|
381
|
-
z;
|
|
382
|
-
el;
|
|
383
355
|
constructor(c, r, z) {
|
|
384
356
|
this.z = z;
|
|
385
357
|
c.detach();
|
|
386
358
|
this.el = r.nativeElement;
|
|
387
359
|
}
|
|
388
|
-
|
|
389
|
-
|
|
360
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxCardHeadline, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
361
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxCardHeadline, isStandalone: true, selector: "ifx-card-headline", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
390
362
|
};
|
|
391
363
|
IfxCardHeadline = __decorate([
|
|
392
364
|
ProxyCmp({})
|
|
@@ -399,20 +371,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
399
371
|
template: '<ng-content></ng-content>',
|
|
400
372
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
401
373
|
inputs: [],
|
|
402
|
-
standalone: false
|
|
403
374
|
}]
|
|
404
375
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
405
376
|
let IfxCardImage = class IfxCardImage {
|
|
406
|
-
z;
|
|
407
|
-
el;
|
|
408
|
-
imgPosition = new EventEmitter();
|
|
409
377
|
constructor(c, r, z) {
|
|
410
378
|
this.z = z;
|
|
411
379
|
c.detach();
|
|
412
380
|
this.el = r.nativeElement;
|
|
381
|
+
proxyOutputs(this, this.el, ['imgPosition']);
|
|
413
382
|
}
|
|
414
|
-
|
|
415
|
-
|
|
383
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxCardImage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
384
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxCardImage, isStandalone: true, selector: "ifx-card-image", inputs: { alt: "alt", position: "position", src: "src" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
416
385
|
};
|
|
417
386
|
IfxCardImage = __decorate([
|
|
418
387
|
ProxyCmp({
|
|
@@ -427,22 +396,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
427
396
|
template: '<ng-content></ng-content>',
|
|
428
397
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
429
398
|
inputs: ['alt', 'position', 'src'],
|
|
430
|
-
outputs: ['imgPosition'],
|
|
431
|
-
standalone: false
|
|
432
399
|
}]
|
|
433
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
434
|
-
type: Output
|
|
435
|
-
}] } });
|
|
400
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
436
401
|
let IfxCardLinks = class IfxCardLinks {
|
|
437
|
-
z;
|
|
438
|
-
el;
|
|
439
402
|
constructor(c, r, z) {
|
|
440
403
|
this.z = z;
|
|
441
404
|
c.detach();
|
|
442
405
|
this.el = r.nativeElement;
|
|
443
406
|
}
|
|
444
|
-
|
|
445
|
-
|
|
407
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxCardLinks, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
408
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxCardLinks, isStandalone: true, selector: "ifx-card-links", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
446
409
|
};
|
|
447
410
|
IfxCardLinks = __decorate([
|
|
448
411
|
ProxyCmp({})
|
|
@@ -455,19 +418,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
455
418
|
template: '<ng-content></ng-content>',
|
|
456
419
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
457
420
|
inputs: [],
|
|
458
|
-
standalone: false
|
|
459
421
|
}]
|
|
460
422
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
461
423
|
let IfxCardOverline = class IfxCardOverline {
|
|
462
|
-
z;
|
|
463
|
-
el;
|
|
464
424
|
constructor(c, r, z) {
|
|
465
425
|
this.z = z;
|
|
466
426
|
c.detach();
|
|
467
427
|
this.el = r.nativeElement;
|
|
468
428
|
}
|
|
469
|
-
|
|
470
|
-
|
|
429
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxCardOverline, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
430
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxCardOverline, isStandalone: true, selector: "ifx-card-overline", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
471
431
|
};
|
|
472
432
|
IfxCardOverline = __decorate([
|
|
473
433
|
ProxyCmp({})
|
|
@@ -480,19 +440,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
480
440
|
template: '<ng-content></ng-content>',
|
|
481
441
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
482
442
|
inputs: [],
|
|
483
|
-
standalone: false
|
|
484
443
|
}]
|
|
485
444
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
486
445
|
let IfxCardText = class IfxCardText {
|
|
487
|
-
z;
|
|
488
|
-
el;
|
|
489
446
|
constructor(c, r, z) {
|
|
490
447
|
this.z = z;
|
|
491
448
|
c.detach();
|
|
492
449
|
this.el = r.nativeElement;
|
|
493
450
|
}
|
|
494
|
-
|
|
495
|
-
|
|
451
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxCardText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
452
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxCardText, isStandalone: true, selector: "ifx-card-text", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
496
453
|
};
|
|
497
454
|
IfxCardText = __decorate([
|
|
498
455
|
ProxyCmp({})
|
|
@@ -505,21 +462,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
505
462
|
template: '<ng-content></ng-content>',
|
|
506
463
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
507
464
|
inputs: [],
|
|
508
|
-
standalone: false
|
|
509
465
|
}]
|
|
510
466
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
511
467
|
let IfxCheckbox = class IfxCheckbox {
|
|
512
|
-
z;
|
|
513
|
-
el;
|
|
514
|
-
ifxChange = new EventEmitter();
|
|
515
|
-
ifxError = new EventEmitter();
|
|
516
468
|
constructor(c, r, z) {
|
|
517
469
|
this.z = z;
|
|
518
470
|
c.detach();
|
|
519
471
|
this.el = r.nativeElement;
|
|
472
|
+
proxyOutputs(this, this.el, ['ifxChange', 'ifxError']);
|
|
520
473
|
}
|
|
521
|
-
|
|
522
|
-
|
|
474
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
475
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxCheckbox, isStandalone: true, selector: "ifx-checkbox", inputs: { checked: "checked", disabled: "disabled", error: "error", indeterminate: "indeterminate", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
523
476
|
};
|
|
524
477
|
IfxCheckbox = __decorate([
|
|
525
478
|
ProxyCmp({
|
|
@@ -535,24 +488,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
535
488
|
template: '<ng-content></ng-content>',
|
|
536
489
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
537
490
|
inputs: ['checked', 'disabled', 'error', 'indeterminate', 'size', 'value'],
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
}]
|
|
541
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ifxChange: [{
|
|
542
|
-
type: Output
|
|
543
|
-
}], ifxError: [{
|
|
544
|
-
type: Output
|
|
545
|
-
}] } });
|
|
491
|
+
}]
|
|
492
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
546
493
|
let IfxCheckboxGroup = class IfxCheckboxGroup {
|
|
547
|
-
z;
|
|
548
|
-
el;
|
|
549
494
|
constructor(c, r, z) {
|
|
550
495
|
this.z = z;
|
|
551
496
|
c.detach();
|
|
552
497
|
this.el = r.nativeElement;
|
|
553
498
|
}
|
|
554
|
-
|
|
555
|
-
|
|
499
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxCheckboxGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
500
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxCheckboxGroup, isStandalone: true, selector: "ifx-checkbox-group", inputs: { alignment: "alignment", captionText: "captionText", groupLabelText: "groupLabelText", required: "required", showCaption: "showCaption", showCaptionIcon: "showCaptionIcon", showGroupLabel: "showGroupLabel", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
556
501
|
};
|
|
557
502
|
IfxCheckboxGroup = __decorate([
|
|
558
503
|
ProxyCmp({
|
|
@@ -568,20 +513,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
568
513
|
template: '<ng-content></ng-content>',
|
|
569
514
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
570
515
|
inputs: ['alignment', 'captionText', 'groupLabelText', 'required', 'showCaption', 'showCaptionIcon', 'showGroupLabel', 'size'],
|
|
571
|
-
standalone: false
|
|
572
516
|
}]
|
|
573
517
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
574
518
|
let IfxChip = class IfxChip {
|
|
575
|
-
z;
|
|
576
|
-
el;
|
|
577
|
-
ifxChange = new EventEmitter();
|
|
578
519
|
constructor(c, r, z) {
|
|
579
520
|
this.z = z;
|
|
580
521
|
c.detach();
|
|
581
522
|
this.el = r.nativeElement;
|
|
523
|
+
proxyOutputs(this, this.el, ['ifxChange']);
|
|
582
524
|
}
|
|
583
|
-
|
|
584
|
-
|
|
525
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
526
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxChip, isStandalone: true, selector: "ifx-chip", inputs: { ariaLabel: "ariaLabel", disabled: "disabled", icon: "icon", placeholder: "placeholder", readOnly: "readOnly", size: "size", theme: "theme", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
585
527
|
};
|
|
586
528
|
IfxChip = __decorate([
|
|
587
529
|
ProxyCmp({
|
|
@@ -596,23 +538,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
596
538
|
template: '<ng-content></ng-content>',
|
|
597
539
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
598
540
|
inputs: ['ariaLabel', 'disabled', 'icon', 'placeholder', 'readOnly', 'size', 'theme', 'value', 'variant'],
|
|
599
|
-
outputs: ['ifxChange'],
|
|
600
|
-
standalone: false
|
|
601
541
|
}]
|
|
602
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
603
|
-
type: Output
|
|
604
|
-
}] } });
|
|
542
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
605
543
|
let IfxChipItem = class IfxChipItem {
|
|
606
|
-
z;
|
|
607
|
-
el;
|
|
608
|
-
ifxChipItemSelect = new EventEmitter();
|
|
609
544
|
constructor(c, r, z) {
|
|
610
545
|
this.z = z;
|
|
611
546
|
c.detach();
|
|
612
547
|
this.el = r.nativeElement;
|
|
548
|
+
proxyOutputs(this, this.el, ['ifxChipItemSelect']);
|
|
613
549
|
}
|
|
614
|
-
|
|
615
|
-
|
|
550
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxChipItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
551
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxChipItem, isStandalone: true, selector: "ifx-chip-item", inputs: { chipState: "chipState", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
616
552
|
};
|
|
617
553
|
IfxChipItem = __decorate([
|
|
618
554
|
ProxyCmp({
|
|
@@ -627,23 +563,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
627
563
|
template: '<ng-content></ng-content>',
|
|
628
564
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
629
565
|
inputs: ['chipState', 'selected', 'value'],
|
|
630
|
-
outputs: ['ifxChipItemSelect'],
|
|
631
|
-
standalone: false
|
|
632
566
|
}]
|
|
633
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
634
|
-
type: Output
|
|
635
|
-
}] } });
|
|
567
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
636
568
|
let IfxContentSwitcher = class IfxContentSwitcher {
|
|
637
|
-
z;
|
|
638
|
-
el;
|
|
639
|
-
ifxChange = new EventEmitter();
|
|
640
569
|
constructor(c, r, z) {
|
|
641
570
|
this.z = z;
|
|
642
571
|
c.detach();
|
|
643
572
|
this.el = r.nativeElement;
|
|
573
|
+
proxyOutputs(this, this.el, ['ifxChange']);
|
|
644
574
|
}
|
|
645
|
-
|
|
646
|
-
|
|
575
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxContentSwitcher, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
576
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxContentSwitcher, isStandalone: true, selector: "ifx-content-switcher", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
647
577
|
};
|
|
648
578
|
IfxContentSwitcher = __decorate([
|
|
649
579
|
ProxyCmp({})
|
|
@@ -656,22 +586,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
656
586
|
template: '<ng-content></ng-content>',
|
|
657
587
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
658
588
|
inputs: [],
|
|
659
|
-
outputs: ['ifxChange'],
|
|
660
|
-
standalone: false
|
|
661
589
|
}]
|
|
662
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
663
|
-
type: Output
|
|
664
|
-
}] } });
|
|
590
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
665
591
|
let IfxContentSwitcherItem = class IfxContentSwitcherItem {
|
|
666
|
-
z;
|
|
667
|
-
el;
|
|
668
592
|
constructor(c, r, z) {
|
|
669
593
|
this.z = z;
|
|
670
594
|
c.detach();
|
|
671
595
|
this.el = r.nativeElement;
|
|
672
596
|
}
|
|
673
|
-
|
|
674
|
-
|
|
597
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxContentSwitcherItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
598
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxContentSwitcherItem, isStandalone: true, selector: "ifx-content-switcher-item", inputs: { selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
675
599
|
};
|
|
676
600
|
IfxContentSwitcherItem = __decorate([
|
|
677
601
|
ProxyCmp({
|
|
@@ -686,20 +610,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
686
610
|
template: '<ng-content></ng-content>',
|
|
687
611
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
688
612
|
inputs: ['selected', 'value'],
|
|
689
|
-
standalone: false
|
|
690
613
|
}]
|
|
691
614
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
692
615
|
let IfxDatePicker = class IfxDatePicker {
|
|
693
|
-
z;
|
|
694
|
-
el;
|
|
695
|
-
ifxDate = new EventEmitter();
|
|
696
616
|
constructor(c, r, z) {
|
|
697
617
|
this.z = z;
|
|
698
618
|
c.detach();
|
|
699
619
|
this.el = r.nativeElement;
|
|
620
|
+
proxyOutputs(this, this.el, ['ifxDate']);
|
|
700
621
|
}
|
|
701
|
-
|
|
702
|
-
|
|
622
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxDatePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
623
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxDatePicker, isStandalone: true, selector: "ifx-date-picker", inputs: { ariaLabel: "ariaLabel", autocomplete: "autocomplete", caption: "caption", disabled: "disabled", error: "error", label: "label", max: "max", min: "min", required: "required", size: "size", success: "success", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
703
624
|
};
|
|
704
625
|
IfxDatePicker = __decorate([
|
|
705
626
|
ProxyCmp({
|
|
@@ -714,22 +635,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
714
635
|
template: '<ng-content></ng-content>',
|
|
715
636
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
716
637
|
inputs: ['ariaLabel', 'autocomplete', 'caption', 'disabled', 'error', 'label', 'max', 'min', 'required', 'size', 'success', 'type', 'value'],
|
|
717
|
-
outputs: ['ifxDate'],
|
|
718
|
-
standalone: false
|
|
719
638
|
}]
|
|
720
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
721
|
-
type: Output
|
|
722
|
-
}] } });
|
|
639
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
723
640
|
let IfxDownload = class IfxDownload {
|
|
724
|
-
z;
|
|
725
|
-
el;
|
|
726
641
|
constructor(c, r, z) {
|
|
727
642
|
this.z = z;
|
|
728
643
|
c.detach();
|
|
729
644
|
this.el = r.nativeElement;
|
|
730
645
|
}
|
|
731
|
-
|
|
732
|
-
|
|
646
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxDownload, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
647
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxDownload, isStandalone: true, selector: "ifx-download", inputs: { tokens: "tokens" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
733
648
|
};
|
|
734
649
|
IfxDownload = __decorate([
|
|
735
650
|
ProxyCmp({
|
|
@@ -744,22 +659,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
744
659
|
template: '<ng-content></ng-content>',
|
|
745
660
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
746
661
|
inputs: ['tokens'],
|
|
747
|
-
standalone: false
|
|
748
662
|
}]
|
|
749
663
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
750
664
|
let IfxDropdown = class IfxDropdown {
|
|
751
|
-
z;
|
|
752
|
-
el;
|
|
753
|
-
ifxOpen = new EventEmitter();
|
|
754
|
-
ifxClose = new EventEmitter();
|
|
755
|
-
ifxDropdown = new EventEmitter();
|
|
756
665
|
constructor(c, r, z) {
|
|
757
666
|
this.z = z;
|
|
758
667
|
c.detach();
|
|
759
668
|
this.el = r.nativeElement;
|
|
669
|
+
proxyOutputs(this, this.el, ['ifxOpen', 'ifxClose', 'ifxDropdown']);
|
|
760
670
|
}
|
|
761
|
-
|
|
762
|
-
|
|
671
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
672
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxDropdown, isStandalone: true, selector: "ifx-dropdown", inputs: { defaultOpen: "defaultOpen", disabled: "disabled", noAppendToBody: "noAppendToBody", noCloseOnMenuClick: "noCloseOnMenuClick", noCloseOnOutsideClick: "noCloseOnOutsideClick", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
763
673
|
};
|
|
764
674
|
IfxDropdown = __decorate([
|
|
765
675
|
ProxyCmp({
|
|
@@ -775,26 +685,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
775
685
|
template: '<ng-content></ng-content>',
|
|
776
686
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
777
687
|
inputs: ['defaultOpen', 'disabled', 'noAppendToBody', 'noCloseOnMenuClick', 'noCloseOnOutsideClick', 'placement'],
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
}]
|
|
781
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ifxOpen: [{
|
|
782
|
-
type: Output
|
|
783
|
-
}], ifxClose: [{
|
|
784
|
-
type: Output
|
|
785
|
-
}], ifxDropdown: [{
|
|
786
|
-
type: Output
|
|
787
|
-
}] } });
|
|
688
|
+
}]
|
|
689
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
788
690
|
let IfxDropdownHeader = class IfxDropdownHeader {
|
|
789
|
-
z;
|
|
790
|
-
el;
|
|
791
691
|
constructor(c, r, z) {
|
|
792
692
|
this.z = z;
|
|
793
693
|
c.detach();
|
|
794
694
|
this.el = r.nativeElement;
|
|
795
695
|
}
|
|
796
|
-
|
|
797
|
-
|
|
696
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxDropdownHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
697
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxDropdownHeader, isStandalone: true, selector: "ifx-dropdown-header", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
798
698
|
};
|
|
799
699
|
IfxDropdownHeader = __decorate([
|
|
800
700
|
ProxyCmp({})
|
|
@@ -807,20 +707,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
807
707
|
template: '<ng-content></ng-content>',
|
|
808
708
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
809
709
|
inputs: [],
|
|
810
|
-
standalone: false
|
|
811
710
|
}]
|
|
812
711
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
813
712
|
let IfxDropdownItem = class IfxDropdownItem {
|
|
814
|
-
z;
|
|
815
|
-
el;
|
|
816
|
-
ifxDropdownItem = new EventEmitter();
|
|
817
713
|
constructor(c, r, z) {
|
|
818
714
|
this.z = z;
|
|
819
715
|
c.detach();
|
|
820
716
|
this.el = r.nativeElement;
|
|
717
|
+
proxyOutputs(this, this.el, ['ifxDropdownItem']);
|
|
821
718
|
}
|
|
822
|
-
|
|
823
|
-
|
|
719
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxDropdownItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
720
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxDropdownItem, isStandalone: true, selector: "ifx-dropdown-item", inputs: { hide: "hide", href: "href", icon: "icon", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
824
721
|
};
|
|
825
722
|
IfxDropdownItem = __decorate([
|
|
826
723
|
ProxyCmp({
|
|
@@ -835,24 +732,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
835
732
|
template: '<ng-content></ng-content>',
|
|
836
733
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
837
734
|
inputs: ['hide', 'href', 'icon', 'target'],
|
|
838
|
-
outputs: ['ifxDropdownItem'],
|
|
839
|
-
standalone: false
|
|
840
735
|
}]
|
|
841
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
842
|
-
type: Output
|
|
843
|
-
}] } });
|
|
736
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
844
737
|
let IfxDropdownMenu = class IfxDropdownMenu {
|
|
845
|
-
z;
|
|
846
|
-
el;
|
|
847
|
-
menuSize = new EventEmitter();
|
|
848
|
-
ifxDropdownMenuItem = new EventEmitter();
|
|
849
738
|
constructor(c, r, z) {
|
|
850
739
|
this.z = z;
|
|
851
740
|
c.detach();
|
|
852
741
|
this.el = r.nativeElement;
|
|
742
|
+
proxyOutputs(this, this.el, ['menuSize', 'ifxDropdownMenuItem']);
|
|
853
743
|
}
|
|
854
|
-
|
|
855
|
-
|
|
744
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxDropdownMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
745
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxDropdownMenu, isStandalone: true, selector: "ifx-dropdown-menu", inputs: { isOpen: "isOpen", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
856
746
|
};
|
|
857
747
|
IfxDropdownMenu = __decorate([
|
|
858
748
|
ProxyCmp({
|
|
@@ -867,24 +757,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
867
757
|
template: '<ng-content></ng-content>',
|
|
868
758
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
869
759
|
inputs: ['isOpen', 'size'],
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
}]
|
|
873
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { menuSize: [{
|
|
874
|
-
type: Output
|
|
875
|
-
}], ifxDropdownMenuItem: [{
|
|
876
|
-
type: Output
|
|
877
|
-
}] } });
|
|
760
|
+
}]
|
|
761
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
878
762
|
let IfxDropdownSeparator = class IfxDropdownSeparator {
|
|
879
|
-
z;
|
|
880
|
-
el;
|
|
881
763
|
constructor(c, r, z) {
|
|
882
764
|
this.z = z;
|
|
883
765
|
c.detach();
|
|
884
766
|
this.el = r.nativeElement;
|
|
885
767
|
}
|
|
886
|
-
|
|
887
|
-
|
|
768
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxDropdownSeparator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
769
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxDropdownSeparator, isStandalone: true, selector: "ifx-dropdown-separator", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
888
770
|
};
|
|
889
771
|
IfxDropdownSeparator = __decorate([
|
|
890
772
|
ProxyCmp({})
|
|
@@ -897,19 +779,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
897
779
|
template: '<ng-content></ng-content>',
|
|
898
780
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
899
781
|
inputs: [],
|
|
900
|
-
standalone: false
|
|
901
782
|
}]
|
|
902
783
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
903
784
|
let IfxDropdownTrigger = class IfxDropdownTrigger {
|
|
904
|
-
z;
|
|
905
|
-
el;
|
|
906
785
|
constructor(c, r, z) {
|
|
907
786
|
this.z = z;
|
|
908
787
|
c.detach();
|
|
909
788
|
this.el = r.nativeElement;
|
|
910
789
|
}
|
|
911
|
-
|
|
912
|
-
|
|
790
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxDropdownTrigger, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
791
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxDropdownTrigger, isStandalone: true, selector: "ifx-dropdown-trigger", inputs: { isOpen: "isOpen" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
913
792
|
};
|
|
914
793
|
IfxDropdownTrigger = __decorate([
|
|
915
794
|
ProxyCmp({
|
|
@@ -924,19 +803,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
924
803
|
template: '<ng-content></ng-content>',
|
|
925
804
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
926
805
|
inputs: ['isOpen'],
|
|
927
|
-
standalone: false
|
|
928
806
|
}]
|
|
929
807
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
930
808
|
let IfxDropdownTriggerButton = class IfxDropdownTriggerButton {
|
|
931
|
-
z;
|
|
932
|
-
el;
|
|
933
809
|
constructor(c, r, z) {
|
|
934
810
|
this.z = z;
|
|
935
811
|
c.detach();
|
|
936
812
|
this.el = r.nativeElement;
|
|
937
813
|
}
|
|
938
|
-
|
|
939
|
-
|
|
814
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxDropdownTriggerButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
815
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxDropdownTriggerButton, isStandalone: true, selector: "ifx-dropdown-trigger-button", inputs: { disabled: "disabled", hideArrow: "hideArrow", isOpen: "isOpen", size: "size", theme: "theme", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
940
816
|
};
|
|
941
817
|
IfxDropdownTriggerButton = __decorate([
|
|
942
818
|
ProxyCmp({
|
|
@@ -951,19 +827,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
951
827
|
template: '<ng-content></ng-content>',
|
|
952
828
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
953
829
|
inputs: ['disabled', 'hideArrow', 'isOpen', 'size', 'theme', 'variant'],
|
|
954
|
-
standalone: false
|
|
955
830
|
}]
|
|
956
831
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
957
832
|
let IfxFaq = class IfxFaq {
|
|
958
|
-
z;
|
|
959
|
-
el;
|
|
960
833
|
constructor(c, r, z) {
|
|
961
834
|
this.z = z;
|
|
962
835
|
c.detach();
|
|
963
836
|
this.el = r.nativeElement;
|
|
964
837
|
}
|
|
965
|
-
|
|
966
|
-
|
|
838
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxFaq, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
839
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxFaq, isStandalone: true, selector: "ifx-faq", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
967
840
|
};
|
|
968
841
|
IfxFaq = __decorate([
|
|
969
842
|
ProxyCmp({})
|
|
@@ -976,33 +849,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
976
849
|
template: '<ng-content></ng-content>',
|
|
977
850
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
978
851
|
inputs: [],
|
|
979
|
-
standalone: false
|
|
980
852
|
}]
|
|
981
853
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
982
854
|
let IfxFileUpload = class IfxFileUpload {
|
|
983
|
-
z;
|
|
984
|
-
el;
|
|
985
|
-
ifxFileUploadAdd = new EventEmitter();
|
|
986
|
-
ifxFileUploadRemove = new EventEmitter();
|
|
987
|
-
ifxFileUploadChange = new EventEmitter();
|
|
988
|
-
ifxFileUploadError = new EventEmitter();
|
|
989
|
-
ifxFileUploadInvalid = new EventEmitter();
|
|
990
|
-
ifxFileUploadStart = new EventEmitter();
|
|
991
|
-
ifxFileUploadComplete = new EventEmitter();
|
|
992
|
-
ifxFileUploadAllComplete = new EventEmitter();
|
|
993
|
-
ifxFileUploadAbort = new EventEmitter();
|
|
994
|
-
ifxFileUploadDrop = new EventEmitter();
|
|
995
|
-
ifxFileUploadClick = new EventEmitter();
|
|
996
|
-
ifxFileUploadMaxFilesExceeded = new EventEmitter();
|
|
997
|
-
ifxFileUploadValidation = new EventEmitter();
|
|
998
|
-
ifxFileUploadRetry = new EventEmitter();
|
|
999
855
|
constructor(c, r, z) {
|
|
1000
856
|
this.z = z;
|
|
1001
857
|
c.detach();
|
|
1002
858
|
this.el = r.nativeElement;
|
|
859
|
+
proxyOutputs(this, this.el, ['ifxFileUploadAdd', 'ifxFileUploadRemove', 'ifxFileUploadChange', 'ifxFileUploadError', 'ifxFileUploadInvalid', 'ifxFileUploadStart', 'ifxFileUploadComplete', 'ifxFileUploadAllComplete', 'ifxFileUploadAbort', 'ifxFileUploadDrop', 'ifxFileUploadClick', 'ifxFileUploadMaxFilesExceeded', 'ifxFileUploadValidation', 'ifxFileUploadRetry']);
|
|
1003
860
|
}
|
|
1004
|
-
|
|
1005
|
-
|
|
861
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxFileUpload, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
862
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxFileUpload, isStandalone: true, selector: "ifx-file-upload", inputs: { additionalAllowedFileTypes: "additionalAllowedFileTypes", allowAnyFileType: "allowAnyFileType", allowedFileExtensions: "allowedFileExtensions", allowedFileTypes: "allowedFileTypes", ariaLabelBrowseFiles: "ariaLabelBrowseFiles", ariaLabelCancelUpload: "ariaLabelCancelUpload", ariaLabelDropzone: "ariaLabelDropzone", ariaLabelFileInput: "ariaLabelFileInput", ariaLabelRemoveFile: "ariaLabelRemoveFile", ariaLabelRetryUpload: "ariaLabelRetryUpload", ariaLabelUploadFailedStatus: "ariaLabelUploadFailedStatus", ariaLabelUploadedStatus: "ariaLabelUploadedStatus", ariaLabelUploadingStatus: "ariaLabelUploadingStatus", disabled: "disabled", dragAndDrop: "dragAndDrop", label: "label", labelBrowseFiles: "labelBrowseFiles", labelDragAndDrop: "labelDragAndDrop", labelFilePlural: "labelFilePlural", labelFileSingular: "labelFileSingular", labelFileTooLarge: "labelFileTooLarge", labelMaxFilesExceeded: "labelMaxFilesExceeded", labelMaxFilesInfo: "labelMaxFilesInfo", labelRequiredError: "labelRequiredError", labelSupportedFormatsTemplate: "labelSupportedFormatsTemplate", labelUnsupportedFileType: "labelUnsupportedFileType", labelUploadFailed: "labelUploadFailed", labelUploaded: "labelUploaded", labelUploadedFilesHeading: "labelUploadedFilesHeading", maxFileSizeMB: "maxFileSizeMB", maxFiles: "maxFiles", required: "required", uploadHandler: "uploadHandler" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1006
863
|
};
|
|
1007
864
|
IfxFileUpload = __decorate([
|
|
1008
865
|
ProxyCmp({
|
|
@@ -1018,49 +875,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1018
875
|
template: '<ng-content></ng-content>',
|
|
1019
876
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1020
877
|
inputs: ['additionalAllowedFileTypes', 'allowAnyFileType', 'allowedFileExtensions', 'allowedFileTypes', 'ariaLabelBrowseFiles', 'ariaLabelCancelUpload', 'ariaLabelDropzone', 'ariaLabelFileInput', 'ariaLabelRemoveFile', 'ariaLabelRetryUpload', 'ariaLabelUploadFailedStatus', 'ariaLabelUploadedStatus', 'ariaLabelUploadingStatus', 'disabled', 'dragAndDrop', 'label', 'labelBrowseFiles', 'labelDragAndDrop', 'labelFilePlural', 'labelFileSingular', 'labelFileTooLarge', 'labelMaxFilesExceeded', 'labelMaxFilesInfo', 'labelRequiredError', 'labelSupportedFormatsTemplate', 'labelUnsupportedFileType', 'labelUploadFailed', 'labelUploaded', 'labelUploadedFilesHeading', 'maxFileSizeMB', 'maxFiles', 'required', 'uploadHandler'],
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
}]
|
|
1024
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ifxFileUploadAdd: [{
|
|
1025
|
-
type: Output
|
|
1026
|
-
}], ifxFileUploadRemove: [{
|
|
1027
|
-
type: Output
|
|
1028
|
-
}], ifxFileUploadChange: [{
|
|
1029
|
-
type: Output
|
|
1030
|
-
}], ifxFileUploadError: [{
|
|
1031
|
-
type: Output
|
|
1032
|
-
}], ifxFileUploadInvalid: [{
|
|
1033
|
-
type: Output
|
|
1034
|
-
}], ifxFileUploadStart: [{
|
|
1035
|
-
type: Output
|
|
1036
|
-
}], ifxFileUploadComplete: [{
|
|
1037
|
-
type: Output
|
|
1038
|
-
}], ifxFileUploadAllComplete: [{
|
|
1039
|
-
type: Output
|
|
1040
|
-
}], ifxFileUploadAbort: [{
|
|
1041
|
-
type: Output
|
|
1042
|
-
}], ifxFileUploadDrop: [{
|
|
1043
|
-
type: Output
|
|
1044
|
-
}], ifxFileUploadClick: [{
|
|
1045
|
-
type: Output
|
|
1046
|
-
}], ifxFileUploadMaxFilesExceeded: [{
|
|
1047
|
-
type: Output
|
|
1048
|
-
}], ifxFileUploadValidation: [{
|
|
1049
|
-
type: Output
|
|
1050
|
-
}], ifxFileUploadRetry: [{
|
|
1051
|
-
type: Output
|
|
1052
|
-
}] } });
|
|
878
|
+
}]
|
|
879
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1053
880
|
let IfxFilterAccordion = class IfxFilterAccordion {
|
|
1054
|
-
z;
|
|
1055
|
-
el;
|
|
1056
|
-
ifxFilterAccordionChange = new EventEmitter();
|
|
1057
881
|
constructor(c, r, z) {
|
|
1058
882
|
this.z = z;
|
|
1059
883
|
c.detach();
|
|
1060
884
|
this.el = r.nativeElement;
|
|
885
|
+
proxyOutputs(this, this.el, ['ifxFilterAccordionChange']);
|
|
1061
886
|
}
|
|
1062
|
-
|
|
1063
|
-
|
|
887
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxFilterAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
888
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxFilterAccordion, isStandalone: true, selector: "ifx-filter-accordion", inputs: { filterGroupName: "filterGroupName", maxVisibleItems: "maxVisibleItems" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1064
889
|
};
|
|
1065
890
|
IfxFilterAccordion = __decorate([
|
|
1066
891
|
ProxyCmp({
|
|
@@ -1075,23 +900,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1075
900
|
template: '<ng-content></ng-content>',
|
|
1076
901
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1077
902
|
inputs: ['filterGroupName', 'maxVisibleItems'],
|
|
1078
|
-
outputs: ['ifxFilterAccordionChange'],
|
|
1079
|
-
standalone: false
|
|
1080
903
|
}]
|
|
1081
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1082
|
-
type: Output
|
|
1083
|
-
}] } });
|
|
904
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1084
905
|
let IfxFilterBar = class IfxFilterBar {
|
|
1085
|
-
z;
|
|
1086
|
-
el;
|
|
1087
|
-
ifxTopbarFilterChange = new EventEmitter();
|
|
1088
906
|
constructor(c, r, z) {
|
|
1089
907
|
this.z = z;
|
|
1090
908
|
c.detach();
|
|
1091
909
|
this.el = r.nativeElement;
|
|
910
|
+
proxyOutputs(this, this.el, ['ifxTopbarFilterChange']);
|
|
1092
911
|
}
|
|
1093
|
-
|
|
1094
|
-
|
|
912
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxFilterBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
913
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxFilterBar, isStandalone: true, selector: "ifx-filter-bar", inputs: { maxShownFilters: "maxShownFilters", showMoreFiltersButton: "showMoreFiltersButton" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1095
914
|
};
|
|
1096
915
|
IfxFilterBar = __decorate([
|
|
1097
916
|
ProxyCmp({
|
|
@@ -1106,23 +925,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1106
925
|
template: '<ng-content></ng-content>',
|
|
1107
926
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1108
927
|
inputs: ['maxShownFilters', 'showMoreFiltersButton'],
|
|
1109
|
-
outputs: ['ifxTopbarFilterChange'],
|
|
1110
|
-
standalone: false
|
|
1111
928
|
}]
|
|
1112
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1113
|
-
type: Output
|
|
1114
|
-
}] } });
|
|
929
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1115
930
|
let IfxFilterSearch = class IfxFilterSearch {
|
|
1116
|
-
z;
|
|
1117
|
-
el;
|
|
1118
|
-
ifxFilterSearchChange = new EventEmitter();
|
|
1119
931
|
constructor(c, r, z) {
|
|
1120
932
|
this.z = z;
|
|
1121
933
|
c.detach();
|
|
1122
934
|
this.el = r.nativeElement;
|
|
935
|
+
proxyOutputs(this, this.el, ['ifxFilterSearchChange']);
|
|
1123
936
|
}
|
|
1124
|
-
|
|
1125
|
-
|
|
937
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxFilterSearch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
938
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxFilterSearch, isStandalone: true, selector: "ifx-filter-search", inputs: { disabled: "disabled", filterKey: "filterKey", filterName: "filterName", filterOrientation: "filterOrientation", filterValue: "filterValue", placeholder: "placeholder" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1126
939
|
};
|
|
1127
940
|
IfxFilterSearch = __decorate([
|
|
1128
941
|
ProxyCmp({
|
|
@@ -1137,23 +950,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1137
950
|
template: '<ng-content></ng-content>',
|
|
1138
951
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1139
952
|
inputs: ['disabled', 'filterKey', 'filterName', 'filterOrientation', 'filterValue', 'placeholder'],
|
|
1140
|
-
outputs: ['ifxFilterSearchChange'],
|
|
1141
|
-
standalone: false
|
|
1142
953
|
}]
|
|
1143
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1144
|
-
type: Output
|
|
1145
|
-
}] } });
|
|
954
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1146
955
|
let IfxFilterTypeGroup = class IfxFilterTypeGroup {
|
|
1147
|
-
z;
|
|
1148
|
-
el;
|
|
1149
|
-
ifxSidebarFilterChange = new EventEmitter();
|
|
1150
956
|
constructor(c, r, z) {
|
|
1151
957
|
this.z = z;
|
|
1152
958
|
c.detach();
|
|
1153
959
|
this.el = r.nativeElement;
|
|
960
|
+
proxyOutputs(this, this.el, ['ifxSidebarFilterChange']);
|
|
1154
961
|
}
|
|
1155
|
-
|
|
1156
|
-
|
|
962
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxFilterTypeGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
963
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxFilterTypeGroup, isStandalone: true, selector: "ifx-filter-type-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1157
964
|
};
|
|
1158
965
|
IfxFilterTypeGroup = __decorate([
|
|
1159
966
|
ProxyCmp({})
|
|
@@ -1166,22 +973,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1166
973
|
template: '<ng-content></ng-content>',
|
|
1167
974
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1168
975
|
inputs: [],
|
|
1169
|
-
outputs: ['ifxSidebarFilterChange'],
|
|
1170
|
-
standalone: false
|
|
1171
976
|
}]
|
|
1172
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1173
|
-
type: Output
|
|
1174
|
-
}] } });
|
|
977
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1175
978
|
let IfxFooter = class IfxFooter {
|
|
1176
|
-
z;
|
|
1177
|
-
el;
|
|
1178
979
|
constructor(c, r, z) {
|
|
1179
980
|
this.z = z;
|
|
1180
981
|
c.detach();
|
|
1181
982
|
this.el = r.nativeElement;
|
|
1182
983
|
}
|
|
1183
|
-
|
|
1184
|
-
|
|
984
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
985
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxFooter, isStandalone: true, selector: "ifx-footer", inputs: { copyrightText: "copyrightText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1185
986
|
};
|
|
1186
987
|
IfxFooter = __decorate([
|
|
1187
988
|
ProxyCmp({
|
|
@@ -1196,19 +997,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1196
997
|
template: '<ng-content></ng-content>',
|
|
1197
998
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1198
999
|
inputs: ['copyrightText'],
|
|
1199
|
-
standalone: false
|
|
1200
1000
|
}]
|
|
1201
1001
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1202
1002
|
let IfxFooterColumn = class IfxFooterColumn {
|
|
1203
|
-
z;
|
|
1204
|
-
el;
|
|
1205
1003
|
constructor(c, r, z) {
|
|
1206
1004
|
this.z = z;
|
|
1207
1005
|
c.detach();
|
|
1208
1006
|
this.el = r.nativeElement;
|
|
1209
1007
|
}
|
|
1210
|
-
|
|
1211
|
-
|
|
1008
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxFooterColumn, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1009
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxFooterColumn, isStandalone: true, selector: "ifx-footer-column", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1212
1010
|
};
|
|
1213
1011
|
IfxFooterColumn = __decorate([
|
|
1214
1012
|
ProxyCmp({})
|
|
@@ -1221,20 +1019,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1221
1019
|
template: '<ng-content></ng-content>',
|
|
1222
1020
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1223
1021
|
inputs: [],
|
|
1224
|
-
standalone: false
|
|
1225
1022
|
}]
|
|
1226
1023
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1227
1024
|
let IfxIcon = class IfxIcon {
|
|
1228
|
-
z;
|
|
1229
|
-
el;
|
|
1230
|
-
consoleError = new EventEmitter();
|
|
1231
1025
|
constructor(c, r, z) {
|
|
1232
1026
|
this.z = z;
|
|
1233
1027
|
c.detach();
|
|
1234
1028
|
this.el = r.nativeElement;
|
|
1029
|
+
proxyOutputs(this, this.el, ['consoleError']);
|
|
1235
1030
|
}
|
|
1236
|
-
|
|
1237
|
-
|
|
1031
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1032
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxIcon, isStandalone: true, selector: "ifx-icon", inputs: { icon: "icon", ifxIcon: "ifxIcon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1238
1033
|
};
|
|
1239
1034
|
IfxIcon = __decorate([
|
|
1240
1035
|
ProxyCmp({
|
|
@@ -1249,22 +1044,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1249
1044
|
template: '<ng-content></ng-content>',
|
|
1250
1045
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1251
1046
|
inputs: ['icon', 'ifxIcon'],
|
|
1252
|
-
outputs: ['consoleError'],
|
|
1253
|
-
standalone: false
|
|
1254
1047
|
}]
|
|
1255
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1256
|
-
type: Output
|
|
1257
|
-
}] } });
|
|
1048
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1258
1049
|
let IfxIconButton = class IfxIconButton {
|
|
1259
|
-
z;
|
|
1260
|
-
el;
|
|
1261
1050
|
constructor(c, r, z) {
|
|
1262
1051
|
this.z = z;
|
|
1263
1052
|
c.detach();
|
|
1264
1053
|
this.el = r.nativeElement;
|
|
1265
1054
|
}
|
|
1266
|
-
|
|
1267
|
-
|
|
1055
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxIconButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1056
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxIconButton, isStandalone: true, selector: "ifx-icon-button", inputs: { ariaLabel: "ariaLabel", disabled: "disabled", href: "href", icon: "icon", shape: "shape", size: "size", target: "target", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1268
1057
|
};
|
|
1269
1058
|
IfxIconButton = __decorate([
|
|
1270
1059
|
ProxyCmp({
|
|
@@ -1280,19 +1069,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1280
1069
|
template: '<ng-content></ng-content>',
|
|
1281
1070
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1282
1071
|
inputs: ['ariaLabel', 'disabled', 'href', 'icon', 'shape', 'size', 'target', 'variant'],
|
|
1283
|
-
standalone: false
|
|
1284
1072
|
}]
|
|
1285
1073
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1286
1074
|
let IfxIconsPreview = class IfxIconsPreview {
|
|
1287
|
-
z;
|
|
1288
|
-
el;
|
|
1289
1075
|
constructor(c, r, z) {
|
|
1290
1076
|
this.z = z;
|
|
1291
1077
|
c.detach();
|
|
1292
1078
|
this.el = r.nativeElement;
|
|
1293
1079
|
}
|
|
1294
|
-
|
|
1295
|
-
|
|
1080
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxIconsPreview, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1081
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxIconsPreview, isStandalone: true, selector: "ifx-icons-preview", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1296
1082
|
};
|
|
1297
1083
|
IfxIconsPreview = __decorate([
|
|
1298
1084
|
ProxyCmp({})
|
|
@@ -1305,19 +1091,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1305
1091
|
template: '<ng-content></ng-content>',
|
|
1306
1092
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1307
1093
|
inputs: [],
|
|
1308
|
-
standalone: false
|
|
1309
1094
|
}]
|
|
1310
1095
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1311
1096
|
let IfxIndicator = class IfxIndicator {
|
|
1312
|
-
z;
|
|
1313
|
-
el;
|
|
1314
1097
|
constructor(c, r, z) {
|
|
1315
1098
|
this.z = z;
|
|
1316
1099
|
c.detach();
|
|
1317
1100
|
this.el = r.nativeElement;
|
|
1318
1101
|
}
|
|
1319
|
-
|
|
1320
|
-
|
|
1102
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxIndicator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1103
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxIndicator, isStandalone: true, selector: "ifx-indicator", inputs: { ariaLabel: "ariaLabel", inverted: "inverted", number: "number", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1321
1104
|
};
|
|
1322
1105
|
IfxIndicator = __decorate([
|
|
1323
1106
|
ProxyCmp({
|
|
@@ -1332,19 +1115,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1332
1115
|
template: '<ng-content></ng-content>',
|
|
1333
1116
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1334
1117
|
inputs: ['ariaLabel', 'inverted', 'number', 'variant'],
|
|
1335
|
-
standalone: false
|
|
1336
1118
|
}]
|
|
1337
1119
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1338
1120
|
let IfxLink = class IfxLink {
|
|
1339
|
-
z;
|
|
1340
|
-
el;
|
|
1341
1121
|
constructor(c, r, z) {
|
|
1342
1122
|
this.z = z;
|
|
1343
1123
|
c.detach();
|
|
1344
1124
|
this.el = r.nativeElement;
|
|
1345
1125
|
}
|
|
1346
|
-
|
|
1347
|
-
|
|
1126
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1127
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxLink, isStandalone: true, selector: "ifx-link", inputs: { ariaLabel: "ariaLabel", disabled: "disabled", download: "download", href: "href", size: "size", target: "target", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1348
1128
|
};
|
|
1349
1129
|
IfxLink = __decorate([
|
|
1350
1130
|
ProxyCmp({
|
|
@@ -1359,20 +1139,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1359
1139
|
template: '<ng-content></ng-content>',
|
|
1360
1140
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1361
1141
|
inputs: ['ariaLabel', 'disabled', 'download', 'href', 'size', 'target', 'variant'],
|
|
1362
|
-
standalone: false
|
|
1363
1142
|
}]
|
|
1364
1143
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1365
1144
|
let IfxList = class IfxList {
|
|
1366
|
-
z;
|
|
1367
|
-
el;
|
|
1368
|
-
ifxListUpdate = new EventEmitter();
|
|
1369
1145
|
constructor(c, r, z) {
|
|
1370
1146
|
this.z = z;
|
|
1371
1147
|
c.detach();
|
|
1372
1148
|
this.el = r.nativeElement;
|
|
1149
|
+
proxyOutputs(this, this.el, ['ifxListUpdate']);
|
|
1373
1150
|
}
|
|
1374
|
-
|
|
1375
|
-
|
|
1151
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1152
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxList, isStandalone: true, selector: "ifx-list", inputs: { maxVisibleItems: "maxVisibleItems", name: "name", resetTrigger: "resetTrigger", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1376
1153
|
};
|
|
1377
1154
|
IfxList = __decorate([
|
|
1378
1155
|
ProxyCmp({
|
|
@@ -1387,23 +1164,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1387
1164
|
template: '<ng-content></ng-content>',
|
|
1388
1165
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1389
1166
|
inputs: ['maxVisibleItems', 'name', 'resetTrigger', 'type'],
|
|
1390
|
-
outputs: ['ifxListUpdate'],
|
|
1391
|
-
standalone: false
|
|
1392
1167
|
}]
|
|
1393
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1394
|
-
type: Output
|
|
1395
|
-
}] } });
|
|
1168
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1396
1169
|
let IfxListEntry = class IfxListEntry {
|
|
1397
|
-
z;
|
|
1398
|
-
el;
|
|
1399
|
-
ifxListEntryChange = new EventEmitter();
|
|
1400
1170
|
constructor(c, r, z) {
|
|
1401
1171
|
this.z = z;
|
|
1402
1172
|
c.detach();
|
|
1403
1173
|
this.el = r.nativeElement;
|
|
1174
|
+
proxyOutputs(this, this.el, ['ifxListEntryChange']);
|
|
1404
1175
|
}
|
|
1405
|
-
|
|
1406
|
-
|
|
1176
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxListEntry, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1177
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxListEntry, isStandalone: true, selector: "ifx-list-entry", inputs: { label: "label", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1407
1178
|
};
|
|
1408
1179
|
IfxListEntry = __decorate([
|
|
1409
1180
|
ProxyCmp({
|
|
@@ -1418,24 +1189,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1418
1189
|
template: '<ng-content></ng-content>',
|
|
1419
1190
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1420
1191
|
inputs: ['label', 'type', 'value'],
|
|
1421
|
-
outputs: ['ifxListEntryChange'],
|
|
1422
|
-
standalone: false
|
|
1423
1192
|
}]
|
|
1424
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1425
|
-
type: Output
|
|
1426
|
-
}] } });
|
|
1193
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1427
1194
|
let IfxModal = class IfxModal {
|
|
1428
|
-
z;
|
|
1429
|
-
el;
|
|
1430
|
-
ifxOpen = new EventEmitter();
|
|
1431
|
-
ifxClose = new EventEmitter();
|
|
1432
1195
|
constructor(c, r, z) {
|
|
1433
1196
|
this.z = z;
|
|
1434
1197
|
c.detach();
|
|
1435
1198
|
this.el = r.nativeElement;
|
|
1199
|
+
proxyOutputs(this, this.el, ['ifxOpen', 'ifxClose']);
|
|
1436
1200
|
}
|
|
1437
|
-
|
|
1438
|
-
|
|
1201
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1202
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxModal, isStandalone: true, selector: "ifx-modal", inputs: { alertIcon: "alertIcon", cancelButtonLabel: "cancelButtonLabel", caption: "caption", captionAriaLabel: "captionAriaLabel", closeButtonAriaLabel: "closeButtonAriaLabel", closeOnOverlayClick: "closeOnOverlayClick", okButtonLabel: "okButtonLabel", opened: "opened", showCloseButton: "showCloseButton", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1439
1203
|
};
|
|
1440
1204
|
IfxModal = __decorate([
|
|
1441
1205
|
ProxyCmp({
|
|
@@ -1450,26 +1214,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1450
1214
|
template: '<ng-content></ng-content>',
|
|
1451
1215
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1452
1216
|
inputs: ['alertIcon', 'cancelButtonLabel', 'caption', 'captionAriaLabel', 'closeButtonAriaLabel', 'closeOnOverlayClick', 'okButtonLabel', 'opened', 'showCloseButton', 'size', 'variant'],
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
}]
|
|
1456
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ifxOpen: [{
|
|
1457
|
-
type: Output
|
|
1458
|
-
}], ifxClose: [{
|
|
1459
|
-
type: Output
|
|
1460
|
-
}] } });
|
|
1217
|
+
}]
|
|
1218
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1461
1219
|
let IfxMultiselect = class IfxMultiselect {
|
|
1462
|
-
z;
|
|
1463
|
-
el;
|
|
1464
|
-
ifxSelect = new EventEmitter();
|
|
1465
|
-
ifxOpen = new EventEmitter();
|
|
1466
1220
|
constructor(c, r, z) {
|
|
1467
1221
|
this.z = z;
|
|
1468
1222
|
c.detach();
|
|
1469
1223
|
this.el = r.nativeElement;
|
|
1224
|
+
proxyOutputs(this, this.el, ['ifxSelect', 'ifxOpen']);
|
|
1470
1225
|
}
|
|
1471
|
-
|
|
1472
|
-
|
|
1226
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxMultiselect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1227
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxMultiselect, isStandalone: true, selector: "ifx-multiselect", inputs: { ariaClearLabel: "ariaClearLabel", ariaCollapseAllLabel: "ariaCollapseAllLabel", ariaExpandAllLabel: "ariaExpandAllLabel", ariaMultiSelectDescribedBy: "ariaMultiSelectDescribedBy", ariaMultiSelectLabel: "ariaMultiSelectLabel", ariaMultiSelectLabelledBy: "ariaMultiSelectLabelledBy", ariaSearchLabel: "ariaSearchLabel", ariaSelectAllLabel: "ariaSelectAllLabel", ariaToggleLabel: "ariaToggleLabel", caption: "caption", collapseLabel: "collapseLabel", disabled: "disabled", error: "error", expandLabel: "expandLabel", label: "label", name: "name", noResultsMessage: "noResultsMessage", placeholder: "placeholder", required: "required", searchPlaceholder: "searchPlaceholder", selectAllLabel: "selectAllLabel", showClearButton: "showClearButton", showExpandCollapse: "showExpandCollapse", showNoResultsMessage: "showNoResultsMessage", showSearch: "showSearch", showSelectAll: "showSelectAll" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1473
1228
|
};
|
|
1474
1229
|
IfxMultiselect = __decorate([
|
|
1475
1230
|
ProxyCmp({
|
|
@@ -1485,24 +1240,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1485
1240
|
template: '<ng-content></ng-content>',
|
|
1486
1241
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1487
1242
|
inputs: ['ariaClearLabel', 'ariaCollapseAllLabel', 'ariaExpandAllLabel', 'ariaMultiSelectDescribedBy', 'ariaMultiSelectLabel', 'ariaMultiSelectLabelledBy', 'ariaSearchLabel', 'ariaSelectAllLabel', 'ariaToggleLabel', 'caption', 'collapseLabel', 'disabled', 'error', 'expandLabel', 'label', 'name', 'noResultsMessage', 'placeholder', 'required', 'searchPlaceholder', 'selectAllLabel', 'showClearButton', 'showExpandCollapse', 'showNoResultsMessage', 'showSearch', 'showSelectAll'],
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
}]
|
|
1491
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ifxSelect: [{
|
|
1492
|
-
type: Output
|
|
1493
|
-
}], ifxOpen: [{
|
|
1494
|
-
type: Output
|
|
1495
|
-
}] } });
|
|
1243
|
+
}]
|
|
1244
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1496
1245
|
let IfxMultiselectOption = class IfxMultiselectOption {
|
|
1497
|
-
z;
|
|
1498
|
-
el;
|
|
1499
1246
|
constructor(c, r, z) {
|
|
1500
1247
|
this.z = z;
|
|
1501
1248
|
c.detach();
|
|
1502
1249
|
this.el = r.nativeElement;
|
|
1503
1250
|
}
|
|
1504
|
-
|
|
1505
|
-
|
|
1251
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxMultiselectOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1252
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxMultiselectOption, isStandalone: true, selector: "ifx-multiselect-option", inputs: { disabled: "disabled", indeterminate: "indeterminate", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1506
1253
|
};
|
|
1507
1254
|
IfxMultiselectOption = __decorate([
|
|
1508
1255
|
ProxyCmp({
|
|
@@ -1517,20 +1264,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1517
1264
|
template: '<ng-content></ng-content>',
|
|
1518
1265
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1519
1266
|
inputs: ['disabled', 'indeterminate', 'selected', 'value'],
|
|
1520
|
-
standalone: false
|
|
1521
1267
|
}]
|
|
1522
1268
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1523
1269
|
let IfxNavbar = class IfxNavbar {
|
|
1524
|
-
z;
|
|
1525
|
-
el;
|
|
1526
|
-
ifxNavbarMobileMenuIsOpen = new EventEmitter();
|
|
1527
1270
|
constructor(c, r, z) {
|
|
1528
1271
|
this.z = z;
|
|
1529
1272
|
c.detach();
|
|
1530
1273
|
this.el = r.nativeElement;
|
|
1274
|
+
proxyOutputs(this, this.el, ['ifxNavbarMobileMenuIsOpen']);
|
|
1531
1275
|
}
|
|
1532
|
-
|
|
1533
|
-
|
|
1276
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxNavbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1277
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxNavbar, isStandalone: true, selector: "ifx-navbar", inputs: { applicationName: "applicationName", fixed: "fixed", logoHref: "logoHref", logoHrefTarget: "logoHrefTarget", showLogoAndAppname: "showLogoAndAppname" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1534
1278
|
};
|
|
1535
1279
|
IfxNavbar = __decorate([
|
|
1536
1280
|
ProxyCmp({
|
|
@@ -1545,23 +1289,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1545
1289
|
template: '<ng-content></ng-content>',
|
|
1546
1290
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1547
1291
|
inputs: ['applicationName', 'fixed', 'logoHref', 'logoHrefTarget', 'showLogoAndAppname'],
|
|
1548
|
-
outputs: ['ifxNavbarMobileMenuIsOpen'],
|
|
1549
|
-
standalone: false
|
|
1550
1292
|
}]
|
|
1551
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1552
|
-
type: Output
|
|
1553
|
-
}] } });
|
|
1293
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1554
1294
|
let IfxNavbarItem = class IfxNavbarItem {
|
|
1555
|
-
z;
|
|
1556
|
-
el;
|
|
1557
|
-
ifxNavItem = new EventEmitter();
|
|
1558
1295
|
constructor(c, r, z) {
|
|
1559
1296
|
this.z = z;
|
|
1560
1297
|
c.detach();
|
|
1561
1298
|
this.el = r.nativeElement;
|
|
1299
|
+
proxyOutputs(this, this.el, ['ifxNavItem']);
|
|
1562
1300
|
}
|
|
1563
|
-
|
|
1564
|
-
|
|
1301
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxNavbarItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1302
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxNavbarItem, isStandalone: true, selector: "ifx-navbar-item", inputs: { dotIndicator: "dotIndicator", hideOnMobile: "hideOnMobile", href: "href", icon: "icon", numberIndicator: "numberIndicator", showLabel: "showLabel", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1565
1303
|
};
|
|
1566
1304
|
IfxNavbarItem = __decorate([
|
|
1567
1305
|
ProxyCmp({
|
|
@@ -1577,22 +1315,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1577
1315
|
template: '<ng-content></ng-content>',
|
|
1578
1316
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1579
1317
|
inputs: ['dotIndicator', 'hideOnMobile', 'href', 'icon', 'numberIndicator', 'showLabel', 'target'],
|
|
1580
|
-
outputs: ['ifxNavItem'],
|
|
1581
|
-
standalone: false
|
|
1582
1318
|
}]
|
|
1583
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1584
|
-
type: Output
|
|
1585
|
-
}] } });
|
|
1319
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1586
1320
|
let IfxNavbarProfile = class IfxNavbarProfile {
|
|
1587
|
-
z;
|
|
1588
|
-
el;
|
|
1589
1321
|
constructor(c, r, z) {
|
|
1590
1322
|
this.z = z;
|
|
1591
1323
|
c.detach();
|
|
1592
1324
|
this.el = r.nativeElement;
|
|
1593
1325
|
}
|
|
1594
|
-
|
|
1595
|
-
|
|
1326
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxNavbarProfile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1327
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxNavbarProfile, isStandalone: true, selector: "ifx-navbar-profile", inputs: { alt: "alt", href: "href", imageUrl: "imageUrl", showLabel: "showLabel", target: "target", userName: "userName" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1596
1328
|
};
|
|
1597
1329
|
IfxNavbarProfile = __decorate([
|
|
1598
1330
|
ProxyCmp({
|
|
@@ -1608,19 +1340,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1608
1340
|
template: '<ng-content></ng-content>',
|
|
1609
1341
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1610
1342
|
inputs: ['alt', 'href', 'imageUrl', 'showLabel', 'target', 'userName'],
|
|
1611
|
-
standalone: false
|
|
1612
1343
|
}]
|
|
1613
1344
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1614
1345
|
let IfxNotification = class IfxNotification {
|
|
1615
|
-
z;
|
|
1616
|
-
el;
|
|
1617
1346
|
constructor(c, r, z) {
|
|
1618
1347
|
this.z = z;
|
|
1619
1348
|
c.detach();
|
|
1620
1349
|
this.el = r.nativeElement;
|
|
1621
1350
|
}
|
|
1622
|
-
|
|
1623
|
-
|
|
1351
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1352
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxNotification, isStandalone: true, selector: "ifx-notification", inputs: { icon: "icon", linkHref: "linkHref", linkTarget: "linkTarget", linkText: "linkText", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1624
1353
|
};
|
|
1625
1354
|
IfxNotification = __decorate([
|
|
1626
1355
|
ProxyCmp({
|
|
@@ -1635,19 +1364,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1635
1364
|
template: '<ng-content></ng-content>',
|
|
1636
1365
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1637
1366
|
inputs: ['icon', 'linkHref', 'linkTarget', 'linkText', 'variant'],
|
|
1638
|
-
standalone: false
|
|
1639
1367
|
}]
|
|
1640
1368
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1641
1369
|
let IfxOverviewTable = class IfxOverviewTable {
|
|
1642
|
-
z;
|
|
1643
|
-
el;
|
|
1644
1370
|
constructor(c, r, z) {
|
|
1645
1371
|
this.z = z;
|
|
1646
1372
|
c.detach();
|
|
1647
1373
|
this.el = r.nativeElement;
|
|
1648
1374
|
}
|
|
1649
|
-
|
|
1650
|
-
|
|
1375
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxOverviewTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1376
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxOverviewTable, isStandalone: true, selector: "ifx-overview-table", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1651
1377
|
};
|
|
1652
1378
|
IfxOverviewTable = __decorate([
|
|
1653
1379
|
ProxyCmp({})
|
|
@@ -1660,21 +1386,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1660
1386
|
template: '<ng-content></ng-content>',
|
|
1661
1387
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1662
1388
|
inputs: [],
|
|
1663
|
-
standalone: false
|
|
1664
1389
|
}]
|
|
1665
1390
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1666
1391
|
let IfxPagination = class IfxPagination {
|
|
1667
|
-
z;
|
|
1668
|
-
el;
|
|
1669
|
-
ifxPageChange = new EventEmitter();
|
|
1670
|
-
ifxItemsPerPageChange = new EventEmitter();
|
|
1671
1392
|
constructor(c, r, z) {
|
|
1672
1393
|
this.z = z;
|
|
1673
1394
|
c.detach();
|
|
1674
1395
|
this.el = r.nativeElement;
|
|
1396
|
+
proxyOutputs(this, this.el, ['ifxPageChange', 'ifxItemsPerPageChange']);
|
|
1675
1397
|
}
|
|
1676
|
-
|
|
1677
|
-
|
|
1398
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1399
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxPagination, isStandalone: true, selector: "ifx-pagination", inputs: { currentPage: "currentPage", itemsPerPage: "itemsPerPage", showItemsPerPage: "showItemsPerPage", total: "total" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1678
1400
|
};
|
|
1679
1401
|
IfxPagination = __decorate([
|
|
1680
1402
|
ProxyCmp({
|
|
@@ -1689,24 +1411,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1689
1411
|
template: '<ng-content></ng-content>',
|
|
1690
1412
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1691
1413
|
inputs: ['currentPage', 'itemsPerPage', 'showItemsPerPage', 'total'],
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
}]
|
|
1695
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ifxPageChange: [{
|
|
1696
|
-
type: Output
|
|
1697
|
-
}], ifxItemsPerPageChange: [{
|
|
1698
|
-
type: Output
|
|
1699
|
-
}] } });
|
|
1414
|
+
}]
|
|
1415
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1700
1416
|
let IfxProgressBar = class IfxProgressBar {
|
|
1701
|
-
z;
|
|
1702
|
-
el;
|
|
1703
1417
|
constructor(c, r, z) {
|
|
1704
1418
|
this.z = z;
|
|
1705
1419
|
c.detach();
|
|
1706
1420
|
this.el = r.nativeElement;
|
|
1707
1421
|
}
|
|
1708
|
-
|
|
1709
|
-
|
|
1422
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxProgressBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1423
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxProgressBar, isStandalone: true, selector: "ifx-progress-bar", inputs: { showLabel: "showLabel", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1710
1424
|
};
|
|
1711
1425
|
IfxProgressBar = __decorate([
|
|
1712
1426
|
ProxyCmp({
|
|
@@ -1721,21 +1435,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1721
1435
|
template: '<ng-content></ng-content>',
|
|
1722
1436
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1723
1437
|
inputs: ['showLabel', 'size', 'value'],
|
|
1724
|
-
standalone: false
|
|
1725
1438
|
}]
|
|
1726
1439
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1727
1440
|
let IfxRadioButton = class IfxRadioButton {
|
|
1728
|
-
z;
|
|
1729
|
-
el;
|
|
1730
|
-
ifxChange = new EventEmitter();
|
|
1731
|
-
ifxError = new EventEmitter();
|
|
1732
1441
|
constructor(c, r, z) {
|
|
1733
1442
|
this.z = z;
|
|
1734
1443
|
c.detach();
|
|
1735
1444
|
this.el = r.nativeElement;
|
|
1445
|
+
proxyOutputs(this, this.el, ['ifxChange', 'ifxError']);
|
|
1736
1446
|
}
|
|
1737
|
-
|
|
1738
|
-
|
|
1447
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxRadioButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1448
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxRadioButton, isStandalone: true, selector: "ifx-radio-button", inputs: { checked: "checked", disabled: "disabled", error: "error", name: "name", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1739
1449
|
};
|
|
1740
1450
|
IfxRadioButton = __decorate([
|
|
1741
1451
|
ProxyCmp({
|
|
@@ -1751,24 +1461,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1751
1461
|
template: '<ng-content></ng-content>',
|
|
1752
1462
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1753
1463
|
inputs: ['checked', 'disabled', 'error', 'name', 'size', 'value'],
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
}]
|
|
1757
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ifxChange: [{
|
|
1758
|
-
type: Output
|
|
1759
|
-
}], ifxError: [{
|
|
1760
|
-
type: Output
|
|
1761
|
-
}] } });
|
|
1464
|
+
}]
|
|
1465
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1762
1466
|
let IfxRadioButtonGroup = class IfxRadioButtonGroup {
|
|
1763
|
-
z;
|
|
1764
|
-
el;
|
|
1765
1467
|
constructor(c, r, z) {
|
|
1766
1468
|
this.z = z;
|
|
1767
1469
|
c.detach();
|
|
1768
1470
|
this.el = r.nativeElement;
|
|
1769
1471
|
}
|
|
1770
|
-
|
|
1771
|
-
|
|
1472
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxRadioButtonGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1473
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxRadioButtonGroup, isStandalone: true, selector: "ifx-radio-button-group", inputs: { alignment: "alignment", captionText: "captionText", groupLabelText: "groupLabelText", required: "required", showCaption: "showCaption", showCaptionIcon: "showCaptionIcon", showGroupLabel: "showGroupLabel", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1772
1474
|
};
|
|
1773
1475
|
IfxRadioButtonGroup = __decorate([
|
|
1774
1476
|
ProxyCmp({
|
|
@@ -1784,21 +1486,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1784
1486
|
template: '<ng-content></ng-content>',
|
|
1785
1487
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1786
1488
|
inputs: ['alignment', 'captionText', 'groupLabelText', 'required', 'showCaption', 'showCaptionIcon', 'showGroupLabel', 'size'],
|
|
1787
|
-
standalone: false
|
|
1788
1489
|
}]
|
|
1789
1490
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1790
1491
|
let IfxSearchBar = class IfxSearchBar {
|
|
1791
|
-
z;
|
|
1792
|
-
el;
|
|
1793
|
-
ifxInput = new EventEmitter();
|
|
1794
|
-
ifxOpen = new EventEmitter();
|
|
1795
1492
|
constructor(c, r, z) {
|
|
1796
1493
|
this.z = z;
|
|
1797
1494
|
c.detach();
|
|
1798
1495
|
this.el = r.nativeElement;
|
|
1496
|
+
proxyOutputs(this, this.el, ['ifxInput', 'ifxOpen']);
|
|
1799
1497
|
}
|
|
1800
|
-
|
|
1801
|
-
|
|
1498
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxSearchBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1499
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxSearchBar, isStandalone: true, selector: "ifx-search-bar", inputs: { autocomplete: "autocomplete", disabled: "disabled", isOpen: "isOpen", maxlength: "maxlength", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1802
1500
|
};
|
|
1803
1501
|
IfxSearchBar = __decorate([
|
|
1804
1502
|
ProxyCmp({
|
|
@@ -1814,29 +1512,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1814
1512
|
template: '<ng-content></ng-content>',
|
|
1815
1513
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1816
1514
|
inputs: ['autocomplete', 'disabled', 'isOpen', 'maxlength', 'value'],
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
}]
|
|
1820
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ifxInput: [{
|
|
1821
|
-
type: Output
|
|
1822
|
-
}], ifxOpen: [{
|
|
1823
|
-
type: Output
|
|
1824
|
-
}] } });
|
|
1515
|
+
}]
|
|
1516
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1825
1517
|
let IfxSearchField = class IfxSearchField {
|
|
1826
|
-
z;
|
|
1827
|
-
el;
|
|
1828
|
-
ifxInput = new EventEmitter();
|
|
1829
|
-
ifxSuggestionRequested = new EventEmitter();
|
|
1830
|
-
ifxSuggestionSelected = new EventEmitter();
|
|
1831
|
-
ifxFocus = new EventEmitter();
|
|
1832
|
-
ifxBlur = new EventEmitter();
|
|
1833
1518
|
constructor(c, r, z) {
|
|
1834
1519
|
this.z = z;
|
|
1835
1520
|
c.detach();
|
|
1836
1521
|
this.el = r.nativeElement;
|
|
1522
|
+
proxyOutputs(this, this.el, ['ifxInput', 'ifxSuggestionRequested', 'ifxSuggestionSelected', 'ifxFocus', 'ifxBlur']);
|
|
1837
1523
|
}
|
|
1838
|
-
|
|
1839
|
-
|
|
1524
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxSearchField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1525
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxSearchField, isStandalone: true, selector: "ifx-search-field", inputs: { ariaDescribedBy: "ariaDescribedBy", ariaLabel: "ariaLabel", ariaLabelledBy: "ariaLabelledBy", autocomplete: "autocomplete", deleteIconAriaLabel: "deleteIconAriaLabel", disabled: "disabled", dropdownAriaLabel: "dropdownAriaLabel", enableHistory: "enableHistory", historyDeleteAriaLabel: "historyDeleteAriaLabel", historyHeaderText: "historyHeaderText", historyItemAriaLabel: "historyItemAriaLabel", historyKey: "historyKey", maxHistoryItems: "maxHistoryItems", maxSuggestions: "maxSuggestions", maxlength: "maxlength", placeholder: "placeholder", showDeleteIcon: "showDeleteIcon", showSuggestions: "showSuggestions", size: "size", suggestionAriaLabel: "suggestionAriaLabel", suggestions: "suggestions", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1840
1526
|
};
|
|
1841
1527
|
IfxSearchField = __decorate([
|
|
1842
1528
|
ProxyCmp({
|
|
@@ -1851,31 +1537,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1851
1537
|
template: '<ng-content></ng-content>',
|
|
1852
1538
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1853
1539
|
inputs: ['ariaDescribedBy', 'ariaLabel', 'ariaLabelledBy', 'autocomplete', 'deleteIconAriaLabel', 'disabled', 'dropdownAriaLabel', 'enableHistory', 'historyDeleteAriaLabel', 'historyHeaderText', 'historyItemAriaLabel', 'historyKey', 'maxHistoryItems', 'maxSuggestions', 'maxlength', 'placeholder', 'showDeleteIcon', 'showSuggestions', 'size', 'suggestionAriaLabel', 'suggestions', 'value'],
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
}]
|
|
1857
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ifxInput: [{
|
|
1858
|
-
type: Output
|
|
1859
|
-
}], ifxSuggestionRequested: [{
|
|
1860
|
-
type: Output
|
|
1861
|
-
}], ifxSuggestionSelected: [{
|
|
1862
|
-
type: Output
|
|
1863
|
-
}], ifxFocus: [{
|
|
1864
|
-
type: Output
|
|
1865
|
-
}], ifxBlur: [{
|
|
1866
|
-
type: Output
|
|
1867
|
-
}] } });
|
|
1540
|
+
}]
|
|
1541
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1868
1542
|
let IfxSegment = class IfxSegment {
|
|
1869
|
-
z;
|
|
1870
|
-
el;
|
|
1871
|
-
segmentSelect = new EventEmitter();
|
|
1872
1543
|
constructor(c, r, z) {
|
|
1873
1544
|
this.z = z;
|
|
1874
1545
|
c.detach();
|
|
1875
1546
|
this.el = r.nativeElement;
|
|
1547
|
+
proxyOutputs(this, this.el, ['segmentSelect']);
|
|
1876
1548
|
}
|
|
1877
|
-
|
|
1878
|
-
|
|
1549
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxSegment, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1550
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxSegment, isStandalone: true, selector: "ifx-segment", inputs: { icon: "icon", segmentIndex: "segmentIndex", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1879
1551
|
};
|
|
1880
1552
|
IfxSegment = __decorate([
|
|
1881
1553
|
ProxyCmp({
|
|
@@ -1889,24 +1561,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1889
1561
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1890
1562
|
template: '<ng-content></ng-content>',
|
|
1891
1563
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1892
|
-
inputs: ['icon', 'segmentIndex', 'selected',
|
|
1893
|
-
outputs: ['segmentSelect'],
|
|
1894
|
-
standalone: false
|
|
1564
|
+
inputs: ['icon', 'segmentIndex', 'selected', 'value'],
|
|
1895
1565
|
}]
|
|
1896
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1897
|
-
type: Output
|
|
1898
|
-
}] } });
|
|
1566
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1899
1567
|
let IfxSegmentedControl = class IfxSegmentedControl {
|
|
1900
|
-
z;
|
|
1901
|
-
el;
|
|
1902
|
-
ifxChange = new EventEmitter();
|
|
1903
1568
|
constructor(c, r, z) {
|
|
1904
1569
|
this.z = z;
|
|
1905
1570
|
c.detach();
|
|
1906
1571
|
this.el = r.nativeElement;
|
|
1572
|
+
proxyOutputs(this, this.el, ['ifxChange']);
|
|
1907
1573
|
}
|
|
1908
|
-
|
|
1909
|
-
|
|
1574
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxSegmentedControl, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1575
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxSegmentedControl, isStandalone: true, selector: "ifx-segmented-control", inputs: { caption: "caption", error: "error", label: "label", required: "required", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1910
1576
|
};
|
|
1911
1577
|
IfxSegmentedControl = __decorate([
|
|
1912
1578
|
ProxyCmp({
|
|
@@ -1921,24 +1587,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1921
1587
|
template: '<ng-content></ng-content>',
|
|
1922
1588
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1923
1589
|
inputs: ['caption', 'error', 'label', 'required', 'size'],
|
|
1924
|
-
outputs: ['ifxChange'],
|
|
1925
|
-
standalone: false
|
|
1926
1590
|
}]
|
|
1927
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1928
|
-
type: Output
|
|
1929
|
-
}] } });
|
|
1591
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1930
1592
|
let IfxSelect = class IfxSelect {
|
|
1931
|
-
z;
|
|
1932
|
-
el;
|
|
1933
|
-
ifxSelect = new EventEmitter();
|
|
1934
|
-
ifxInput = new EventEmitter();
|
|
1935
1593
|
constructor(c, r, z) {
|
|
1936
1594
|
this.z = z;
|
|
1937
1595
|
c.detach();
|
|
1938
1596
|
this.el = r.nativeElement;
|
|
1597
|
+
proxyOutputs(this, this.el, ['ifxSelect', 'ifxInput']);
|
|
1939
1598
|
}
|
|
1940
|
-
|
|
1941
|
-
|
|
1599
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1600
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxSelect, isStandalone: true, selector: "ifx-select", inputs: { addItemFilter: "addItemFilter", addItemText: "addItemText", addItems: "addItems", appendValue: "appendValue", callbackOnCreateTemplates: "callbackOnCreateTemplates", callbackOnInit: "callbackOnInit", caption: "caption", choices: "choices", classNames: "classNames", customAddItemText: "customAddItemText", delimiter: "delimiter", disabled: "disabled", duplicateItemsAllowed: "duplicateItemsAllowed", editItems: "editItems", error: "error", fuseOptions: "fuseOptions", itemSelectText: "itemSelectText", items: "items", label: "label", loadingText: "loadingText", maxItemCount: "maxItemCount", maxItemText: "maxItemText", name: "name", noChoicesText: "noChoicesText", noResultsText: "noResultsText", options: "options", paste: "paste", placeholder: "placeholder", placeholderValue: "placeholderValue", position: "position", prependValue: "prependValue", removeItemButton: "removeItemButton", removeItems: "removeItems", renderChoiceLimit: "renderChoiceLimit", renderSelectedChoices: "renderSelectedChoices", required: "required", resetScrollPosition: "resetScrollPosition", searchChoices: "searchChoices", searchFields: "searchFields", searchFloor: "searchFloor", searchPlaceholderValue: "searchPlaceholderValue", searchResultLimit: "searchResultLimit", shouldSort: "shouldSort", shouldSortItems: "shouldSortItems", showClearButton: "showClearButton", showSearch: "showSearch", size: "size", sorter: "sorter", uniqueItemText: "uniqueItemText", value: "value", valueComparer: "valueComparer" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1942
1601
|
};
|
|
1943
1602
|
IfxSelect = __decorate([
|
|
1944
1603
|
ProxyCmp({
|
|
@@ -1954,25 +1613,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1954
1613
|
template: '<ng-content></ng-content>',
|
|
1955
1614
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1956
1615
|
inputs: ['addItemFilter', 'addItemText', 'addItems', 'appendValue', 'callbackOnCreateTemplates', 'callbackOnInit', 'caption', 'choices', 'classNames', 'customAddItemText', 'delimiter', 'disabled', 'duplicateItemsAllowed', 'editItems', 'error', 'fuseOptions', 'itemSelectText', 'items', 'label', 'loadingText', 'maxItemCount', 'maxItemText', 'name', 'noChoicesText', 'noResultsText', 'options', 'paste', 'placeholder', 'placeholderValue', 'position', 'prependValue', 'removeItemButton', 'removeItems', 'renderChoiceLimit', 'renderSelectedChoices', 'required', 'resetScrollPosition', 'searchChoices', 'searchFields', 'searchFloor', 'searchPlaceholderValue', 'searchResultLimit', 'shouldSort', 'shouldSortItems', 'showClearButton', 'showSearch', 'size', 'sorter', 'uniqueItemText', 'value', 'valueComparer'],
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
}]
|
|
1960
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ifxSelect: [{
|
|
1961
|
-
type: Output
|
|
1962
|
-
}], ifxInput: [{
|
|
1963
|
-
type: Output
|
|
1964
|
-
}] } });
|
|
1616
|
+
}]
|
|
1617
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1965
1618
|
let IfxSetFilter = class IfxSetFilter {
|
|
1966
|
-
z;
|
|
1967
|
-
el;
|
|
1968
|
-
ifxFilterSelect = new EventEmitter();
|
|
1969
1619
|
constructor(c, r, z) {
|
|
1970
1620
|
this.z = z;
|
|
1971
1621
|
c.detach();
|
|
1972
1622
|
this.el = r.nativeElement;
|
|
1623
|
+
proxyOutputs(this, this.el, ['ifxFilterSelect']);
|
|
1973
1624
|
}
|
|
1974
|
-
|
|
1975
|
-
|
|
1625
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxSetFilter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1626
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxSetFilter, isStandalone: true, selector: "ifx-set-filter", inputs: { filterLabel: "filterLabel", filterName: "filterName", options: "options", placeholder: "placeholder", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1976
1627
|
};
|
|
1977
1628
|
IfxSetFilter = __decorate([
|
|
1978
1629
|
ProxyCmp({
|
|
@@ -1987,23 +1638,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
1987
1638
|
template: '<ng-content></ng-content>',
|
|
1988
1639
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1989
1640
|
inputs: ['filterLabel', 'filterName', 'options', 'placeholder', 'type'],
|
|
1990
|
-
outputs: ['ifxFilterSelect'],
|
|
1991
|
-
standalone: false
|
|
1992
1641
|
}]
|
|
1993
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
1994
|
-
type: Output
|
|
1995
|
-
}] } });
|
|
1642
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1996
1643
|
let IfxSidebar = class IfxSidebar {
|
|
1997
|
-
z;
|
|
1998
|
-
el;
|
|
1999
|
-
ifxSidebarCollapseChange = new EventEmitter();
|
|
2000
1644
|
constructor(c, r, z) {
|
|
2001
1645
|
this.z = z;
|
|
2002
1646
|
c.detach();
|
|
2003
1647
|
this.el = r.nativeElement;
|
|
1648
|
+
proxyOutputs(this, this.el, ['ifxSidebarCollapseChange']);
|
|
2004
1649
|
}
|
|
2005
|
-
|
|
2006
|
-
|
|
1650
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxSidebar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1651
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxSidebar, isStandalone: true, selector: "ifx-sidebar", inputs: { applicationName: "applicationName", collapsed: "collapsed", collapsible: "collapsible", copyrightText: "copyrightText", hideMenuLabel: "hideMenuLabel", imprint: "imprint", initialCollapse: "initialCollapse", privacyPolicy: "privacyPolicy", showFooter: "showFooter", showHeader: "showHeader", target: "target", termsOfUse: "termsOfUse" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2007
1652
|
};
|
|
2008
1653
|
IfxSidebar = __decorate([
|
|
2009
1654
|
ProxyCmp({
|
|
@@ -2019,25 +1664,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
2019
1664
|
template: '<ng-content></ng-content>',
|
|
2020
1665
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2021
1666
|
inputs: ['applicationName', 'collapsed', 'collapsible', 'copyrightText', 'hideMenuLabel', 'imprint', 'initialCollapse', 'privacyPolicy', 'showFooter', 'showHeader', 'target', 'termsOfUse'],
|
|
2022
|
-
outputs: ['ifxSidebarCollapseChange'],
|
|
2023
|
-
standalone: false
|
|
2024
1667
|
}]
|
|
2025
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
2026
|
-
type: Output
|
|
2027
|
-
}] } });
|
|
1668
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2028
1669
|
let IfxSidebarItem = class IfxSidebarItem {
|
|
2029
|
-
z;
|
|
2030
|
-
el;
|
|
2031
|
-
ifxSidebarMenu = new EventEmitter();
|
|
2032
|
-
ifxSidebarNavigationItem = new EventEmitter();
|
|
2033
|
-
ifxSidebarActionItem = new EventEmitter();
|
|
2034
1670
|
constructor(c, r, z) {
|
|
2035
1671
|
this.z = z;
|
|
2036
1672
|
c.detach();
|
|
2037
1673
|
this.el = r.nativeElement;
|
|
1674
|
+
proxyOutputs(this, this.el, ['ifxSidebarMenu', 'ifxSidebarNavigationItem', 'ifxSidebarActionItem']);
|
|
2038
1675
|
}
|
|
2039
|
-
|
|
2040
|
-
|
|
1676
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxSidebarItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1677
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxSidebarItem, isStandalone: true, selector: "ifx-sidebar-item", inputs: { active: "active", handleItemClick: "handleItemClick", href: "href", icon: "icon", isActionItem: "isActionItem", numberIndicator: "numberIndicator", target: "target" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2041
1678
|
};
|
|
2042
1679
|
IfxSidebarItem = __decorate([
|
|
2043
1680
|
ProxyCmp({
|
|
@@ -2053,26 +1690,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
2053
1690
|
template: '<ng-content></ng-content>',
|
|
2054
1691
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2055
1692
|
inputs: ['active', 'handleItemClick', 'href', 'icon', 'isActionItem', 'numberIndicator', 'target'],
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
}]
|
|
2059
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ifxSidebarMenu: [{
|
|
2060
|
-
type: Output
|
|
2061
|
-
}], ifxSidebarNavigationItem: [{
|
|
2062
|
-
type: Output
|
|
2063
|
-
}], ifxSidebarActionItem: [{
|
|
2064
|
-
type: Output
|
|
2065
|
-
}] } });
|
|
1693
|
+
}]
|
|
1694
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2066
1695
|
let IfxSidebarTitle = class IfxSidebarTitle {
|
|
2067
|
-
z;
|
|
2068
|
-
el;
|
|
2069
1696
|
constructor(c, r, z) {
|
|
2070
1697
|
this.z = z;
|
|
2071
1698
|
c.detach();
|
|
2072
1699
|
this.el = r.nativeElement;
|
|
2073
1700
|
}
|
|
2074
|
-
|
|
2075
|
-
|
|
1701
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxSidebarTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1702
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxSidebarTitle, isStandalone: true, selector: "ifx-sidebar-title", inputs: { showInCollapsed: "showInCollapsed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2076
1703
|
};
|
|
2077
1704
|
IfxSidebarTitle = __decorate([
|
|
2078
1705
|
ProxyCmp({
|
|
@@ -2087,20 +1714,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
2087
1714
|
template: '<ng-content></ng-content>',
|
|
2088
1715
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2089
1716
|
inputs: ['showInCollapsed'],
|
|
2090
|
-
standalone: false
|
|
2091
1717
|
}]
|
|
2092
1718
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2093
1719
|
let IfxSlider = class IfxSlider {
|
|
2094
|
-
z;
|
|
2095
|
-
el;
|
|
2096
|
-
ifxChange = new EventEmitter();
|
|
2097
1720
|
constructor(c, r, z) {
|
|
2098
1721
|
this.z = z;
|
|
2099
1722
|
c.detach();
|
|
2100
1723
|
this.el = r.nativeElement;
|
|
1724
|
+
proxyOutputs(this, this.el, ['ifxChange']);
|
|
2101
1725
|
}
|
|
2102
|
-
|
|
2103
|
-
|
|
1726
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1727
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxSlider, isStandalone: true, selector: "ifx-slider", inputs: { ariaLabel: "ariaLabel", disabled: "disabled", leftIcon: "leftIcon", leftText: "leftText", max: "max", maxValueHandle: "maxValueHandle", min: "min", minValueHandle: "minValueHandle", rightIcon: "rightIcon", rightText: "rightText", showPercentage: "showPercentage", step: "step", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2104
1728
|
};
|
|
2105
1729
|
IfxSlider = __decorate([
|
|
2106
1730
|
ProxyCmp({
|
|
@@ -2115,22 +1739,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
2115
1739
|
template: '<ng-content></ng-content>',
|
|
2116
1740
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2117
1741
|
inputs: ['ariaLabel', 'disabled', 'leftIcon', 'leftText', 'max', 'maxValueHandle', 'min', 'minValueHandle', 'rightIcon', 'rightText', 'showPercentage', 'step', 'type', 'value'],
|
|
2118
|
-
outputs: ['ifxChange'],
|
|
2119
|
-
standalone: false
|
|
2120
1742
|
}]
|
|
2121
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
2122
|
-
type: Output
|
|
2123
|
-
}] } });
|
|
1743
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2124
1744
|
let IfxSpinner = class IfxSpinner {
|
|
2125
|
-
z;
|
|
2126
|
-
el;
|
|
2127
1745
|
constructor(c, r, z) {
|
|
2128
1746
|
this.z = z;
|
|
2129
1747
|
c.detach();
|
|
2130
1748
|
this.el = r.nativeElement;
|
|
2131
1749
|
}
|
|
2132
|
-
|
|
2133
|
-
|
|
1750
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1751
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxSpinner, isStandalone: true, selector: "ifx-spinner", inputs: { ariaLabel: "ariaLabel", inverted: "inverted", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2134
1752
|
};
|
|
2135
1753
|
IfxSpinner = __decorate([
|
|
2136
1754
|
ProxyCmp({
|
|
@@ -2145,19 +1763,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
2145
1763
|
template: '<ng-content></ng-content>',
|
|
2146
1764
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2147
1765
|
inputs: ['ariaLabel', 'inverted', 'size', 'variant'],
|
|
2148
|
-
standalone: false
|
|
2149
1766
|
}]
|
|
2150
1767
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2151
1768
|
let IfxStatus = class IfxStatus {
|
|
2152
|
-
z;
|
|
2153
|
-
el;
|
|
2154
1769
|
constructor(c, r, z) {
|
|
2155
1770
|
this.z = z;
|
|
2156
1771
|
c.detach();
|
|
2157
1772
|
this.el = r.nativeElement;
|
|
2158
1773
|
}
|
|
2159
|
-
|
|
2160
|
-
|
|
1774
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxStatus, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1775
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxStatus, isStandalone: true, selector: "ifx-status", inputs: { border: "border", color: "color", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2161
1776
|
};
|
|
2162
1777
|
IfxStatus = __decorate([
|
|
2163
1778
|
ProxyCmp({
|
|
@@ -2172,19 +1787,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
2172
1787
|
template: '<ng-content></ng-content>',
|
|
2173
1788
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2174
1789
|
inputs: ['border', 'color', 'label'],
|
|
2175
|
-
standalone: false
|
|
2176
1790
|
}]
|
|
2177
1791
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2178
1792
|
let IfxStep = class IfxStep {
|
|
2179
|
-
z;
|
|
2180
|
-
el;
|
|
2181
1793
|
constructor(c, r, z) {
|
|
2182
1794
|
this.z = z;
|
|
2183
1795
|
c.detach();
|
|
2184
1796
|
this.el = r.nativeElement;
|
|
2185
1797
|
}
|
|
2186
|
-
|
|
2187
|
-
|
|
1798
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxStep, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1799
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxStep, isStandalone: true, selector: "ifx-step", inputs: { complete: "complete", disabled: "disabled", error: "error", lastStep: "lastStep", stepId: "stepId", stepperState: "stepperState" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2188
1800
|
};
|
|
2189
1801
|
IfxStep = __decorate([
|
|
2190
1802
|
ProxyCmp({
|
|
@@ -2199,20 +1811,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
2199
1811
|
template: '<ng-content></ng-content>',
|
|
2200
1812
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2201
1813
|
inputs: ['complete', 'disabled', 'error', 'lastStep', 'stepId', 'stepperState'],
|
|
2202
|
-
standalone: false
|
|
2203
1814
|
}]
|
|
2204
1815
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2205
1816
|
let IfxStepper = class IfxStepper {
|
|
2206
|
-
z;
|
|
2207
|
-
el;
|
|
2208
|
-
ifxChange = new EventEmitter();
|
|
2209
1817
|
constructor(c, r, z) {
|
|
2210
1818
|
this.z = z;
|
|
2211
1819
|
c.detach();
|
|
2212
1820
|
this.el = r.nativeElement;
|
|
1821
|
+
proxyOutputs(this, this.el, ['ifxChange']);
|
|
2213
1822
|
}
|
|
2214
|
-
|
|
2215
|
-
|
|
1823
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxStepper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1824
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxStepper, isStandalone: true, selector: "ifx-stepper", inputs: { activeStep: "activeStep", ariaCurrent: "ariaCurrent", ariaLabel: "ariaLabel", indicatorPosition: "indicatorPosition", showStepNumber: "showStepNumber", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2216
1825
|
};
|
|
2217
1826
|
IfxStepper = __decorate([
|
|
2218
1827
|
ProxyCmp({
|
|
@@ -2227,23 +1836,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
2227
1836
|
template: '<ng-content></ng-content>',
|
|
2228
1837
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2229
1838
|
inputs: ['activeStep', 'ariaCurrent', 'ariaLabel', 'indicatorPosition', 'showStepNumber', 'variant'],
|
|
2230
|
-
outputs: ['ifxChange'],
|
|
2231
|
-
standalone: false
|
|
2232
1839
|
}]
|
|
2233
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
2234
|
-
type: Output
|
|
2235
|
-
}] } });
|
|
1840
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2236
1841
|
let IfxSwitch = class IfxSwitch {
|
|
2237
|
-
z;
|
|
2238
|
-
el;
|
|
2239
|
-
ifxChange = new EventEmitter();
|
|
2240
1842
|
constructor(c, r, z) {
|
|
2241
1843
|
this.z = z;
|
|
2242
1844
|
c.detach();
|
|
2243
1845
|
this.el = r.nativeElement;
|
|
1846
|
+
proxyOutputs(this, this.el, ['ifxChange']);
|
|
2244
1847
|
}
|
|
2245
|
-
|
|
2246
|
-
|
|
1848
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1849
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxSwitch, isStandalone: true, selector: "ifx-switch", inputs: { checked: "checked", disabled: "disabled", name: "name", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2247
1850
|
};
|
|
2248
1851
|
IfxSwitch = __decorate([
|
|
2249
1852
|
ProxyCmp({
|
|
@@ -2259,23 +1862,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
2259
1862
|
template: '<ng-content></ng-content>',
|
|
2260
1863
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2261
1864
|
inputs: ['checked', 'disabled', 'name', 'value'],
|
|
2262
|
-
outputs: ['ifxChange'],
|
|
2263
|
-
standalone: false
|
|
2264
1865
|
}]
|
|
2265
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
2266
|
-
type: Output
|
|
2267
|
-
}] } });
|
|
1866
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2268
1867
|
let IfxTab = class IfxTab {
|
|
2269
|
-
z;
|
|
2270
|
-
el;
|
|
2271
|
-
tabHeaderChange = new EventEmitter();
|
|
2272
1868
|
constructor(c, r, z) {
|
|
2273
1869
|
this.z = z;
|
|
2274
1870
|
c.detach();
|
|
2275
1871
|
this.el = r.nativeElement;
|
|
1872
|
+
proxyOutputs(this, this.el, ['tabHeaderChange']);
|
|
2276
1873
|
}
|
|
2277
|
-
|
|
2278
|
-
|
|
1874
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1875
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxTab, isStandalone: true, selector: "ifx-tab", inputs: { disabled: "disabled", header: "header", icon: "icon", iconPosition: "iconPosition" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2279
1876
|
};
|
|
2280
1877
|
IfxTab = __decorate([
|
|
2281
1878
|
ProxyCmp({
|
|
@@ -2290,22 +1887,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
2290
1887
|
template: '<ng-content></ng-content>',
|
|
2291
1888
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2292
1889
|
inputs: ['disabled', 'header', 'icon', 'iconPosition'],
|
|
2293
|
-
outputs: ['tabHeaderChange'],
|
|
2294
|
-
standalone: false
|
|
2295
1890
|
}]
|
|
2296
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
2297
|
-
type: Output
|
|
2298
|
-
}] } });
|
|
1891
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2299
1892
|
let IfxTable = class IfxTable {
|
|
2300
|
-
z;
|
|
2301
|
-
el;
|
|
2302
1893
|
constructor(c, r, z) {
|
|
2303
1894
|
this.z = z;
|
|
2304
1895
|
c.detach();
|
|
2305
1896
|
this.el = r.nativeElement;
|
|
2306
1897
|
}
|
|
2307
|
-
|
|
2308
|
-
|
|
1898
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1899
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxTable, isStandalone: true, selector: "ifx-table", inputs: { buttonRendererOptions: "buttonRendererOptions", checkboxRendererOptions: "checkboxRendererOptions", cols: "cols", enableSelection: "enableSelection", filterOrientation: "filterOrientation", headline: "headline", iconButtonRendererOptions: "iconButtonRendererOptions", pagination: "pagination", paginationItemsPerPage: "paginationItemsPerPage", rowHeight: "rowHeight", rows: "rows", serverPageChangeHandler: "serverPageChangeHandler", serverSidePagination: "serverSidePagination", showLoading: "showLoading", tableHeight: "tableHeight", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2309
1900
|
};
|
|
2310
1901
|
IfxTable = __decorate([
|
|
2311
1902
|
ProxyCmp({
|
|
@@ -2321,20 +1912,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
2321
1912
|
template: '<ng-content></ng-content>',
|
|
2322
1913
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2323
1914
|
inputs: ['buttonRendererOptions', 'checkboxRendererOptions', 'cols', 'enableSelection', 'filterOrientation', 'headline', 'iconButtonRendererOptions', 'pagination', 'paginationItemsPerPage', 'rowHeight', 'rows', 'serverPageChangeHandler', 'serverSidePagination', 'showLoading', 'tableHeight', 'variant'],
|
|
2324
|
-
standalone: false
|
|
2325
1915
|
}]
|
|
2326
1916
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2327
1917
|
let IfxTabs = class IfxTabs {
|
|
2328
|
-
z;
|
|
2329
|
-
el;
|
|
2330
|
-
ifxChange = new EventEmitter();
|
|
2331
1918
|
constructor(c, r, z) {
|
|
2332
1919
|
this.z = z;
|
|
2333
1920
|
c.detach();
|
|
2334
1921
|
this.el = r.nativeElement;
|
|
1922
|
+
proxyOutputs(this, this.el, ['ifxChange']);
|
|
2335
1923
|
}
|
|
2336
|
-
|
|
2337
|
-
|
|
1924
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxTabs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1925
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxTabs, isStandalone: true, selector: "ifx-tabs", inputs: { activeTabIndex: "activeTabIndex", fullWidth: "fullWidth", orientation: "orientation" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2338
1926
|
};
|
|
2339
1927
|
IfxTabs = __decorate([
|
|
2340
1928
|
ProxyCmp({
|
|
@@ -2349,24 +1937,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
2349
1937
|
template: '<ng-content></ng-content>',
|
|
2350
1938
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2351
1939
|
inputs: ['activeTabIndex', 'fullWidth', 'orientation'],
|
|
2352
|
-
outputs: ['ifxChange'],
|
|
2353
|
-
standalone: false
|
|
2354
1940
|
}]
|
|
2355
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
2356
|
-
type: Output
|
|
2357
|
-
}] } });
|
|
1941
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2358
1942
|
let IfxTemplate = class IfxTemplate {
|
|
2359
|
-
z;
|
|
2360
|
-
el;
|
|
2361
|
-
toggleTemplates = new EventEmitter();
|
|
2362
|
-
fieldError = new EventEmitter();
|
|
2363
1943
|
constructor(c, r, z) {
|
|
2364
1944
|
this.z = z;
|
|
2365
1945
|
c.detach();
|
|
2366
1946
|
this.el = r.nativeElement;
|
|
1947
|
+
proxyOutputs(this, this.el, ['toggleTemplates', 'fieldError']);
|
|
2367
1948
|
}
|
|
2368
|
-
|
|
2369
|
-
|
|
1949
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxTemplate, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1950
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxTemplate, isStandalone: true, selector: "ifx-template", inputs: { name: "name", thumbnail: "thumbnail" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2370
1951
|
};
|
|
2371
1952
|
IfxTemplate = __decorate([
|
|
2372
1953
|
ProxyCmp({
|
|
@@ -2382,24 +1963,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
2382
1963
|
template: '<ng-content></ng-content>',
|
|
2383
1964
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2384
1965
|
inputs: ['name', 'thumbnail'],
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
}]
|
|
2388
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { toggleTemplates: [{
|
|
2389
|
-
type: Output
|
|
2390
|
-
}], fieldError: [{
|
|
2391
|
-
type: Output
|
|
2392
|
-
}] } });
|
|
1966
|
+
}]
|
|
1967
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2393
1968
|
let IfxTemplatesUi = class IfxTemplatesUi {
|
|
2394
|
-
z;
|
|
2395
|
-
el;
|
|
2396
1969
|
constructor(c, r, z) {
|
|
2397
1970
|
this.z = z;
|
|
2398
1971
|
c.detach();
|
|
2399
1972
|
this.el = r.nativeElement;
|
|
2400
1973
|
}
|
|
2401
|
-
|
|
2402
|
-
|
|
1974
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxTemplatesUi, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1975
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxTemplatesUi, isStandalone: true, selector: "ifx-templates-ui", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2403
1976
|
};
|
|
2404
1977
|
IfxTemplatesUi = __decorate([
|
|
2405
1978
|
ProxyCmp({})
|
|
@@ -2412,20 +1985,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
2412
1985
|
template: '<ng-content></ng-content>',
|
|
2413
1986
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2414
1987
|
inputs: [],
|
|
2415
|
-
standalone: false
|
|
2416
1988
|
}]
|
|
2417
1989
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2418
1990
|
let IfxTextField = class IfxTextField {
|
|
2419
|
-
z;
|
|
2420
|
-
el;
|
|
2421
|
-
ifxInput = new EventEmitter();
|
|
2422
1991
|
constructor(c, r, z) {
|
|
2423
1992
|
this.z = z;
|
|
2424
1993
|
c.detach();
|
|
2425
1994
|
this.el = r.nativeElement;
|
|
1995
|
+
proxyOutputs(this, this.el, ['ifxInput']);
|
|
2426
1996
|
}
|
|
2427
|
-
|
|
2428
|
-
|
|
1997
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxTextField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1998
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxTextField, isStandalone: true, selector: "ifx-text-field", inputs: { autocomplete: "autocomplete", caption: "caption", disabled: "disabled", error: "error", icon: "icon", internalId: "internalId", label: "label", maxlength: "maxlength", placeholder: "placeholder", readOnly: "readOnly", required: "required", showDeleteIcon: "showDeleteIcon", size: "size", success: "success", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2429
1999
|
};
|
|
2430
2000
|
IfxTextField = __decorate([
|
|
2431
2001
|
ProxyCmp({
|
|
@@ -2441,23 +2011,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
2441
2011
|
template: '<ng-content></ng-content>',
|
|
2442
2012
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2443
2013
|
inputs: ['autocomplete', 'caption', 'disabled', 'error', 'icon', 'internalId', 'label', 'maxlength', 'placeholder', 'readOnly', 'required', 'showDeleteIcon', 'size', 'success', 'type', 'value'],
|
|
2444
|
-
outputs: ['ifxInput'],
|
|
2445
|
-
standalone: false
|
|
2446
2014
|
}]
|
|
2447
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
2448
|
-
type: Output
|
|
2449
|
-
}] } });
|
|
2015
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2450
2016
|
let IfxTextarea = class IfxTextarea {
|
|
2451
|
-
z;
|
|
2452
|
-
el;
|
|
2453
|
-
ifxInput = new EventEmitter();
|
|
2454
2017
|
constructor(c, r, z) {
|
|
2455
2018
|
this.z = z;
|
|
2456
2019
|
c.detach();
|
|
2457
2020
|
this.el = r.nativeElement;
|
|
2021
|
+
proxyOutputs(this, this.el, ['ifxInput']);
|
|
2458
2022
|
}
|
|
2459
|
-
|
|
2460
|
-
|
|
2023
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2024
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxTextarea, isStandalone: true, selector: "ifx-textarea", inputs: { caption: "caption", cols: "cols", disabled: "disabled", error: "error", fullWidth: "fullWidth", label: "label", maxlength: "maxlength", name: "name", placeholder: "placeholder", readOnly: "readOnly", required: "required", resize: "resize", rows: "rows", value: "value", wrap: "wrap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2461
2025
|
};
|
|
2462
2026
|
IfxTextarea = __decorate([
|
|
2463
2027
|
ProxyCmp({
|
|
@@ -2473,22 +2037,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
2473
2037
|
template: '<ng-content></ng-content>',
|
|
2474
2038
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2475
2039
|
inputs: ['caption', 'cols', 'disabled', 'error', 'fullWidth', 'label', 'maxlength', 'name', 'placeholder', 'readOnly', 'required', 'resize', 'rows', 'value', 'wrap'],
|
|
2476
|
-
outputs: ['ifxInput'],
|
|
2477
|
-
standalone: false
|
|
2478
2040
|
}]
|
|
2479
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]
|
|
2480
|
-
type: Output
|
|
2481
|
-
}] } });
|
|
2041
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2482
2042
|
let IfxTooltip = class IfxTooltip {
|
|
2483
|
-
z;
|
|
2484
|
-
el;
|
|
2485
2043
|
constructor(c, r, z) {
|
|
2486
2044
|
this.z = z;
|
|
2487
2045
|
c.detach();
|
|
2488
2046
|
this.el = r.nativeElement;
|
|
2489
2047
|
}
|
|
2490
|
-
|
|
2491
|
-
|
|
2048
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2049
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxTooltip, isStandalone: true, selector: "ifx-tooltip", inputs: { ariaLabel: "ariaLabel", header: "header", icon: "icon", position: "position", text: "text", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2492
2050
|
};
|
|
2493
2051
|
IfxTooltip = __decorate([
|
|
2494
2052
|
ProxyCmp({
|
|
@@ -2503,21 +2061,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
2503
2061
|
template: '<ng-content></ng-content>',
|
|
2504
2062
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2505
2063
|
inputs: ['ariaLabel', 'header', 'icon', 'position', 'text', 'variant'],
|
|
2506
|
-
standalone: false
|
|
2507
2064
|
}]
|
|
2508
2065
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2509
2066
|
let IfxTreeView = class IfxTreeView {
|
|
2510
|
-
z;
|
|
2511
|
-
el;
|
|
2512
|
-
ifxTreeViewExpandAllChange = new EventEmitter();
|
|
2513
|
-
ifxTreeViewDisableAllChange = new EventEmitter();
|
|
2514
2067
|
constructor(c, r, z) {
|
|
2515
2068
|
this.z = z;
|
|
2516
2069
|
c.detach();
|
|
2517
2070
|
this.el = r.nativeElement;
|
|
2071
|
+
proxyOutputs(this, this.el, ['ifxTreeViewExpandAllChange', 'ifxTreeViewDisableAllChange']);
|
|
2518
2072
|
}
|
|
2519
|
-
|
|
2520
|
-
|
|
2073
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxTreeView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2074
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxTreeView, isStandalone: true, selector: "ifx-tree-view", inputs: { ariaLabel: "ariaLabel", disableAllItems: "disableAllItems", expandAllItems: "expandAllItems", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2521
2075
|
};
|
|
2522
2076
|
IfxTreeView = __decorate([
|
|
2523
2077
|
ProxyCmp({
|
|
@@ -2532,27 +2086,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
2532
2086
|
template: '<ng-content></ng-content>',
|
|
2533
2087
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2534
2088
|
inputs: ['ariaLabel', 'disableAllItems', 'expandAllItems', 'label'],
|
|
2535
|
-
|
|
2536
|
-
|
|
2537
|
-
}]
|
|
2538
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ifxTreeViewExpandAllChange: [{
|
|
2539
|
-
type: Output
|
|
2540
|
-
}], ifxTreeViewDisableAllChange: [{
|
|
2541
|
-
type: Output
|
|
2542
|
-
}] } });
|
|
2089
|
+
}]
|
|
2090
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2543
2091
|
let IfxTreeViewItem = class IfxTreeViewItem {
|
|
2544
|
-
z;
|
|
2545
|
-
el;
|
|
2546
|
-
ifxTreeViewItemExpandChange = new EventEmitter();
|
|
2547
|
-
ifxTreeViewItemCheckChange = new EventEmitter();
|
|
2548
|
-
ifxTreeViewItemDisableChange = new EventEmitter();
|
|
2549
2092
|
constructor(c, r, z) {
|
|
2550
2093
|
this.z = z;
|
|
2551
2094
|
c.detach();
|
|
2552
2095
|
this.el = r.nativeElement;
|
|
2096
|
+
proxyOutputs(this, this.el, ['ifxTreeViewItemExpandChange', 'ifxTreeViewItemCheckChange', 'ifxTreeViewItemDisableChange']);
|
|
2553
2097
|
}
|
|
2554
|
-
|
|
2555
|
-
|
|
2098
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: IfxTreeViewItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2099
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.15", type: IfxTreeViewItem, isStandalone: true, selector: "ifx-tree-view-item", inputs: { ariaLabel: "ariaLabel", disableItem: "disableItem", expanded: "expanded", initiallyExpanded: "initiallyExpanded", initiallySelected: "initiallySelected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2556
2100
|
};
|
|
2557
2101
|
IfxTreeViewItem = __decorate([
|
|
2558
2102
|
ProxyCmp({
|
|
@@ -2567,16 +2111,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImpo
|
|
|
2567
2111
|
template: '<ng-content></ng-content>',
|
|
2568
2112
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2569
2113
|
inputs: ['ariaLabel', 'disableItem', 'expanded', 'initiallyExpanded', 'initiallySelected', 'value'],
|
|
2570
|
-
|
|
2571
|
-
|
|
2572
|
-
}]
|
|
2573
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ifxTreeViewItemExpandChange: [{
|
|
2574
|
-
type: Output
|
|
2575
|
-
}], ifxTreeViewItemCheckChange: [{
|
|
2576
|
-
type: Output
|
|
2577
|
-
}], ifxTreeViewItemDisableChange: [{
|
|
2578
|
-
type: Output
|
|
2579
|
-
}] } });
|
|
2114
|
+
}]
|
|
2115
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2580
2116
|
|
|
2581
2117
|
const DIRECTIVES = [
|
|
2582
2118
|
IfxAccordion,
|
|
@@ -2664,36 +2200,13 @@ const DIRECTIVES = [
|
|
|
2664
2200
|
IfxTreeViewItem
|
|
2665
2201
|
];
|
|
2666
2202
|
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
|
|
2670
|
-
ngModule: InfineonDesignSystemModule,
|
|
2671
|
-
providers: [
|
|
2672
|
-
{
|
|
2673
|
-
provide: APP_INITIALIZER,
|
|
2674
|
-
useFactory: () => defineCustomElements,
|
|
2675
|
-
multi: true,
|
|
2676
|
-
deps: [DOCUMENT, NgZone],
|
|
2677
|
-
},
|
|
2678
|
-
],
|
|
2679
|
-
};
|
|
2680
|
-
}
|
|
2681
|
-
/** @nocollapse */ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: InfineonDesignSystemModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2682
|
-
/** @nocollapse */ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.15", ngImport: i0, type: InfineonDesignSystemModule, declarations: [IfxAccordion, IfxAccordionItem, IfxActionList, IfxActionListItem, IfxAlert, IfxBasicTable, IfxBreadcrumb, IfxBreadcrumbItem, IfxBreadcrumbItemLabel, IfxButton, IfxCard, IfxCardHeadline, IfxCardImage, IfxCardLinks, IfxCardOverline, IfxCardText, IfxCheckbox, IfxCheckboxGroup, IfxChip, IfxChipItem, IfxContentSwitcher, IfxContentSwitcherItem, IfxDatePicker, IfxDownload, IfxDropdown, IfxDropdownHeader, IfxDropdownItem, IfxDropdownMenu, IfxDropdownSeparator, IfxDropdownTrigger, IfxDropdownTriggerButton, IfxFaq, IfxFileUpload, IfxFilterAccordion, IfxFilterBar, IfxFilterSearch, IfxFilterTypeGroup, IfxFooter, IfxFooterColumn, IfxIcon, IfxIconButton, IfxIconsPreview, IfxIndicator, IfxLink, IfxList, IfxListEntry, IfxModal, IfxMultiselect, IfxMultiselectOption, IfxNavbar, IfxNavbarItem, IfxNavbarProfile, IfxNotification, IfxOverviewTable, IfxPagination, IfxProgressBar, IfxRadioButton, IfxRadioButtonGroup, IfxSearchBar, IfxSearchField, IfxSegment, IfxSegmentedControl, IfxSelect, IfxSetFilter, IfxSidebar, IfxSidebarItem, IfxSidebarTitle, IfxSlider, IfxSpinner, IfxStatus, IfxStep, IfxStepper, IfxSwitch, IfxTab, IfxTable, IfxTabs, IfxTemplate, IfxTemplatesUi, IfxTextField, IfxTextarea, IfxTooltip, IfxTreeView, IfxTreeViewItem], imports: [CommonModule], exports: [IfxAccordion, IfxAccordionItem, IfxActionList, IfxActionListItem, IfxAlert, IfxBasicTable, IfxBreadcrumb, IfxBreadcrumbItem, IfxBreadcrumbItemLabel, IfxButton, IfxCard, IfxCardHeadline, IfxCardImage, IfxCardLinks, IfxCardOverline, IfxCardText, IfxCheckbox, IfxCheckboxGroup, IfxChip, IfxChipItem, IfxContentSwitcher, IfxContentSwitcherItem, IfxDatePicker, IfxDownload, IfxDropdown, IfxDropdownHeader, IfxDropdownItem, IfxDropdownMenu, IfxDropdownSeparator, IfxDropdownTrigger, IfxDropdownTriggerButton, IfxFaq, IfxFileUpload, IfxFilterAccordion, IfxFilterBar, IfxFilterSearch, IfxFilterTypeGroup, IfxFooter, IfxFooterColumn, IfxIcon, IfxIconButton, IfxIconsPreview, IfxIndicator, IfxLink, IfxList, IfxListEntry, IfxModal, IfxMultiselect, IfxMultiselectOption, IfxNavbar, IfxNavbarItem, IfxNavbarProfile, IfxNotification, IfxOverviewTable, IfxPagination, IfxProgressBar, IfxRadioButton, IfxRadioButtonGroup, IfxSearchBar, IfxSearchField, IfxSegment, IfxSegmentedControl, IfxSelect, IfxSetFilter, IfxSidebar, IfxSidebarItem, IfxSidebarTitle, IfxSlider, IfxSpinner, IfxStatus, IfxStep, IfxStepper, IfxSwitch, IfxTab, IfxTable, IfxTabs, IfxTemplate, IfxTemplatesUi, IfxTextField, IfxTextarea, IfxTooltip, IfxTreeView, IfxTreeViewItem] });
|
|
2683
|
-
/** @nocollapse */ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: InfineonDesignSystemModule, imports: [CommonModule] });
|
|
2684
|
-
}
|
|
2685
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.15", ngImport: i0, type: InfineonDesignSystemModule, decorators: [{
|
|
2686
|
-
type: NgModule,
|
|
2687
|
-
args: [{
|
|
2688
|
-
declarations: [...DIRECTIVES],
|
|
2689
|
-
exports: [...DIRECTIVES],
|
|
2690
|
-
imports: [CommonModule],
|
|
2691
|
-
}]
|
|
2692
|
-
}] });
|
|
2203
|
+
/*
|
|
2204
|
+
* Public API Surface of component-library
|
|
2205
|
+
*/
|
|
2693
2206
|
|
|
2694
2207
|
/**
|
|
2695
2208
|
* Generated bundle index. Do not edit.
|
|
2696
2209
|
*/
|
|
2697
2210
|
|
|
2698
|
-
export { DIRECTIVES, IfxAccordion, IfxAccordionItem, IfxActionList, IfxActionListItem, IfxAlert, IfxBasicTable, IfxBreadcrumb, IfxBreadcrumbItem, IfxBreadcrumbItemLabel, IfxButton, IfxCard, IfxCardHeadline, IfxCardImage, IfxCardLinks, IfxCardOverline, IfxCardText, IfxCheckbox, IfxCheckboxGroup, IfxChip, IfxChipItem, IfxContentSwitcher, IfxContentSwitcherItem, IfxDatePicker, IfxDownload, IfxDropdown, IfxDropdownHeader, IfxDropdownItem, IfxDropdownMenu, IfxDropdownSeparator, IfxDropdownTrigger, IfxDropdownTriggerButton, IfxFaq, IfxFileUpload, IfxFilterAccordion, IfxFilterBar, IfxFilterSearch, IfxFilterTypeGroup, IfxFooter, IfxFooterColumn, IfxIcon, IfxIconButton, IfxIconsPreview, IfxIndicator, IfxLink, IfxList, IfxListEntry, IfxModal, IfxMultiselect, IfxMultiselectOption, IfxNavbar, IfxNavbarItem, IfxNavbarProfile, IfxNotification, IfxOverviewTable, IfxPagination, IfxProgressBar, IfxRadioButton, IfxRadioButtonGroup, IfxSearchBar, IfxSearchField, IfxSegment, IfxSegmentedControl, IfxSelect, IfxSetFilter, IfxSidebar, IfxSidebarItem, IfxSidebarTitle, IfxSlider, IfxSpinner, IfxStatus, IfxStep, IfxStepper, IfxSwitch, IfxTab, IfxTable, IfxTabs, IfxTemplate, IfxTemplatesUi, IfxTextField, IfxTextarea, IfxTooltip, IfxTreeView, IfxTreeViewItem
|
|
2211
|
+
export { ComponentLibraryModule, DIRECTIVES, IfxAccordion, IfxAccordionItem, IfxActionList, IfxActionListItem, IfxAlert, IfxBasicTable, IfxBreadcrumb, IfxBreadcrumbItem, IfxBreadcrumbItemLabel, IfxButton, IfxCard, IfxCardHeadline, IfxCardImage, IfxCardLinks, IfxCardOverline, IfxCardText, IfxCheckbox, IfxCheckboxGroup, IfxChip, IfxChipItem, IfxContentSwitcher, IfxContentSwitcherItem, IfxDatePicker, IfxDownload, IfxDropdown, IfxDropdownHeader, IfxDropdownItem, IfxDropdownMenu, IfxDropdownSeparator, IfxDropdownTrigger, IfxDropdownTriggerButton, IfxFaq, IfxFileUpload, IfxFilterAccordion, IfxFilterBar, IfxFilterSearch, IfxFilterTypeGroup, IfxFooter, IfxFooterColumn, IfxIcon, IfxIconButton, IfxIconsPreview, IfxIndicator, IfxLink, IfxList, IfxListEntry, IfxModal, IfxMultiselect, IfxMultiselectOption, IfxNavbar, IfxNavbarItem, IfxNavbarProfile, IfxNotification, IfxOverviewTable, IfxPagination, IfxProgressBar, IfxRadioButton, IfxRadioButtonGroup, IfxSearchBar, IfxSearchField, IfxSegment, IfxSegmentedControl, IfxSelect, IfxSetFilter, IfxSidebar, IfxSidebarItem, IfxSidebarTitle, IfxSlider, IfxSpinner, IfxStatus, IfxStep, IfxStepper, IfxSwitch, IfxTab, IfxTable, IfxTabs, IfxTemplate, IfxTemplatesUi, IfxTextField, IfxTextarea, IfxTooltip, IfxTreeView, IfxTreeViewItem };
|
|
2699
2212
|
//# sourceMappingURL=infineon-infineon-design-system-angular.mjs.map
|