@siemens/ix-angular 2.6.1 → 3.0.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (152) hide show
  1. package/{control-value-accessors → common/directives/control-value-accessors}/boolean-value-accessor.d.ts +3 -3
  2. package/common/directives/control-value-accessors/date-value-accessor.d.ts +9 -0
  3. package/{control-value-accessors → common/directives/control-value-accessors}/radio-value-accessor.d.ts +3 -3
  4. package/{control-value-accessors → common/directives/control-value-accessors}/select-value-accessor.d.ts +3 -3
  5. package/common/directives/control-value-accessors/text-value-accessor.d.ts +9 -0
  6. package/{control-value-accessors → common/directives/control-value-accessors}/value-accessor.d.ts +10 -4
  7. package/common/directives/dropdown-trigger.d.ts +10 -0
  8. package/{tree → common/directives}/tree.d.ts +5 -5
  9. package/common/index.d.ts +6 -0
  10. package/common/providers/modal/index.d.ts +3 -0
  11. package/{modal → common/providers/modal}/modal.config.d.ts +1 -1
  12. package/{modal → common/providers/modal}/modal.service.d.ts +5 -0
  13. package/{toast → common/providers/toast}/index.d.ts +1 -0
  14. package/{toast → common/providers/toast}/toast.config.d.ts +1 -1
  15. package/common/utils/create-value-accessor-provider.d.ts +2 -0
  16. package/components.d.ts +137 -135
  17. package/declare-components.d.ts +1 -1
  18. package/directives/control-value-accessors/boolean-value-accessor.d.ts +8 -0
  19. package/directives/control-value-accessors/date-value-accessor.d.ts +8 -0
  20. package/directives/control-value-accessors/index.d.ts +5 -0
  21. package/directives/control-value-accessors/radio-value-accessor.d.ts +8 -0
  22. package/directives/control-value-accessors/select-value-accessor.d.ts +8 -0
  23. package/directives/control-value-accessors/text-value-accessor.d.ts +8 -0
  24. package/directives/dropdown-trigger.d.ts +10 -0
  25. package/{esm2020 → esm2022}/angular-component-lib/utils.mjs +1 -1
  26. package/esm2022/common/directives/control-value-accessors/boolean-value-accessor.mjs +32 -0
  27. package/esm2022/common/directives/control-value-accessors/date-value-accessor.mjs +28 -0
  28. package/esm2022/common/directives/control-value-accessors/index.mjs +14 -0
  29. package/esm2022/common/directives/control-value-accessors/radio-value-accessor.mjs +34 -0
  30. package/esm2022/common/directives/control-value-accessors/select-value-accessor.mjs +28 -0
  31. package/esm2022/common/directives/control-value-accessors/text-value-accessor.mjs +31 -0
  32. package/esm2022/common/directives/control-value-accessors/value-accessor.mjs +157 -0
  33. package/esm2022/common/directives/dropdown-trigger.mjs +28 -0
  34. package/esm2022/common/directives/tree.mjs +70 -0
  35. package/esm2022/common/index.mjs +15 -0
  36. package/esm2022/common/providers/modal/index.mjs +11 -0
  37. package/esm2022/common/providers/modal/modal-ref.mjs +41 -0
  38. package/esm2022/common/providers/modal/modal.config.mjs +10 -0
  39. package/esm2022/common/providers/modal/modal.service.mjs +90 -0
  40. package/esm2022/common/providers/toast/index.mjs +11 -0
  41. package/esm2022/common/providers/toast/toast.config.mjs +10 -0
  42. package/esm2022/common/providers/toast/toast.service.mjs +52 -0
  43. package/esm2022/common/siemens-ix-angular-common.mjs +5 -0
  44. package/esm2022/common/utils/create-value-accessor-provider.mjs +17 -0
  45. package/esm2022/components.mjs +2809 -0
  46. package/{esm2020 → esm2022}/declare-components.mjs +1 -2
  47. package/esm2022/directives/control-value-accessors/boolean-value-accessor.mjs +26 -0
  48. package/esm2022/directives/control-value-accessors/date-value-accessor.mjs +26 -0
  49. package/esm2022/directives/control-value-accessors/index.mjs +14 -0
  50. package/esm2022/directives/control-value-accessors/radio-value-accessor.mjs +26 -0
  51. package/esm2022/directives/control-value-accessors/select-value-accessor.mjs +26 -0
  52. package/esm2022/directives/control-value-accessors/text-value-accessor.mjs +26 -0
  53. package/esm2022/directives/dropdown-trigger.mjs +31 -0
  54. package/esm2022/index.mjs +19 -0
  55. package/esm2022/ix-icon.mjs +40 -0
  56. package/esm2022/module.mjs +78 -0
  57. package/esm2022/providers/modal/index.mjs +11 -0
  58. package/esm2022/providers/modal/modal.service.mjs +28 -0
  59. package/esm2022/providers/theme/index.mjs +10 -0
  60. package/esm2022/providers/theme/theme.service.mjs +40 -0
  61. package/esm2022/providers/toast/index.mjs +2 -0
  62. package/esm2022/providers/toast/toast.service.mjs +52 -0
  63. package/esm2022/standalone/angular-component-lib/utils.mjs +59 -0
  64. package/esm2022/standalone/components.mjs +3126 -0
  65. package/esm2022/standalone/directives/control-value-accessors/boolean-value-accessor.mjs +30 -0
  66. package/esm2022/standalone/directives/control-value-accessors/date-value-accessor.mjs +30 -0
  67. package/esm2022/standalone/directives/control-value-accessors/index.mjs +14 -0
  68. package/esm2022/standalone/directives/control-value-accessors/radio-value-accessor.mjs +30 -0
  69. package/esm2022/standalone/directives/control-value-accessors/select-value-accessor.mjs +30 -0
  70. package/esm2022/standalone/directives/control-value-accessors/text-value-accessor.mjs +30 -0
  71. package/esm2022/standalone/directives/dropdown-trigger.mjs +32 -0
  72. package/esm2022/standalone/index.mjs +18 -0
  73. package/esm2022/standalone/internal-components.mjs +19 -0
  74. package/esm2022/standalone/ix-icon.mjs +44 -0
  75. package/esm2022/standalone/providers/modal.mjs +26 -0
  76. package/esm2022/standalone/providers/toast.mjs +31 -0
  77. package/esm2022/standalone/siemens-ix-angular-standalone.mjs +5 -0
  78. package/esm2022/standalone/tree.mjs +41 -0
  79. package/esm2022/standalone/utils/value-accessor-directives.mjs +23 -0
  80. package/esm2022/tree.mjs +39 -0
  81. package/esm2022/utils/app-initialize.mjs +25 -0
  82. package/fesm2022/siemens-ix-angular-common.mjs +633 -0
  83. package/fesm2022/siemens-ix-angular-common.mjs.map +1 -0
  84. package/fesm2022/siemens-ix-angular-standalone.mjs +3415 -0
  85. package/fesm2022/siemens-ix-angular-standalone.mjs.map +1 -0
  86. package/fesm2022/siemens-ix-angular.mjs +3307 -0
  87. package/fesm2022/siemens-ix-angular.mjs.map +1 -0
  88. package/index.d.ts +6 -6
  89. package/ix-icon.d.ts +1 -1
  90. package/module.d.ts +9 -9
  91. package/package.json +21 -15
  92. package/providers/modal/index.d.ts +2 -0
  93. package/providers/modal/modal.service.d.ts +15 -0
  94. package/{theme → providers/theme}/theme.service.d.ts +3 -2
  95. package/providers/toast/index.d.ts +2 -0
  96. package/providers/toast/toast.service.d.ts +9 -0
  97. package/standalone/angular-component-lib/utils.d.ts +9 -0
  98. package/standalone/components.d.ts +1331 -0
  99. package/standalone/directives/control-value-accessors/boolean-value-accessor.d.ts +11 -0
  100. package/standalone/directives/control-value-accessors/date-value-accessor.d.ts +11 -0
  101. package/standalone/directives/control-value-accessors/index.d.ts +5 -0
  102. package/standalone/directives/control-value-accessors/radio-value-accessor.d.ts +11 -0
  103. package/standalone/directives/control-value-accessors/select-value-accessor.d.ts +11 -0
  104. package/standalone/directives/control-value-accessors/text-value-accessor.d.ts +11 -0
  105. package/{dropdown/trigger.directive.d.ts → standalone/directives/dropdown-trigger.d.ts} +3 -3
  106. package/standalone/index.d.ts +9 -0
  107. package/standalone/internal-components.d.ts +1 -0
  108. package/standalone/ix-icon.d.ts +9 -0
  109. package/standalone/providers/modal.d.ts +11 -0
  110. package/standalone/providers/toast.d.ts +11 -0
  111. package/standalone/tree.d.ts +9 -0
  112. package/standalone/utils/value-accessor-directives.d.ts +16 -0
  113. package/tree.d.ts +9 -0
  114. package/utils/app-initialize.d.ts +1 -0
  115. package/app-initialize.d.ts +0 -1
  116. package/control-value-accessors/date-value-accessor.d.ts +0 -9
  117. package/control-value-accessors/text-value-accessor.d.ts +0 -9
  118. package/esm2020/app-initialize.mjs +0 -25
  119. package/esm2020/components.mjs +0 -2631
  120. package/esm2020/control-value-accessors/boolean-value-accessor.mjs +0 -49
  121. package/esm2020/control-value-accessors/date-value-accessor.mjs +0 -45
  122. package/esm2020/control-value-accessors/index.mjs +0 -14
  123. package/esm2020/control-value-accessors/radio-value-accessor.mjs +0 -51
  124. package/esm2020/control-value-accessors/select-value-accessor.mjs +0 -45
  125. package/esm2020/control-value-accessors/text-value-accessor.mjs +0 -48
  126. package/esm2020/control-value-accessors/value-accessor.mjs +0 -125
  127. package/esm2020/dropdown/trigger.directive.mjs +0 -29
  128. package/esm2020/index.mjs +0 -19
  129. package/esm2020/ix-icon.mjs +0 -38
  130. package/esm2020/modal/index.mjs +0 -11
  131. package/esm2020/modal/modal-ref.mjs +0 -39
  132. package/esm2020/modal/modal.config.mjs +0 -10
  133. package/esm2020/modal/modal.service.mjs +0 -87
  134. package/esm2020/module.mjs +0 -78
  135. package/esm2020/theme/index.mjs +0 -10
  136. package/esm2020/theme/theme.service.mjs +0 -38
  137. package/esm2020/toast/index.mjs +0 -10
  138. package/esm2020/toast/toast.config.mjs +0 -10
  139. package/esm2020/toast/toast.service.mjs +0 -52
  140. package/esm2020/tree/index.mjs +0 -10
  141. package/esm2020/tree/tree.mjs +0 -81
  142. package/fesm2015/siemens-ix-angular.mjs +0 -3486
  143. package/fesm2015/siemens-ix-angular.mjs.map +0 -1
  144. package/fesm2020/siemens-ix-angular.mjs +0 -3504
  145. package/fesm2020/siemens-ix-angular.mjs.map +0 -1
  146. package/modal/index.d.ts +0 -2
  147. package/tree/index.d.ts +0 -1
  148. /package/{control-value-accessors → common/directives/control-value-accessors}/index.d.ts +0 -0
  149. /package/{modal → common/providers/modal}/modal-ref.d.ts +0 -0
  150. /package/{toast → common/providers/toast}/toast.service.d.ts +0 -0
  151. /package/{esm2020 → esm2022}/siemens-ix-angular.mjs +0 -0
  152. /package/{theme → providers/theme}/index.d.ts +0 -0
