@siemens/ix-angular 1.6.3 → 2.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components.d.ts +186 -70
- package/declare-components.d.ts +1 -1
- package/esm2020/components.mjs +388 -165
- package/esm2020/declare-components.mjs +15 -6
- package/esm2020/index.mjs +2 -1
- package/esm2020/modal/modal.config.mjs +1 -1
- package/esm2020/modal/modal.service.mjs +21 -22
- package/esm2020/module.mjs +11 -3
- package/esm2020/select-value-accessor.mjs +35 -0
- package/esm2020/theme/theme.service.mjs +4 -1
- package/esm2020/value-accessor.mjs +40 -0
- package/fesm2015/siemens-ix-angular.mjs +487 -184
- package/fesm2015/siemens-ix-angular.mjs.map +1 -1
- package/fesm2020/siemens-ix-angular.mjs +488 -186
- package/fesm2020/siemens-ix-angular.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/modal/modal.config.d.ts +2 -1
- package/module.d.ts +2 -1
- package/package.json +2 -2
- package/select-value-accessor.d.ts +8 -0
- package/theme/theme.service.d.ts +3 -0
- package/value-accessor.d.ts +18 -0
package/components.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import type { LegacyDateChangeEvent as IIxDatePickerLegacyDateChangeEvent } from
|
|
|
6
6
|
import type { DateChangeEvent as IIxDatePickerDateChangeEvent } from '@siemens/ix';
|
|
7
7
|
import type { DateTimeDateChangeEvent as IIxDatetimePickerDateTimeDateChangeEvent } from '@siemens/ix';
|
|
8
8
|
import type { DateTimeSelectEvent as IIxDatetimePickerDateTimeSelectEvent } from '@siemens/ix';
|
|
9
|
+
import type { TabClickDetail as IIxTabItemTabClickDetail } from '@siemens/ix';
|
|
9
10
|
import * as i0 from "@angular/core";
|
|
10
11
|
export declare class IxActionCard {
|
|
11
12
|
protected z: NgZone;
|
|
@@ -16,43 +17,30 @@ export declare class IxActionCard {
|
|
|
16
17
|
}
|
|
17
18
|
export declare interface IxActionCard extends Components.IxActionCard {
|
|
18
19
|
}
|
|
19
|
-
export declare class
|
|
20
|
+
export declare class IxApplicationHeader {
|
|
20
21
|
protected z: NgZone;
|
|
21
22
|
protected el: HTMLElement;
|
|
22
23
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
23
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxApplicationHeader, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxApplicationHeader, "ix-application-header", never, { "name": "name"; }, {}, never, ["*"]>;
|
|
25
26
|
}
|
|
26
|
-
export declare interface
|
|
27
|
+
export declare interface IxApplicationHeader extends Components.IxApplicationHeader {
|
|
27
28
|
}
|
|
28
|
-
export declare class
|
|
29
|
+
export declare class IxAvatar {
|
|
29
30
|
protected z: NgZone;
|
|
30
31
|
protected el: HTMLElement;
|
|
31
32
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
32
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
34
|
-
}
|
|
35
|
-
export declare interface IxAnimatedTabs extends Components.IxAnimatedTabs {
|
|
36
|
-
/**
|
|
37
|
-
* Tab navigated
|
|
38
|
-
*/
|
|
39
|
-
tabClick: EventEmitter<CustomEvent<any>>;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxAvatar, never>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxAvatar, "ix-avatar", never, { "image": "image"; "initials": "initials"; }, {}, never, ["*"]>;
|
|
40
35
|
}
|
|
41
|
-
export declare
|
|
42
|
-
protected z: NgZone;
|
|
43
|
-
protected el: HTMLElement;
|
|
44
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
45
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IxApplicationHeader, never>;
|
|
46
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxApplicationHeader, "ix-application-header", never, { "name": "name"; }, {}, never, ["*"]>;
|
|
47
|
-
}
|
|
48
|
-
export declare interface IxApplicationHeader extends Components.IxApplicationHeader {
|
|
36
|
+
export declare interface IxAvatar extends Components.IxAvatar {
|
|
49
37
|
}
|
|
50
38
|
export declare class IxBasicNavigation {
|
|
51
39
|
protected z: NgZone;
|
|
52
40
|
protected el: HTMLElement;
|
|
53
41
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
54
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxBasicNavigation, never>;
|
|
55
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxBasicNavigation, "ix-basic-navigation", never, { "applicationName": "applicationName"; "hideHeader": "hideHeader"; }, {}, never, ["*"]>;
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxBasicNavigation, "ix-basic-navigation", never, { "applicationName": "applicationName"; "breakpoints": "breakpoints"; "forceBreakpoint": "forceBreakpoint"; "hideHeader": "hideHeader"; }, {}, never, ["*"]>;
|
|
56
44
|
}
|
|
57
45
|
export declare interface IxBasicNavigation extends Components.IxBasicNavigation {
|
|
58
46
|
}
|
|
@@ -61,7 +49,7 @@ export declare class IxBlind {
|
|
|
61
49
|
protected el: HTMLElement;
|
|
62
50
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
63
51
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxBlind, never>;
|
|
64
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxBlind, "ix-blind", never, { "collapsed": "collapsed"; "icon": "icon"; "label": "label"; }, {}, never, ["*"]>;
|
|
52
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxBlind, "ix-blind", never, { "collapsed": "collapsed"; "icon": "icon"; "label": "label"; "sublabel": "sublabel"; }, {}, never, ["*"]>;
|
|
65
53
|
}
|
|
66
54
|
export declare interface IxBlind extends Components.IxBlind {
|
|
67
55
|
/**
|
|
@@ -74,7 +62,7 @@ export declare class IxBreadcrumb {
|
|
|
74
62
|
protected el: HTMLElement;
|
|
75
63
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
76
64
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxBreadcrumb, never>;
|
|
77
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxBreadcrumb, "ix-breadcrumb", never, { "ghost": "ghost"; "nextItems": "nextItems"; "visibleItemCount": "visibleItemCount"; }, {}, never, ["*"]>;
|
|
65
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxBreadcrumb, "ix-breadcrumb", never, { "ariaLabelPreviousButton": "ariaLabelPreviousButton"; "ghost": "ghost"; "nextItems": "nextItems"; "visibleItemCount": "visibleItemCount"; }, {}, never, ["*"]>;
|
|
78
66
|
}
|
|
79
67
|
export declare interface IxBreadcrumb extends Components.IxBreadcrumb {
|
|
80
68
|
/**
|
|
@@ -103,7 +91,7 @@ export declare class IxButton {
|
|
|
103
91
|
protected el: HTMLElement;
|
|
104
92
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
105
93
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxButton, never>;
|
|
106
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxButton, "ix-button", never, { "disabled": "disabled"; "ghost": "ghost"; "
|
|
94
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxButton, "ix-button", never, { "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "loading": "loading"; "outline": "outline"; "type": "type"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
107
95
|
}
|
|
108
96
|
export declare interface IxButton extends Components.IxButton {
|
|
109
97
|
}
|
|
@@ -173,9 +161,13 @@ export declare class IxCategoryFilter {
|
|
|
173
161
|
protected el: HTMLElement;
|
|
174
162
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
175
163
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxCategoryFilter, never>;
|
|
176
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxCategoryFilter, "ix-category-filter", never, { "categories": "categories"; "filterState": "filterState"; "hideIcon": "hideIcon"; "i18nPlainText": "i18nPlainText"; "icon": "icon"; "
|
|
164
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxCategoryFilter, "ix-category-filter", never, { "categories": "categories"; "disabled": "disabled"; "filterState": "filterState"; "hideIcon": "hideIcon"; "i18nPlainText": "i18nPlainText"; "icon": "icon"; "labelCategories": "labelCategories"; "nonSelectableCategories": "nonSelectableCategories"; "placeholder": "placeholder"; "readonly": "readonly"; "repeatCategories": "repeatCategories"; "suggestions": "suggestions"; }, {}, never, ["*"]>;
|
|
177
165
|
}
|
|
178
166
|
export declare interface IxCategoryFilter extends Components.IxCategoryFilter {
|
|
167
|
+
/**
|
|
168
|
+
* Event dispatched whenever the a category gets selected in the dropdown
|
|
169
|
+
*/
|
|
170
|
+
categoryChanged: EventEmitter<CustomEvent<string>>;
|
|
179
171
|
/**
|
|
180
172
|
* Event dispatched whenever the text input changes.
|
|
181
173
|
*/
|
|
@@ -202,6 +194,15 @@ export declare interface IxChip extends Components.IxChip {
|
|
|
202
194
|
*/
|
|
203
195
|
closeChip: EventEmitter<CustomEvent<any>>;
|
|
204
196
|
}
|
|
197
|
+
export declare class IxCol {
|
|
198
|
+
protected z: NgZone;
|
|
199
|
+
protected el: HTMLElement;
|
|
200
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
201
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxCol, never>;
|
|
202
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxCol, "ix-col", never, { "size": "size"; "sizeLg": "sizeLg"; "sizeMd": "sizeMd"; "sizeSm": "sizeSm"; }, {}, never, ["*"]>;
|
|
203
|
+
}
|
|
204
|
+
export declare interface IxCol extends Components.IxCol {
|
|
205
|
+
}
|
|
205
206
|
export declare class IxContentHeader {
|
|
206
207
|
protected z: NgZone;
|
|
207
208
|
protected el: HTMLElement;
|
|
@@ -215,15 +216,6 @@ export declare interface IxContentHeader extends Components.IxContentHeader {
|
|
|
215
216
|
*/
|
|
216
217
|
backButtonClick: EventEmitter<CustomEvent<void>>;
|
|
217
218
|
}
|
|
218
|
-
export declare class IxCounterPill {
|
|
219
|
-
protected z: NgZone;
|
|
220
|
-
protected el: HTMLElement;
|
|
221
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
222
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IxCounterPill, never>;
|
|
223
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxCounterPill, "ix-counter-pill", never, { "alignLeft": "alignLeft"; "background": "background"; "color": "color"; "outline": "outline"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
224
|
-
}
|
|
225
|
-
export declare interface IxCounterPill extends Components.IxCounterPill {
|
|
226
|
-
}
|
|
227
219
|
export declare class IxDatePicker {
|
|
228
220
|
protected z: NgZone;
|
|
229
221
|
protected el: HTMLElement;
|
|
@@ -311,7 +303,7 @@ export declare class IxDropdown {
|
|
|
311
303
|
protected el: HTMLElement;
|
|
312
304
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
313
305
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxDropdown, never>;
|
|
314
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdown, "ix-dropdown", never, { "
|
|
306
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdown, "ix-dropdown", never, { "anchor": "anchor"; "closeBehavior": "closeBehavior"; "header": "header"; "placement": "placement"; "positioningStrategy": "positioningStrategy"; "show": "show"; "suppressAutomaticPlacement": "suppressAutomaticPlacement"; "trigger": "trigger"; }, {}, never, ["*"]>;
|
|
315
307
|
}
|
|
316
308
|
export declare interface IxDropdown extends Components.IxDropdown {
|
|
317
309
|
/**
|
|
@@ -324,10 +316,19 @@ export declare class IxDropdownButton {
|
|
|
324
316
|
protected el: HTMLElement;
|
|
325
317
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
326
318
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxDropdownButton, never>;
|
|
327
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdownButton, "ix-dropdown-button", never, { "active": "active"; "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "label": "label"; "outline": "outline"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
319
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdownButton, "ix-dropdown-button", never, { "active": "active"; "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "label": "label"; "outline": "outline"; "placement": "placement"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
328
320
|
}
|
|
329
321
|
export declare interface IxDropdownButton extends Components.IxDropdownButton {
|
|
330
322
|
}
|
|
323
|
+
export declare class IxDropdownHeader {
|
|
324
|
+
protected z: NgZone;
|
|
325
|
+
protected el: HTMLElement;
|
|
326
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
327
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxDropdownHeader, never>;
|
|
328
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdownHeader, "ix-dropdown-header", never, { "label": "label"; }, {}, never, ["*"]>;
|
|
329
|
+
}
|
|
330
|
+
export declare interface IxDropdownHeader extends Components.IxDropdownHeader {
|
|
331
|
+
}
|
|
331
332
|
export declare class IxDropdownItem {
|
|
332
333
|
protected z: NgZone;
|
|
333
334
|
protected el: HTMLElement;
|
|
@@ -403,7 +404,7 @@ export declare class IxFilterChip {
|
|
|
403
404
|
protected el: HTMLElement;
|
|
404
405
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
405
406
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxFilterChip, never>;
|
|
406
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxFilterChip, "ix-filter-chip", never, { "disabled": "disabled"; }, {}, never, ["*"]>;
|
|
407
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxFilterChip, "ix-filter-chip", never, { "disabled": "disabled"; "readonly": "readonly"; }, {}, never, ["*"]>;
|
|
407
408
|
}
|
|
408
409
|
export declare interface IxFilterChip extends Components.IxFilterChip {
|
|
409
410
|
/**
|
|
@@ -416,7 +417,7 @@ export declare class IxFlipTile {
|
|
|
416
417
|
protected el: HTMLElement;
|
|
417
418
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
418
419
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxFlipTile, never>;
|
|
419
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxFlipTile, "ix-flip-tile", never, { "
|
|
420
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxFlipTile, "ix-flip-tile", never, { "height": "height"; "state": "state"; "width": "width"; }, {}, never, ["*"]>;
|
|
420
421
|
}
|
|
421
422
|
export declare interface IxFlipTile extends Components.IxFlipTile {
|
|
422
423
|
}
|
|
@@ -429,6 +430,24 @@ export declare class IxFlipTileContent {
|
|
|
429
430
|
}
|
|
430
431
|
export declare interface IxFlipTileContent extends Components.IxFlipTileContent {
|
|
431
432
|
}
|
|
433
|
+
export declare class IxFormField {
|
|
434
|
+
protected z: NgZone;
|
|
435
|
+
protected el: HTMLElement;
|
|
436
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
437
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxFormField, never>;
|
|
438
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxFormField, "ix-form-field", never, { "label": "label"; }, {}, never, ["*"]>;
|
|
439
|
+
}
|
|
440
|
+
export declare interface IxFormField extends Components.IxFormField {
|
|
441
|
+
}
|
|
442
|
+
export declare class IxGrid {
|
|
443
|
+
protected z: NgZone;
|
|
444
|
+
protected el: HTMLElement;
|
|
445
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
446
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxGrid, never>;
|
|
447
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxGrid, "ix-grid", never, { "columns": "columns"; "noPadding": "noPadding"; "noRowGap": "noRowGap"; }, {}, never, ["*"]>;
|
|
448
|
+
}
|
|
449
|
+
export declare interface IxGrid extends Components.IxGrid {
|
|
450
|
+
}
|
|
432
451
|
export declare class IxGroup {
|
|
433
452
|
protected z: NgZone;
|
|
434
453
|
protected el: HTMLElement;
|
|
@@ -459,15 +478,6 @@ export declare class IxGroupContextMenu {
|
|
|
459
478
|
}
|
|
460
479
|
export declare interface IxGroupContextMenu extends Components.IxGroupContextMenu {
|
|
461
480
|
}
|
|
462
|
-
export declare class IxGroupDropdownItem {
|
|
463
|
-
protected z: NgZone;
|
|
464
|
-
protected el: HTMLElement;
|
|
465
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
466
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IxGroupDropdownItem, never>;
|
|
467
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxGroupDropdownItem, "ix-group-dropdown-item", never, { "icon": "icon"; "label": "label"; }, {}, never, ["*"]>;
|
|
468
|
-
}
|
|
469
|
-
export declare interface IxGroupDropdownItem extends Components.IxGroupDropdownItem {
|
|
470
|
-
}
|
|
471
481
|
export declare class IxGroupItem {
|
|
472
482
|
protected z: NgZone;
|
|
473
483
|
protected el: HTMLElement;
|
|
@@ -495,10 +505,23 @@ export declare class IxIconButton {
|
|
|
495
505
|
protected el: HTMLElement;
|
|
496
506
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
497
507
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxIconButton, never>;
|
|
498
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxIconButton, "ix-icon-button", never, { "color": "color"; "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "
|
|
508
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxIconButton, "ix-icon-button", never, { "color": "color"; "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "loading": "loading"; "outline": "outline"; "oval": "oval"; "size": "size"; "type": "type"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
499
509
|
}
|
|
500
510
|
export declare interface IxIconButton extends Components.IxIconButton {
|
|
501
511
|
}
|
|
512
|
+
export declare class IxIconToggleButton {
|
|
513
|
+
protected z: NgZone;
|
|
514
|
+
protected el: HTMLElement;
|
|
515
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
516
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxIconToggleButton, never>;
|
|
517
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxIconToggleButton, "ix-icon-toggle-button", never, { "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "loading": "loading"; "outline": "outline"; "pressed": "pressed"; "size": "size"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
518
|
+
}
|
|
519
|
+
export declare interface IxIconToggleButton extends Components.IxIconToggleButton {
|
|
520
|
+
/**
|
|
521
|
+
* Pressed change event
|
|
522
|
+
*/
|
|
523
|
+
pressedChange: EventEmitter<CustomEvent<boolean>>;
|
|
524
|
+
}
|
|
502
525
|
export declare class IxInputGroup {
|
|
503
526
|
protected z: NgZone;
|
|
504
527
|
protected el: HTMLElement;
|
|
@@ -535,6 +558,15 @@ export declare class IxKpi {
|
|
|
535
558
|
}
|
|
536
559
|
export declare interface IxKpi extends Components.IxKpi {
|
|
537
560
|
}
|
|
561
|
+
export declare class IxLinkButton {
|
|
562
|
+
protected z: NgZone;
|
|
563
|
+
protected el: HTMLElement;
|
|
564
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
565
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxLinkButton, never>;
|
|
566
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxLinkButton, "ix-link-button", never, { "disabled": "disabled"; "target": "target"; "url": "url"; }, {}, never, ["*"]>;
|
|
567
|
+
}
|
|
568
|
+
export declare interface IxLinkButton extends Components.IxLinkButton {
|
|
569
|
+
}
|
|
538
570
|
export declare class IxMapNavigation {
|
|
539
571
|
protected z: NgZone;
|
|
540
572
|
protected el: HTMLElement;
|
|
@@ -570,7 +602,7 @@ export declare class IxMenu {
|
|
|
570
602
|
protected el: HTMLElement;
|
|
571
603
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
572
604
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxMenu, never>;
|
|
573
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxMenu, "ix-menu", never, { "applicationDescription": "applicationDescription"; "applicationName": "applicationName"; "enableMapExpand": "enableMapExpand"; "enableSettings": "enableSettings"; "enableToggleTheme": "enableToggleTheme"; "expand": "expand"; "i18nCollapse": "i18nCollapse"; "i18nExpand": "i18nExpand"; "
|
|
605
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxMenu, "ix-menu", never, { "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"; }, {}, never, ["*"]>;
|
|
574
606
|
}
|
|
575
607
|
export declare interface IxMenu extends Components.IxMenu {
|
|
576
608
|
/**
|
|
@@ -593,7 +625,10 @@ export declare interface IxMenuAbout extends Components.IxMenuAbout {
|
|
|
593
625
|
/**
|
|
594
626
|
* About and Legal closed
|
|
595
627
|
*/
|
|
596
|
-
close: EventEmitter<CustomEvent<
|
|
628
|
+
close: EventEmitter<CustomEvent<{
|
|
629
|
+
nativeEvent: MouseEvent;
|
|
630
|
+
name: string;
|
|
631
|
+
}>>;
|
|
597
632
|
}
|
|
598
633
|
export declare class IxMenuAboutItem {
|
|
599
634
|
protected z: NgZone;
|
|
@@ -647,12 +682,21 @@ export declare interface IxMenuAvatarItem extends Components.IxMenuAvatarItem {
|
|
|
647
682
|
*/
|
|
648
683
|
itemClick: EventEmitter<CustomEvent<MouseEvent>>;
|
|
649
684
|
}
|
|
685
|
+
export declare class IxMenuCategory {
|
|
686
|
+
protected z: NgZone;
|
|
687
|
+
protected el: HTMLElement;
|
|
688
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
689
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuCategory, never>;
|
|
690
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuCategory, "ix-menu-category", never, { "icon": "icon"; "label": "label"; "notifications": "notifications"; }, {}, never, ["*"]>;
|
|
691
|
+
}
|
|
692
|
+
export declare interface IxMenuCategory extends Components.IxMenuCategory {
|
|
693
|
+
}
|
|
650
694
|
export declare class IxMenuItem {
|
|
651
695
|
protected z: NgZone;
|
|
652
696
|
protected el: HTMLElement;
|
|
653
697
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
654
698
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuItem, never>;
|
|
655
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuItem, "ix-menu-item", never, { "active": "active"; "bottom": "bottom"; "disabled": "disabled"; "home": "home"; "notifications": "notifications"; "tabIcon": "tabIcon"; }, {}, never, ["*"]>;
|
|
699
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuItem, "ix-menu-item", never, { "active": "active"; "bottom": "bottom"; "disabled": "disabled"; "home": "home"; "icon": "icon"; "notifications": "notifications"; "tabIcon": "tabIcon"; }, {}, never, ["*"]>;
|
|
656
700
|
}
|
|
657
701
|
export declare interface IxMenuItem extends Components.IxMenuItem {
|
|
658
702
|
}
|
|
@@ -667,7 +711,10 @@ export declare interface IxMenuSettings extends Components.IxMenuSettings {
|
|
|
667
711
|
/**
|
|
668
712
|
* Popover closed
|
|
669
713
|
*/
|
|
670
|
-
close: EventEmitter<CustomEvent<
|
|
714
|
+
close: EventEmitter<CustomEvent<{
|
|
715
|
+
nativeEvent: MouseEvent;
|
|
716
|
+
name: string;
|
|
717
|
+
}>>;
|
|
671
718
|
}
|
|
672
719
|
export declare class IxMenuSettingsItem {
|
|
673
720
|
protected z: NgZone;
|
|
@@ -696,26 +743,26 @@ export declare class IxModal {
|
|
|
696
743
|
protected el: HTMLElement;
|
|
697
744
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
698
745
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxModal, never>;
|
|
699
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxModal, "ix-modal", never, { "animation": "animation"; "
|
|
746
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxModal, "ix-modal", never, { "animation": "animation"; "backdrop": "backdrop"; "beforeDismiss": "beforeDismiss"; "centered": "centered"; "closeOnBackdropClick": "closeOnBackdropClick"; "keyboard": "keyboard"; "size": "size"; }, {}, never, ["*"]>;
|
|
700
747
|
}
|
|
701
748
|
export declare interface IxModal extends Components.IxModal {
|
|
702
749
|
/**
|
|
703
|
-
*
|
|
750
|
+
* Dialog close
|
|
704
751
|
*/
|
|
705
|
-
|
|
752
|
+
dialogClose: EventEmitter<CustomEvent<any>>;
|
|
706
753
|
/**
|
|
707
|
-
*
|
|
754
|
+
* Dialog cancel
|
|
708
755
|
*/
|
|
709
|
-
|
|
756
|
+
dialogDismiss: EventEmitter<CustomEvent<any>>;
|
|
710
757
|
}
|
|
711
|
-
export declare class
|
|
758
|
+
export declare class IxModalContent {
|
|
712
759
|
protected z: NgZone;
|
|
713
760
|
protected el: HTMLElement;
|
|
714
761
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
715
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
716
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
762
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxModalContent, never>;
|
|
763
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxModalContent, "ix-modal-content", never, {}, {}, never, ["*"]>;
|
|
717
764
|
}
|
|
718
|
-
export declare interface
|
|
765
|
+
export declare interface IxModalContent extends Components.IxModalContent {
|
|
719
766
|
}
|
|
720
767
|
export declare class IxModalExample {
|
|
721
768
|
protected z: NgZone;
|
|
@@ -726,6 +773,28 @@ export declare class IxModalExample {
|
|
|
726
773
|
}
|
|
727
774
|
export declare interface IxModalExample extends Components.IxModalExample {
|
|
728
775
|
}
|
|
776
|
+
export declare class IxModalFooter {
|
|
777
|
+
protected z: NgZone;
|
|
778
|
+
protected el: HTMLElement;
|
|
779
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
780
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxModalFooter, never>;
|
|
781
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxModalFooter, "ix-modal-footer", never, {}, {}, never, ["*"]>;
|
|
782
|
+
}
|
|
783
|
+
export declare interface IxModalFooter extends Components.IxModalFooter {
|
|
784
|
+
}
|
|
785
|
+
export declare class IxModalHeader {
|
|
786
|
+
protected z: NgZone;
|
|
787
|
+
protected el: HTMLElement;
|
|
788
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
789
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxModalHeader, never>;
|
|
790
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxModalHeader, "ix-modal-header", never, { "hideClose": "hideClose"; "icon": "icon"; "iconColor": "iconColor"; }, {}, never, ["*"]>;
|
|
791
|
+
}
|
|
792
|
+
export declare interface IxModalHeader extends Components.IxModalHeader {
|
|
793
|
+
/**
|
|
794
|
+
* Close icon is clicked
|
|
795
|
+
*/
|
|
796
|
+
closeClick: EventEmitter<CustomEvent<MouseEvent>>;
|
|
797
|
+
}
|
|
729
798
|
export declare class IxPagination {
|
|
730
799
|
protected z: NgZone;
|
|
731
800
|
protected el: HTMLElement;
|
|
@@ -761,18 +830,35 @@ export declare class IxPushCard {
|
|
|
761
830
|
}
|
|
762
831
|
export declare interface IxPushCard extends Components.IxPushCard {
|
|
763
832
|
}
|
|
833
|
+
export declare class IxRow {
|
|
834
|
+
protected z: NgZone;
|
|
835
|
+
protected el: HTMLElement;
|
|
836
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
837
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxRow, never>;
|
|
838
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxRow, "ix-row", never, {}, {}, never, ["*"]>;
|
|
839
|
+
}
|
|
840
|
+
export declare interface IxRow extends Components.IxRow {
|
|
841
|
+
}
|
|
764
842
|
export declare class IxSelect {
|
|
765
843
|
protected z: NgZone;
|
|
766
844
|
protected el: HTMLElement;
|
|
767
845
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
768
846
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxSelect, never>;
|
|
769
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxSelect, "ix-select", never, { "allowClear": "allowClear"; "disabled": "disabled"; "editable": "editable"; "hideListHeader": "hideListHeader"; "i18nNoMatches": "i18nNoMatches"; "i18nPlaceholder": "i18nPlaceholder"; "i18nPlaceholderEditable": "i18nPlaceholderEditable"; "i18nSelectListHeader": "i18nSelectListHeader"; "mode": "mode"; "readonly": "readonly"; "selectedIndices": "selectedIndices"; }, {}, never, ["*"]>;
|
|
847
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxSelect, "ix-select", never, { "allowClear": "allowClear"; "disabled": "disabled"; "editable": "editable"; "hideListHeader": "hideListHeader"; "i18nNoMatches": "i18nNoMatches"; "i18nPlaceholder": "i18nPlaceholder"; "i18nPlaceholderEditable": "i18nPlaceholderEditable"; "i18nSelectListHeader": "i18nSelectListHeader"; "mode": "mode"; "readonly": "readonly"; "selectedIndices": "selectedIndices"; "value": "value"; }, {}, never, ["*"]>;
|
|
770
848
|
}
|
|
771
849
|
export declare interface IxSelect extends Components.IxSelect {
|
|
772
850
|
/**
|
|
773
|
-
*
|
|
851
|
+
* Value changed @since 2.0.0
|
|
774
852
|
*/
|
|
775
|
-
|
|
853
|
+
valueChange: EventEmitter<CustomEvent<string | string[]>>;
|
|
854
|
+
/**
|
|
855
|
+
* Item selection changed @deprecated since 2.0.0. Use `valueChange` instead.
|
|
856
|
+
*/
|
|
857
|
+
itemSelectionChange: EventEmitter<CustomEvent<string[]>>;
|
|
858
|
+
/**
|
|
859
|
+
* Event dispatched whenever the text input changes. @since 2.0.0
|
|
860
|
+
*/
|
|
861
|
+
inputChange: EventEmitter<CustomEvent<string>>;
|
|
776
862
|
/**
|
|
777
863
|
* Item added to selection
|
|
778
864
|
*/
|
|
@@ -805,7 +891,7 @@ export declare class IxSplitButton {
|
|
|
805
891
|
protected el: HTMLElement;
|
|
806
892
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
807
893
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxSplitButton, never>;
|
|
808
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxSplitButton, "ix-split-button", never, { "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "
|
|
894
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxSplitButton, "ix-split-button", never, { "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "label": "label"; "outline": "outline"; "placement": "placement"; "splitIcon": "splitIcon"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
809
895
|
}
|
|
810
896
|
export declare interface IxSplitButton extends Components.IxSplitButton {
|
|
811
897
|
/**
|
|
@@ -834,6 +920,10 @@ export declare class IxTabItem {
|
|
|
834
920
|
static ɵcmp: i0.ɵɵComponentDeclaration<IxTabItem, "ix-tab-item", never, { "counter": "counter"; "disabled": "disabled"; "icon": "icon"; "layout": "layout"; "placement": "placement"; "rounded": "rounded"; "selected": "selected"; "small": "small"; }, {}, never, ["*"]>;
|
|
835
921
|
}
|
|
836
922
|
export declare interface IxTabItem extends Components.IxTabItem {
|
|
923
|
+
/**
|
|
924
|
+
* On tab click @since 2.0.0
|
|
925
|
+
*/
|
|
926
|
+
tabClick: EventEmitter<CustomEvent<IIxTabItemTabClickDetail>>;
|
|
837
927
|
}
|
|
838
928
|
export declare class IxTabs {
|
|
839
929
|
protected z: NgZone;
|
|
@@ -843,6 +933,10 @@ export declare class IxTabs {
|
|
|
843
933
|
static ɵcmp: i0.ɵɵComponentDeclaration<IxTabs, "ix-tabs", never, { "layout": "layout"; "placement": "placement"; "rounded": "rounded"; "selected": "selected"; "small": "small"; }, {}, never, ["*"]>;
|
|
844
934
|
}
|
|
845
935
|
export declare interface IxTabs extends Components.IxTabs {
|
|
936
|
+
/**
|
|
937
|
+
* `selected` property changed @since 2.0.0
|
|
938
|
+
*/
|
|
939
|
+
selectedChange: EventEmitter<CustomEvent<number>>;
|
|
846
940
|
}
|
|
847
941
|
export declare class IxTile {
|
|
848
942
|
protected z: NgZone;
|
|
@@ -897,7 +991,7 @@ export declare class IxToggle {
|
|
|
897
991
|
protected el: HTMLElement;
|
|
898
992
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
899
993
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxToggle, never>;
|
|
900
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxToggle, "ix-toggle", never, { "checked": "checked"; "
|
|
994
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxToggle, "ix-toggle", never, { "checked": "checked"; "disabled": "disabled"; "hideText": "hideText"; "indeterminate": "indeterminate"; "textIndeterminate": "textIndeterminate"; "textOff": "textOff"; "textOn": "textOn"; }, {}, never, ["*"]>;
|
|
901
995
|
}
|
|
902
996
|
export declare interface IxToggle extends Components.IxToggle {
|
|
903
997
|
/**
|
|
@@ -905,6 +999,19 @@ export declare interface IxToggle extends Components.IxToggle {
|
|
|
905
999
|
*/
|
|
906
1000
|
checkedChange: EventEmitter<CustomEvent<boolean>>;
|
|
907
1001
|
}
|
|
1002
|
+
export declare class IxToggleButton {
|
|
1003
|
+
protected z: NgZone;
|
|
1004
|
+
protected el: HTMLElement;
|
|
1005
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1006
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxToggleButton, never>;
|
|
1007
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxToggleButton, "ix-toggle-button", never, { "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "loading": "loading"; "outline": "outline"; "pressed": "pressed"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
1008
|
+
}
|
|
1009
|
+
export declare interface IxToggleButton extends Components.IxToggleButton {
|
|
1010
|
+
/**
|
|
1011
|
+
* Pressed change event
|
|
1012
|
+
*/
|
|
1013
|
+
pressedChange: EventEmitter<CustomEvent<boolean>>;
|
|
1014
|
+
}
|
|
908
1015
|
export declare class IxTooltip {
|
|
909
1016
|
protected z: NgZone;
|
|
910
1017
|
protected el: HTMLElement;
|
|
@@ -931,6 +1038,15 @@ export declare interface IxTreeItem extends Components.IxTreeItem {
|
|
|
931
1038
|
*/
|
|
932
1039
|
itemClick: EventEmitter<CustomEvent<void>>;
|
|
933
1040
|
}
|
|
1041
|
+
export declare class IxTypography {
|
|
1042
|
+
protected z: NgZone;
|
|
1043
|
+
protected el: HTMLElement;
|
|
1044
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1045
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxTypography, never>;
|
|
1046
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxTypography, "ix-typography", never, { "bold": "bold"; "color": "color"; "format": "format"; "textDecoration": "textDecoration"; }, {}, never, ["*"]>;
|
|
1047
|
+
}
|
|
1048
|
+
export declare interface IxTypography extends Components.IxTypography {
|
|
1049
|
+
}
|
|
934
1050
|
export declare class IxUpload {
|
|
935
1051
|
protected z: NgZone;
|
|
936
1052
|
protected el: HTMLElement;
|
|
@@ -949,7 +1065,7 @@ export declare class IxValidationTooltip {
|
|
|
949
1065
|
protected el: HTMLElement;
|
|
950
1066
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
951
1067
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxValidationTooltip, never>;
|
|
952
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxValidationTooltip, "ix-validation-tooltip", never, { "message": "message"; "placement": "placement"; }, {}, never, ["*"]>;
|
|
1068
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxValidationTooltip, "ix-validation-tooltip", never, { "message": "message"; "placement": "placement"; "suppressAutomaticPlacement": "suppressAutomaticPlacement"; }, {}, never, ["*"]>;
|
|
953
1069
|
}
|
|
954
1070
|
export declare interface IxValidationTooltip extends Components.IxValidationTooltip {
|
|
955
1071
|
}
|
|
@@ -958,7 +1074,7 @@ export declare class IxWorkflowStep {
|
|
|
958
1074
|
protected el: HTMLElement;
|
|
959
1075
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
960
1076
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxWorkflowStep, never>;
|
|
961
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxWorkflowStep, "ix-workflow-step", never, { "clickable": "clickable"; "disabled": "disabled"; "
|
|
1077
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxWorkflowStep, "ix-workflow-step", never, { "clickable": "clickable"; "disabled": "disabled"; "selected": "selected"; "status": "status"; "vertical": "vertical"; }, {}, never, ["*"]>;
|
|
962
1078
|
}
|
|
963
1079
|
export declare interface IxWorkflowStep extends Components.IxWorkflowStep {
|
|
964
1080
|
}
|
|
@@ -967,7 +1083,7 @@ export declare class IxWorkflowSteps {
|
|
|
967
1083
|
protected el: HTMLElement;
|
|
968
1084
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
969
1085
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxWorkflowSteps, never>;
|
|
970
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxWorkflowSteps, "ix-workflow-steps", never, { "clickable": "clickable"; "
|
|
1086
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxWorkflowSteps, "ix-workflow-steps", never, { "clickable": "clickable"; "selectedIndex": "selectedIndex"; "vertical": "vertical"; }, {}, never, ["*"]>;
|
|
971
1087
|
}
|
|
972
1088
|
export declare interface IxWorkflowSteps extends Components.IxWorkflowSteps {
|
|
973
1089
|
/**
|
package/declare-components.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import * as d from './components';
|
|
2
|
-
export declare const DIRECTIVES: (typeof d.IxActionCard | typeof d.
|
|
2
|
+
export declare const DIRECTIVES: (typeof d.IxActionCard | typeof d.IxApplicationHeader | typeof d.IxAvatar | typeof d.IxBasicNavigation | typeof d.IxBlind | typeof d.IxBreadcrumb | typeof d.IxBreadcrumbItem | typeof d.IxButton | typeof d.IxCard | typeof d.IxCardAccordion | typeof d.IxCardContent | typeof d.IxCardList | typeof d.IxCardTitle | typeof d.IxCategoryFilter | typeof d.IxChip | typeof d.IxCol | typeof d.IxContentHeader | typeof d.IxDatePicker | typeof d.IxDatetimePicker | typeof d.IxDivider | typeof d.IxDrawer | typeof d.IxDropdown | typeof d.IxDropdownButton | typeof d.IxDropdownHeader | typeof d.IxDropdownItem | typeof d.IxDropdownQuickActions | typeof d.IxEmptyState | typeof d.IxEventList | typeof d.IxEventListItem | typeof d.IxExpandingSearch | typeof d.IxFilterChip | typeof d.IxFlipTile | typeof d.IxFlipTileContent | typeof d.IxFormField | typeof d.IxGrid | typeof d.IxGroup | typeof d.IxGroupContextMenu | typeof d.IxGroupItem | typeof d.IxIcon | typeof d.IxIconButton | typeof d.IxIconToggleButton | typeof d.IxInputGroup | typeof d.IxKeyValue | typeof d.IxKeyValueList | typeof d.IxKpi | typeof d.IxLinkButton | typeof d.IxMapNavigation | typeof d.IxMapNavigationOverlay | typeof d.IxMenu | typeof d.IxMenuAbout | typeof d.IxMenuAboutItem | typeof d.IxMenuAboutNews | typeof d.IxMenuAvatar | typeof d.IxMenuAvatarItem | typeof d.IxMenuCategory | typeof d.IxMenuItem | typeof d.IxMenuSettings | typeof d.IxMenuSettingsItem | typeof d.IxMessageBar | typeof d.IxModal | typeof d.IxModalContent | typeof d.IxModalExample | typeof d.IxModalFooter | typeof d.IxModalHeader | typeof d.IxPagination | typeof d.IxPill | typeof d.IxPushCard | typeof d.IxRow | typeof d.IxSelect | typeof d.IxSelectItem | typeof d.IxSpinner | typeof d.IxSplitButton | typeof d.IxSplitButtonItem | typeof d.IxTabItem | typeof d.IxTabs | typeof d.IxTile | typeof d.IxTimePicker | typeof d.IxToast | typeof d.IxToastContainer | typeof d.IxToggle | typeof d.IxToggleButton | typeof d.IxTooltip | typeof d.IxTreeItem | typeof d.IxTypography | typeof d.IxUpload | typeof d.IxValidationTooltip | typeof d.IxWorkflowStep | typeof d.IxWorkflowSteps)[];
|