@siemens/ix-angular 0.0.0-pr-1724-20250305102750 → 0.0.0-pr-1974-20250624072317
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/READMEOSS.html +473 -0
- package/{control-value-accessors → common/directives/control-value-accessors}/boolean-value-accessor.d.ts +3 -3
- package/common/directives/control-value-accessors/date-value-accessor.d.ts +9 -0
- package/{control-value-accessors → common/directives/control-value-accessors}/radio-value-accessor.d.ts +3 -3
- package/{control-value-accessors → common/directives/control-value-accessors}/select-value-accessor.d.ts +3 -3
- package/common/directives/control-value-accessors/text-value-accessor.d.ts +9 -0
- package/{control-value-accessors → common/directives/control-value-accessors}/value-accessor.d.ts +1 -1
- package/common/directives/dropdown-trigger.d.ts +10 -0
- package/{tree → common/directives}/tree.d.ts +6 -6
- package/common/index.d.ts +6 -0
- package/common/providers/modal/index.d.ts +3 -0
- package/{modal → common/providers/modal}/modal.config.d.ts +1 -1
- package/{modal → common/providers/modal}/modal.service.d.ts +5 -0
- package/{toast → common/providers/toast}/index.d.ts +1 -0
- package/{toast → common/providers/toast}/toast.config.d.ts +1 -1
- package/common/utils/create-value-accessor-provider.d.ts +2 -0
- package/components.d.ts +256 -248
- package/declare-components.d.ts +1 -1
- package/directives/control-value-accessors/boolean-value-accessor.d.ts +8 -0
- package/directives/control-value-accessors/date-value-accessor.d.ts +8 -0
- package/directives/control-value-accessors/index.d.ts +5 -0
- package/directives/control-value-accessors/radio-value-accessor.d.ts +8 -0
- package/directives/control-value-accessors/select-value-accessor.d.ts +8 -0
- package/directives/control-value-accessors/text-value-accessor.d.ts +8 -0
- package/directives/dropdown-trigger.d.ts +10 -0
- package/{esm2020 → esm2022}/angular-component-lib/utils.mjs +1 -1
- package/esm2022/common/directives/control-value-accessors/boolean-value-accessor.mjs +32 -0
- package/esm2022/common/directives/control-value-accessors/date-value-accessor.mjs +28 -0
- package/esm2022/common/directives/control-value-accessors/index.mjs +14 -0
- package/esm2022/common/directives/control-value-accessors/radio-value-accessor.mjs +34 -0
- package/esm2022/common/directives/control-value-accessors/select-value-accessor.mjs +28 -0
- package/esm2022/common/directives/control-value-accessors/text-value-accessor.mjs +31 -0
- package/esm2022/common/directives/control-value-accessors/value-accessor.mjs +157 -0
- package/esm2022/common/directives/dropdown-trigger.mjs +28 -0
- package/esm2022/common/directives/tree.mjs +70 -0
- package/esm2022/common/index.mjs +15 -0
- package/esm2022/common/providers/modal/index.mjs +11 -0
- package/esm2022/common/providers/modal/modal-ref.mjs +41 -0
- package/esm2022/common/providers/modal/modal.config.mjs +10 -0
- package/esm2022/common/providers/modal/modal.service.mjs +90 -0
- package/esm2022/common/providers/toast/index.mjs +11 -0
- package/esm2022/common/providers/toast/toast.config.mjs +10 -0
- package/esm2022/common/providers/toast/toast.service.mjs +52 -0
- package/esm2022/common/siemens-ix-angular-common.mjs +5 -0
- package/esm2022/common/utils/create-value-accessor-provider.mjs +17 -0
- package/esm2022/components.mjs +2865 -0
- package/{esm2020 → esm2022}/declare-components.mjs +3 -2
- package/esm2022/directives/control-value-accessors/boolean-value-accessor.mjs +26 -0
- package/esm2022/directives/control-value-accessors/date-value-accessor.mjs +26 -0
- package/esm2022/directives/control-value-accessors/index.mjs +14 -0
- package/esm2022/directives/control-value-accessors/radio-value-accessor.mjs +26 -0
- package/esm2022/directives/control-value-accessors/select-value-accessor.mjs +26 -0
- package/esm2022/directives/control-value-accessors/text-value-accessor.mjs +26 -0
- package/esm2022/directives/dropdown-trigger.mjs +31 -0
- package/esm2022/index.mjs +19 -0
- package/esm2022/ix-icon.mjs +40 -0
- package/esm2022/module.mjs +78 -0
- package/esm2022/providers/modal/index.mjs +11 -0
- package/esm2022/providers/modal/modal.service.mjs +28 -0
- package/esm2022/providers/theme/index.mjs +10 -0
- package/esm2022/providers/theme/theme.service.mjs +40 -0
- package/esm2022/providers/toast/index.mjs +2 -0
- package/esm2022/providers/toast/toast.service.mjs +52 -0
- package/esm2022/standalone/angular-component-lib/utils.mjs +59 -0
- package/esm2022/standalone/components.mjs +3188 -0
- package/esm2022/standalone/directives/control-value-accessors/boolean-value-accessor.mjs +30 -0
- package/esm2022/standalone/directives/control-value-accessors/date-value-accessor.mjs +30 -0
- package/esm2022/standalone/directives/control-value-accessors/index.mjs +14 -0
- package/esm2022/standalone/directives/control-value-accessors/radio-value-accessor.mjs +30 -0
- package/esm2022/standalone/directives/control-value-accessors/select-value-accessor.mjs +30 -0
- package/esm2022/standalone/directives/control-value-accessors/text-value-accessor.mjs +30 -0
- package/esm2022/standalone/directives/dropdown-trigger.mjs +32 -0
- package/esm2022/standalone/index.mjs +18 -0
- package/esm2022/standalone/internal-components.mjs +19 -0
- package/esm2022/standalone/ix-icon.mjs +44 -0
- package/esm2022/standalone/providers/modal.mjs +28 -0
- package/esm2022/standalone/providers/toast.mjs +35 -0
- package/esm2022/standalone/siemens-ix-angular-standalone.mjs +5 -0
- package/esm2022/standalone/tree.mjs +41 -0
- package/esm2022/standalone/utils/value-accessor-directives.mjs +23 -0
- package/esm2022/tree.mjs +39 -0
- package/esm2022/utils/app-initialize.mjs +25 -0
- package/fesm2022/siemens-ix-angular-common.mjs +633 -0
- package/fesm2022/siemens-ix-angular-common.mjs.map +1 -0
- package/fesm2022/siemens-ix-angular-standalone.mjs +3478 -0
- package/fesm2022/siemens-ix-angular-standalone.mjs.map +1 -0
- package/fesm2022/siemens-ix-angular.mjs +3363 -0
- package/fesm2022/siemens-ix-angular.mjs.map +1 -0
- package/index.d.ts +6 -6
- package/ix-icon.d.ts +2 -2
- package/module.d.ts +9 -9
- package/package.json +21 -15
- package/providers/modal/index.d.ts +2 -0
- package/providers/modal/modal.service.d.ts +15 -0
- package/{theme → providers/theme}/theme.service.d.ts +3 -2
- package/providers/toast/index.d.ts +2 -0
- package/providers/toast/toast.service.d.ts +9 -0
- package/standalone/angular-component-lib/utils.d.ts +9 -0
- package/standalone/components.d.ts +1369 -0
- package/standalone/directives/control-value-accessors/boolean-value-accessor.d.ts +11 -0
- package/standalone/directives/control-value-accessors/date-value-accessor.d.ts +11 -0
- package/standalone/directives/control-value-accessors/index.d.ts +5 -0
- package/standalone/directives/control-value-accessors/radio-value-accessor.d.ts +11 -0
- package/standalone/directives/control-value-accessors/select-value-accessor.d.ts +11 -0
- package/standalone/directives/control-value-accessors/text-value-accessor.d.ts +11 -0
- package/{dropdown/trigger.directive.d.ts → standalone/directives/dropdown-trigger.d.ts} +3 -3
- package/standalone/index.d.ts +9 -0
- package/standalone/internal-components.d.ts +1 -0
- package/standalone/ix-icon.d.ts +9 -0
- package/standalone/providers/modal.d.ts +11 -0
- package/standalone/providers/toast.d.ts +11 -0
- package/standalone/tree.d.ts +9 -0
- package/standalone/utils/value-accessor-directives.d.ts +16 -0
- package/tree.d.ts +9 -0
- package/utils/app-initialize.d.ts +1 -0
- package/app-initialize.d.ts +0 -1
- package/control-value-accessors/date-value-accessor.d.ts +0 -9
- package/control-value-accessors/text-value-accessor.d.ts +0 -9
- package/esm2020/app-initialize.mjs +0 -25
- package/esm2020/components.mjs +0 -2632
- package/esm2020/control-value-accessors/boolean-value-accessor.mjs +0 -49
- package/esm2020/control-value-accessors/date-value-accessor.mjs +0 -45
- package/esm2020/control-value-accessors/index.mjs +0 -14
- package/esm2020/control-value-accessors/radio-value-accessor.mjs +0 -51
- package/esm2020/control-value-accessors/select-value-accessor.mjs +0 -45
- package/esm2020/control-value-accessors/text-value-accessor.mjs +0 -48
- package/esm2020/control-value-accessors/value-accessor.mjs +0 -152
- package/esm2020/dropdown/trigger.directive.mjs +0 -29
- package/esm2020/index.mjs +0 -19
- package/esm2020/ix-icon.mjs +0 -38
- package/esm2020/modal/index.mjs +0 -11
- package/esm2020/modal/modal-ref.mjs +0 -39
- package/esm2020/modal/modal.config.mjs +0 -10
- package/esm2020/modal/modal.service.mjs +0 -87
- package/esm2020/module.mjs +0 -78
- package/esm2020/theme/index.mjs +0 -10
- package/esm2020/theme/theme.service.mjs +0 -38
- package/esm2020/toast/index.mjs +0 -10
- package/esm2020/toast/toast.config.mjs +0 -10
- package/esm2020/toast/toast.service.mjs +0 -52
- package/esm2020/tree/index.mjs +0 -10
- package/esm2020/tree/tree.mjs +0 -81
- package/fesm2015/siemens-ix-angular.mjs +0 -3508
- package/fesm2015/siemens-ix-angular.mjs.map +0 -1
- package/fesm2020/siemens-ix-angular.mjs +0 -3532
- package/fesm2020/siemens-ix-angular.mjs.map +0 -1
- package/modal/index.d.ts +0 -2
- package/tree/index.d.ts +0 -1
- /package/{control-value-accessors → common/directives/control-value-accessors}/index.d.ts +0 -0
- /package/{modal → common/providers/modal}/modal-ref.d.ts +0 -0
- /package/{toast → common/providers/toast}/toast.service.d.ts +0 -0
- /package/{esm2020 → esm2022}/siemens-ix-angular.mjs +0 -0
- /package/{theme → providers/theme}/index.d.ts +0 -0
package/components.d.ts
CHANGED
|
@@ -15,35 +15,36 @@ import type { ExpandedChangedEvent as IIxPaneExpandedChangedEvent } from '@sieme
|
|
|
15
15
|
import type { VariantChangedEvent as IIxPaneVariantChangedEvent } from '@siemens/ix';
|
|
16
16
|
import type { BorderlessChangedEvent as IIxPaneBorderlessChangedEvent } from '@siemens/ix';
|
|
17
17
|
import type { TabClickDetail as IIxTabItemTabClickDetail } from '@siemens/ix';
|
|
18
|
+
import type { TimeInputValidityState as IIxTimeInputTimeInputValidityState } from '@siemens/ix';
|
|
18
19
|
import * as i0 from "@angular/core";
|
|
19
20
|
export declare class IxActionCard {
|
|
20
21
|
protected z: NgZone;
|
|
21
|
-
protected el:
|
|
22
|
+
protected el: HTMLIxActionCardElement;
|
|
22
23
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
23
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxActionCard, never>;
|
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxActionCard, "ix-action-card", never, { "heading": "heading"; "icon": "icon"; "selected": "selected"; "subheading": "subheading"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxActionCard, "ix-action-card", never, { "heading": { "alias": "heading"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "subheading": { "alias": "subheading"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
25
26
|
}
|
|
26
27
|
export declare interface IxActionCard extends Components.IxActionCard {
|
|
27
28
|
}
|
|
28
29
|
export declare class IxApplication {
|
|
29
30
|
protected z: NgZone;
|
|
30
|
-
protected el:
|
|
31
|
+
protected el: HTMLIxApplicationElement;
|
|
31
32
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
32
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxApplication, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxApplication, "ix-application", never, { "appSwitchConfig": "appSwitchConfig"; "breakpoints": "breakpoints"; "forceBreakpoint": "forceBreakpoint"; "theme": "theme"; "themeSystemAppearance": "themeSystemAppearance"; }, {}, never, ["*"]>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxApplication, "ix-application", never, { "appSwitchConfig": { "alias": "appSwitchConfig"; "required": false; }; "breakpoints": { "alias": "breakpoints"; "required": false; }; "forceBreakpoint": { "alias": "forceBreakpoint"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "themeSystemAppearance": { "alias": "themeSystemAppearance"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
34
35
|
}
|
|
35
36
|
export declare interface IxApplication extends Components.IxApplication {
|
|
36
37
|
}
|
|
37
38
|
export declare class IxApplicationHeader {
|
|
38
39
|
protected z: NgZone;
|
|
39
|
-
protected el:
|
|
40
|
+
protected el: HTMLIxApplicationHeaderElement;
|
|
40
41
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
41
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxApplicationHeader, never>;
|
|
42
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxApplicationHeader, "ix-application-header", never, { "name": "name"; "showMenu": "showMenu"; }, {}, never, ["*"]>;
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxApplicationHeader, "ix-application-header", never, { "name": { "alias": "name"; "required": false; }; "showMenu": { "alias": "showMenu"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
43
44
|
}
|
|
44
45
|
export declare interface IxApplicationHeader extends Components.IxApplicationHeader {
|
|
45
46
|
/**
|
|
46
|
-
* Event emitted when the menu toggle button is clicked
|
|
47
|
+
* Event emitted when the menu toggle button is clicked
|
|
47
48
|
*/
|
|
48
49
|
menuToggle: EventEmitter<CustomEvent<boolean>>;
|
|
49
50
|
/**
|
|
@@ -53,28 +54,28 @@ export declare interface IxApplicationHeader extends Components.IxApplicationHea
|
|
|
53
54
|
}
|
|
54
55
|
export declare class IxAvatar {
|
|
55
56
|
protected z: NgZone;
|
|
56
|
-
protected el:
|
|
57
|
+
protected el: HTMLIxAvatarElement;
|
|
57
58
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
58
59
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxAvatar, never>;
|
|
59
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxAvatar, "ix-avatar", never, { "extra": "extra"; "image": "image"; "initials": "initials"; "username": "username"; }, {}, never, ["*"]>;
|
|
60
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxAvatar, "ix-avatar", never, { "extra": { "alias": "extra"; "required": false; }; "image": { "alias": "image"; "required": false; }; "initials": { "alias": "initials"; "required": false; }; "username": { "alias": "username"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
60
61
|
}
|
|
61
62
|
export declare interface IxAvatar extends Components.IxAvatar {
|
|
62
63
|
}
|
|
63
64
|
export declare class IxBasicNavigation {
|
|
64
65
|
protected z: NgZone;
|
|
65
|
-
protected el:
|
|
66
|
+
protected el: HTMLIxBasicNavigationElement;
|
|
66
67
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
67
68
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxBasicNavigation, never>;
|
|
68
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxBasicNavigation, "ix-basic-navigation", never, { "applicationName": "applicationName"; "breakpoints": "breakpoints"; "forceBreakpoint": "forceBreakpoint"; "hideHeader": "hideHeader"; }, {}, never, ["*"]>;
|
|
69
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxBasicNavigation, "ix-basic-navigation", never, { "applicationName": { "alias": "applicationName"; "required": false; }; "breakpoints": { "alias": "breakpoints"; "required": false; }; "forceBreakpoint": { "alias": "forceBreakpoint"; "required": false; }; "hideHeader": { "alias": "hideHeader"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
69
70
|
}
|
|
70
71
|
export declare interface IxBasicNavigation extends Components.IxBasicNavigation {
|
|
71
72
|
}
|
|
72
73
|
export declare class IxBlind {
|
|
73
74
|
protected z: NgZone;
|
|
74
|
-
protected el:
|
|
75
|
+
protected el: HTMLIxBlindElement;
|
|
75
76
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
76
77
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxBlind, never>;
|
|
77
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxBlind, "ix-blind", never, { "collapsed": "collapsed"; "icon": "icon"; "label": "label"; "sublabel": "sublabel"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
78
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxBlind, "ix-blind", never, { "collapsed": { "alias": "collapsed"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "sublabel": { "alias": "sublabel"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
78
79
|
}
|
|
79
80
|
export declare interface IxBlind extends Components.IxBlind {
|
|
80
81
|
/**
|
|
@@ -84,10 +85,10 @@ export declare interface IxBlind extends Components.IxBlind {
|
|
|
84
85
|
}
|
|
85
86
|
export declare class IxBreadcrumb {
|
|
86
87
|
protected z: NgZone;
|
|
87
|
-
protected el:
|
|
88
|
+
protected el: HTMLIxBreadcrumbElement;
|
|
88
89
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
89
90
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxBreadcrumb, never>;
|
|
90
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxBreadcrumb, "ix-breadcrumb", never, { "ariaLabelPreviousButton": "ariaLabelPreviousButton"; "ghost": "ghost"; "nextItems": "nextItems"; "visibleItemCount": "visibleItemCount"; }, {}, never, ["*"]>;
|
|
91
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxBreadcrumb, "ix-breadcrumb", never, { "ariaLabelPreviousButton": { "alias": "ariaLabelPreviousButton"; "required": false; }; "ghost": { "alias": "ghost"; "required": false; }; "nextItems": { "alias": "nextItems"; "required": false; }; "visibleItemCount": { "alias": "visibleItemCount"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
91
92
|
}
|
|
92
93
|
export declare interface IxBreadcrumb extends Components.IxBreadcrumb {
|
|
93
94
|
/**
|
|
@@ -104,55 +105,55 @@ export declare interface IxBreadcrumb extends Components.IxBreadcrumb {
|
|
|
104
105
|
}
|
|
105
106
|
export declare class IxBreadcrumbItem {
|
|
106
107
|
protected z: NgZone;
|
|
107
|
-
protected el:
|
|
108
|
+
protected el: HTMLIxBreadcrumbItemElement;
|
|
108
109
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
109
110
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxBreadcrumbItem, never>;
|
|
110
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxBreadcrumbItem, "ix-breadcrumb-item", never, { "icon": "icon"; "label": "label"; }, {}, never, ["*"]>;
|
|
111
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxBreadcrumbItem, "ix-breadcrumb-item", never, { "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
111
112
|
}
|
|
112
113
|
export declare interface IxBreadcrumbItem extends Components.IxBreadcrumbItem {
|
|
113
114
|
}
|
|
114
115
|
export declare class IxButton {
|
|
115
116
|
protected z: NgZone;
|
|
116
|
-
protected el:
|
|
117
|
+
protected el: HTMLIxButtonElement;
|
|
117
118
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
118
119
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxButton, never>;
|
|
119
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxButton, "ix-button", never, { "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "loading": "loading"; "outline": "outline"; "type": "type"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
120
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxButton, "ix-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "ghost": { "alias": "ghost"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "outline": { "alias": "outline"; "required": false; }; "type": { "alias": "type"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
120
121
|
}
|
|
121
122
|
export declare interface IxButton extends Components.IxButton {
|
|
122
123
|
}
|
|
123
124
|
export declare class IxCard {
|
|
124
125
|
protected z: NgZone;
|
|
125
|
-
protected el:
|
|
126
|
+
protected el: HTMLIxCardElement;
|
|
126
127
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
127
128
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxCard, never>;
|
|
128
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxCard, "ix-card", never, { "selected": "selected"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
129
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxCard, "ix-card", never, { "selected": { "alias": "selected"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
129
130
|
}
|
|
130
131
|
export declare interface IxCard extends Components.IxCard {
|
|
131
132
|
}
|
|
132
133
|
export declare class IxCardAccordion {
|
|
133
134
|
protected z: NgZone;
|
|
134
|
-
protected el:
|
|
135
|
+
protected el: HTMLIxCardAccordionElement;
|
|
135
136
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
136
137
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxCardAccordion, never>;
|
|
137
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxCardAccordion, "ix-card-accordion", never, { "collapse": "collapse"; }, {}, never, ["*"]>;
|
|
138
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxCardAccordion, "ix-card-accordion", never, { "collapse": { "alias": "collapse"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
138
139
|
}
|
|
139
140
|
export declare interface IxCardAccordion extends Components.IxCardAccordion {
|
|
140
141
|
}
|
|
141
142
|
export declare class IxCardContent {
|
|
142
143
|
protected z: NgZone;
|
|
143
|
-
protected el:
|
|
144
|
+
protected el: HTMLIxCardContentElement;
|
|
144
145
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
145
146
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxCardContent, never>;
|
|
146
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxCardContent, "ix-card-content", never, {}, {}, never, ["*"]>;
|
|
147
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxCardContent, "ix-card-content", never, {}, {}, never, ["*"], false, never>;
|
|
147
148
|
}
|
|
148
149
|
export declare interface IxCardContent extends Components.IxCardContent {
|
|
149
150
|
}
|
|
150
151
|
export declare class IxCardList {
|
|
151
152
|
protected z: NgZone;
|
|
152
|
-
protected el:
|
|
153
|
+
protected el: HTMLIxCardListElement;
|
|
153
154
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
154
155
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxCardList, never>;
|
|
155
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxCardList, "ix-card-list", never, { "collapse": "collapse"; "hideShowAll": "hideShowAll"; "i18nMoreCards": "i18nMoreCards"; "i18nShowAll": "i18nShowAll"; "label": "label"; "listStyle": "listStyle"; "showAllCount": "showAllCount"; "suppressOverflowHandling": "suppressOverflowHandling"; }, {}, never, ["*"]>;
|
|
156
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxCardList, "ix-card-list", never, { "collapse": { "alias": "collapse"; "required": false; }; "hideShowAll": { "alias": "hideShowAll"; "required": false; }; "i18nMoreCards": { "alias": "i18nMoreCards"; "required": false; }; "i18nShowAll": { "alias": "i18nShowAll"; "required": false; }; "label": { "alias": "label"; "required": false; }; "listStyle": { "alias": "listStyle"; "required": false; }; "showAllCount": { "alias": "showAllCount"; "required": false; }; "suppressOverflowHandling": { "alias": "suppressOverflowHandling"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
156
157
|
}
|
|
157
158
|
export declare interface IxCardList extends Components.IxCardList {
|
|
158
159
|
/**
|
|
@@ -174,19 +175,19 @@ export declare interface IxCardList extends Components.IxCardList {
|
|
|
174
175
|
}
|
|
175
176
|
export declare class IxCardTitle {
|
|
176
177
|
protected z: NgZone;
|
|
177
|
-
protected el:
|
|
178
|
+
protected el: HTMLIxCardTitleElement;
|
|
178
179
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
179
180
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxCardTitle, never>;
|
|
180
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxCardTitle, "ix-card-title", never, {}, {}, never, ["*"]>;
|
|
181
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxCardTitle, "ix-card-title", never, {}, {}, never, ["*"], false, never>;
|
|
181
182
|
}
|
|
182
183
|
export declare interface IxCardTitle extends Components.IxCardTitle {
|
|
183
184
|
}
|
|
184
185
|
export declare class IxCategoryFilter {
|
|
185
186
|
protected z: NgZone;
|
|
186
|
-
protected el:
|
|
187
|
+
protected el: HTMLIxCategoryFilterElement;
|
|
187
188
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
188
189
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxCategoryFilter, never>;
|
|
189
|
-
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"; "staticOperator": "staticOperator"; "suggestions": "suggestions"; }, {}, never, ["*"]>;
|
|
190
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxCategoryFilter, "ix-category-filter", never, { "categories": { "alias": "categories"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "filterState": { "alias": "filterState"; "required": false; }; "hideIcon": { "alias": "hideIcon"; "required": false; }; "i18nPlainText": { "alias": "i18nPlainText"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "labelCategories": { "alias": "labelCategories"; "required": false; }; "nonSelectableCategories": { "alias": "nonSelectableCategories"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "repeatCategories": { "alias": "repeatCategories"; "required": false; }; "staticOperator": { "alias": "staticOperator"; "required": false; }; "suggestions": { "alias": "suggestions"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
190
191
|
}
|
|
191
192
|
export declare interface IxCategoryFilter extends Components.IxCategoryFilter {
|
|
192
193
|
/**
|
|
@@ -208,10 +209,10 @@ export declare interface IxCategoryFilter extends Components.IxCategoryFilter {
|
|
|
208
209
|
}
|
|
209
210
|
export declare class IxCheckbox {
|
|
210
211
|
protected z: NgZone;
|
|
211
|
-
protected el:
|
|
212
|
+
protected el: HTMLIxCheckboxElement;
|
|
212
213
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
213
214
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxCheckbox, never>;
|
|
214
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxCheckbox, "ix-checkbox", never, { "checked": "checked"; "disabled": "disabled"; "indeterminate": "indeterminate"; "label": "label"; "name": "name"; "required": "required"; "value": "value"; }, {}, never, ["*"]>;
|
|
215
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxCheckbox, "ix-checkbox", never, { "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
215
216
|
}
|
|
216
217
|
export declare interface IxCheckbox extends Components.IxCheckbox {
|
|
217
218
|
/**
|
|
@@ -222,53 +223,57 @@ export declare interface IxCheckbox extends Components.IxCheckbox {
|
|
|
222
223
|
* Event emitted when the value of the checkbox changes
|
|
223
224
|
*/
|
|
224
225
|
valueChange: EventEmitter<CustomEvent<string>>;
|
|
226
|
+
/**
|
|
227
|
+
* Event emitted when the checkbox is blurred
|
|
228
|
+
*/
|
|
229
|
+
ixBlur: EventEmitter<CustomEvent<void>>;
|
|
225
230
|
}
|
|
226
231
|
export declare class IxCheckboxGroup {
|
|
227
232
|
protected z: NgZone;
|
|
228
|
-
protected el:
|
|
233
|
+
protected el: HTMLIxCheckboxGroupElement;
|
|
229
234
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
230
235
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxCheckboxGroup, never>;
|
|
231
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxCheckboxGroup, "ix-checkbox-group", never, { "direction": "direction"; "helperText": "helperText"; "infoText": "infoText"; "invalidText": "invalidText"; "label": "label"; "showTextAsTooltip": "showTextAsTooltip"; "validText": "validText"; "warningText": "warningText"; }, {}, never, ["*"]>;
|
|
236
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxCheckboxGroup, "ix-checkbox-group", never, { "direction": { "alias": "direction"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "infoText": { "alias": "infoText"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "showTextAsTooltip": { "alias": "showTextAsTooltip"; "required": false; }; "validText": { "alias": "validText"; "required": false; }; "warningText": { "alias": "warningText"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
232
237
|
}
|
|
233
238
|
export declare interface IxCheckboxGroup extends Components.IxCheckboxGroup {
|
|
234
239
|
}
|
|
235
240
|
export declare class IxChip {
|
|
236
241
|
protected z: NgZone;
|
|
237
|
-
protected el:
|
|
242
|
+
protected el: HTMLIxChipElement;
|
|
238
243
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
239
244
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxChip, never>;
|
|
240
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxChip, "ix-chip", never, { "active": "active"; "background": "background"; "chipColor": "chipColor"; "
|
|
245
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxChip, "ix-chip", never, { "active": { "alias": "active"; "required": false; }; "background": { "alias": "background"; "required": false; }; "centerContent": { "alias": "centerContent"; "required": false; }; "chipColor": { "alias": "chipColor"; "required": false; }; "closable": { "alias": "closable"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "outline": { "alias": "outline"; "required": false; }; "tooltipText": { "alias": "tooltipText"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
241
246
|
}
|
|
242
247
|
export declare interface IxChip extends Components.IxChip {
|
|
243
248
|
/**
|
|
244
|
-
* Fire event if close button is clicked
|
|
249
|
+
* Fire event if close button is clicked
|
|
245
250
|
*/
|
|
246
251
|
closeChip: EventEmitter<CustomEvent<any>>;
|
|
247
252
|
}
|
|
248
253
|
export declare class IxCol {
|
|
249
254
|
protected z: NgZone;
|
|
250
|
-
protected el:
|
|
255
|
+
protected el: HTMLIxColElement;
|
|
251
256
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
252
257
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxCol, never>;
|
|
253
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxCol, "ix-col", never, { "size": "size"; "sizeLg": "sizeLg"; "sizeMd": "sizeMd"; "sizeSm": "sizeSm"; }, {}, never, ["*"]>;
|
|
258
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxCol, "ix-col", never, { "size": { "alias": "size"; "required": false; }; "sizeLg": { "alias": "sizeLg"; "required": false; }; "sizeMd": { "alias": "sizeMd"; "required": false; }; "sizeSm": { "alias": "sizeSm"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
254
259
|
}
|
|
255
260
|
export declare interface IxCol extends Components.IxCol {
|
|
256
261
|
}
|
|
257
262
|
export declare class IxContent {
|
|
258
263
|
protected z: NgZone;
|
|
259
|
-
protected el:
|
|
264
|
+
protected el: HTMLIxContentElement;
|
|
260
265
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
261
266
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxContent, never>;
|
|
262
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxContent, "ix-content", never, {}, {}, never, ["*"]>;
|
|
267
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxContent, "ix-content", never, {}, {}, never, ["*"], false, never>;
|
|
263
268
|
}
|
|
264
269
|
export declare interface IxContent extends Components.IxContent {
|
|
265
270
|
}
|
|
266
271
|
export declare class IxContentHeader {
|
|
267
272
|
protected z: NgZone;
|
|
268
|
-
protected el:
|
|
273
|
+
protected el: HTMLIxContentHeaderElement;
|
|
269
274
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
270
275
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxContentHeader, never>;
|
|
271
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxContentHeader, "ix-content-header", never, { "hasBackButton": "hasBackButton"; "headerSubtitle": "headerSubtitle"; "headerTitle": "headerTitle"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
276
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxContentHeader, "ix-content-header", never, { "hasBackButton": { "alias": "hasBackButton"; "required": false; }; "headerSubtitle": { "alias": "headerSubtitle"; "required": false; }; "headerTitle": { "alias": "headerTitle"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
272
277
|
}
|
|
273
278
|
export declare interface IxContentHeader extends Components.IxContentHeader {
|
|
274
279
|
/**
|
|
@@ -278,19 +283,19 @@ export declare interface IxContentHeader extends Components.IxContentHeader {
|
|
|
278
283
|
}
|
|
279
284
|
export declare class IxCustomField {
|
|
280
285
|
protected z: NgZone;
|
|
281
|
-
protected el:
|
|
286
|
+
protected el: HTMLIxCustomFieldElement;
|
|
282
287
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
283
288
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxCustomField, never>;
|
|
284
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxCustomField, "ix-custom-field", never, { "helperText": "helperText"; "infoText": "infoText"; "invalidText": "invalidText"; "label": "label"; "required": "required"; "showTextAsTooltip": "showTextAsTooltip"; "validText": "validText"; "warningText": "warningText"; }, {}, never, ["*"]>;
|
|
289
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxCustomField, "ix-custom-field", never, { "helperText": { "alias": "helperText"; "required": false; }; "infoText": { "alias": "infoText"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "required": { "alias": "required"; "required": false; }; "showTextAsTooltip": { "alias": "showTextAsTooltip"; "required": false; }; "validText": { "alias": "validText"; "required": false; }; "warningText": { "alias": "warningText"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
285
290
|
}
|
|
286
291
|
export declare interface IxCustomField extends Components.IxCustomField {
|
|
287
292
|
}
|
|
288
293
|
export declare class IxDateDropdown {
|
|
289
294
|
protected z: NgZone;
|
|
290
|
-
protected el:
|
|
295
|
+
protected el: HTMLIxDateDropdownElement;
|
|
291
296
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
292
297
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxDateDropdown, never>;
|
|
293
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxDateDropdown, "ix-date-dropdown", never, { "customRangeAllowed": "customRangeAllowed"; "dateRangeId": "dateRangeId"; "dateRangeOptions": "dateRangeOptions"; "disabled": "disabled"; "format": "format"; "from": "from"; "ghost": "ghost"; "i18nCustomItem": "i18nCustomItem"; "i18nDone": "i18nDone"; "i18nNoRange": "i18nNoRange"; "loading": "loading"; "locale": "locale"; "maxDate": "maxDate"; "minDate": "minDate"; "outline": "outline"; "range": "range"; "to": "to"; "variant": "variant"; "weekStartIndex": "weekStartIndex"; }, {}, never, ["*"]>;
|
|
298
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxDateDropdown, "ix-date-dropdown", never, { "customRangeAllowed": { "alias": "customRangeAllowed"; "required": false; }; "dateRangeId": { "alias": "dateRangeId"; "required": false; }; "dateRangeOptions": { "alias": "dateRangeOptions"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "format": { "alias": "format"; "required": false; }; "from": { "alias": "from"; "required": false; }; "ghost": { "alias": "ghost"; "required": false; }; "i18nCustomItem": { "alias": "i18nCustomItem"; "required": false; }; "i18nDone": { "alias": "i18nDone"; "required": false; }; "i18nNoRange": { "alias": "i18nNoRange"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "outline": { "alias": "outline"; "required": false; }; "range": { "alias": "range"; "required": false; }; "showWeekNumbers": { "alias": "showWeekNumbers"; "required": false; }; "to": { "alias": "to"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "weekStartIndex": { "alias": "weekStartIndex"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
294
299
|
}
|
|
295
300
|
export declare interface IxDateDropdown extends Components.IxDateDropdown {
|
|
296
301
|
/**
|
|
@@ -303,16 +308,16 @@ export declare interface IxDateDropdown extends Components.IxDateDropdown {
|
|
|
303
308
|
}
|
|
304
309
|
export declare class IxDateInput {
|
|
305
310
|
protected z: NgZone;
|
|
306
|
-
protected el:
|
|
311
|
+
protected el: HTMLIxDateInputElement;
|
|
307
312
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
308
313
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxDateInput, never>;
|
|
309
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxDateInput, "ix-date-input", never, { "disabled": "disabled"; "format": "format"; "helperText": "helperText"; "i18nErrorDateUnparsable": "i18nErrorDateUnparsable"; "infoText": "infoText"; "invalidText": "invalidText"; "label": "label"; "locale": "locale"; "name": "name"; "placeholder": "placeholder"; "readonly": "readonly"; "required": "required"; "showTextAsTooltip": "showTextAsTooltip"; "validText": "validText"; "value": "value"; "warningText": "warningText"; }, {}, never, ["*"]>;
|
|
314
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxDateInput, "ix-date-input", never, { "disabled": { "alias": "disabled"; "required": false; }; "format": { "alias": "format"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "i18nErrorDateUnparsable": { "alias": "i18nErrorDateUnparsable"; "required": false; }; "infoText": { "alias": "infoText"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "showTextAsTooltip": { "alias": "showTextAsTooltip"; "required": false; }; "showWeekNumbers": { "alias": "showWeekNumbers"; "required": false; }; "validText": { "alias": "validText"; "required": false; }; "value": { "alias": "value"; "required": false; }; "warningText": { "alias": "warningText"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
310
315
|
}
|
|
311
316
|
export declare interface IxDateInput extends Components.IxDateInput {
|
|
312
317
|
/**
|
|
313
318
|
* Input change event.
|
|
314
319
|
*/
|
|
315
|
-
valueChange: EventEmitter<CustomEvent<string>>;
|
|
320
|
+
valueChange: EventEmitter<CustomEvent<string | undefined>>;
|
|
316
321
|
/**
|
|
317
322
|
* Validation state change event.
|
|
318
323
|
*/
|
|
@@ -320,73 +325,63 @@ export declare interface IxDateInput extends Components.IxDateInput {
|
|
|
320
325
|
}
|
|
321
326
|
export declare class IxDatePicker {
|
|
322
327
|
protected z: NgZone;
|
|
323
|
-
protected el:
|
|
328
|
+
protected el: HTMLIxDatePickerElement;
|
|
324
329
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
325
330
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxDatePicker, never>;
|
|
326
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxDatePicker, "ix-date-picker", never, { "corners": "corners"; "
|
|
331
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxDatePicker, "ix-date-picker", never, { "corners": { "alias": "corners"; "required": false; }; "format": { "alias": "format"; "required": false; }; "from": { "alias": "from"; "required": false; }; "i18nDone": { "alias": "i18nDone"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "range": { "alias": "range"; "required": false; }; "showWeekNumbers": { "alias": "showWeekNumbers"; "required": false; }; "to": { "alias": "to"; "required": false; }; "weekStartIndex": { "alias": "weekStartIndex"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
327
332
|
}
|
|
328
333
|
export declare interface IxDatePicker extends Components.IxDatePicker {
|
|
329
334
|
/**
|
|
330
335
|
* Triggers if the date selection changes.
|
|
331
|
-
Note: Since 2.0.0 `dateChange` does not dispatch detail property as `string`
|
|
336
|
+
Note: Since 2.0.0 `dateChange` does not dispatch detail property as `string`
|
|
332
337
|
*/
|
|
333
338
|
dateChange: EventEmitter<CustomEvent<IIxDatePickerDateChangeEvent>>;
|
|
334
339
|
/**
|
|
335
340
|
* Triggers if the date selection changes.
|
|
336
|
-
Only triggered if date-picker-rework is in range mode.
|
|
341
|
+
Only triggered if date-picker-rework is in range mode.
|
|
337
342
|
*/
|
|
338
343
|
dateRangeChange: EventEmitter<CustomEvent<IIxDatePickerDateChangeEvent>>;
|
|
339
344
|
/**
|
|
340
|
-
* Date selection confirmed via button action
|
|
345
|
+
* Date selection confirmed via button action
|
|
341
346
|
*/
|
|
342
347
|
dateSelect: EventEmitter<CustomEvent<IIxDatePickerDateChangeEvent>>;
|
|
343
|
-
/**
|
|
344
|
-
* Date selection confirmed via button action @deprecated NOT getting dispatched after 2.0.0. Use `dateSelect`.
|
|
345
|
-
*/
|
|
346
|
-
done: EventEmitter<CustomEvent<string>>;
|
|
347
348
|
}
|
|
348
349
|
export declare class IxDatetimePicker {
|
|
349
350
|
protected z: NgZone;
|
|
350
|
-
protected el:
|
|
351
|
+
protected el: HTMLIxDatetimePickerElement;
|
|
351
352
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
352
353
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxDatetimePicker, never>;
|
|
353
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxDatetimePicker, "ix-datetime-picker", never, { "dateFormat": "dateFormat"; "
|
|
354
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxDatetimePicker, "ix-datetime-picker", never, { "dateFormat": { "alias": "dateFormat"; "required": false; }; "from": { "alias": "from"; "required": false; }; "i18nDone": { "alias": "i18nDone"; "required": false; }; "i18nTime": { "alias": "i18nTime"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "range": { "alias": "range"; "required": false; }; "showHour": { "alias": "showHour"; "required": false; }; "showMinutes": { "alias": "showMinutes"; "required": false; }; "showSeconds": { "alias": "showSeconds"; "required": false; }; "showTimeReference": { "alias": "showTimeReference"; "required": false; }; "showWeekNumbers": { "alias": "showWeekNumbers"; "required": false; }; "time": { "alias": "time"; "required": false; }; "timeFormat": { "alias": "timeFormat"; "required": false; }; "timeReference": { "alias": "timeReference"; "required": false; }; "to": { "alias": "to"; "required": false; }; "weekStartIndex": { "alias": "weekStartIndex"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
354
355
|
}
|
|
355
356
|
export declare interface IxDatetimePicker extends Components.IxDatetimePicker {
|
|
356
357
|
/**
|
|
357
|
-
*
|
|
358
|
-
|
|
359
|
-
Set `doneEventDelimiter` to null or undefine to get the typed event @deprecated Use `this.dateChange`
|
|
360
|
-
*/
|
|
361
|
-
done: EventEmitter<CustomEvent<string>>;
|
|
362
|
-
/**
|
|
363
|
-
* Time change @since 1.1.0
|
|
358
|
+
* Time change
|
|
364
359
|
*/
|
|
365
360
|
timeChange: EventEmitter<CustomEvent<string>>;
|
|
366
361
|
/**
|
|
367
|
-
* Date change
|
|
362
|
+
* Date change
|
|
368
363
|
*/
|
|
369
364
|
dateChange: EventEmitter<CustomEvent<IIxDatetimePickerDateTimeDateChangeEvent>>;
|
|
370
365
|
/**
|
|
371
|
-
* Datetime selection event is fired after confirm button is pressed
|
|
366
|
+
* Datetime selection event is fired after confirm button is pressed
|
|
372
367
|
*/
|
|
373
368
|
dateSelect: EventEmitter<CustomEvent<IIxDatetimePickerDateTimeSelectEvent>>;
|
|
374
369
|
}
|
|
375
370
|
export declare class IxDivider {
|
|
376
371
|
protected z: NgZone;
|
|
377
|
-
protected el:
|
|
372
|
+
protected el: HTMLIxDividerElement;
|
|
378
373
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
379
374
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxDivider, never>;
|
|
380
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxDivider, "ix-divider", never, {}, {}, never, ["*"]>;
|
|
375
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxDivider, "ix-divider", never, {}, {}, never, ["*"], false, never>;
|
|
381
376
|
}
|
|
382
377
|
export declare interface IxDivider extends Components.IxDivider {
|
|
383
378
|
}
|
|
384
379
|
export declare class IxDrawer {
|
|
385
380
|
protected z: NgZone;
|
|
386
|
-
protected el:
|
|
381
|
+
protected el: HTMLIxDrawerElement;
|
|
387
382
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
388
383
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxDrawer, never>;
|
|
389
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxDrawer, "ix-drawer", never, { "closeOnClickOutside": "closeOnClickOutside"; "fullHeight": "fullHeight"; "maxWidth": "maxWidth"; "minWidth": "minWidth"; "show": "show"; "width": "width"; }, {}, never, ["*"]>;
|
|
384
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxDrawer, "ix-drawer", never, { "closeOnClickOutside": { "alias": "closeOnClickOutside"; "required": false; }; "fullHeight": { "alias": "fullHeight"; "required": false; }; "maxWidth": { "alias": "maxWidth"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "show": { "alias": "show"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
390
385
|
}
|
|
391
386
|
export declare interface IxDrawer extends Components.IxDrawer {
|
|
392
387
|
/**
|
|
@@ -400,10 +395,10 @@ export declare interface IxDrawer extends Components.IxDrawer {
|
|
|
400
395
|
}
|
|
401
396
|
export declare class IxDropdown {
|
|
402
397
|
protected z: NgZone;
|
|
403
|
-
protected el:
|
|
398
|
+
protected el: HTMLIxDropdownElement;
|
|
404
399
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
405
400
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxDropdown, never>;
|
|
406
|
-
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, ["*"]>;
|
|
401
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdown, "ix-dropdown", never, { "anchor": { "alias": "anchor"; "required": false; }; "closeBehavior": { "alias": "closeBehavior"; "required": false; }; "header": { "alias": "header"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "positioningStrategy": { "alias": "positioningStrategy"; "required": false; }; "show": { "alias": "show"; "required": false; }; "suppressAutomaticPlacement": { "alias": "suppressAutomaticPlacement"; "required": false; }; "trigger": { "alias": "trigger"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
407
402
|
}
|
|
408
403
|
export declare interface IxDropdown extends Components.IxDropdown {
|
|
409
404
|
/**
|
|
@@ -413,46 +408,46 @@ export declare interface IxDropdown extends Components.IxDropdown {
|
|
|
413
408
|
}
|
|
414
409
|
export declare class IxDropdownButton {
|
|
415
410
|
protected z: NgZone;
|
|
416
|
-
protected el:
|
|
411
|
+
protected el: HTMLIxDropdownButtonElement;
|
|
417
412
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
418
413
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxDropdownButton, never>;
|
|
419
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdownButton, "ix-dropdown-button", never, { "closeBehavior": "closeBehavior"; "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "label": "label"; "outline": "outline"; "placement": "placement"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
414
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdownButton, "ix-dropdown-button", never, { "closeBehavior": { "alias": "closeBehavior"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "ghost": { "alias": "ghost"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "outline": { "alias": "outline"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
420
415
|
}
|
|
421
416
|
export declare interface IxDropdownButton extends Components.IxDropdownButton {
|
|
422
417
|
}
|
|
423
418
|
export declare class IxDropdownHeader {
|
|
424
419
|
protected z: NgZone;
|
|
425
|
-
protected el:
|
|
420
|
+
protected el: HTMLIxDropdownHeaderElement;
|
|
426
421
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
427
422
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxDropdownHeader, never>;
|
|
428
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdownHeader, "ix-dropdown-header", never, { "label": "label"; }, {}, never, ["*"]>;
|
|
423
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdownHeader, "ix-dropdown-header", never, { "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
429
424
|
}
|
|
430
425
|
export declare interface IxDropdownHeader extends Components.IxDropdownHeader {
|
|
431
426
|
}
|
|
432
427
|
export declare class IxDropdownItem {
|
|
433
428
|
protected z: NgZone;
|
|
434
|
-
protected el:
|
|
429
|
+
protected el: HTMLIxDropdownItemElement;
|
|
435
430
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
436
431
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxDropdownItem, never>;
|
|
437
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdownItem, "ix-dropdown-item", never, { "checked": "checked"; "disabled": "disabled"; "hover": "hover"; "icon": "icon"; "label": "label"; }, {}, never, ["*"]>;
|
|
432
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdownItem, "ix-dropdown-item", never, { "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "hover": { "alias": "hover"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
438
433
|
}
|
|
439
434
|
export declare interface IxDropdownItem extends Components.IxDropdownItem {
|
|
440
435
|
}
|
|
441
436
|
export declare class IxDropdownQuickActions {
|
|
442
437
|
protected z: NgZone;
|
|
443
|
-
protected el:
|
|
438
|
+
protected el: HTMLIxDropdownQuickActionsElement;
|
|
444
439
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
445
440
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxDropdownQuickActions, never>;
|
|
446
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdownQuickActions, "ix-dropdown-quick-actions", never, {}, {}, never, ["*"]>;
|
|
441
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdownQuickActions, "ix-dropdown-quick-actions", never, {}, {}, never, ["*"], false, never>;
|
|
447
442
|
}
|
|
448
443
|
export declare interface IxDropdownQuickActions extends Components.IxDropdownQuickActions {
|
|
449
444
|
}
|
|
450
445
|
export declare class IxEmptyState {
|
|
451
446
|
protected z: NgZone;
|
|
452
|
-
protected el:
|
|
447
|
+
protected el: HTMLIxEmptyStateElement;
|
|
453
448
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
454
449
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxEmptyState, never>;
|
|
455
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxEmptyState, "ix-empty-state", never, { "action": "action"; "header": "header"; "icon": "icon"; "layout": "layout"; "subHeader": "subHeader"; }, {}, never, ["*"]>;
|
|
450
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxEmptyState, "ix-empty-state", never, { "action": { "alias": "action"; "required": false; }; "header": { "alias": "header"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "subHeader": { "alias": "subHeader"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
456
451
|
}
|
|
457
452
|
export declare interface IxEmptyState extends Components.IxEmptyState {
|
|
458
453
|
/**
|
|
@@ -462,19 +457,19 @@ export declare interface IxEmptyState extends Components.IxEmptyState {
|
|
|
462
457
|
}
|
|
463
458
|
export declare class IxEventList {
|
|
464
459
|
protected z: NgZone;
|
|
465
|
-
protected el:
|
|
460
|
+
protected el: HTMLIxEventListElement;
|
|
466
461
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
467
462
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxEventList, never>;
|
|
468
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxEventList, "ix-event-list", never, { "animated": "animated"; "chevron": "chevron"; "compact": "compact"; "itemHeight": "itemHeight"; }, {}, never, ["*"]>;
|
|
463
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxEventList, "ix-event-list", never, { "animated": { "alias": "animated"; "required": false; }; "chevron": { "alias": "chevron"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "itemHeight": { "alias": "itemHeight"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
469
464
|
}
|
|
470
465
|
export declare interface IxEventList extends Components.IxEventList {
|
|
471
466
|
}
|
|
472
467
|
export declare class IxEventListItem {
|
|
473
468
|
protected z: NgZone;
|
|
474
|
-
protected el:
|
|
469
|
+
protected el: HTMLIxEventListItemElement;
|
|
475
470
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
476
471
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxEventListItem, never>;
|
|
477
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxEventListItem, "ix-event-list-item", never, { "chevron": "chevron"; "
|
|
472
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxEventListItem, "ix-event-list-item", never, { "chevron": { "alias": "chevron"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "itemColor": { "alias": "itemColor"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
478
473
|
}
|
|
479
474
|
export declare interface IxEventListItem extends Components.IxEventListItem {
|
|
480
475
|
/**
|
|
@@ -484,10 +479,10 @@ export declare interface IxEventListItem extends Components.IxEventListItem {
|
|
|
484
479
|
}
|
|
485
480
|
export declare class IxExpandingSearch {
|
|
486
481
|
protected z: NgZone;
|
|
487
|
-
protected el:
|
|
482
|
+
protected el: HTMLIxExpandingSearchElement;
|
|
488
483
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
489
484
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxExpandingSearch, never>;
|
|
490
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxExpandingSearch, "ix-expanding-search", never, { "fullWidth": "fullWidth"; "ghost": "ghost"; "icon": "icon"; "outline": "outline"; "placeholder": "placeholder"; "value": "value"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
485
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxExpandingSearch, "ix-expanding-search", never, { "fullWidth": { "alias": "fullWidth"; "required": false; }; "ghost": { "alias": "ghost"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "outline": { "alias": "outline"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "value": { "alias": "value"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
491
486
|
}
|
|
492
487
|
export declare interface IxExpandingSearch extends Components.IxExpandingSearch {
|
|
493
488
|
/**
|
|
@@ -497,19 +492,19 @@ export declare interface IxExpandingSearch extends Components.IxExpandingSearch
|
|
|
497
492
|
}
|
|
498
493
|
export declare class IxFieldLabel {
|
|
499
494
|
protected z: NgZone;
|
|
500
|
-
protected el:
|
|
495
|
+
protected el: HTMLIxFieldLabelElement;
|
|
501
496
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
502
497
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxFieldLabel, never>;
|
|
503
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxFieldLabel, "ix-field-label", never, { "htmlFor": "htmlFor"; "required": "required"; }, {}, never, ["*"]>;
|
|
498
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxFieldLabel, "ix-field-label", never, { "htmlFor": { "alias": "htmlFor"; "required": false; }; "required": { "alias": "required"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
504
499
|
}
|
|
505
500
|
export declare interface IxFieldLabel extends Components.IxFieldLabel {
|
|
506
501
|
}
|
|
507
502
|
export declare class IxFilterChip {
|
|
508
503
|
protected z: NgZone;
|
|
509
|
-
protected el:
|
|
504
|
+
protected el: HTMLIxFilterChipElement;
|
|
510
505
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
511
506
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxFilterChip, never>;
|
|
512
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxFilterChip, "ix-filter-chip", never, { "disabled": "disabled"; "readonly": "readonly"; }, {}, never, ["*"]>;
|
|
507
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxFilterChip, "ix-filter-chip", never, { "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
513
508
|
}
|
|
514
509
|
export declare interface IxFilterChip extends Components.IxFilterChip {
|
|
515
510
|
/**
|
|
@@ -519,10 +514,10 @@ export declare interface IxFilterChip extends Components.IxFilterChip {
|
|
|
519
514
|
}
|
|
520
515
|
export declare class IxFlipTile {
|
|
521
516
|
protected z: NgZone;
|
|
522
|
-
protected el:
|
|
517
|
+
protected el: HTMLIxFlipTileElement;
|
|
523
518
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
524
519
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxFlipTile, never>;
|
|
525
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxFlipTile, "ix-flip-tile", never, { "height": "height"; "index": "index"; "state": "state"; "width": "width"; }, {}, never, ["*"]>;
|
|
520
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxFlipTile, "ix-flip-tile", never, { "height": { "alias": "height"; "required": false; }; "index": { "alias": "index"; "required": false; }; "state": { "alias": "state"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
526
521
|
}
|
|
527
522
|
export declare interface IxFlipTile extends Components.IxFlipTile {
|
|
528
523
|
/**
|
|
@@ -532,19 +527,19 @@ export declare interface IxFlipTile extends Components.IxFlipTile {
|
|
|
532
527
|
}
|
|
533
528
|
export declare class IxFlipTileContent {
|
|
534
529
|
protected z: NgZone;
|
|
535
|
-
protected el:
|
|
530
|
+
protected el: HTMLIxFlipTileContentElement;
|
|
536
531
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
537
532
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxFlipTileContent, never>;
|
|
538
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxFlipTileContent, "ix-flip-tile-content", never, {}, {}, never, ["*"]>;
|
|
533
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxFlipTileContent, "ix-flip-tile-content", never, {}, {}, never, ["*"], false, never>;
|
|
539
534
|
}
|
|
540
535
|
export declare interface IxFlipTileContent extends Components.IxFlipTileContent {
|
|
541
536
|
}
|
|
542
537
|
export declare class IxGroup {
|
|
543
538
|
protected z: NgZone;
|
|
544
|
-
protected el:
|
|
539
|
+
protected el: HTMLIxGroupElement;
|
|
545
540
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
546
541
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxGroup, never>;
|
|
547
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxGroup, "ix-group", never, { "collapsed": "collapsed"; "expandOnHeaderClick": "expandOnHeaderClick"; "header": "header"; "index": "index"; "selected": "selected"; "subHeader": "subHeader"; "suppressHeaderSelection": "suppressHeaderSelection"; }, {}, never, ["*"]>;
|
|
542
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxGroup, "ix-group", never, { "collapsed": { "alias": "collapsed"; "required": false; }; "expandOnHeaderClick": { "alias": "expandOnHeaderClick"; "required": false; }; "header": { "alias": "header"; "required": false; }; "index": { "alias": "index"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "subHeader": { "alias": "subHeader"; "required": false; }; "suppressHeaderSelection": { "alias": "suppressHeaderSelection"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
548
543
|
}
|
|
549
544
|
export declare interface IxGroup extends Components.IxGroup {
|
|
550
545
|
/**
|
|
@@ -562,19 +557,19 @@ export declare interface IxGroup extends Components.IxGroup {
|
|
|
562
557
|
}
|
|
563
558
|
export declare class IxGroupContextMenu {
|
|
564
559
|
protected z: NgZone;
|
|
565
|
-
protected el:
|
|
560
|
+
protected el: HTMLIxGroupContextMenuElement;
|
|
566
561
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
567
562
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxGroupContextMenu, never>;
|
|
568
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxGroupContextMenu, "ix-group-context-menu", never, {}, {}, never, ["*"]>;
|
|
563
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxGroupContextMenu, "ix-group-context-menu", never, {}, {}, never, ["*"], false, never>;
|
|
569
564
|
}
|
|
570
565
|
export declare interface IxGroupContextMenu extends Components.IxGroupContextMenu {
|
|
571
566
|
}
|
|
572
567
|
export declare class IxGroupItem {
|
|
573
568
|
protected z: NgZone;
|
|
574
|
-
protected el:
|
|
569
|
+
protected el: HTMLIxGroupItemElement;
|
|
575
570
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
576
571
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxGroupItem, never>;
|
|
577
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxGroupItem, "ix-group-item", never, { "focusable": "focusable"; "icon": "icon"; "index": "index"; "secondaryText": "secondaryText"; "selected": "selected"; "suppressSelection": "suppressSelection"; "text": "text"; }, {}, never, ["*"]>;
|
|
572
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxGroupItem, "ix-group-item", never, { "focusable": { "alias": "focusable"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "index": { "alias": "index"; "required": false; }; "secondaryText": { "alias": "secondaryText"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "suppressSelection": { "alias": "suppressSelection"; "required": false; }; "text": { "alias": "text"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
578
573
|
}
|
|
579
574
|
export declare interface IxGroupItem extends Components.IxGroupItem {
|
|
580
575
|
/**
|
|
@@ -584,28 +579,28 @@ export declare interface IxGroupItem extends Components.IxGroupItem {
|
|
|
584
579
|
}
|
|
585
580
|
export declare class IxHelperText {
|
|
586
581
|
protected z: NgZone;
|
|
587
|
-
protected el:
|
|
582
|
+
protected el: HTMLIxHelperTextElement;
|
|
588
583
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
589
584
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxHelperText, never>;
|
|
590
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxHelperText, "ix-helper-text", never, { "helperText": "helperText"; "htmlFor": "htmlFor"; "infoText": "infoText"; "invalidText": "invalidText"; "validText": "validText"; "warningText": "warningText"; }, {}, never, ["*"]>;
|
|
585
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxHelperText, "ix-helper-text", never, { "helperText": { "alias": "helperText"; "required": false; }; "htmlFor": { "alias": "htmlFor"; "required": false; }; "infoText": { "alias": "infoText"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "validText": { "alias": "validText"; "required": false; }; "warningText": { "alias": "warningText"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
591
586
|
}
|
|
592
587
|
export declare interface IxHelperText extends Components.IxHelperText {
|
|
593
588
|
}
|
|
594
589
|
export declare class IxIconButton {
|
|
595
590
|
protected z: NgZone;
|
|
596
|
-
protected el:
|
|
591
|
+
protected el: HTMLIxIconButtonElement;
|
|
597
592
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
598
593
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxIconButton, never>;
|
|
599
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxIconButton, "ix-icon-button", never, { "a11yLabel": "a11yLabel"; "
|
|
594
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxIconButton, "ix-icon-button", never, { "a11yLabel": { "alias": "a11yLabel"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "ghost": { "alias": "ghost"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "outline": { "alias": "outline"; "required": false; }; "oval": { "alias": "oval"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
600
595
|
}
|
|
601
596
|
export declare interface IxIconButton extends Components.IxIconButton {
|
|
602
597
|
}
|
|
603
598
|
export declare class IxIconToggleButton {
|
|
604
599
|
protected z: NgZone;
|
|
605
|
-
protected el:
|
|
600
|
+
protected el: HTMLIxIconToggleButtonElement;
|
|
606
601
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
607
602
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxIconToggleButton, never>;
|
|
608
|
-
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, ["*"]>;
|
|
603
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxIconToggleButton, "ix-icon-toggle-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "ghost": { "alias": "ghost"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "outline": { "alias": "outline"; "required": false; }; "oval": { "alias": "oval"; "required": false; }; "pressed": { "alias": "pressed"; "required": false; }; "size": { "alias": "size"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
609
604
|
}
|
|
610
605
|
export declare interface IxIconToggleButton extends Components.IxIconToggleButton {
|
|
611
606
|
/**
|
|
@@ -615,10 +610,10 @@ export declare interface IxIconToggleButton extends Components.IxIconToggleButto
|
|
|
615
610
|
}
|
|
616
611
|
export declare class IxInput {
|
|
617
612
|
protected z: NgZone;
|
|
618
|
-
protected el:
|
|
613
|
+
protected el: HTMLIxInputElement;
|
|
619
614
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
620
615
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxInput, never>;
|
|
621
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxInput, "ix-input", never, { "allowedCharactersPattern": "allowedCharactersPattern"; "disabled": "disabled"; "helperText": "helperText"; "infoText": "infoText"; "invalidText": "invalidText"; "label": "label"; "maxLength": "maxLength"; "minLength": "minLength"; "name": "name"; "pattern": "pattern"; "placeholder": "placeholder"; "readonly": "readonly"; "required": "required"; "showTextAsTooltip": "showTextAsTooltip"; "type": "type"; "validText": "validText"; "value": "value"; "warningText": "warningText"; }, {}, never, ["*"]>;
|
|
616
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxInput, "ix-input", never, { "allowedCharactersPattern": { "alias": "allowedCharactersPattern"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "infoText": { "alias": "infoText"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "showTextAsTooltip": { "alias": "showTextAsTooltip"; "required": false; }; "type": { "alias": "type"; "required": false; }; "validText": { "alias": "validText"; "required": false; }; "value": { "alias": "value"; "required": false; }; "warningText": { "alias": "warningText"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
622
617
|
}
|
|
623
618
|
export declare interface IxInput extends Components.IxInput {
|
|
624
619
|
/**
|
|
@@ -636,73 +631,73 @@ export declare interface IxInput extends Components.IxInput {
|
|
|
636
631
|
}
|
|
637
632
|
export declare class IxInputGroup {
|
|
638
633
|
protected z: NgZone;
|
|
639
|
-
protected el:
|
|
634
|
+
protected el: HTMLIxInputGroupElement;
|
|
640
635
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
641
636
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxInputGroup, never>;
|
|
642
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxInputGroup, "ix-input-group", never, {}, {}, never, ["*"]>;
|
|
637
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxInputGroup, "ix-input-group", never, {}, {}, never, ["*"], false, never>;
|
|
643
638
|
}
|
|
644
639
|
export declare interface IxInputGroup extends Components.IxInputGroup {
|
|
645
640
|
}
|
|
646
641
|
export declare class IxKeyValue {
|
|
647
642
|
protected z: NgZone;
|
|
648
|
-
protected el:
|
|
643
|
+
protected el: HTMLIxKeyValueElement;
|
|
649
644
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
650
645
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxKeyValue, never>;
|
|
651
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxKeyValue, "ix-key-value", never, { "icon": "icon"; "label": "label"; "labelPosition": "labelPosition"; "value": "value"; }, {}, never, ["*"]>;
|
|
646
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxKeyValue, "ix-key-value", never, { "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelPosition": { "alias": "labelPosition"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
652
647
|
}
|
|
653
648
|
export declare interface IxKeyValue extends Components.IxKeyValue {
|
|
654
649
|
}
|
|
655
650
|
export declare class IxKeyValueList {
|
|
656
651
|
protected z: NgZone;
|
|
657
|
-
protected el:
|
|
652
|
+
protected el: HTMLIxKeyValueListElement;
|
|
658
653
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
659
654
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxKeyValueList, never>;
|
|
660
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxKeyValueList, "ix-key-value-list", never, { "striped": "striped"; }, {}, never, ["*"]>;
|
|
655
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxKeyValueList, "ix-key-value-list", never, { "striped": { "alias": "striped"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
661
656
|
}
|
|
662
657
|
export declare interface IxKeyValueList extends Components.IxKeyValueList {
|
|
663
658
|
}
|
|
664
659
|
export declare class IxKpi {
|
|
665
660
|
protected z: NgZone;
|
|
666
|
-
protected el:
|
|
661
|
+
protected el: HTMLIxKpiElement;
|
|
667
662
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
668
663
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxKpi, never>;
|
|
669
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxKpi, "ix-kpi", never, { "label": "label"; "orientation": "orientation"; "state": "state"; "unit": "unit"; "value": "value"; }, {}, never, ["*"]>;
|
|
664
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxKpi, "ix-kpi", never, { "label": { "alias": "label"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "state": { "alias": "state"; "required": false; }; "unit": { "alias": "unit"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
670
665
|
}
|
|
671
666
|
export declare interface IxKpi extends Components.IxKpi {
|
|
672
667
|
}
|
|
673
668
|
export declare class IxLayoutAuto {
|
|
674
669
|
protected z: NgZone;
|
|
675
|
-
protected el:
|
|
670
|
+
protected el: HTMLIxLayoutAutoElement;
|
|
676
671
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
677
672
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxLayoutAuto, never>;
|
|
678
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxLayoutAuto, "ix-layout-auto", never, { "layout": "layout"; }, {}, never, ["*"]>;
|
|
673
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxLayoutAuto, "ix-layout-auto", never, { "layout": { "alias": "layout"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
679
674
|
}
|
|
680
675
|
export declare interface IxLayoutAuto extends Components.IxLayoutAuto {
|
|
681
676
|
}
|
|
682
677
|
export declare class IxLayoutGrid {
|
|
683
678
|
protected z: NgZone;
|
|
684
|
-
protected el:
|
|
679
|
+
protected el: HTMLIxLayoutGridElement;
|
|
685
680
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
686
681
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxLayoutGrid, never>;
|
|
687
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxLayoutGrid, "ix-layout-grid", never, { "columns": "columns"; "gap": "gap"; "noMargin": "noMargin"; }, {}, never, ["*"]>;
|
|
682
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxLayoutGrid, "ix-layout-grid", never, { "columns": { "alias": "columns"; "required": false; }; "gap": { "alias": "gap"; "required": false; }; "noMargin": { "alias": "noMargin"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
688
683
|
}
|
|
689
684
|
export declare interface IxLayoutGrid extends Components.IxLayoutGrid {
|
|
690
685
|
}
|
|
691
686
|
export declare class IxLinkButton {
|
|
692
687
|
protected z: NgZone;
|
|
693
|
-
protected el:
|
|
688
|
+
protected el: HTMLIxLinkButtonElement;
|
|
694
689
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
695
690
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxLinkButton, never>;
|
|
696
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxLinkButton, "ix-link-button", never, { "disabled": "disabled"; "target": "target"; "url": "url"; }, {}, never, ["*"]>;
|
|
691
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxLinkButton, "ix-link-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "target": { "alias": "target"; "required": false; }; "url": { "alias": "url"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
697
692
|
}
|
|
698
693
|
export declare interface IxLinkButton extends Components.IxLinkButton {
|
|
699
694
|
}
|
|
700
695
|
export declare class IxMapNavigation {
|
|
701
696
|
protected z: NgZone;
|
|
702
|
-
protected el:
|
|
697
|
+
protected el: HTMLIxMapNavigationElement;
|
|
703
698
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
704
699
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxMapNavigation, never>;
|
|
705
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxMapNavigation, "ix-map-navigation", never, { "applicationName": "applicationName"; "hideContextMenu": "hideContextMenu"; "navigationTitle": "navigationTitle"; }, {}, never, ["*"]>;
|
|
700
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxMapNavigation, "ix-map-navigation", never, { "applicationName": { "alias": "applicationName"; "required": false; }; "hideContextMenu": { "alias": "hideContextMenu"; "required": false; }; "navigationTitle": { "alias": "navigationTitle"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
706
701
|
}
|
|
707
702
|
export declare interface IxMapNavigation extends Components.IxMapNavigation {
|
|
708
703
|
/**
|
|
@@ -716,10 +711,10 @@ export declare interface IxMapNavigation extends Components.IxMapNavigation {
|
|
|
716
711
|
}
|
|
717
712
|
export declare class IxMapNavigationOverlay {
|
|
718
713
|
protected z: NgZone;
|
|
719
|
-
protected el:
|
|
714
|
+
protected el: HTMLIxMapNavigationOverlayElement;
|
|
720
715
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
721
716
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxMapNavigationOverlay, never>;
|
|
722
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxMapNavigationOverlay, "ix-map-navigation-overlay", never, { "color": "color"; "icon": "icon"; "iconColor": "iconColor"; "name": "name"; }, {}, never, ["*"]>;
|
|
717
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxMapNavigationOverlay, "ix-map-navigation-overlay", never, { "color": { "alias": "color"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
723
718
|
}
|
|
724
719
|
export declare interface IxMapNavigationOverlay extends Components.IxMapNavigationOverlay {
|
|
725
720
|
/**
|
|
@@ -729,10 +724,10 @@ export declare interface IxMapNavigationOverlay extends Components.IxMapNavigati
|
|
|
729
724
|
}
|
|
730
725
|
export declare class IxMenu {
|
|
731
726
|
protected z: NgZone;
|
|
732
|
-
protected el:
|
|
727
|
+
protected el: HTMLIxMenuElement;
|
|
733
728
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
734
729
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxMenu, never>;
|
|
735
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxMenu, "ix-menu", never, { "applicationDescription": "applicationDescription"; "
|
|
730
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxMenu, "ix-menu", never, { "applicationDescription": { "alias": "applicationDescription"; "required": false; }; "applicationName": { "alias": "applicationName"; "required": false; }; "enableSettings": { "alias": "enableSettings"; "required": false; }; "enableToggleTheme": { "alias": "enableToggleTheme"; "required": false; }; "expand": { "alias": "expand"; "required": false; }; "i18nCollapse": { "alias": "i18nCollapse"; "required": false; }; "i18nExpand": { "alias": "i18nExpand"; "required": false; }; "i18nExpandSidebar": { "alias": "i18nExpandSidebar"; "required": false; }; "i18nLegal": { "alias": "i18nLegal"; "required": false; }; "i18nSettings": { "alias": "i18nSettings"; "required": false; }; "i18nToggleTheme": { "alias": "i18nToggleTheme"; "required": false; }; "pinned": { "alias": "pinned"; "required": false; }; "showAbout": { "alias": "showAbout"; "required": false; }; "showSettings": { "alias": "showSettings"; "required": false; }; "startExpanded": { "alias": "startExpanded"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
736
731
|
}
|
|
737
732
|
export declare interface IxMenu extends Components.IxMenu {
|
|
738
733
|
/**
|
|
@@ -758,10 +753,10 @@ export declare interface IxMenu extends Components.IxMenu {
|
|
|
758
753
|
}
|
|
759
754
|
export declare class IxMenuAbout {
|
|
760
755
|
protected z: NgZone;
|
|
761
|
-
protected el:
|
|
756
|
+
protected el: HTMLIxMenuAboutElement;
|
|
762
757
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
763
758
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuAbout, never>;
|
|
764
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAbout, "ix-menu-about", never, { "activeTabLabel": "activeTabLabel"; "
|
|
759
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAbout, "ix-menu-about", never, { "activeTabLabel": { "alias": "activeTabLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
765
760
|
}
|
|
766
761
|
export declare interface IxMenuAbout extends Components.IxMenuAbout {
|
|
767
762
|
/**
|
|
@@ -775,10 +770,10 @@ export declare interface IxMenuAbout extends Components.IxMenuAbout {
|
|
|
775
770
|
}
|
|
776
771
|
export declare class IxMenuAboutItem {
|
|
777
772
|
protected z: NgZone;
|
|
778
|
-
protected el:
|
|
773
|
+
protected el: HTMLIxMenuAboutItemElement;
|
|
779
774
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
780
775
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuAboutItem, never>;
|
|
781
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAboutItem, "ix-menu-about-item", never, { "label": "label"; }, {}, never, ["*"]>;
|
|
776
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAboutItem, "ix-menu-about-item", never, { "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
782
777
|
}
|
|
783
778
|
export declare interface IxMenuAboutItem extends Components.IxMenuAboutItem {
|
|
784
779
|
/**
|
|
@@ -788,10 +783,10 @@ export declare interface IxMenuAboutItem extends Components.IxMenuAboutItem {
|
|
|
788
783
|
}
|
|
789
784
|
export declare class IxMenuAboutNews {
|
|
790
785
|
protected z: NgZone;
|
|
791
|
-
protected el:
|
|
786
|
+
protected el: HTMLIxMenuAboutNewsElement;
|
|
792
787
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
793
788
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuAboutNews, never>;
|
|
794
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAboutNews, "ix-menu-about-news", never, { "aboutItemLabel": "aboutItemLabel"; "
|
|
789
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAboutNews, "ix-menu-about-news", never, { "aboutItemLabel": { "alias": "aboutItemLabel"; "required": false; }; "i18nShowMore": { "alias": "i18nShowMore"; "required": false; }; "label": { "alias": "label"; "required": false; }; "offsetBottom": { "alias": "offsetBottom"; "required": false; }; "show": { "alias": "show"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
795
790
|
}
|
|
796
791
|
export declare interface IxMenuAboutNews extends Components.IxMenuAboutNews {
|
|
797
792
|
/**
|
|
@@ -805,10 +800,10 @@ export declare interface IxMenuAboutNews extends Components.IxMenuAboutNews {
|
|
|
805
800
|
}
|
|
806
801
|
export declare class IxMenuAvatar {
|
|
807
802
|
protected z: NgZone;
|
|
808
|
-
protected el:
|
|
803
|
+
protected el: HTMLIxMenuAvatarElement;
|
|
809
804
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
810
805
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuAvatar, never>;
|
|
811
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAvatar, "ix-menu-avatar", never, { "bottom": "bottom"; "i18nLogout": "i18nLogout"; "image": "image"; "initials": "initials"; "showLogoutButton": "showLogoutButton"; "top": "top"; }, {}, never, ["*"]>;
|
|
806
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAvatar, "ix-menu-avatar", never, { "bottom": { "alias": "bottom"; "required": false; }; "i18nLogout": { "alias": "i18nLogout"; "required": false; }; "image": { "alias": "image"; "required": false; }; "initials": { "alias": "initials"; "required": false; }; "showLogoutButton": { "alias": "showLogoutButton"; "required": false; }; "top": { "alias": "top"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
812
807
|
}
|
|
813
808
|
export declare interface IxMenuAvatar extends Components.IxMenuAvatar {
|
|
814
809
|
/**
|
|
@@ -818,10 +813,10 @@ export declare interface IxMenuAvatar extends Components.IxMenuAvatar {
|
|
|
818
813
|
}
|
|
819
814
|
export declare class IxMenuAvatarItem {
|
|
820
815
|
protected z: NgZone;
|
|
821
|
-
protected el:
|
|
816
|
+
protected el: HTMLIxMenuAvatarItemElement;
|
|
822
817
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
823
818
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuAvatarItem, never>;
|
|
824
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAvatarItem, "ix-menu-avatar-item", never, { "icon": "icon"; "label": "label"; }, {}, never, ["*"]>;
|
|
819
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAvatarItem, "ix-menu-avatar-item", never, { "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
825
820
|
}
|
|
826
821
|
export declare interface IxMenuAvatarItem extends Components.IxMenuAvatarItem {
|
|
827
822
|
/**
|
|
@@ -831,28 +826,28 @@ export declare interface IxMenuAvatarItem extends Components.IxMenuAvatarItem {
|
|
|
831
826
|
}
|
|
832
827
|
export declare class IxMenuCategory {
|
|
833
828
|
protected z: NgZone;
|
|
834
|
-
protected el:
|
|
829
|
+
protected el: HTMLIxMenuCategoryElement;
|
|
835
830
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
836
831
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuCategory, never>;
|
|
837
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuCategory, "ix-menu-category", never, { "icon": "icon"; "label": "label"; "notifications": "notifications"; }, {}, never, ["*"]>;
|
|
832
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuCategory, "ix-menu-category", never, { "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "notifications": { "alias": "notifications"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
838
833
|
}
|
|
839
834
|
export declare interface IxMenuCategory extends Components.IxMenuCategory {
|
|
840
835
|
}
|
|
841
836
|
export declare class IxMenuItem {
|
|
842
837
|
protected z: NgZone;
|
|
843
|
-
protected el:
|
|
838
|
+
protected el: HTMLIxMenuItemElement;
|
|
844
839
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
845
840
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuItem, never>;
|
|
846
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuItem, "ix-menu-item", never, { "active": "active"; "bottom": "bottom"; "disabled": "disabled"; "home": "home"; "icon": "icon"; "label": "label"; "
|
|
841
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuItem, "ix-menu-item", never, { "active": { "alias": "active"; "required": false; }; "bottom": { "alias": "bottom"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "home": { "alias": "home"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "notifications": { "alias": "notifications"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
847
842
|
}
|
|
848
843
|
export declare interface IxMenuItem extends Components.IxMenuItem {
|
|
849
844
|
}
|
|
850
845
|
export declare class IxMenuSettings {
|
|
851
846
|
protected z: NgZone;
|
|
852
|
-
protected el:
|
|
847
|
+
protected el: HTMLIxMenuSettingsElement;
|
|
853
848
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
854
849
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuSettings, never>;
|
|
855
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuSettings, "ix-menu-settings", never, { "activeTabLabel": "activeTabLabel"; "
|
|
850
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuSettings, "ix-menu-settings", never, { "activeTabLabel": { "alias": "activeTabLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
856
851
|
}
|
|
857
852
|
export declare interface IxMenuSettings extends Components.IxMenuSettings {
|
|
858
853
|
/**
|
|
@@ -866,10 +861,10 @@ export declare interface IxMenuSettings extends Components.IxMenuSettings {
|
|
|
866
861
|
}
|
|
867
862
|
export declare class IxMenuSettingsItem {
|
|
868
863
|
protected z: NgZone;
|
|
869
|
-
protected el:
|
|
864
|
+
protected el: HTMLIxMenuSettingsItemElement;
|
|
870
865
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
871
866
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuSettingsItem, never>;
|
|
872
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuSettingsItem, "ix-menu-settings-item", never, { "label": "label"; }, {}, never, ["*"]>;
|
|
867
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuSettingsItem, "ix-menu-settings-item", never, { "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
873
868
|
}
|
|
874
869
|
export declare interface IxMenuSettingsItem extends Components.IxMenuSettingsItem {
|
|
875
870
|
/**
|
|
@@ -879,10 +874,10 @@ export declare interface IxMenuSettingsItem extends Components.IxMenuSettingsIte
|
|
|
879
874
|
}
|
|
880
875
|
export declare class IxMessageBar {
|
|
881
876
|
protected z: NgZone;
|
|
882
|
-
protected el:
|
|
877
|
+
protected el: HTMLIxMessageBarElement;
|
|
883
878
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
884
879
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxMessageBar, never>;
|
|
885
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxMessageBar, "ix-message-bar", never, { "dismissible": "dismissible"; "type": "type"; }, {}, never, ["*"]>;
|
|
880
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxMessageBar, "ix-message-bar", never, { "dismissible": { "alias": "dismissible"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
886
881
|
}
|
|
887
882
|
export declare interface IxMessageBar extends Components.IxMessageBar {
|
|
888
883
|
/**
|
|
@@ -896,10 +891,10 @@ export declare interface IxMessageBar extends Components.IxMessageBar {
|
|
|
896
891
|
}
|
|
897
892
|
export declare class IxModal {
|
|
898
893
|
protected z: NgZone;
|
|
899
|
-
protected el:
|
|
894
|
+
protected el: HTMLIxModalElement;
|
|
900
895
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
901
896
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxModal, never>;
|
|
902
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxModal, "ix-modal", never, { "animation": "animation"; "backdrop": "backdrop"; "beforeDismiss": "beforeDismiss"; "centered": "centered"; "closeOnBackdropClick": "closeOnBackdropClick"; "
|
|
897
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxModal, "ix-modal", never, { "animation": { "alias": "animation"; "required": false; }; "backdrop": { "alias": "backdrop"; "required": false; }; "beforeDismiss": { "alias": "beforeDismiss"; "required": false; }; "centered": { "alias": "centered"; "required": false; }; "closeOnBackdropClick": { "alias": "closeOnBackdropClick"; "required": false; }; "closeOnEscape": { "alias": "closeOnEscape"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
903
898
|
}
|
|
904
899
|
export declare interface IxModal extends Components.IxModal {
|
|
905
900
|
/**
|
|
@@ -913,28 +908,28 @@ export declare interface IxModal extends Components.IxModal {
|
|
|
913
908
|
}
|
|
914
909
|
export declare class IxModalContent {
|
|
915
910
|
protected z: NgZone;
|
|
916
|
-
protected el:
|
|
911
|
+
protected el: HTMLIxModalContentElement;
|
|
917
912
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
918
913
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxModalContent, never>;
|
|
919
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxModalContent, "ix-modal-content", never, {}, {}, never, ["*"]>;
|
|
914
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxModalContent, "ix-modal-content", never, {}, {}, never, ["*"], false, never>;
|
|
920
915
|
}
|
|
921
916
|
export declare interface IxModalContent extends Components.IxModalContent {
|
|
922
917
|
}
|
|
923
918
|
export declare class IxModalFooter {
|
|
924
919
|
protected z: NgZone;
|
|
925
|
-
protected el:
|
|
920
|
+
protected el: HTMLIxModalFooterElement;
|
|
926
921
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
927
922
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxModalFooter, never>;
|
|
928
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxModalFooter, "ix-modal-footer", never, {}, {}, never, ["*"]>;
|
|
923
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxModalFooter, "ix-modal-footer", never, {}, {}, never, ["*"], false, never>;
|
|
929
924
|
}
|
|
930
925
|
export declare interface IxModalFooter extends Components.IxModalFooter {
|
|
931
926
|
}
|
|
932
927
|
export declare class IxModalHeader {
|
|
933
928
|
protected z: NgZone;
|
|
934
|
-
protected el:
|
|
929
|
+
protected el: HTMLIxModalHeaderElement;
|
|
935
930
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
936
931
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxModalHeader, never>;
|
|
937
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxModalHeader, "ix-modal-header", never, { "hideClose": "hideClose"; "icon": "icon"; "iconColor": "iconColor"; }, {}, never, ["*"]>;
|
|
932
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxModalHeader, "ix-modal-header", never, { "hideClose": { "alias": "hideClose"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
938
933
|
}
|
|
939
934
|
export declare interface IxModalHeader extends Components.IxModalHeader {
|
|
940
935
|
/**
|
|
@@ -945,10 +940,10 @@ export declare interface IxModalHeader extends Components.IxModalHeader {
|
|
|
945
940
|
}
|
|
946
941
|
export declare class IxNumberInput {
|
|
947
942
|
protected z: NgZone;
|
|
948
|
-
protected el:
|
|
943
|
+
protected el: HTMLIxNumberInputElement;
|
|
949
944
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
950
945
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxNumberInput, never>;
|
|
951
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxNumberInput, "ix-number-input", never, { "allowedCharactersPattern": "allowedCharactersPattern"; "disabled": "disabled"; "helperText": "helperText"; "infoText": "infoText"; "invalidText": "invalidText"; "label": "label"; "max": "max"; "min": "min"; "name": "name"; "pattern": "pattern"; "placeholder": "placeholder"; "readonly": "readonly"; "required": "required"; "showStepperButtons": "showStepperButtons"; "showTextAsTooltip": "showTextAsTooltip"; "validText": "validText"; "value": "value"; "warningText": "warningText"; }, {}, never, ["*"]>;
|
|
946
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxNumberInput, "ix-number-input", never, { "allowedCharactersPattern": { "alias": "allowedCharactersPattern"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "infoText": { "alias": "infoText"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "name": { "alias": "name"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "showStepperButtons": { "alias": "showStepperButtons"; "required": false; }; "showTextAsTooltip": { "alias": "showTextAsTooltip"; "required": false; }; "step": { "alias": "step"; "required": false; }; "validText": { "alias": "validText"; "required": false; }; "value": { "alias": "value"; "required": false; }; "warningText": { "alias": "warningText"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
952
947
|
}
|
|
953
948
|
export declare interface IxNumberInput extends Components.IxNumberInput {
|
|
954
949
|
/**
|
|
@@ -966,10 +961,10 @@ export declare interface IxNumberInput extends Components.IxNumberInput {
|
|
|
966
961
|
}
|
|
967
962
|
export declare class IxPagination {
|
|
968
963
|
protected z: NgZone;
|
|
969
|
-
protected el:
|
|
964
|
+
protected el: HTMLIxPaginationElement;
|
|
970
965
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
971
966
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxPagination, never>;
|
|
972
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxPagination, "ix-pagination", never, { "advanced": "advanced"; "count": "count"; "i18nItems": "i18nItems"; "i18nOf": "i18nOf"; "i18nPage": "i18nPage"; "itemCount": "itemCount"; "selectedPage": "selectedPage"; "showItemCount": "showItemCount"; }, {}, never, ["*"]>;
|
|
967
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxPagination, "ix-pagination", never, { "advanced": { "alias": "advanced"; "required": false; }; "count": { "alias": "count"; "required": false; }; "i18nItems": { "alias": "i18nItems"; "required": false; }; "i18nOf": { "alias": "i18nOf"; "required": false; }; "i18nPage": { "alias": "i18nPage"; "required": false; }; "itemCount": { "alias": "itemCount"; "required": false; }; "selectedPage": { "alias": "selectedPage"; "required": false; }; "showItemCount": { "alias": "showItemCount"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
973
968
|
}
|
|
974
969
|
export declare interface IxPagination extends Components.IxPagination {
|
|
975
970
|
/**
|
|
@@ -983,10 +978,10 @@ export declare interface IxPagination extends Components.IxPagination {
|
|
|
983
978
|
}
|
|
984
979
|
export declare class IxPane {
|
|
985
980
|
protected z: NgZone;
|
|
986
|
-
protected el:
|
|
981
|
+
protected el: HTMLIxPaneElement;
|
|
987
982
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
988
983
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxPane, never>;
|
|
989
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxPane, "ix-pane", never, { "borderless": "borderless"; "composition": "composition"; "expanded": "expanded"; "heading": "heading"; "hideOnCollapse": "hideOnCollapse"; "icon": "icon"; "size": "size"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
984
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxPane, "ix-pane", never, { "borderless": { "alias": "borderless"; "required": false; }; "composition": { "alias": "composition"; "required": false; }; "expanded": { "alias": "expanded"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "hideOnCollapse": { "alias": "hideOnCollapse"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "size": { "alias": "size"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
990
985
|
}
|
|
991
986
|
export declare interface IxPane extends Components.IxPane {
|
|
992
987
|
/**
|
|
@@ -1004,37 +999,46 @@ export declare interface IxPane extends Components.IxPane {
|
|
|
1004
999
|
}
|
|
1005
1000
|
export declare class IxPaneLayout {
|
|
1006
1001
|
protected z: NgZone;
|
|
1007
|
-
protected el:
|
|
1002
|
+
protected el: HTMLIxPaneLayoutElement;
|
|
1008
1003
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1009
1004
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxPaneLayout, never>;
|
|
1010
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxPaneLayout, "ix-pane-layout", never, { "borderless": "borderless"; "layout": "layout"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
1005
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxPaneLayout, "ix-pane-layout", never, { "borderless": { "alias": "borderless"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1011
1006
|
}
|
|
1012
1007
|
export declare interface IxPaneLayout extends Components.IxPaneLayout {
|
|
1013
1008
|
}
|
|
1014
1009
|
export declare class IxPill {
|
|
1015
1010
|
protected z: NgZone;
|
|
1016
|
-
protected el:
|
|
1011
|
+
protected el: HTMLIxPillElement;
|
|
1017
1012
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1018
1013
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxPill, never>;
|
|
1019
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxPill, "ix-pill", never, { "alignLeft": "alignLeft"; "
|
|
1014
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxPill, "ix-pill", never, { "alignLeft": { "alias": "alignLeft"; "required": false; }; "background": { "alias": "background"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "outline": { "alias": "outline"; "required": false; }; "pillColor": { "alias": "pillColor"; "required": false; }; "tooltipText": { "alias": "tooltipText"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1020
1015
|
}
|
|
1021
1016
|
export declare interface IxPill extends Components.IxPill {
|
|
1022
1017
|
}
|
|
1018
|
+
export declare class IxProgressIndicator {
|
|
1019
|
+
protected z: NgZone;
|
|
1020
|
+
protected el: HTMLIxProgressIndicatorElement;
|
|
1021
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1022
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxProgressIndicator, never>;
|
|
1023
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxProgressIndicator, "ix-progress-indicator", never, { "helperText": { "alias": "helperText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "showTextAsTooltip": { "alias": "showTextAsTooltip"; "required": false; }; "size": { "alias": "size"; "required": false; }; "status": { "alias": "status"; "required": false; }; "textAlignment": { "alias": "textAlignment"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1024
|
+
}
|
|
1025
|
+
export declare interface IxProgressIndicator extends Components.IxProgressIndicator {
|
|
1026
|
+
}
|
|
1023
1027
|
export declare class IxPushCard {
|
|
1024
1028
|
protected z: NgZone;
|
|
1025
|
-
protected el:
|
|
1029
|
+
protected el: HTMLIxPushCardElement;
|
|
1026
1030
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1027
1031
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxPushCard, never>;
|
|
1028
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxPushCard, "ix-push-card", never, { "collapse": "collapse"; "heading": "heading"; "icon": "icon"; "notification": "notification"; "subheading": "subheading"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
1032
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxPushCard, "ix-push-card", never, { "collapse": { "alias": "collapse"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "notification": { "alias": "notification"; "required": false; }; "subheading": { "alias": "subheading"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1029
1033
|
}
|
|
1030
1034
|
export declare interface IxPushCard extends Components.IxPushCard {
|
|
1031
1035
|
}
|
|
1032
1036
|
export declare class IxRadio {
|
|
1033
1037
|
protected z: NgZone;
|
|
1034
|
-
protected el:
|
|
1038
|
+
protected el: HTMLIxRadioElement;
|
|
1035
1039
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1036
1040
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxRadio, never>;
|
|
1037
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxRadio, "ix-radio", never, { "checked": "checked"; "disabled": "disabled"; "label": "label"; "name": "name"; "value": "value"; }, {}, never, ["*"]>;
|
|
1041
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxRadio, "ix-radio", never, { "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1038
1042
|
}
|
|
1039
1043
|
export declare interface IxRadio extends Components.IxRadio {
|
|
1040
1044
|
/**
|
|
@@ -1045,13 +1049,17 @@ export declare interface IxRadio extends Components.IxRadio {
|
|
|
1045
1049
|
* Event emitted when the value of the radio changes
|
|
1046
1050
|
*/
|
|
1047
1051
|
valueChange: EventEmitter<CustomEvent<string>>;
|
|
1052
|
+
/**
|
|
1053
|
+
* Event emitted when the radio is blurred
|
|
1054
|
+
*/
|
|
1055
|
+
ixBlur: EventEmitter<CustomEvent<void>>;
|
|
1048
1056
|
}
|
|
1049
1057
|
export declare class IxRadioGroup {
|
|
1050
1058
|
protected z: NgZone;
|
|
1051
|
-
protected el:
|
|
1059
|
+
protected el: HTMLIxRadioGroupElement;
|
|
1052
1060
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1053
1061
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxRadioGroup, never>;
|
|
1054
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxRadioGroup, "ix-radio-group", never, { "direction": "direction"; "helperText": "helperText"; "infoText": "infoText"; "invalidText": "invalidText"; "label": "label"; "showTextAsTooltip": "showTextAsTooltip"; "validText": "validText"; "value": "value"; "warningText": "warningText"; }, {}, never, ["*"]>;
|
|
1062
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxRadioGroup, "ix-radio-group", never, { "direction": { "alias": "direction"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "infoText": { "alias": "infoText"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "showTextAsTooltip": { "alias": "showTextAsTooltip"; "required": false; }; "validText": { "alias": "validText"; "required": false; }; "value": { "alias": "value"; "required": false; }; "warningText": { "alias": "warningText"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1055
1063
|
}
|
|
1056
1064
|
export declare interface IxRadioGroup extends Components.IxRadioGroup {
|
|
1057
1065
|
/**
|
|
@@ -1061,31 +1069,27 @@ export declare interface IxRadioGroup extends Components.IxRadioGroup {
|
|
|
1061
1069
|
}
|
|
1062
1070
|
export declare class IxRow {
|
|
1063
1071
|
protected z: NgZone;
|
|
1064
|
-
protected el:
|
|
1072
|
+
protected el: HTMLIxRowElement;
|
|
1065
1073
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1066
1074
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxRow, never>;
|
|
1067
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxRow, "ix-row", never, {}, {}, never, ["*"]>;
|
|
1075
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxRow, "ix-row", never, {}, {}, never, ["*"], false, never>;
|
|
1068
1076
|
}
|
|
1069
1077
|
export declare interface IxRow extends Components.IxRow {
|
|
1070
1078
|
}
|
|
1071
1079
|
export declare class IxSelect {
|
|
1072
1080
|
protected z: NgZone;
|
|
1073
|
-
protected el:
|
|
1081
|
+
protected el: HTMLIxSelectElement;
|
|
1074
1082
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1075
1083
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxSelect, never>;
|
|
1076
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxSelect, "ix-select", never, { "allowClear": "allowClear"; "disabled": "disabled"; "dropdownMaxWidth": "dropdownMaxWidth"; "dropdownWidth": "dropdownWidth"; "editable": "editable"; "helperText": "helperText"; "hideListHeader": "hideListHeader"; "i18nNoMatches": "i18nNoMatches"; "i18nPlaceholder": "i18nPlaceholder"; "i18nPlaceholderEditable": "i18nPlaceholderEditable"; "i18nSelectListHeader": "i18nSelectListHeader"; "infoText": "infoText"; "invalidText": "invalidText"; "label": "label"; "mode": "mode"; "name": "name"; "readonly": "readonly"; "required": "required"
|
|
1084
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxSelect, "ix-select", never, { "allowClear": { "alias": "allowClear"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "dropdownMaxWidth": { "alias": "dropdownMaxWidth"; "required": false; }; "dropdownWidth": { "alias": "dropdownWidth"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "hideListHeader": { "alias": "hideListHeader"; "required": false; }; "i18nNoMatches": { "alias": "i18nNoMatches"; "required": false; }; "i18nPlaceholder": { "alias": "i18nPlaceholder"; "required": false; }; "i18nPlaceholderEditable": { "alias": "i18nPlaceholderEditable"; "required": false; }; "i18nSelectListHeader": { "alias": "i18nSelectListHeader"; "required": false; }; "infoText": { "alias": "infoText"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "name": { "alias": "name"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "showTextAsTooltip": { "alias": "showTextAsTooltip"; "required": false; }; "validText": { "alias": "validText"; "required": false; }; "value": { "alias": "value"; "required": false; }; "warningText": { "alias": "warningText"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1077
1085
|
}
|
|
1078
1086
|
export declare interface IxSelect extends Components.IxSelect {
|
|
1079
1087
|
/**
|
|
1080
|
-
* Value changed
|
|
1088
|
+
* Value changed
|
|
1081
1089
|
*/
|
|
1082
1090
|
valueChange: EventEmitter<CustomEvent<string | string[]>>;
|
|
1083
1091
|
/**
|
|
1084
|
-
*
|
|
1085
|
-
*/
|
|
1086
|
-
itemSelectionChange: EventEmitter<CustomEvent<string[]>>;
|
|
1087
|
-
/**
|
|
1088
|
-
* Event dispatched whenever the text input changes. @since 2.0.0
|
|
1092
|
+
* Event dispatched whenever the text input changes.
|
|
1089
1093
|
*/
|
|
1090
1094
|
inputChange: EventEmitter<CustomEvent<string>>;
|
|
1091
1095
|
/**
|
|
@@ -1099,10 +1103,10 @@ export declare interface IxSelect extends Components.IxSelect {
|
|
|
1099
1103
|
}
|
|
1100
1104
|
export declare class IxSelectItem {
|
|
1101
1105
|
protected z: NgZone;
|
|
1102
|
-
protected el:
|
|
1106
|
+
protected el: HTMLIxSelectItemElement;
|
|
1103
1107
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1104
1108
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxSelectItem, never>;
|
|
1105
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxSelectItem, "ix-select-item", never, { "label": "label"; "selected": "selected"; "value": "value"; }, {}, never, ["*"]>;
|
|
1109
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxSelectItem, "ix-select-item", never, { "label": { "alias": "label"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1106
1110
|
}
|
|
1107
1111
|
export declare interface IxSelectItem extends Components.IxSelectItem {
|
|
1108
1112
|
/**
|
|
@@ -1112,29 +1116,29 @@ export declare interface IxSelectItem extends Components.IxSelectItem {
|
|
|
1112
1116
|
}
|
|
1113
1117
|
export declare class IxSlider {
|
|
1114
1118
|
protected z: NgZone;
|
|
1115
|
-
protected el:
|
|
1119
|
+
protected el: HTMLIxSliderElement;
|
|
1116
1120
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1117
1121
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxSlider, never>;
|
|
1118
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxSlider, "ix-slider", never, { "disabled": "disabled"; "error": "error"; "marker": "marker"; "max": "max"; "min": "min"; "step": "step"; "trace": "trace"; "traceReference": "traceReference"; "value": "value"; }, {}, never, ["*"]>;
|
|
1122
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxSlider, "ix-slider", never, { "disabled": { "alias": "disabled"; "required": false; }; "error": { "alias": "error"; "required": false; }; "marker": { "alias": "marker"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "step": { "alias": "step"; "required": false; }; "trace": { "alias": "trace"; "required": false; }; "traceReference": { "alias": "traceReference"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1119
1123
|
}
|
|
1120
1124
|
export declare interface IxSlider extends Components.IxSlider {
|
|
1121
1125
|
valueChange: EventEmitter<CustomEvent<number>>;
|
|
1122
1126
|
}
|
|
1123
1127
|
export declare class IxSpinner {
|
|
1124
1128
|
protected z: NgZone;
|
|
1125
|
-
protected el:
|
|
1129
|
+
protected el: HTMLIxSpinnerElement;
|
|
1126
1130
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1127
1131
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxSpinner, never>;
|
|
1128
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxSpinner, "ix-spinner", never, { "size": "size"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
1132
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxSpinner, "ix-spinner", never, { "size": { "alias": "size"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1129
1133
|
}
|
|
1130
1134
|
export declare interface IxSpinner extends Components.IxSpinner {
|
|
1131
1135
|
}
|
|
1132
1136
|
export declare class IxSplitButton {
|
|
1133
1137
|
protected z: NgZone;
|
|
1134
|
-
protected el:
|
|
1138
|
+
protected el: HTMLIxSplitButtonElement;
|
|
1135
1139
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1136
1140
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxSplitButton, never>;
|
|
1137
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxSplitButton, "ix-split-button", never, { "closeBehavior": "closeBehavior"; "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "label": "label"; "outline": "outline"; "placement": "placement"; "splitIcon": "splitIcon"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
1141
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxSplitButton, "ix-split-button", never, { "closeBehavior": { "alias": "closeBehavior"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "ghost": { "alias": "ghost"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "outline": { "alias": "outline"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "splitIcon": { "alias": "splitIcon"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1138
1142
|
}
|
|
1139
1143
|
export declare interface IxSplitButton extends Components.IxSplitButton {
|
|
1140
1144
|
/**
|
|
@@ -1142,51 +1146,38 @@ export declare interface IxSplitButton extends Components.IxSplitButton {
|
|
|
1142
1146
|
*/
|
|
1143
1147
|
buttonClick: EventEmitter<CustomEvent<MouseEvent>>;
|
|
1144
1148
|
}
|
|
1145
|
-
export declare class IxSplitButtonItem {
|
|
1146
|
-
protected z: NgZone;
|
|
1147
|
-
protected el: HTMLElement;
|
|
1148
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1149
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IxSplitButtonItem, never>;
|
|
1150
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxSplitButtonItem, "ix-split-button-item", never, { "icon": "icon"; "label": "label"; }, {}, never, ["*"]>;
|
|
1151
|
-
}
|
|
1152
|
-
export declare interface IxSplitButtonItem extends Components.IxSplitButtonItem {
|
|
1153
|
-
/**
|
|
1154
|
-
* Dropdown item clicked
|
|
1155
|
-
*/
|
|
1156
|
-
itemClick: EventEmitter<CustomEvent<MouseEvent>>;
|
|
1157
|
-
}
|
|
1158
1149
|
export declare class IxTabItem {
|
|
1159
1150
|
protected z: NgZone;
|
|
1160
|
-
protected el:
|
|
1151
|
+
protected el: HTMLIxTabItemElement;
|
|
1161
1152
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1162
1153
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxTabItem, never>;
|
|
1163
|
-
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, ["*"]>;
|
|
1154
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxTabItem, "ix-tab-item", never, { "counter": { "alias": "counter"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "small": { "alias": "small"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1164
1155
|
}
|
|
1165
1156
|
export declare interface IxTabItem extends Components.IxTabItem {
|
|
1166
1157
|
/**
|
|
1167
|
-
* Emitted when the tab is clicked.
|
|
1158
|
+
* Emitted when the tab is clicked.
|
|
1168
1159
|
*/
|
|
1169
1160
|
tabClick: EventEmitter<CustomEvent<IIxTabItemTabClickDetail>>;
|
|
1170
1161
|
}
|
|
1171
1162
|
export declare class IxTabs {
|
|
1172
1163
|
protected z: NgZone;
|
|
1173
|
-
protected el:
|
|
1164
|
+
protected el: HTMLIxTabsElement;
|
|
1174
1165
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1175
1166
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxTabs, never>;
|
|
1176
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxTabs, "ix-tabs", never, { "layout": "layout"; "placement": "placement"; "rounded": "rounded"; "selected": "selected"; "small": "small"; }, {}, never, ["*"]>;
|
|
1167
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxTabs, "ix-tabs", never, { "layout": { "alias": "layout"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "small": { "alias": "small"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1177
1168
|
}
|
|
1178
1169
|
export declare interface IxTabs extends Components.IxTabs {
|
|
1179
1170
|
/**
|
|
1180
|
-
* `selected` property changed
|
|
1171
|
+
* `selected` property changed
|
|
1181
1172
|
*/
|
|
1182
1173
|
selectedChange: EventEmitter<CustomEvent<number>>;
|
|
1183
1174
|
}
|
|
1184
1175
|
export declare class IxTextarea {
|
|
1185
1176
|
protected z: NgZone;
|
|
1186
|
-
protected el:
|
|
1177
|
+
protected el: HTMLIxTextareaElement;
|
|
1187
1178
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1188
1179
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxTextarea, never>;
|
|
1189
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxTextarea, "ix-textarea", never, { "disabled": "disabled"; "helperText": "helperText"; "infoText": "infoText"; "invalidText": "invalidText"; "label": "label"; "maxLength": "maxLength"; "minLength": "minLength"; "name": "name"; "placeholder": "placeholder"; "readonly": "readonly"; "required": "required"; "resizeBehavior": "resizeBehavior"; "showTextAsTooltip": "showTextAsTooltip"; "textareaCols": "textareaCols"; "textareaHeight": "textareaHeight"; "textareaRows": "textareaRows"; "textareaWidth": "textareaWidth"; "validText": "validText"; "value": "value"; "warningText": "warningText"; }, {}, never, ["*"]>;
|
|
1180
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxTextarea, "ix-textarea", never, { "disabled": { "alias": "disabled"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "infoText": { "alias": "infoText"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "resizeBehavior": { "alias": "resizeBehavior"; "required": false; }; "showTextAsTooltip": { "alias": "showTextAsTooltip"; "required": false; }; "textareaCols": { "alias": "textareaCols"; "required": false; }; "textareaHeight": { "alias": "textareaHeight"; "required": false; }; "textareaRows": { "alias": "textareaRows"; "required": false; }; "textareaWidth": { "alias": "textareaWidth"; "required": false; }; "validText": { "alias": "validText"; "required": false; }; "value": { "alias": "value"; "required": false; }; "warningText": { "alias": "warningText"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1190
1181
|
}
|
|
1191
1182
|
export declare interface IxTextarea extends Components.IxTextarea {
|
|
1192
1183
|
/**
|
|
@@ -1204,29 +1195,42 @@ export declare interface IxTextarea extends Components.IxTextarea {
|
|
|
1204
1195
|
}
|
|
1205
1196
|
export declare class IxTile {
|
|
1206
1197
|
protected z: NgZone;
|
|
1207
|
-
protected el:
|
|
1198
|
+
protected el: HTMLIxTileElement;
|
|
1208
1199
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1209
1200
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxTile, never>;
|
|
1210
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxTile, "ix-tile", never, { "size": "size"; }, {}, never, ["*"]>;
|
|
1201
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxTile, "ix-tile", never, { "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1211
1202
|
}
|
|
1212
1203
|
export declare interface IxTile extends Components.IxTile {
|
|
1213
1204
|
}
|
|
1205
|
+
export declare class IxTimeInput {
|
|
1206
|
+
protected z: NgZone;
|
|
1207
|
+
protected el: HTMLIxTimeInputElement;
|
|
1208
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1209
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IxTimeInput, never>;
|
|
1210
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxTimeInput, "ix-time-input", never, { "disabled": { "alias": "disabled"; "required": false; }; "format": { "alias": "format"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "hourInterval": { "alias": "hourInterval"; "required": false; }; "i18nErrorTimeUnparsable": { "alias": "i18nErrorTimeUnparsable"; "required": false; }; "i18nHourColumnHeader": { "alias": "i18nHourColumnHeader"; "required": false; }; "i18nMillisecondColumnHeader": { "alias": "i18nMillisecondColumnHeader"; "required": false; }; "i18nMinuteColumnHeader": { "alias": "i18nMinuteColumnHeader"; "required": false; }; "i18nSecondColumnHeader": { "alias": "i18nSecondColumnHeader"; "required": false; }; "i18nSelectTime": { "alias": "i18nSelectTime"; "required": false; }; "i18nTime": { "alias": "i18nTime"; "required": false; }; "infoText": { "alias": "infoText"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "millisecondInterval": { "alias": "millisecondInterval"; "required": false; }; "minuteInterval": { "alias": "minuteInterval"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "secondInterval": { "alias": "secondInterval"; "required": false; }; "showTextAsTooltip": { "alias": "showTextAsTooltip"; "required": false; }; "validText": { "alias": "validText"; "required": false; }; "value": { "alias": "value"; "required": false; }; "warningText": { "alias": "warningText"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1211
|
+
}
|
|
1212
|
+
export declare interface IxTimeInput extends Components.IxTimeInput {
|
|
1213
|
+
/**
|
|
1214
|
+
* Input change event.
|
|
1215
|
+
*/
|
|
1216
|
+
valueChange: EventEmitter<CustomEvent<string>>;
|
|
1217
|
+
/**
|
|
1218
|
+
* Validation state change event.
|
|
1219
|
+
*/
|
|
1220
|
+
validityStateChange: EventEmitter<CustomEvent<IIxTimeInputTimeInputValidityState>>;
|
|
1221
|
+
}
|
|
1214
1222
|
export declare class IxTimePicker {
|
|
1215
1223
|
protected z: NgZone;
|
|
1216
|
-
protected el:
|
|
1224
|
+
protected el: HTMLIxTimePickerElement;
|
|
1217
1225
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1218
1226
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxTimePicker, never>;
|
|
1219
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxTimePicker, "ix-time-picker", never, { "corners": "corners"; "format": "format"; "
|
|
1227
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxTimePicker, "ix-time-picker", never, { "corners": { "alias": "corners"; "required": false; }; "format": { "alias": "format"; "required": false; }; "hideHeader": { "alias": "hideHeader"; "required": false; }; "hourInterval": { "alias": "hourInterval"; "required": false; }; "i18nConfirmTime": { "alias": "i18nConfirmTime"; "required": false; }; "i18nHeader": { "alias": "i18nHeader"; "required": false; }; "i18nHourColumnHeader": { "alias": "i18nHourColumnHeader"; "required": false; }; "i18nMillisecondColumnHeader": { "alias": "i18nMillisecondColumnHeader"; "required": false; }; "i18nMinuteColumnHeader": { "alias": "i18nMinuteColumnHeader"; "required": false; }; "i18nSecondColumnHeader": { "alias": "i18nSecondColumnHeader"; "required": false; }; "millisecondInterval": { "alias": "millisecondInterval"; "required": false; }; "minuteInterval": { "alias": "minuteInterval"; "required": false; }; "secondInterval": { "alias": "secondInterval"; "required": false; }; "showHour": { "alias": "showHour"; "required": false; }; "showMinutes": { "alias": "showMinutes"; "required": false; }; "showSeconds": { "alias": "showSeconds"; "required": false; }; "standaloneAppearance": { "alias": "standaloneAppearance"; "required": false; }; "textSelectTime": { "alias": "textSelectTime"; "required": false; }; "textTime": { "alias": "textTime"; "required": false; }; "time": { "alias": "time"; "required": false; }; "timeReference": { "alias": "timeReference"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1220
1228
|
}
|
|
1221
1229
|
export declare interface IxTimePicker extends Components.IxTimePicker {
|
|
1222
1230
|
/**
|
|
1223
1231
|
* Time event
|
|
1224
1232
|
*/
|
|
1225
1233
|
timeSelect: EventEmitter<CustomEvent<string>>;
|
|
1226
|
-
/**
|
|
1227
|
-
* Time event @deprecated Will be removed in 3.0.0. Use `time-select` event.
|
|
1228
|
-
*/
|
|
1229
|
-
done: EventEmitter<CustomEvent<string>>;
|
|
1230
1234
|
/**
|
|
1231
1235
|
* Time change event
|
|
1232
1236
|
*/
|
|
@@ -1234,10 +1238,10 @@ export declare interface IxTimePicker extends Components.IxTimePicker {
|
|
|
1234
1238
|
}
|
|
1235
1239
|
export declare class IxToast {
|
|
1236
1240
|
protected z: NgZone;
|
|
1237
|
-
protected el:
|
|
1241
|
+
protected el: HTMLIxToastElement;
|
|
1238
1242
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1239
1243
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxToast, never>;
|
|
1240
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxToast, "ix-toast", never, { "autoClose": "autoClose"; "autoCloseDelay": "autoCloseDelay"; "icon": "icon"; "iconColor": "iconColor"; "toastTitle": "toastTitle"; "type": "type"; }, {}, never, ["*"]>;
|
|
1244
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxToast, "ix-toast", never, { "autoClose": { "alias": "autoClose"; "required": false; }; "autoCloseDelay": { "alias": "autoCloseDelay"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "toastTitle": { "alias": "toastTitle"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1241
1245
|
}
|
|
1242
1246
|
export declare interface IxToast extends Components.IxToast {
|
|
1243
1247
|
/**
|
|
@@ -1247,32 +1251,36 @@ export declare interface IxToast extends Components.IxToast {
|
|
|
1247
1251
|
}
|
|
1248
1252
|
export declare class IxToastContainer {
|
|
1249
1253
|
protected z: NgZone;
|
|
1250
|
-
protected el:
|
|
1254
|
+
protected el: HTMLIxToastContainerElement;
|
|
1251
1255
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1252
1256
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxToastContainer, never>;
|
|
1253
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxToastContainer, "ix-toast-container", never, { "containerClass": "containerClass"; "containerId": "containerId"; "position": "position"; }, {}, never, ["*"]>;
|
|
1257
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxToastContainer, "ix-toast-container", never, { "containerClass": { "alias": "containerClass"; "required": false; }; "containerId": { "alias": "containerId"; "required": false; }; "position": { "alias": "position"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1254
1258
|
}
|
|
1255
1259
|
export declare interface IxToastContainer extends Components.IxToastContainer {
|
|
1256
1260
|
}
|
|
1257
1261
|
export declare class IxToggle {
|
|
1258
1262
|
protected z: NgZone;
|
|
1259
|
-
protected el:
|
|
1263
|
+
protected el: HTMLIxToggleElement;
|
|
1260
1264
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1261
1265
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxToggle, never>;
|
|
1262
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxToggle, "ix-toggle", never, { "checked": "checked"; "disabled": "disabled"; "hideText": "hideText"; "indeterminate": "indeterminate"; "name": "name"; "required": "required"; "textIndeterminate": "textIndeterminate"; "textOff": "textOff"; "textOn": "textOn"; "value": "value"; }, {}, never, ["*"]>;
|
|
1266
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxToggle, "ix-toggle", never, { "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "hideText": { "alias": "hideText"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "textIndeterminate": { "alias": "textIndeterminate"; "required": false; }; "textOff": { "alias": "textOff"; "required": false; }; "textOn": { "alias": "textOn"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1263
1267
|
}
|
|
1264
1268
|
export declare interface IxToggle extends Components.IxToggle {
|
|
1265
1269
|
/**
|
|
1266
1270
|
* An event will be dispatched each time the slide-toggle changes its value.
|
|
1267
1271
|
*/
|
|
1268
1272
|
checkedChange: EventEmitter<CustomEvent<boolean>>;
|
|
1273
|
+
/**
|
|
1274
|
+
* An event will be dispatched each time the toggle is blurred.
|
|
1275
|
+
*/
|
|
1276
|
+
ixBlur: EventEmitter<CustomEvent<void>>;
|
|
1269
1277
|
}
|
|
1270
1278
|
export declare class IxToggleButton {
|
|
1271
1279
|
protected z: NgZone;
|
|
1272
|
-
protected el:
|
|
1280
|
+
protected el: HTMLIxToggleButtonElement;
|
|
1273
1281
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1274
1282
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxToggleButton, never>;
|
|
1275
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxToggleButton, "ix-toggle-button", never, { "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "loading": "loading"; "outline": "outline"; "pressed": "pressed"; "variant": "variant"; }, {}, never, ["*"]>;
|
|
1283
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxToggleButton, "ix-toggle-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "ghost": { "alias": "ghost"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "outline": { "alias": "outline"; "required": false; }; "pressed": { "alias": "pressed"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1276
1284
|
}
|
|
1277
1285
|
export declare interface IxToggleButton extends Components.IxToggleButton {
|
|
1278
1286
|
/**
|
|
@@ -1282,19 +1290,19 @@ export declare interface IxToggleButton extends Components.IxToggleButton {
|
|
|
1282
1290
|
}
|
|
1283
1291
|
export declare class IxTooltip {
|
|
1284
1292
|
protected z: NgZone;
|
|
1285
|
-
protected el:
|
|
1293
|
+
protected el: HTMLIxTooltipElement;
|
|
1286
1294
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1287
1295
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxTooltip, never>;
|
|
1288
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxTooltip, "ix-tooltip", never, { "for": "for"; "interactive": "interactive"; "placement": "placement"; "titleContent": "titleContent"; }, {}, never, ["*"]>;
|
|
1296
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxTooltip, "ix-tooltip", never, { "for": { "alias": "for"; "required": false; }; "interactive": { "alias": "interactive"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "titleContent": { "alias": "titleContent"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1289
1297
|
}
|
|
1290
1298
|
export declare interface IxTooltip extends Components.IxTooltip {
|
|
1291
1299
|
}
|
|
1292
1300
|
export declare class IxTreeItem {
|
|
1293
1301
|
protected z: NgZone;
|
|
1294
|
-
protected el:
|
|
1302
|
+
protected el: HTMLIxTreeItemElement;
|
|
1295
1303
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1296
1304
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxTreeItem, never>;
|
|
1297
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxTreeItem, "ix-tree-item", never, { "context": "context"; "hasChildren": "hasChildren"; "text": "text"; }, {}, never, ["*"]>;
|
|
1305
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxTreeItem, "ix-tree-item", never, { "context": { "alias": "context"; "required": false; }; "hasChildren": { "alias": "hasChildren"; "required": false; }; "text": { "alias": "text"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1298
1306
|
}
|
|
1299
1307
|
export declare interface IxTreeItem extends Components.IxTreeItem {
|
|
1300
1308
|
/**
|
|
@@ -1308,19 +1316,19 @@ export declare interface IxTreeItem extends Components.IxTreeItem {
|
|
|
1308
1316
|
}
|
|
1309
1317
|
export declare class IxTypography {
|
|
1310
1318
|
protected z: NgZone;
|
|
1311
|
-
protected el:
|
|
1319
|
+
protected el: HTMLIxTypographyElement;
|
|
1312
1320
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1313
1321
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxTypography, never>;
|
|
1314
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxTypography, "ix-typography", never, { "bold": "bold"; "
|
|
1322
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxTypography, "ix-typography", never, { "bold": { "alias": "bold"; "required": false; }; "format": { "alias": "format"; "required": false; }; "textColor": { "alias": "textColor"; "required": false; }; "textDecoration": { "alias": "textDecoration"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1315
1323
|
}
|
|
1316
1324
|
export declare interface IxTypography extends Components.IxTypography {
|
|
1317
1325
|
}
|
|
1318
1326
|
export declare class IxUpload {
|
|
1319
1327
|
protected z: NgZone;
|
|
1320
|
-
protected el:
|
|
1328
|
+
protected el: HTMLIxUploadElement;
|
|
1321
1329
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1322
1330
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxUpload, never>;
|
|
1323
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxUpload, "ix-upload", never, { "accept": "accept"; "disabled": "disabled"; "i18nUploadDisabled": "i18nUploadDisabled"; "i18nUploadFile": "i18nUploadFile"; "loadingText": "loadingText"; "multiline": "multiline"; "multiple": "multiple"; "selectFileText": "selectFileText"; "state": "state"; "uploadFailedText": "uploadFailedText"; "uploadSuccessText": "uploadSuccessText"; }, {}, never, ["*"]>;
|
|
1331
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxUpload, "ix-upload", never, { "accept": { "alias": "accept"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "i18nUploadDisabled": { "alias": "i18nUploadDisabled"; "required": false; }; "i18nUploadFile": { "alias": "i18nUploadFile"; "required": false; }; "loadingText": { "alias": "loadingText"; "required": false; }; "multiline": { "alias": "multiline"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "selectFileText": { "alias": "selectFileText"; "required": false; }; "state": { "alias": "state"; "required": false; }; "uploadFailedText": { "alias": "uploadFailedText"; "required": false; }; "uploadSuccessText": { "alias": "uploadSuccessText"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1324
1332
|
}
|
|
1325
1333
|
export declare interface IxUpload extends Components.IxUpload {
|
|
1326
1334
|
/**
|
|
@@ -1330,28 +1338,28 @@ export declare interface IxUpload extends Components.IxUpload {
|
|
|
1330
1338
|
}
|
|
1331
1339
|
export declare class IxValidationTooltip {
|
|
1332
1340
|
protected z: NgZone;
|
|
1333
|
-
protected el:
|
|
1341
|
+
protected el: HTMLIxValidationTooltipElement;
|
|
1334
1342
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1335
1343
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxValidationTooltip, never>;
|
|
1336
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxValidationTooltip, "ix-validation-tooltip", never, { "message": "message"; "placement": "placement"; "suppressAutomaticPlacement": "suppressAutomaticPlacement"; }, {}, never, ["*"]>;
|
|
1344
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxValidationTooltip, "ix-validation-tooltip", never, { "message": { "alias": "message"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "suppressAutomaticPlacement": { "alias": "suppressAutomaticPlacement"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1337
1345
|
}
|
|
1338
1346
|
export declare interface IxValidationTooltip extends Components.IxValidationTooltip {
|
|
1339
1347
|
}
|
|
1340
1348
|
export declare class IxWorkflowStep {
|
|
1341
1349
|
protected z: NgZone;
|
|
1342
|
-
protected el:
|
|
1350
|
+
protected el: HTMLIxWorkflowStepElement;
|
|
1343
1351
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1344
1352
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxWorkflowStep, never>;
|
|
1345
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxWorkflowStep, "ix-workflow-step", never, { "clickable": "clickable"; "disabled": "disabled"; "selected": "selected"; "status": "status"; "vertical": "vertical"; }, {}, never, ["*"]>;
|
|
1353
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxWorkflowStep, "ix-workflow-step", never, { "clickable": { "alias": "clickable"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "status": { "alias": "status"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1346
1354
|
}
|
|
1347
1355
|
export declare interface IxWorkflowStep extends Components.IxWorkflowStep {
|
|
1348
1356
|
}
|
|
1349
1357
|
export declare class IxWorkflowSteps {
|
|
1350
1358
|
protected z: NgZone;
|
|
1351
|
-
protected el:
|
|
1359
|
+
protected el: HTMLIxWorkflowStepsElement;
|
|
1352
1360
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
1353
1361
|
static ɵfac: i0.ɵɵFactoryDeclaration<IxWorkflowSteps, never>;
|
|
1354
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IxWorkflowSteps, "ix-workflow-steps", never, { "clickable": "clickable"; "selectedIndex": "selectedIndex"; "vertical": "vertical"; }, {}, never, ["*"]>;
|
|
1362
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IxWorkflowSteps, "ix-workflow-steps", never, { "clickable": { "alias": "clickable"; "required": false; }; "selectedIndex": { "alias": "selectedIndex"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1355
1363
|
}
|
|
1356
1364
|
export declare interface IxWorkflowSteps extends Components.IxWorkflowSteps {
|
|
1357
1365
|
/**
|