package/components.d.ts CHANGED
@@ -21,7 +21,7 @@ export declare class IxActionCard {
21
21
  protected el: HTMLElement;
22
22
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
23
23
  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, ["*"]>;
24
+ 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
25
  }
26
26
  export declare interface IxActionCard extends Components.IxActionCard {
27
27
  }
@@ -30,7 +30,7 @@ export declare class IxApplication {
30
30
  protected el: HTMLElement;
31
31
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
32
32
  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, ["*"]>;
33
+ 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
34
  }
35
35
  export declare interface IxApplication extends Components.IxApplication {
36
36
  }
@@ -39,20 +39,24 @@ export declare class IxApplicationHeader {
39
39
  protected el: HTMLElement;
40
40
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
41
41
  static ɵfac: i0.ɵɵFactoryDeclaration<IxApplicationHeader, never>;
42
- static ɵcmp: i0.ɵɵComponentDeclaration<IxApplicationHeader, "ix-application-header", never, { "name": "name"; "showMenu": "showMenu"; }, {}, never, ["*"]>;
42
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxApplicationHeader, "ix-application-header", never, { "name": { "alias": "name"; "required": false; }; "showMenu": { "alias": "showMenu"; "required": false; }; }, {}, never, ["*"], false, never>;
43
43
  }
44
44
  export declare interface IxApplicationHeader extends Components.IxApplicationHeader {
45
45
  /**
46
46
  * Event emitted when the menu toggle button is clicked @since 2.5.0
47
47
  */
48
48
  menuToggle: EventEmitter<CustomEvent<boolean>>;
49
+ /**
50
+ * Event emitted when the app switch button is clicked @since 3.0.0
51
+ */
52
+ openAppSwitch: EventEmitter<CustomEvent<void>>;
49
53
  }
50
54
  export declare class IxAvatar {
51
55
  protected z: NgZone;
52
56
  protected el: HTMLElement;
53
57
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
54
58
  static ɵfac: i0.ɵɵFactoryDeclaration<IxAvatar, never>;
55
- static ɵcmp: i0.ɵɵComponentDeclaration<IxAvatar, "ix-avatar", never, { "extra": "extra"; "image": "image"; "initials": "initials"; "username": "username"; }, {}, never, ["*"]>;
59
+ 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>;
56
60
  }
57
61
  export declare interface IxAvatar extends Components.IxAvatar {
58
62
  }
@@ -61,7 +65,7 @@ export declare class IxBasicNavigation {
61
65
  protected el: HTMLElement;
62
66
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
63
67
  static ɵfac: i0.ɵɵFactoryDeclaration<IxBasicNavigation, never>;
64
- static ɵcmp: i0.ɵɵComponentDeclaration<IxBasicNavigation, "ix-basic-navigation", never, { "applicationName": "applicationName"; "breakpoints": "breakpoints"; "forceBreakpoint": "forceBreakpoint"; "hideHeader": "hideHeader"; }, {}, never, ["*"]>;
68
+ 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>;
65
69
  }
66
70
  export declare interface IxBasicNavigation extends Components.IxBasicNavigation {
67
71
  }
@@ -70,7 +74,7 @@ export declare class IxBlind {
70
74
  protected el: HTMLElement;
71
75
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
72
76
  static ɵfac: i0.ɵɵFactoryDeclaration<IxBlind, never>;
73
- static ɵcmp: i0.ɵɵComponentDeclaration<IxBlind, "ix-blind", never, { "collapsed": "collapsed"; "icon": "icon"; "label": "label"; "sublabel": "sublabel"; "variant": "variant"; }, {}, never, ["*"]>;
77
+ 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>;
74
78
  }
