@siemens/ix-angular 2.0.0-beta.0 → 2.0.0

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