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