75
79
  export declare interface IxBlind extends Components.IxBlind {
76
80
  /**
@@ -83,7 +87,7 @@ export declare class IxBreadcrumb {
83
87
  protected el: HTMLElement;
84
88
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
85
89
  static ɵfac: i0.ɵɵFactoryDeclaration<IxBreadcrumb, never>;
86
- static ɵcmp: i0.ɵɵComponentDeclaration<IxBreadcrumb, "ix-breadcrumb", never, { "ariaLabelPreviousButton": "ariaLabelPreviousButton"; "ghost": "ghost"; "nextItems": "nextItems"; "visibleItemCount": "visibleItemCount"; }, {}, never, ["*"]>;
90
+ 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>;
87
91
  }
88
92
  export declare interface IxBreadcrumb extends Components.IxBreadcrumb {
89
93
  /**
@@ -103,7 +107,7 @@ export declare class IxBreadcrumbItem {
103
107
  protected el: HTMLElement;
104
108
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
105
109
  static ɵfac: i0.ɵɵFactoryDeclaration<IxBreadcrumbItem, never>;
106
- static ɵcmp: i0.ɵɵComponentDeclaration<IxBreadcrumbItem, "ix-breadcrumb-item", never, { "icon": "icon"; "label": "label"; }, {}, never, ["*"]>;
110
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxBreadcrumbItem, "ix-breadcrumb-item", never, { "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
107
111
  }
108
112
  export declare interface IxBreadcrumbItem extends Components.IxBreadcrumbItem {
109
113
  }
@@ -112,7 +116,7 @@ export declare class IxButton {
112
116
  protected el: HTMLElement;
113
117
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
114
118
  static ɵfac: i0.ɵɵFactoryDeclaration<IxButton, never>;
115
- static ɵcmp: i0.ɵɵComponentDeclaration<IxButton, "ix-button", never, { "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "loading": "loading"; "outline": "outline"; "type": "type"; "variant": "variant"; }, {}, never, ["*"]>;
119
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxButton, "ix-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; }; "type": { "alias": "type"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
116
120
  }
117
121
  export declare interface IxButton extends Components.IxButton {
118
122
  }
@@ -121,7 +125,7 @@ export declare class IxCard {
121
125
  protected el: HTMLElement;
122
126
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
123
127
  static ɵfac: i0.ɵɵFactoryDeclaration<IxCard, never>;
124
- static ɵcmp: i0.ɵɵComponentDeclaration<IxCard, "ix-card", never, { "selected": "selected"; "variant": "variant"; }, {}, never, ["*"]>;
128
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxCard, "ix-card", never, { "selected": { "alias": "selected"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
125
129
  }
126
130
  export declare interface IxCard extends Components.IxCard {
127
131
  }
@@ -130,7 +134,7 @@ export declare class IxCardAccordion {
130
134
  protected el: HTMLElement;
131
135
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
132
136
  static ɵfac: i0.ɵɵFactoryDeclaration<IxCardAccordion, never>;
133
- static ɵcmp: i0.ɵɵComponentDeclaration<IxCardAccordion, "ix-card-accordion", never, { "collapse": "collapse"; }, {}, never, ["*"]>;
137
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxCardAccordion, "ix-card-accordion", never, { "collapse": { "alias": "collapse"; "required": false; }; }, {}, never, ["*"], false, never>;
134
138
  }
135
139
  export declare interface IxCardAccordion extends Components.IxCardAccordion {
136
140
  }
@@ -139,7 +143,7 @@ export declare class IxCardContent {
139
143
  protected el: HTMLElement;
140
144
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
141
145
  static ɵfac: i0.ɵɵFactoryDeclaration<IxCardContent, never>;
142
- static ɵcmp: i0.ɵɵComponentDeclaration<IxCardContent, "ix-card-content", never, {}, {}, never, ["*"]>;
146
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxCardContent, "ix-card-content", never, {}, {}, never, ["*"], false, never>;
143
147
  }
144
148
  export declare interface IxCardContent extends Components.IxCardContent {
145
149
  }
@@ -148,7 +152,7 @@ export declare class IxCardList {
148
152
  protected el: HTMLElement;
149
153
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
150
154
  static ɵfac: i0.ɵɵFactoryDeclaration<IxCardList, never>;
151
- 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, ["*"]>;
155
+ 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>;
152
156
  }
153
157
  export declare interface IxCardList extends Components.IxCardList {
154
158
  /**
@@ -173,7 +177,7 @@ export declare class IxCardTitle {
173
177
  protected el: HTMLElement;
174
178
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
175
179
  static ɵfac: i0.ɵɵFactoryDeclaration<IxCardTitle, never>;
176
- static ɵcmp: i0.ɵɵComponentDeclaration<IxCardTitle, "ix-card-title", never, {}, {}, never, ["*"]>;
180
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxCardTitle, "ix-card-title", never, {}, {}, never, ["*"], false, never>;
177
181
  }
178
182
  export declare interface IxCardTitle extends Components.IxCardTitle {
179
183
  }
@@ -182,7 +186,7 @@ export declare class IxCategoryFilter {
182
186
  protected el: HTMLElement;
183
187
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
184
188
  static ɵfac: i0.ɵɵFactoryDeclaration<IxCategoryFilter, never>;
185
- 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, ["*"]>;
189
+ 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>;
186
190
  }
187
191
  export declare interface IxCategoryFilter extends Components.IxCategoryFilter {
188
192
  /**
@@ -207,7 +211,7 @@ export declare class IxCheckbox {
207
211
  protected el: HTMLElement;
208
212
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
209
213
  static ɵfac: i0.ɵɵFactoryDeclaration<IxCheckbox, never>;
210
- static ɵcmp: i0.ɵɵComponentDeclaration<IxCheckbox, "ix-checkbox", never, { "checked": "checked"; "disabled": "disabled"; "indeterminate": "indeterminate"; "label": "label"; "name": "name"; "required": "required"; "value": "value"; }, {}, never, ["*"]>;
214
+ 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>;
211
215
  }
212
216
  export declare interface IxCheckbox extends Components.IxCheckbox {
213
217
  /**
@@ -224,7 +228,7 @@ export declare class IxCheckboxGroup {
224
228
  protected el: HTMLElement;
225
229
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
226
230
  static ɵfac: i0.ɵɵFactoryDeclaration<IxCheckboxGroup, never>;
227
- 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, ["*"]>;
231
+ 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>;
228
232
  }
229
233
  export declare interface IxCheckboxGroup extends Components.IxCheckboxGroup {
230
234
  }
@@ -233,7 +237,7 @@ export declare class IxChip {
233
237
  protected el: HTMLElement;
234
238
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
235
239
  static ɵfac: i0.ɵɵFactoryDeclaration<IxChip, never>;
236
- static ɵcmp: i0.ɵɵComponentDeclaration<IxChip, "ix-chip", never, { "active": "active"; "background": "background"; "chipColor": "chipColor"; "closable": "closable"; "color": "color"; "icon": "icon"; "outline": "outline"; "variant": "variant"; }, {}, never, ["*"]>;
240
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxChip, "ix-chip", never, { "active": { "alias": "active"; "required": false; }; "background": { "alias": "background"; "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>;
237
241
  }
238
242
  export declare interface IxChip extends Components.IxChip {
239
243
  /**
@@ -246,7 +250,7 @@ export declare class IxCol {
246
250
  protected el: HTMLElement;
247
251
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
248
252
  static ɵfac: i0.ɵɵFactoryDeclaration<IxCol, never>;
249
- static ɵcmp: i0.ɵɵComponentDeclaration<IxCol, "ix-col", never, { "size": "size"; "sizeLg": "sizeLg"; "sizeMd": "sizeMd"; "sizeSm": "sizeSm"; }, {}, never, ["*"]>;
253
+ 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>;
250
254
  }
251
255
  export declare interface IxCol extends Components.IxCol {
252
256
  }
@@ -255,7 +259,7 @@ export declare class IxContent {
255
259
  protected el: HTMLElement;
256
260
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
257
261
  static ɵfac: i0.ɵɵFactoryDeclaration<IxContent, never>;
258
- static ɵcmp: i0.ɵɵComponentDeclaration<IxContent, "ix-content", never, {}, {}, never, ["*"]>;
262
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxContent, "ix-content", never, {}, {}, never, ["*"], false, never>;
259
263
  }
260
264
  export declare interface IxContent extends Components.IxContent {
261
265
  }
@@ -264,7 +268,7 @@ export declare class IxContentHeader {
264
268
  protected el: HTMLElement;
265
269
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
266
270
  static ɵfac: i0.ɵɵFactoryDeclaration<IxContentHeader, never>;
267
- static ɵcmp: i0.ɵɵComponentDeclaration<IxContentHeader, "ix-content-header", never, { "hasBackButton": "hasBackButton"; "headerSubtitle": "headerSubtitle"; "headerTitle": "headerTitle"; "variant": "variant"; }, {}, never, ["*"]>;
271
+ 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>;
268
272
  }
269
273
  export declare interface IxContentHeader extends Components.IxContentHeader {
270
274
  /**
@@ -277,7 +281,7 @@ export declare class IxCustomField {
277
281
  protected el: HTMLElement;
278
282
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
279
283
  static ɵfac: i0.ɵɵFactoryDeclaration<IxCustomField, never>;
280
- 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, ["*"]>;
284
+ 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>;
281
285
  }
282
286
  export declare interface IxCustomField extends Components.IxCustomField {
283
287
  }
@@ -286,7 +290,7 @@ export declare class IxDateDropdown {
286
290
  protected el: HTMLElement;
287
291
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
288
292
  static ɵfac: i0.ɵɵFactoryDeclaration<IxDateDropdown, never>;
289
- static ɵcmp: i0.ɵɵComponentDeclaration<IxDateDropdown, "ix-date-dropdown", never, { "customRangeAllowed": "customRangeAllowed"; "dateRangeId": "dateRangeId"; "dateRangeOptions": "dateRangeOptions"; "disabled": "disabled"; "format": "format"; "from": "from"; "i18nCustomItem": "i18nCustomItem"; "i18nDone": "i18nDone"; "i18nNoRange": "i18nNoRange"; "locale": "locale"; "maxDate": "maxDate"; "minDate": "minDate"; "range": "range"; "to": "to"; "weekStartIndex": "weekStartIndex"; }, {}, never, ["*"]>;
293
+ 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>;
290
294
  }
291
295
  export declare interface IxDateDropdown extends Components.IxDateDropdown {
292
296
  /**
@@ -302,13 +306,13 @@ export declare class IxDateInput {
302
306
  protected el: HTMLElement;
303
307
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
304
308
  static ɵfac: i0.ɵɵFactoryDeclaration<IxDateInput, never>;
305
- 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, ["*"]>;
309
+ 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>;
306
310
  }
307
311
  export declare interface IxDateInput extends Components.IxDateInput {
308
312
  /**
309
313
  * Input change event.
310
314
  */
311
- valueChange: EventEmitter<CustomEvent<string>>;
315
+ valueChange: EventEmitter<CustomEvent<string | undefined>>;
312
316
  /**
313
317
  * Validation state change event.
314
318
  */
@@ -319,7 +323,7 @@ export declare class IxDatePicker {
319
323
  protected el: HTMLElement;
320
324
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
321
325
  static ɵfac: i0.ɵɵFactoryDeclaration<IxDatePicker, never>;
322
- static ɵcmp: i0.ɵɵComponentDeclaration<IxDatePicker, "ix-date-picker", never, { "corners": "corners"; "eventDelimiter": "eventDelimiter"; "format": "format"; "from": "from"; "i18nDone": "i18nDone"; "individual": "individual"; "locale": "locale"; "maxDate": "maxDate"; "minDate": "minDate"; "range": "range"; "textSelectDate": "textSelectDate"; "to": "to"; "weekStartIndex": "weekStartIndex"; }, {}, never, ["*"]>;
326
+ 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>;
323
327
  }
324
328
  export declare interface IxDatePicker extends Components.IxDatePicker {
325
329
  /**
@@ -336,27 +340,18 @@ export declare interface IxDatePicker extends Components.IxDatePicker {
336
340
  * Date selection confirmed via button action @since 1.1.0
337
341
  */
338
342
  dateSelect: EventEmitter<CustomEvent<IIxDatePickerDateChangeEvent>>;
339
- /**
340
- * Date selection confirmed via button action @deprecated NOT getting dispatched after 2.0.0. Use `dateSelect`.
341
- */
342
- done: EventEmitter<CustomEvent<string>>;
343
343
  }
344
344
  export declare class IxDatetimePicker {
345
345
  protected z: NgZone;
346
346
  protected el: HTMLElement;
347
347
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
348
348
  static ɵfac: i0.ɵɵFactoryDeclaration<IxDatetimePicker, never>;
349
- static ɵcmp: i0.ɵɵComponentDeclaration<IxDatetimePicker, "ix-datetime-picker", never, { "dateFormat": "dateFormat"; "eventDelimiter": "eventDelimiter"; "from": "from"; "i18nDone": "i18nDone"; "locale": "locale"; "maxDate": "maxDate"; "minDate": "minDate"; "range": "range"; "showHour": "showHour"; "showMinutes": "showMinutes"; "showSeconds": "showSeconds"; "showTimeReference": "showTimeReference"; "textSelectDate": "textSelectDate"; "time": "time"; "timeFormat": "timeFormat"; "timeReference": "timeReference"; "to": "to"; "weekStartIndex": "weekStartIndex"; }, {}, never, ["*"]>;
349
+ 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>;
350
350
  }
351
351
  export declare interface IxDatetimePicker extends Components.IxDatetimePicker {
352
352
  /**
353
- * Done event
354
-
355
- Set `doneEventDelimiter` to null or undefine to get the typed event @deprecated Use `this.dateChange`
356
- */
357
- done: EventEmitter<CustomEvent<string>>;
358
- /**
359
- * Time change @since 1.1.0
353
+ *
354
+ Time change @since 1.1.0
360
355
  */
361
356
  timeChange: EventEmitter<CustomEvent<string>>;
362
357
  /**
@@ -373,7 +368,7 @@ export declare class IxDivider {
373
368
  protected el: HTMLElement;
374
369
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
375
370
  static ɵfac: i0.ɵɵFactoryDeclaration<IxDivider, never>;
376
- static ɵcmp: i0.ɵɵComponentDeclaration<IxDivider, "ix-divider", never, {}, {}, never, ["*"]>;
371
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxDivider, "ix-divider", never, {}, {}, never, ["*"], false, never>;
377
372
  }
378
373
  export declare interface IxDivider extends Components.IxDivider {
379
374
  }
@@ -382,7 +377,7 @@ export declare class IxDrawer {
382
377
  protected el: HTMLElement;
383
378
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
384
379
  static ɵfac: i0.ɵɵFactoryDeclaration<IxDrawer, never>;
385
- static ɵcmp: i0.ɵɵComponentDeclaration<IxDrawer, "ix-drawer", never, { "closeOnClickOutside": "closeOnClickOutside"; "fullHeight": "fullHeight"; "maxWidth": "maxWidth"; "minWidth": "minWidth"; "show": "show"; "width": "width"; }, {}, never, ["*"]>;
380
+ 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>;
386
381
  }
387
382
  export declare interface IxDrawer extends Components.IxDrawer {
388
383
  /**
@@ -399,7 +394,7 @@ export declare class IxDropdown {
399
394
  protected el: HTMLElement;
400
395
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
401
396
  static ɵfac: i0.ɵɵFactoryDeclaration<IxDropdown, never>;
402
- 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, ["*"]>;
397
+ 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>;
403
398
  }
404
399
  export declare interface IxDropdown extends Components.IxDropdown {
405
400
  /**
@@ -412,7 +407,7 @@ export declare class IxDropdownButton {
412
407
  protected el: HTMLElement;
413
408
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
414
409
  static ɵfac: i0.ɵɵFactoryDeclaration<IxDropdownButton, never>;
415
- 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, ["*"]>;
410
+ 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>;
416
411
  }
417
412
  export declare interface IxDropdownButton extends Components.IxDropdownButton {
418
413
  }
@@ -421,7 +416,7 @@ export declare class IxDropdownHeader {
421
416
  protected el: HTMLElement;
422
417
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
423
418
  static ɵfac: i0.ɵɵFactoryDeclaration<IxDropdownHeader, never>;
424
- static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdownHeader, "ix-dropdown-header", never, { "label": "label"; }, {}, never, ["*"]>;
419
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdownHeader, "ix-dropdown-header", never, { "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
425
420
  }
426
421
  export declare interface IxDropdownHeader extends Components.IxDropdownHeader {
427
422
  }
@@ -430,7 +425,7 @@ export declare class IxDropdownItem {
430
425
  protected el: HTMLElement;
431
426
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
432
427
  static ɵfac: i0.ɵɵFactoryDeclaration<IxDropdownItem, never>;
433
- static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdownItem, "ix-dropdown-item", never, { "checked": "checked"; "disabled": "disabled"; "hover": "hover"; "icon": "icon"; "label": "label"; }, {}, never, ["*"]>;
428
+ 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>;
434
429
  }
435
430
  export declare interface IxDropdownItem extends Components.IxDropdownItem {
436
431
  }
@@ -439,7 +434,7 @@ export declare class IxDropdownQuickActions {
439
434
  protected el: HTMLElement;
440
435
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
441
436
  static ɵfac: i0.ɵɵFactoryDeclaration<IxDropdownQuickActions, never>;
442
- static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdownQuickActions, "ix-dropdown-quick-actions", never, {}, {}, never, ["*"]>;
437
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdownQuickActions, "ix-dropdown-quick-actions", never, {}, {}, never, ["*"], false, never>;
443
438
  }
444
439
  export declare interface IxDropdownQuickActions extends Components.IxDropdownQuickActions {
445
440
  }
@@ -448,7 +443,7 @@ export declare class IxEmptyState {
448
443
  protected el: HTMLElement;
449
444
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
450
445
  static ɵfac: i0.ɵɵFactoryDeclaration<IxEmptyState, never>;
451
- static ɵcmp: i0.ɵɵComponentDeclaration<IxEmptyState, "ix-empty-state", never, { "action": "action"; "header": "header"; "icon": "icon"; "layout": "layout"; "subHeader": "subHeader"; }, {}, never, ["*"]>;
446
+ 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>;
452
447
  }
453
448
  export declare interface IxEmptyState extends Components.IxEmptyState {
454
449
  /**
@@ -461,7 +456,7 @@ export declare class IxEventList {
461
456
  protected el: HTMLElement;
462
457
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
463
458
  static ɵfac: i0.ɵɵFactoryDeclaration<IxEventList, never>;
464
- static ɵcmp: i0.ɵɵComponentDeclaration<IxEventList, "ix-event-list", never, { "animated": "animated"; "chevron": "chevron"; "compact": "compact"; "itemHeight": "itemHeight"; }, {}, never, ["*"]>;
459
+ 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>;
465
460
  }
466
461
  export declare interface IxEventList extends Components.IxEventList {
467
462
  }
@@ -470,7 +465,7 @@ export declare class IxEventListItem {
470
465
  protected el: HTMLElement;
471
466
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
472
467
  static ɵfac: i0.ɵɵFactoryDeclaration<IxEventListItem, never>;
473
- static ɵcmp: i0.ɵɵComponentDeclaration<IxEventListItem, "ix-event-list-item", never, { "chevron": "chevron"; "color": "color"; "disabled": "disabled"; "itemColor": "itemColor"; "selected": "selected"; }, {}, never, ["*"]>;
468
+ 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>;
474
469
  }
475
470
  export declare interface IxEventListItem extends Components.IxEventListItem {
476
471
  /**
@@ -483,7 +478,7 @@ export declare class IxExpandingSearch {
483
478
  protected el: HTMLElement;
484
479
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
485
480
  static ɵfac: i0.ɵɵFactoryDeclaration<IxExpandingSearch, never>;
486
- static ɵcmp: i0.ɵɵComponentDeclaration<IxExpandingSearch, "ix-expanding-search", never, { "fullWidth": "fullWidth"; "icon": "icon"; "placeholder": "placeholder"; "value": "value"; }, {}, never, ["*"]>;
481
+ 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>;
487
482
  }
488
483
  export declare interface IxExpandingSearch extends Components.IxExpandingSearch {
489
484
  /**
@@ -496,7 +491,7 @@ export declare class IxFieldLabel {
496
491
  protected el: HTMLElement;
497
492
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
498
493
  static ɵfac: i0.ɵɵFactoryDeclaration<IxFieldLabel, never>;
499
- static ɵcmp: i0.ɵɵComponentDeclaration<IxFieldLabel, "ix-field-label", never, { "htmlFor": "htmlFor"; "required": "required"; }, {}, never, ["*"]>;
494
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxFieldLabel, "ix-field-label", never, { "htmlFor": { "alias": "htmlFor"; "required": false; }; "required": { "alias": "required"; "required": false; }; }, {}, never, ["*"], false, never>;
500
495
  }
501
496
  export declare interface IxFieldLabel extends Components.IxFieldLabel {
502
497
  }
@@ -505,7 +500,7 @@ export declare class IxFilterChip {
505
500
  protected el: HTMLElement;
506
501
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
507
502
  static ɵfac: i0.ɵɵFactoryDeclaration<IxFilterChip, never>;
508
- static ɵcmp: i0.ɵɵComponentDeclaration<IxFilterChip, "ix-filter-chip", never, { "disabled": "disabled"; "readonly": "readonly"; }, {}, never, ["*"]>;
503
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxFilterChip, "ix-filter-chip", never, { "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; }, {}, never, ["*"], false, never>;
509
504
  }
510
505
  export declare interface IxFilterChip extends Components.IxFilterChip {
511
506
  /**
@@ -518,16 +513,20 @@ export declare class IxFlipTile {
518
513
  protected el: HTMLElement;
519
514
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
520
515
  static ɵfac: i0.ɵɵFactoryDeclaration<IxFlipTile, never>;
521
- static ɵcmp: i0.ɵɵComponentDeclaration<IxFlipTile, "ix-flip-tile", never, { "height": "height"; "state": "state"; "width": "width"; }, {}, never, ["*"]>;
516
+ 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>;
522
517
  }
523
518
  export declare interface IxFlipTile extends Components.IxFlipTile {
519
+ /**
520
+ * Event emitted when the index changes @since 3.0.0
521
+ */
522
+ toggle: EventEmitter<CustomEvent<number>>;
524
523
  }
525
524
  export declare class IxFlipTileContent {
526
525
  protected z: NgZone;
527
526
  protected el: HTMLElement;
528
527
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
529
528
  static ɵfac: i0.ɵɵFactoryDeclaration<IxFlipTileContent, never>;
530
- static ɵcmp: i0.ɵɵComponentDeclaration<IxFlipTileContent, "ix-flip-tile-content", never, {}, {}, never, ["*"]>;
529
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxFlipTileContent, "ix-flip-tile-content", never, {}, {}, never, ["*"], false, never>;
531
530
  }
532
531
  export declare interface IxFlipTileContent extends Components.IxFlipTileContent {
533
532
  }
@@ -536,7 +535,7 @@ export declare class IxGroup {
536
535
  protected el: HTMLElement;
537
536
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
538
537
  static ɵfac: i0.ɵɵFactoryDeclaration<IxGroup, never>;
539
- static ɵcmp: i0.ɵɵComponentDeclaration<IxGroup, "ix-group", never, { "collapsed": "collapsed"; "expandOnHeaderClick": "expandOnHeaderClick"; "header": "header"; "index": "index"; "selected": "selected"; "subHeader": "subHeader"; "suppressHeaderSelection": "suppressHeaderSelection"; }, {}, never, ["*"]>;
538
+ 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>;
540
539
  }
541
540
  export declare interface IxGroup extends Components.IxGroup {
542
541
  /**
@@ -557,7 +556,7 @@ export declare class IxGroupContextMenu {
557
556
  protected el: HTMLElement;
558
557
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
559
558
  static ɵfac: i0.ɵɵFactoryDeclaration<IxGroupContextMenu, never>;
560
- static ɵcmp: i0.ɵɵComponentDeclaration<IxGroupContextMenu, "ix-group-context-menu", never, {}, {}, never, ["*"]>;
559
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxGroupContextMenu, "ix-group-context-menu", never, {}, {}, never, ["*"], false, never>;
561
560
  }
562
561
  export declare interface IxGroupContextMenu extends Components.IxGroupContextMenu {
563
562
  }
@@ -566,7 +565,7 @@ export declare class IxGroupItem {
566
565
  protected el: HTMLElement;
567
566
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
568
567
  static ɵfac: i0.ɵɵFactoryDeclaration<IxGroupItem, never>;
569
- static ɵcmp: i0.ɵɵComponentDeclaration<IxGroupItem, "ix-group-item", never, { "focusable": "focusable"; "icon": "icon"; "index": "index"; "secondaryText": "secondaryText"; "selected": "selected"; "suppressSelection": "suppressSelection"; "text": "text"; }, {}, never, ["*"]>;
568
+ 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>;
570
569
  }
571
570
  export declare interface IxGroupItem extends Components.IxGroupItem {
572
571
  /**
@@ -579,7 +578,7 @@ export declare class IxHelperText {
579
578
  protected el: HTMLElement;
580
579
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
581
580
  static ɵfac: i0.ɵɵFactoryDeclaration<IxHelperText, never>;
582
- static ɵcmp: i0.ɵɵComponentDeclaration<IxHelperText, "ix-helper-text", never, { "helperText": "helperText"; "htmlFor": "htmlFor"; "infoText": "infoText"; "invalidText": "invalidText"; "validText": "validText"; "warningText": "warningText"; }, {}, never, ["*"]>;
581
+ 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>;
583
582
  }
584
583
  export declare interface IxHelperText extends Components.IxHelperText {
585
584
  }
@@ -588,7 +587,7 @@ export declare class IxIconButton {
588
587
  protected el: HTMLElement;
589
588
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
590
589
  static ɵfac: i0.ɵɵFactoryDeclaration<IxIconButton, never>;
591
- static ɵcmp: i0.ɵɵComponentDeclaration<IxIconButton, "ix-icon-button", never, { "a11yLabel": "a11yLabel"; "color": "color"; "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "iconColor": "iconColor"; "loading": "loading"; "outline": "outline"; "oval": "oval"; "size": "size"; "type": "type"; "variant": "variant"; }, {}, never, ["*"]>;
590
+ 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>;
592
591
  }
593
592
  export declare interface IxIconButton extends Components.IxIconButton {
594
593
  }
@@ -597,7 +596,7 @@ export declare class IxIconToggleButton {
597
596
  protected el: HTMLElement;
598
597
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
599
598
  static ɵfac: i0.ɵɵFactoryDeclaration<IxIconToggleButton, never>;
600
- 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, ["*"]>;
599
+ 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; }; "pressed": { "alias": "pressed"; "required": false; }; "size": { "alias": "size"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
601
600
  }
602
601
  export declare interface IxIconToggleButton extends Components.IxIconToggleButton {
603
602
  /**
@@ -610,7 +609,7 @@ export declare class IxInput {
610
609
  protected el: HTMLElement;
611
610
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
612
611
  static ɵfac: i0.ɵɵFactoryDeclaration<IxInput, never>;
613
- 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, ["*"]>;
612
+ 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>;
614
613
  }
615
614
  export declare interface IxInput extends Components.IxInput {
616
615
  /**
@@ -631,7 +630,7 @@ export declare class IxInputGroup {
631
630
  protected el: HTMLElement;
632
631
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
633
632
  static ɵfac: i0.ɵɵFactoryDeclaration<IxInputGroup, never>;
634
- static ɵcmp: i0.ɵɵComponentDeclaration<IxInputGroup, "ix-input-group", never, {}, {}, never, ["*"]>;
633
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxInputGroup, "ix-input-group", never, {}, {}, never, ["*"], false, never>;
635
634
  }
636
635
  export declare interface IxInputGroup extends Components.IxInputGroup {
637
636
  }
@@ -640,7 +639,7 @@ export declare class IxKeyValue {
640
639
  protected el: HTMLElement;
641
640
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
642
641
  static ɵfac: i0.ɵɵFactoryDeclaration<IxKeyValue, never>;
643
- static ɵcmp: i0.ɵɵComponentDeclaration<IxKeyValue, "ix-key-value", never, { "icon": "icon"; "label": "label"; "labelPosition": "labelPosition"; "value": "value"; }, {}, never, ["*"]>;
642
+ 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>;
644
643
  }
645
644
  export declare interface IxKeyValue extends Components.IxKeyValue {
646
645
  }
@@ -649,7 +648,7 @@ export declare class IxKeyValueList {
649
648
  protected el: HTMLElement;
650
649
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
651
650
  static ɵfac: i0.ɵɵFactoryDeclaration<IxKeyValueList, never>;
652
- static ɵcmp: i0.ɵɵComponentDeclaration<IxKeyValueList, "ix-key-value-list", never, { "striped": "striped"; }, {}, never, ["*"]>;
651
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxKeyValueList, "ix-key-value-list", never, { "striped": { "alias": "striped"; "required": false; }; }, {}, never, ["*"], false, never>;
653
652
  }
654
653
  export declare interface IxKeyValueList extends Components.IxKeyValueList {
655
654
  }
@@ -658,7 +657,7 @@ export declare class IxKpi {
658
657
  protected el: HTMLElement;
659
658
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
660
659
  static ɵfac: i0.ɵɵFactoryDeclaration<IxKpi, never>;
661
- static ɵcmp: i0.ɵɵComponentDeclaration<IxKpi, "ix-kpi", never, { "label": "label"; "orientation": "orientation"; "state": "state"; "unit": "unit"; "value": "value"; }, {}, never, ["*"]>;
660
+ 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>;
662
661
  }
663
662
  export declare interface IxKpi extends Components.IxKpi {
664
663
  }
@@ -667,7 +666,7 @@ export declare class IxLayoutAuto {
667
666
  protected el: HTMLElement;
668
667
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
669
668
  static ɵfac: i0.ɵɵFactoryDeclaration<IxLayoutAuto, never>;
670
- static ɵcmp: i0.ɵɵComponentDeclaration<IxLayoutAuto, "ix-layout-auto", never, { "layout": "layout"; }, {}, never, ["*"]>;
669
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxLayoutAuto, "ix-layout-auto", never, { "layout": { "alias": "layout"; "required": false; }; }, {}, never, ["*"], false, never>;
671
670
  }
672
671
  export declare interface IxLayoutAuto extends Components.IxLayoutAuto {
673
672
  }
@@ -676,7 +675,7 @@ export declare class IxLayoutGrid {
676
675
  protected el: HTMLElement;
677
676
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
678
677
  static ɵfac: i0.ɵɵFactoryDeclaration<IxLayoutGrid, never>;
679
- static ɵcmp: i0.ɵɵComponentDeclaration<IxLayoutGrid, "ix-layout-grid", never, { "columns": "columns"; "gap": "gap"; "noMargin": "noMargin"; }, {}, never, ["*"]>;
678
+ 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>;
680
679
  }
681
680
  export declare interface IxLayoutGrid extends Components.IxLayoutGrid {
682
681
  }
@@ -685,7 +684,7 @@ export declare class IxLinkButton {
685
684
  protected el: HTMLElement;
686
685
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
687
686
  static ɵfac: i0.ɵɵFactoryDeclaration<IxLinkButton, never>;
688
- static ɵcmp: i0.ɵɵComponentDeclaration<IxLinkButton, "ix-link-button", never, { "disabled": "disabled"; "target": "target"; "url": "url"; }, {}, never, ["*"]>;
687
+ 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>;
689
688
  }
690
689
  export declare interface IxLinkButton extends Components.IxLinkButton {
691
690
  }
@@ -694,7 +693,7 @@ export declare class IxMapNavigation {
694
693
  protected el: HTMLElement;
695
694
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
696
695
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMapNavigation, never>;
697
- static ɵcmp: i0.ɵɵComponentDeclaration<IxMapNavigation, "ix-map-navigation", never, { "applicationName": "applicationName"; "hideContextMenu": "hideContextMenu"; "navigationTitle": "navigationTitle"; }, {}, never, ["*"]>;
696
+ 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>;
698
697
  }
699
698
  export declare interface IxMapNavigation extends Components.IxMapNavigation {
700
699
  /**
@@ -711,7 +710,7 @@ export declare class IxMapNavigationOverlay {
711
710
  protected el: HTMLElement;
712
711
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
713
712
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMapNavigationOverlay, never>;
714
- static ɵcmp: i0.ɵɵComponentDeclaration<IxMapNavigationOverlay, "ix-map-navigation-overlay", never, { "color": "color"; "icon": "icon"; "iconColor": "iconColor"; "name": "name"; }, {}, never, ["*"]>;
713
+ 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>;
715
714
  }
716
715
  export declare interface IxMapNavigationOverlay extends Components.IxMapNavigationOverlay {
717
716
  /**
@@ -724,7 +723,7 @@ export declare class IxMenu {
724
723
  protected el: HTMLElement;
725
724
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
726
725
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenu, never>;
727
- static ɵcmp: i0.ɵɵComponentDeclaration<IxMenu, "ix-menu", never, { "applicationDescription": "applicationDescription"; "applicationName": "applicationName"; "enableMapExpand": "enableMapExpand"; "enableSettings": "enableSettings"; "enableToggleTheme": "enableToggleTheme"; "expand": "expand"; "i18nCollapse": "i18nCollapse"; "i18nExpand": "i18nExpand"; "i18nExpandSidebar": "i18nExpandSidebar"; "i18nLegal": "i18nLegal"; "i18nSettings": "i18nSettings"; "i18nToggleTheme": "i18nToggleTheme"; "maxVisibleMenuItems": "maxVisibleMenuItems"; "pinned": "pinned"; "showAbout": "showAbout"; "showSettings": "showSettings"; "startExpanded": "startExpanded"; }, {}, never, ["*"]>;
726
+ 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>;
728
727
  }
729
728
  export declare interface IxMenu extends Components.IxMenu {
730
729
  /**
@@ -735,15 +734,31 @@ export declare interface IxMenu extends Components.IxMenu {
735
734
  * Map Sidebar expanded
736
735
  */
737
736
  mapExpandChange: EventEmitter<CustomEvent<boolean>>;
737
+ /**
738
+ * Event emitted when the app switch button is clicked @since 3.0.0
739
+ */
740
+ openAppSwitch: EventEmitter<CustomEvent<void>>;
741
+ /**
742
+ * Event emitted when the settings button is clicked @since 3.0.0
743
+ */
744
+ openSettings: EventEmitter<CustomEvent<void>>;
745
+ /**
746
+ * Event emitted when the about button is clicked @since 3.0.0
747
+ */
748
+ openAbout: EventEmitter<CustomEvent<void>>;
738
749
  }
739
750
  export declare class IxMenuAbout {
740
751
  protected z: NgZone;
741
752
  protected el: HTMLElement;
742
753
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
743
754
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuAbout, never>;
744
- static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAbout, "ix-menu-about", never, { "activeTabLabel": "activeTabLabel"; "label": "label"; "show": "show"; }, {}, never, ["*"]>;
755
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAbout, "ix-menu-about", never, { "activeTabLabel": { "alias": "activeTabLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
745
756
  }
746
757
  export declare interface IxMenuAbout extends Components.IxMenuAbout {
758
+ /**
759
+ * Active tab changed @since 3.0.0
760
+ */
761
+ tabChange: EventEmitter<CustomEvent<string>>;
747
762
  /**
748
763
  * About and Legal closed
749
764
  */
@@ -754,7 +769,7 @@ export declare class IxMenuAboutItem {
754
769
  protected el: HTMLElement;
755
770
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
756
771
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuAboutItem, never>;
757
- static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAboutItem, "ix-menu-about-item", never, { "label": "label"; }, {}, never, ["*"]>;
772
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAboutItem, "ix-menu-about-item", never, { "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
758
773
  }
759
774
  export declare interface IxMenuAboutItem extends Components.IxMenuAboutItem {
760
775
  /**
@@ -767,7 +782,7 @@ export declare class IxMenuAboutNews {
767
782
  protected el: HTMLElement;
768
783
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
769
784
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuAboutNews, never>;
770
- static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAboutNews, "ix-menu-about-news", never, { "aboutItemLabel": "aboutItemLabel"; "expanded": "expanded"; "i18nShowMore": "i18nShowMore"; "label": "label"; "offsetBottom": "offsetBottom"; "show": "show"; }, {}, never, ["*"]>;
785
+ 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>;
771
786
  }
772
787
  export declare interface IxMenuAboutNews extends Components.IxMenuAboutNews {
773
788
  /**
@@ -784,7 +799,7 @@ export declare class IxMenuAvatar {
784
799
  protected el: HTMLElement;
785
800
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
786
801
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuAvatar, never>;
787
- static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAvatar, "ix-menu-avatar", never, { "bottom": "bottom"; "i18nLogout": "i18nLogout"; "image": "image"; "initials": "initials"; "showLogoutButton": "showLogoutButton"; "top": "top"; }, {}, never, ["*"]>;
802
+ 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>;
788
803
  }
789
804
  export declare interface IxMenuAvatar extends Components.IxMenuAvatar {
790
805
  /**
@@ -797,7 +812,7 @@ export declare class IxMenuAvatarItem {
797
812
  protected el: HTMLElement;
798
813
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
799
814
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuAvatarItem, never>;
800
- static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAvatarItem, "ix-menu-avatar-item", never, { "icon": "icon"; "label": "label"; }, {}, never, ["*"]>;
815
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAvatarItem, "ix-menu-avatar-item", never, { "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
801
816
  }
802
817
  export declare interface IxMenuAvatarItem extends Components.IxMenuAvatarItem {
803
818
  /**
@@ -810,7 +825,7 @@ export declare class IxMenuCategory {
810
825
  protected el: HTMLElement;
811
826
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
812
827
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuCategory, never>;
813
- static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuCategory, "ix-menu-category", never, { "icon": "icon"; "label": "label"; "notifications": "notifications"; }, {}, never, ["*"]>;
828
+ 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>;
814
829
  }
815
830
  export declare interface IxMenuCategory extends Components.IxMenuCategory {
816
831
  }
@@ -819,7 +834,7 @@ export declare class IxMenuItem {
819
834
  protected el: HTMLElement;
820
835
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
821
836
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuItem, never>;
822
- static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuItem, "ix-menu-item", never, { "active": "active"; "bottom": "bottom"; "disabled": "disabled"; "home": "home"; "icon": "icon"; "label": "label"; "notifications": "notifications"; "tabIcon": "tabIcon"; }, {}, never, ["*"]>;
837
+ 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>;
823
838
  }
824
839
  export declare interface IxMenuItem extends Components.IxMenuItem {
825
840
  }
@@ -828,9 +843,13 @@ export declare class IxMenuSettings {
828
843
  protected el: HTMLElement;
829
844
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
830
845
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuSettings, never>;
831
- static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuSettings, "ix-menu-settings", never, { "activeTabLabel": "activeTabLabel"; "label": "label"; "show": "show"; }, {}, never, ["*"]>;
846
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuSettings, "ix-menu-settings", never, { "activeTabLabel": { "alias": "activeTabLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
832
847
  }
833
848
  export declare interface IxMenuSettings extends Components.IxMenuSettings {
849
+ /**
850
+ * Active tab changed @since 3.0.0
851
+ */
852
+ tabChange: EventEmitter<CustomEvent<string>>;
834
853
  /**
835
854
  * Popover closed
836
855
  */
@@ -841,7 +860,7 @@ export declare class IxMenuSettingsItem {
841
860
  protected el: HTMLElement;
842
861
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
843
862
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuSettingsItem, never>;
844
- static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuSettingsItem, "ix-menu-settings-item", never, { "label": "label"; }, {}, never, ["*"]>;
863
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuSettingsItem, "ix-menu-settings-item", never, { "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
845
864
  }
846
865
  export declare interface IxMenuSettingsItem extends Components.IxMenuSettingsItem {
847
866
  /**
@@ -854,20 +873,24 @@ export declare class IxMessageBar {
854
873
  protected el: HTMLElement;
855
874
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
856
875
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMessageBar, never>;
857
- static ɵcmp: i0.ɵɵComponentDeclaration<IxMessageBar, "ix-message-bar", never, { "dismissible": "dismissible"; "type": "type"; }, {}, never, ["*"]>;
876
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMessageBar, "ix-message-bar", never, { "dismissible": { "alias": "dismissible"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
858
877
  }
859
878
  export declare interface IxMessageBar extends Components.IxMessageBar {
860
879
  /**
861
880
  * An event emitted when the close button is clicked
862
881
  */
863
882
  closedChange: EventEmitter<CustomEvent<any>>;
883
+ /**
884
+ * An event emitted when the close animation is completed
885
+ */
886
+ closeAnimationCompleted: EventEmitter<CustomEvent<any>>;
864
887
  }
865
888
  export declare class IxModal {
866
889
  protected z: NgZone;
867
890
  protected el: HTMLElement;
868
891
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
869
892
  static ɵfac: i0.ɵɵFactoryDeclaration<IxModal, never>;
870
- static ɵcmp: i0.ɵɵComponentDeclaration<IxModal, "ix-modal", never, { "animation": "animation"; "backdrop": "backdrop"; "beforeDismiss": "beforeDismiss"; "centered": "centered"; "closeOnBackdropClick": "closeOnBackdropClick"; "closeOnEscape": "closeOnEscape"; "keyboard": "keyboard"; "size": "size"; }, {}, never, ["*"]>;
893
+ 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>;
871
894
  }
872
895
  export declare interface IxModal extends Components.IxModal {
873
896
  /**
@@ -884,7 +907,7 @@ export declare class IxModalContent {
884
907
  protected el: HTMLElement;
885
908
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
886
909
  static ɵfac: i0.ɵɵFactoryDeclaration<IxModalContent, never>;
887
- static ɵcmp: i0.ɵɵComponentDeclaration<IxModalContent, "ix-modal-content", never, {}, {}, never, ["*"]>;
910
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxModalContent, "ix-modal-content", never, {}, {}, never, ["*"], false, never>;
888
911
  }
889
912
  export declare interface IxModalContent extends Components.IxModalContent {
890
913
  }
@@ -893,7 +916,7 @@ export declare class IxModalFooter {
893
916
  protected el: HTMLElement;
894
917
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
895
918
  static ɵfac: i0.ɵɵFactoryDeclaration<IxModalFooter, never>;
896
- static ɵcmp: i0.ɵɵComponentDeclaration<IxModalFooter, "ix-modal-footer", never, {}, {}, never, ["*"]>;
919
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxModalFooter, "ix-modal-footer", never, {}, {}, never, ["*"], false, never>;
897
920
  }
898
921
  export declare interface IxModalFooter extends Components.IxModalFooter {
899
922
  }
@@ -902,7 +925,7 @@ export declare class IxModalHeader {
902
925
  protected el: HTMLElement;
903
926
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
904
927
  static ɵfac: i0.ɵɵFactoryDeclaration<IxModalHeader, never>;
905
- static ɵcmp: i0.ɵɵComponentDeclaration<IxModalHeader, "ix-modal-header", never, { "hideClose": "hideClose"; "icon": "icon"; "iconColor": "iconColor"; }, {}, never, ["*"]>;
928
+ 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>;
906
929
  }
907
930
  export declare interface IxModalHeader extends Components.IxModalHeader {
908
931
  /**
@@ -916,7 +939,7 @@ export declare class IxNumberInput {
916
939
  protected el: HTMLElement;
917
940
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
918
941
  static ɵfac: i0.ɵɵFactoryDeclaration<IxNumberInput, never>;
919
- 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, ["*"]>;
942
+ 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; }; "validText": { "alias": "validText"; "required": false; }; "value": { "alias": "value"; "required": false; }; "warningText": { "alias": "warningText"; "required": false; }; }, {}, never, ["*"], false, never>;
920
943
  }
921
944
  export declare interface IxNumberInput extends Components.IxNumberInput {
922
945
  /**
@@ -937,7 +960,7 @@ export declare class IxPagination {
937
960
  protected el: HTMLElement;
938
961
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
939
962
  static ɵfac: i0.ɵɵFactoryDeclaration<IxPagination, never>;
940
- 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, ["*"]>;
963
+ 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>;
941
964
  }
942
965
  export declare interface IxPagination extends Components.IxPagination {
943
966
  /**
@@ -954,7 +977,7 @@ export declare class IxPane {
954
977
  protected el: HTMLElement;
955
978
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
956
979
  static ɵfac: i0.ɵɵFactoryDeclaration<IxPane, never>;
957
- 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, ["*"]>;
980
+ 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>;
958
981
  }
959
982
  export declare interface IxPane extends Components.IxPane {
960
983
  /**
@@ -975,7 +998,7 @@ export declare class IxPaneLayout {
975
998
  protected el: HTMLElement;
976
999
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
977
1000
  static ɵfac: i0.ɵɵFactoryDeclaration<IxPaneLayout, never>;
978
- static ɵcmp: i0.ɵɵComponentDeclaration<IxPaneLayout, "ix-pane-layout", never, { "borderless": "borderless"; "layout": "layout"; "variant": "variant"; }, {}, never, ["*"]>;
1001
+ 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>;
979
1002
  }
980
1003
  export declare interface IxPaneLayout extends Components.IxPaneLayout {
981
1004
  }
@@ -984,7 +1007,7 @@ export declare class IxPill {
984
1007
  protected el: HTMLElement;
985
1008
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
986
1009
  static ɵfac: i0.ɵɵFactoryDeclaration<IxPill, never>;
987
- static ɵcmp: i0.ɵɵComponentDeclaration<IxPill, "ix-pill", never, { "alignLeft": "alignLeft"; "background": "background"; "color": "color"; "icon": "icon"; "outline": "outline"; "pillColor": "pillColor"; "variant": "variant"; }, {}, never, ["*"]>;
1010
+ 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>;
988
1011
  }
989
1012
  export declare interface IxPill extends Components.IxPill {
990
1013
  }
@@ -993,7 +1016,7 @@ export declare class IxPushCard {
993
1016
  protected el: HTMLElement;
994
1017
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
995
1018
  static ɵfac: i0.ɵɵFactoryDeclaration<IxPushCard, never>;
996
- static ɵcmp: i0.ɵɵComponentDeclaration<IxPushCard, "ix-push-card", never, { "collapse": "collapse"; "heading": "heading"; "icon": "icon"; "notification": "notification"; "subheading": "subheading"; "variant": "variant"; }, {}, never, ["*"]>;
1019
+ 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>;
997
1020
  }
998
1021
  export declare interface IxPushCard extends Components.IxPushCard {
999
1022
  }
@@ -1002,7 +1025,7 @@ export declare class IxRadio {
1002
1025
  protected el: HTMLElement;
1003
1026
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1004
1027
  static ɵfac: i0.ɵɵFactoryDeclaration<IxRadio, never>;
1005
- static ɵcmp: i0.ɵɵComponentDeclaration<IxRadio, "ix-radio", never, { "checked": "checked"; "disabled": "disabled"; "label": "label"; "name": "name"; "value": "value"; }, {}, never, ["*"]>;
1028
+ 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; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
1006
1029
  }
1007
1030
  export declare interface IxRadio extends Components.IxRadio {
1008
1031
  /**
@@ -1019,7 +1042,7 @@ export declare class IxRadioGroup {
1019
1042
  protected el: HTMLElement;
1020
1043
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1021
1044
  static ɵfac: i0.ɵɵFactoryDeclaration<IxRadioGroup, never>;
1022
- 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, ["*"]>;
1045
+ 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>;
1023
1046
  }
1024
1047
  export declare interface IxRadioGroup extends Components.IxRadioGroup {
1025
1048
  /**
@@ -1032,7 +1055,7 @@ export declare class IxRow {
1032
1055
  protected el: HTMLElement;
1033
1056
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1034
1057
  static ɵfac: i0.ɵɵFactoryDeclaration<IxRow, never>;
1035
- static ɵcmp: i0.ɵɵComponentDeclaration<IxRow, "ix-row", never, {}, {}, never, ["*"]>;
1058
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxRow, "ix-row", never, {}, {}, never, ["*"], false, never>;
1036
1059
  }
1037
1060
  export declare interface IxRow extends Components.IxRow {
1038
1061
  }
@@ -1041,17 +1064,13 @@ export declare class IxSelect {
1041
1064
  protected el: HTMLElement;
1042
1065
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1043
1066
  static ɵfac: i0.ɵɵFactoryDeclaration<IxSelect, never>;
1044
- static ɵcmp: i0.ɵɵComponentDeclaration<IxSelect, "ix-select", never, { "allowClear": "allowClear"; "disabled": "disabled"; "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"; "selectedIndices": "selectedIndices"; "showTextAsTooltip": "showTextAsTooltip"; "validText": "validText"; "value": "value"; "warningText": "warningText"; }, {}, never, ["*"]>;
1067
+ 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>;
1045
1068
  }
1046
1069
  export declare interface IxSelect extends Components.IxSelect {
1047
1070
  /**
1048
1071
  * Value changed @since 2.0.0
1049
1072
  */
1050
1073
  valueChange: EventEmitter<CustomEvent<string | string[]>>;
1051
- /**
1052
- * Item selection changed @deprecated since 2.0.0. Use `valueChange` instead.
1053
- */
1054
- itemSelectionChange: EventEmitter<CustomEvent<string[]>>;
1055
1074
  /**
1056
1075
  * Event dispatched whenever the text input changes. @since 2.0.0
1057
1076
  */
@@ -1070,7 +1089,7 @@ export declare class IxSelectItem {
1070
1089
  protected el: HTMLElement;
1071
1090
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1072
1091
  static ɵfac: i0.ɵɵFactoryDeclaration<IxSelectItem, never>;
1073
- static ɵcmp: i0.ɵɵComponentDeclaration<IxSelectItem, "ix-select-item", never, { "label": "label"; "selected": "selected"; "value": "value"; }, {}, never, ["*"]>;
1092
+ 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>;
1074
1093
  }
1075
1094
  export declare interface IxSelectItem extends Components.IxSelectItem {
1076
1095
  /**
@@ -1083,7 +1102,7 @@ export declare class IxSlider {
1083
1102
  protected el: HTMLElement;
1084
1103
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1085
1104
  static ɵfac: i0.ɵɵFactoryDeclaration<IxSlider, never>;
1086
- 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, ["*"]>;
1105
+ 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>;
1087
1106
  }
1088
1107
  export declare interface IxSlider extends Components.IxSlider {
1089
1108
  valueChange: EventEmitter<CustomEvent<number>>;
@@ -1093,7 +1112,7 @@ export declare class IxSpinner {
1093
1112
  protected el: HTMLElement;
1094
1113
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1095
1114
  static ɵfac: i0.ɵɵFactoryDeclaration<IxSpinner, never>;
1096
- static ɵcmp: i0.ɵɵComponentDeclaration<IxSpinner, "ix-spinner", never, { "size": "size"; "variant": "variant"; }, {}, never, ["*"]>;
1115
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxSpinner, "ix-spinner", never, { "size": { "alias": "size"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
1097
1116
  }
1098
1117
  export declare interface IxSpinner extends Components.IxSpinner {
1099
1118
  }
@@ -1102,7 +1121,7 @@ export declare class IxSplitButton {
1102
1121
  protected el: HTMLElement;
1103
1122
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1104
1123
  static ɵfac: i0.ɵɵFactoryDeclaration<IxSplitButton, never>;
1105
- 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, ["*"]>;
1124
+ 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>;
1106
1125
  }
1107
1126
  export declare interface IxSplitButton extends Components.IxSplitButton {
1108
1127
  /**
@@ -1110,25 +1129,12 @@ export declare interface IxSplitButton extends Components.IxSplitButton {
1110
1129
  */
1111
1130
  buttonClick: EventEmitter<CustomEvent<MouseEvent>>;
1112
1131
  }
1113
- export declare class IxSplitButtonItem {
1114
- protected z: NgZone;
1115
- protected el: HTMLElement;
1116
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1117
- static ɵfac: i0.ɵɵFactoryDeclaration<IxSplitButtonItem, never>;
1118
- static ɵcmp: i0.ɵɵComponentDeclaration<IxSplitButtonItem, "ix-split-button-item", never, { "icon": "icon"; "label": "label"; }, {}, never, ["*"]>;
1119
- }
1120
- export declare interface IxSplitButtonItem extends Components.IxSplitButtonItem {
1121
- /**
1122
- * Dropdown item clicked
1123
- */
1124
- itemClick: EventEmitter<CustomEvent<MouseEvent>>;
1125
- }
1126
1132
  export declare class IxTabItem {
1127
1133
  protected z: NgZone;
1128
1134
  protected el: HTMLElement;
1129
1135
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1130
1136
  static ɵfac: i0.ɵɵFactoryDeclaration<IxTabItem, never>;
1131
- 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, ["*"]>;
1137
+ 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>;
1132
1138
  }
1133
1139
  export declare interface IxTabItem extends Components.IxTabItem {
1134
1140
  /**
@@ -1141,7 +1147,7 @@ export declare class IxTabs {
1141
1147
  protected el: HTMLElement;
1142
1148
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1143
1149
  static ɵfac: i0.ɵɵFactoryDeclaration<IxTabs, never>;
1144
- static ɵcmp: i0.ɵɵComponentDeclaration<IxTabs, "ix-tabs", never, { "layout": "layout"; "placement": "placement"; "rounded": "rounded"; "selected": "selected"; "small": "small"; }, {}, never, ["*"]>;
1150
+ 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>;
1145
1151
  }
1146
1152
  export declare interface IxTabs extends Components.IxTabs {
1147
1153
  /**
@@ -1154,7 +1160,7 @@ export declare class IxTextarea {
1154
1160
  protected el: HTMLElement;
1155
1161
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1156
1162
  static ɵfac: i0.ɵɵFactoryDeclaration<IxTextarea, never>;
1157
- 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, ["*"]>;
1163
+ 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>;
1158
1164
  }
1159
1165
  export declare interface IxTextarea extends Components.IxTextarea {
1160
1166
  /**
@@ -1175,7 +1181,7 @@ export declare class IxTile {
1175
1181
  protected el: HTMLElement;
1176
1182
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1177
1183
  static ɵfac: i0.ɵɵFactoryDeclaration<IxTile, never>;
1178
- static ɵcmp: i0.ɵɵComponentDeclaration<IxTile, "ix-tile", never, { "size": "size"; }, {}, never, ["*"]>;
1184
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxTile, "ix-tile", never, { "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
1179
1185
  }
1180
1186
  export declare interface IxTile extends Components.IxTile {
1181
1187
  }
@@ -1184,17 +1190,13 @@ export declare class IxTimePicker {
1184
1190
  protected el: HTMLElement;
1185
1191
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1186
1192
  static ɵfac: i0.ɵɵFactoryDeclaration<IxTimePicker, never>;
1187
- static ɵcmp: i0.ɵɵComponentDeclaration<IxTimePicker, "ix-time-picker", never, { "corners": "corners"; "format": "format"; "individual": "individual"; "showHour": "showHour"; "showMinutes": "showMinutes"; "showSeconds": "showSeconds"; "showTimeReference": "showTimeReference"; "standaloneAppearance": "standaloneAppearance"; "textSelectTime": "textSelectTime"; "textTime": "textTime"; "time": "time"; "timeReference": "timeReference"; }, {}, never, ["*"]>;
1193
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxTimePicker, "ix-time-picker", never, { "corners": { "alias": "corners"; "required": false; }; "format": { "alias": "format"; "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>;
1188
1194
  }
1189
1195
  export declare interface IxTimePicker extends Components.IxTimePicker {
1190
1196
  /**
1191
1197
  * Time event
1192
1198
  */
1193
1199
  timeSelect: EventEmitter<CustomEvent<string>>;
1194
- /**
1195
- * Time event @deprecated Will be removed in 3.0.0. Use `time-select` event.
1196
- */
1197
- done: EventEmitter<CustomEvent<string>>;
1198
1200
  /**
1199
1201
  * Time change event
1200
1202
  */
@@ -1205,7 +1207,7 @@ export declare class IxToast {
1205
1207
  protected el: HTMLElement;
1206
1208
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1207
1209
  static ɵfac: i0.ɵɵFactoryDeclaration<IxToast, never>;
1208
- static ɵcmp: i0.ɵɵComponentDeclaration<IxToast, "ix-toast", never, { "autoClose": "autoClose"; "autoCloseDelay": "autoCloseDelay"; "icon": "icon"; "iconColor": "iconColor"; "toastTitle": "toastTitle"; "type": "type"; }, {}, never, ["*"]>;
1210
+ 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>;
1209
1211
  }
1210
1212
  export declare interface IxToast extends Components.IxToast {
1211
1213
  /**
@@ -1218,7 +1220,7 @@ export declare class IxToastContainer {
1218
1220
  protected el: HTMLElement;
1219
1221
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1220
1222
  static ɵfac: i0.ɵɵFactoryDeclaration<IxToastContainer, never>;
1221
- static ɵcmp: i0.ɵɵComponentDeclaration<IxToastContainer, "ix-toast-container", never, { "containerClass": "containerClass"; "containerId": "containerId"; "position": "position"; }, {}, never, ["*"]>;
1223
+ 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>;
1222
1224
  }
1223
1225
  export declare interface IxToastContainer extends Components.IxToastContainer {
1224
1226
  }
@@ -1227,7 +1229,7 @@ export declare class IxToggle {
1227
1229
  protected el: HTMLElement;
1228
1230
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1229
1231
  static ɵfac: i0.ɵɵFactoryDeclaration<IxToggle, never>;
1230
- 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, ["*"]>;
1232
+ 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>;
1231
1233
  }
1232
1234
  export declare interface IxToggle extends Components.IxToggle {
1233
1235
  /**
@@ -1240,7 +1242,7 @@ export declare class IxToggleButton {
1240
1242
  protected el: HTMLElement;
1241
1243
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1242
1244
  static ɵfac: i0.ɵɵFactoryDeclaration<IxToggleButton, never>;
1243
- static ɵcmp: i0.ɵɵComponentDeclaration<IxToggleButton, "ix-toggle-button", never, { "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "loading": "loading"; "outline": "outline"; "pressed": "pressed"; "variant": "variant"; }, {}, never, ["*"]>;
1245
+ 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>;
1244
1246
  }
1245
1247
  export declare interface IxToggleButton extends Components.IxToggleButton {
1246
1248
  /**
@@ -1253,7 +1255,7 @@ export declare class IxTooltip {
1253
1255
  protected el: HTMLElement;
1254
1256
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1255
1257
  static ɵfac: i0.ɵɵFactoryDeclaration<IxTooltip, never>;
1256
- static ɵcmp: i0.ɵɵComponentDeclaration<IxTooltip, "ix-tooltip", never, { "for": "for"; "interactive": "interactive"; "placement": "placement"; "titleContent": "titleContent"; }, {}, never, ["*"]>;
1258
+ 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>;
1257
1259
  }
1258
1260
  export declare interface IxTooltip extends Components.IxTooltip {
1259
1261
  }
@@ -1262,7 +1264,7 @@ export declare class IxTreeItem {
1262
1264
  protected el: HTMLElement;
1263
1265
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1264
1266
  static ɵfac: i0.ɵɵFactoryDeclaration<IxTreeItem, never>;
1265
- static ɵcmp: i0.ɵɵComponentDeclaration<IxTreeItem, "ix-tree-item", never, { "context": "context"; "hasChildren": "hasChildren"; "text": "text"; }, {}, never, ["*"]>;
1267
+ 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>;
1266
1268
  }
1267
1269
  export declare interface IxTreeItem extends Components.IxTreeItem {
1268
1270
  /**
@@ -1279,7 +1281,7 @@ export declare class IxTypography {
1279
1281
  protected el: HTMLElement;
1280
1282
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1281
1283
  static ɵfac: i0.ɵɵFactoryDeclaration<IxTypography, never>;
1282
- static ɵcmp: i0.ɵɵComponentDeclaration<IxTypography, "ix-typography", never, { "bold": "bold"; "color": "color"; "format": "format"; "textColor": "textColor"; "textDecoration": "textDecoration"; }, {}, never, ["*"]>;
1284
+ 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>;
1283
1285
  }
1284
1286
  export declare interface IxTypography extends Components.IxTypography {
1285
1287
  }
@@ -1288,7 +1290,7 @@ export declare class IxUpload {
1288
1290
  protected el: HTMLElement;
1289
1291
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1290
1292
  static ɵfac: i0.ɵɵFactoryDeclaration<IxUpload, never>;
1291
- 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, ["*"]>;
1293
+ 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>;
1292
1294
  }
1293
1295
  export declare interface IxUpload extends Components.IxUpload {
1294
1296
  /**
@@ -1301,7 +1303,7 @@ export declare class IxValidationTooltip {
1301
1303
  protected el: HTMLElement;
1302
1304
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1303
1305
  static ɵfac: i0.ɵɵFactoryDeclaration<IxValidationTooltip, never>;
1304
- static ɵcmp: i0.ɵɵComponentDeclaration<IxValidationTooltip, "ix-validation-tooltip", never, { "message": "message"; "placement": "placement"; "suppressAutomaticPlacement": "suppressAutomaticPlacement"; }, {}, never, ["*"]>;
1306
+ 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>;
1305
1307
  }
1306
1308
  export declare interface IxValidationTooltip extends Components.IxValidationTooltip {
1307
1309
  }
@@ -1310,7 +1312,7 @@ export declare class IxWorkflowStep {
1310
1312
  protected el: HTMLElement;
1311
1313
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1312
1314
  static ɵfac: i0.ɵɵFactoryDeclaration<IxWorkflowStep, never>;
1313
- static ɵcmp: i0.ɵɵComponentDeclaration<IxWorkflowStep, "ix-workflow-step", never, { "clickable": "clickable"; "disabled": "disabled"; "selected": "selected"; "status": "status"; "vertical": "vertical"; }, {}, never, ["*"]>;
1315
+ 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>;
1314
1316
  }
1315
1317
  export declare interface IxWorkflowStep extends Components.IxWorkflowStep {
1316
1318
  }
@@ -1319,7 +1321,7 @@ export declare class IxWorkflowSteps {
1319
1321
  protected el: HTMLElement;
1320
1322
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1321
1323
  static ɵfac: i0.ɵɵFactoryDeclaration<IxWorkflowSteps, never>;
1322
- static ɵcmp: i0.ɵɵComponentDeclaration<IxWorkflowSteps, "ix-workflow-steps", never, { "clickable": "clickable"; "selectedIndex": "selectedIndex"; "vertical": "vertical"; }, {}, never, ["*"]>;
1324
+ 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>;
1323
1325
  }
1324
1326
  export declare interface IxWorkflowSteps extends Components.IxWorkflowSteps {
1325
1327
  /**