@siemens/ix-angular 2.7.0 → 3.0.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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 +7 -3
  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 +129 -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 -136
  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 -3489
  143. package/fesm2015/siemens-ix-angular.mjs.map +0 -1
  144. package/fesm2020/siemens-ix-angular.mjs +0 -3515
  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,7 +39,7 @@ 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
  /**
@@ -56,7 +56,7 @@ export declare class IxAvatar {
56
56
  protected el: HTMLElement;
57
57
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
58
58
  static ɵfac: i0.ɵɵFactoryDeclaration<IxAvatar, never>;
59
- 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>;
60
60
  }
61
61
  export declare interface IxAvatar extends Components.IxAvatar {
62
62
  }
@@ -65,7 +65,7 @@ export declare class IxBasicNavigation {
65
65
  protected el: HTMLElement;
66
66
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
67
67
  static ɵfac: i0.ɵɵFactoryDeclaration<IxBasicNavigation, never>;
68
- static ɵcmp: i0.ɵɵComponentDeclaration<IxBasicNavigation, "ix-basic-navigation", never, { "applicationName": "applicationName"; "breakpoints": "breakpoints"; "forceBreakpoint": "forceBreakpoint"; "hideHeader": "hideHeader"; }, {}, never, ["*"]>;
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>;
69
69
  }
70
70
  export declare interface IxBasicNavigation extends Components.IxBasicNavigation {
71
71
  }
@@ -74,7 +74,7 @@ export declare class IxBlind {
74
74
  protected el: HTMLElement;
75
75
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
76
76
  static ɵfac: i0.ɵɵFactoryDeclaration<IxBlind, never>;
77
- static ɵcmp: i0.ɵɵComponentDeclaration<IxBlind, "ix-blind", never, { "collapsed": "collapsed"; "icon": "icon"; "label": "label"; "sublabel": "sublabel"; "variant": "variant"; }, {}, never, ["*"]>;
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>;
78
78
  }
79
79
  export declare interface IxBlind extends Components.IxBlind {
80
80
  /**
@@ -87,7 +87,7 @@ export declare class IxBreadcrumb {
87
87
  protected el: HTMLElement;
88
88
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
89
89
  static ɵfac: i0.ɵɵFactoryDeclaration<IxBreadcrumb, never>;
90
- 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>;
91
91
  }
92
92
  export declare interface IxBreadcrumb extends Components.IxBreadcrumb {
93
93
  /**
@@ -107,7 +107,7 @@ export declare class IxBreadcrumbItem {
107
107
  protected el: HTMLElement;
108
108
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
109
109
  static ɵfac: i0.ɵɵFactoryDeclaration<IxBreadcrumbItem, never>;
110
- 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>;
111
111
  }
112
112
  export declare interface IxBreadcrumbItem extends Components.IxBreadcrumbItem {
113
113
  }
@@ -116,7 +116,7 @@ export declare class IxButton {
116
116
  protected el: HTMLElement;
117
117
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
118
118
  static ɵfac: i0.ɵɵFactoryDeclaration<IxButton, never>;
119
- static ɵcmp: i0.ɵɵComponentDeclaration<IxButton, "ix-button", never, { "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "loading": "loading"; "outline": "outline"; "type": "type"; "variant": "variant"; }, {}, never, ["*"]>;
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>;
120
120
  }
121
121
  export declare interface IxButton extends Components.IxButton {
122
122
  }
@@ -125,7 +125,7 @@ export declare class IxCard {
125
125
  protected el: HTMLElement;
126
126
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
127
127
  static ɵfac: i0.ɵɵFactoryDeclaration<IxCard, never>;
128
- 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>;
129
129
  }
130
130
  export declare interface IxCard extends Components.IxCard {
131
131
  }
@@ -134,7 +134,7 @@ export declare class IxCardAccordion {
134
134
  protected el: HTMLElement;
135
135
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
136
136
  static ɵfac: i0.ɵɵFactoryDeclaration<IxCardAccordion, never>;
137
- 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>;
138
138
  }
139
139
  export declare interface IxCardAccordion extends Components.IxCardAccordion {
140
140
  }
@@ -143,7 +143,7 @@ export declare class IxCardContent {
143
143
  protected el: HTMLElement;
144
144
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
145
145
  static ɵfac: i0.ɵɵFactoryDeclaration<IxCardContent, never>;
146
- static ɵcmp: i0.ɵɵComponentDeclaration<IxCardContent, "ix-card-content", never, {}, {}, never, ["*"]>;
146
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxCardContent, "ix-card-content", never, {}, {}, never, ["*"], false, never>;
147
147
  }
148
148
  export declare interface IxCardContent extends Components.IxCardContent {
149
149
  }
@@ -152,7 +152,7 @@ export declare class IxCardList {
152
152
  protected el: HTMLElement;
153
153
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
154
154
  static ɵfac: i0.ɵɵFactoryDeclaration<IxCardList, never>;
155
- static ɵcmp: i0.ɵɵComponentDeclaration<IxCardList, "ix-card-list", never, { "collapse": "collapse"; "hideShowAll": "hideShowAll"; "i18nMoreCards": "i18nMoreCards"; "i18nShowAll": "i18nShowAll"; "label": "label"; "listStyle": "listStyle"; "showAllCount": "showAllCount"; "suppressOverflowHandling": "suppressOverflowHandling"; }, {}, never, ["*"]>;
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>;
156
156
  }
157
157
  export declare interface IxCardList extends Components.IxCardList {
158
158
  /**
@@ -177,7 +177,7 @@ export declare class IxCardTitle {
177
177
  protected el: HTMLElement;
178
178
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
179
179
  static ɵfac: i0.ɵɵFactoryDeclaration<IxCardTitle, never>;
180
- static ɵcmp: i0.ɵɵComponentDeclaration<IxCardTitle, "ix-card-title", never, {}, {}, never, ["*"]>;
180
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxCardTitle, "ix-card-title", never, {}, {}, never, ["*"], false, never>;
181
181
  }
182
182
  export declare interface IxCardTitle extends Components.IxCardTitle {
183
183
  }
@@ -186,7 +186,7 @@ export declare class IxCategoryFilter {
186
186
  protected el: HTMLElement;
187
187
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
188
188
  static ɵfac: i0.ɵɵFactoryDeclaration<IxCategoryFilter, never>;
189
- static ɵcmp: i0.ɵɵComponentDeclaration<IxCategoryFilter, "ix-category-filter", never, { "categories": "categories"; "disabled": "disabled"; "filterState": "filterState"; "hideIcon": "hideIcon"; "i18nPlainText": "i18nPlainText"; "icon": "icon"; "labelCategories": "labelCategories"; "nonSelectableCategories": "nonSelectableCategories"; "placeholder": "placeholder"; "readonly": "readonly"; "repeatCategories": "repeatCategories"; "staticOperator": "staticOperator"; "suggestions": "suggestions"; }, {}, never, ["*"]>;
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>;
190
190
  }
191
191
  export declare interface IxCategoryFilter extends Components.IxCategoryFilter {
192
192
  /**
@@ -211,7 +211,7 @@ export declare class IxCheckbox {
211
211
  protected el: HTMLElement;
212
212
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
213
213
  static ɵfac: i0.ɵɵFactoryDeclaration<IxCheckbox, never>;
214
- static ɵcmp: i0.ɵɵComponentDeclaration<IxCheckbox, "ix-checkbox", never, { "checked": "checked"; "disabled": "disabled"; "indeterminate": "indeterminate"; "label": "label"; "name": "name"; "required": "required"; "value": "value"; }, {}, never, ["*"]>;
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>;
215
215
  }
216
216
  export declare interface IxCheckbox extends Components.IxCheckbox {
217
217
  /**
@@ -228,7 +228,7 @@ export declare class IxCheckboxGroup {
228
228
  protected el: HTMLElement;
229
229
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
230
230
  static ɵfac: i0.ɵɵFactoryDeclaration<IxCheckboxGroup, never>;
231
- static ɵcmp: i0.ɵɵComponentDeclaration<IxCheckboxGroup, "ix-checkbox-group", never, { "direction": "direction"; "helperText": "helperText"; "infoText": "infoText"; "invalidText": "invalidText"; "label": "label"; "showTextAsTooltip": "showTextAsTooltip"; "validText": "validText"; "warningText": "warningText"; }, {}, never, ["*"]>;
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>;
232
232
  }
233
233
  export declare interface IxCheckboxGroup extends Components.IxCheckboxGroup {
234
234
  }
@@ -237,7 +237,7 @@ export declare class IxChip {
237
237
  protected el: HTMLElement;
238
238
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
239
239
  static ɵfac: i0.ɵɵFactoryDeclaration<IxChip, never>;
240
- 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>;
241
241
  }
242
242
  export declare interface IxChip extends Components.IxChip {
243
243
  /**
@@ -250,7 +250,7 @@ export declare class IxCol {
250
250
  protected el: HTMLElement;
251
251
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
252
252
  static ɵfac: i0.ɵɵFactoryDeclaration<IxCol, never>;
253
- 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>;
254
254
  }
255
255
  export declare interface IxCol extends Components.IxCol {
256
256
  }
@@ -259,7 +259,7 @@ export declare class IxContent {
259
259
  protected el: HTMLElement;
260
260
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
261
261
  static ɵfac: i0.ɵɵFactoryDeclaration<IxContent, never>;
262
- static ɵcmp: i0.ɵɵComponentDeclaration<IxContent, "ix-content", never, {}, {}, never, ["*"]>;
262
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxContent, "ix-content", never, {}, {}, never, ["*"], false, never>;
263
263
  }
264
264
  export declare interface IxContent extends Components.IxContent {
265
265
  }
@@ -268,7 +268,7 @@ export declare class IxContentHeader {
268
268
  protected el: HTMLElement;
269
269
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
270
270
  static ɵfac: i0.ɵɵFactoryDeclaration<IxContentHeader, never>;
271
- static ɵcmp: i0.ɵɵComponentDeclaration<IxContentHeader, "ix-content-header", never, { "hasBackButton": "hasBackButton"; "headerSubtitle": "headerSubtitle"; "headerTitle": "headerTitle"; "variant": "variant"; }, {}, never, ["*"]>;
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>;
272
272
  }
273
273
  export declare interface IxContentHeader extends Components.IxContentHeader {
274
274
  /**
@@ -281,7 +281,7 @@ export declare class IxCustomField {
281
281
  protected el: HTMLElement;
282
282
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
283
283
  static ɵfac: i0.ɵɵFactoryDeclaration<IxCustomField, never>;
284
- static ɵcmp: i0.ɵɵComponentDeclaration<IxCustomField, "ix-custom-field", never, { "helperText": "helperText"; "infoText": "infoText"; "invalidText": "invalidText"; "label": "label"; "required": "required"; "showTextAsTooltip": "showTextAsTooltip"; "validText": "validText"; "warningText": "warningText"; }, {}, never, ["*"]>;
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>;
285
285
  }
286
286
  export declare interface IxCustomField extends Components.IxCustomField {
287
287
  }
@@ -290,7 +290,7 @@ export declare class IxDateDropdown {
290
290
  protected el: HTMLElement;
291
291
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
292
292
  static ɵfac: i0.ɵɵFactoryDeclaration<IxDateDropdown, never>;
293
- static ɵcmp: i0.ɵɵComponentDeclaration<IxDateDropdown, "ix-date-dropdown", never, { "customRangeAllowed": "customRangeAllowed"; "dateRangeId": "dateRangeId"; "dateRangeOptions": "dateRangeOptions"; "disabled": "disabled"; "format": "format"; "from": "from"; "ghost": "ghost"; "i18nCustomItem": "i18nCustomItem"; "i18nDone": "i18nDone"; "i18nNoRange": "i18nNoRange"; "loading": "loading"; "locale": "locale"; "maxDate": "maxDate"; "minDate": "minDate"; "outline": "outline"; "range": "range"; "to": "to"; "variant": "variant"; "weekStartIndex": "weekStartIndex"; }, {}, never, ["*"]>;
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>;
294
294
  }
295
295
  export declare interface IxDateDropdown extends Components.IxDateDropdown {
296
296
  /**
@@ -306,13 +306,13 @@ export declare class IxDateInput {
306
306
  protected el: HTMLElement;
307
307
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
308
308
  static ɵfac: i0.ɵɵFactoryDeclaration<IxDateInput, never>;
309
- static ɵcmp: i0.ɵɵComponentDeclaration<IxDateInput, "ix-date-input", never, { "disabled": "disabled"; "format": "format"; "helperText": "helperText"; "i18nErrorDateUnparsable": "i18nErrorDateUnparsable"; "infoText": "infoText"; "invalidText": "invalidText"; "label": "label"; "locale": "locale"; "name": "name"; "placeholder": "placeholder"; "readonly": "readonly"; "required": "required"; "showTextAsTooltip": "showTextAsTooltip"; "validText": "validText"; "value": "value"; "warningText": "warningText"; }, {}, never, ["*"]>;
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>;
310
310
  }
311
311
  export declare interface IxDateInput extends Components.IxDateInput {
312
312
  /**
313
313
  * Input change event.
314
314
  */
315
- valueChange: EventEmitter<CustomEvent<string>>;
315
+ valueChange: EventEmitter<CustomEvent<string | undefined>>;
316
316
  /**
317
317
  * Validation state change event.
318
318
  */
@@ -323,7 +323,7 @@ export declare class IxDatePicker {
323
323
  protected el: HTMLElement;
324
324
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
325
325
  static ɵfac: i0.ɵɵFactoryDeclaration<IxDatePicker, never>;
326
- 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>;
327
327
  }
328
328
  export declare interface IxDatePicker extends Components.IxDatePicker {
329
329
  /**
@@ -340,27 +340,18 @@ export declare interface IxDatePicker extends Components.IxDatePicker {
340
340
  * Date selection confirmed via button action @since 1.1.0
341
341
  */
342
342
  dateSelect: EventEmitter<CustomEvent<IIxDatePickerDateChangeEvent>>;
343
- /**
344
- * Date selection confirmed via button action @deprecated NOT getting dispatched after 2.0.0. Use `dateSelect`.
345
- */
346
- done: EventEmitter<CustomEvent<string>>;
347
343
  }
348
344
  export declare class IxDatetimePicker {
349
345
  protected z: NgZone;
350
346
  protected el: HTMLElement;
351
347
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
352
348
  static ɵfac: i0.ɵɵFactoryDeclaration<IxDatetimePicker, never>;
353
- 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>;
354
350
  }
355
351
  export declare interface IxDatetimePicker extends Components.IxDatetimePicker {
356
352
  /**
357
- * Done event
358
-
359
- Set `doneEventDelimiter` to null or undefine to get the typed event @deprecated Use `this.dateChange`
360
- */
361
- done: EventEmitter<CustomEvent<string>>;
362
- /**
363
- * Time change @since 1.1.0
353
+ *
354
+ Time change @since 1.1.0
364
355
  */
365
356
  timeChange: EventEmitter<CustomEvent<string>>;
366
357
  /**
@@ -377,7 +368,7 @@ export declare class IxDivider {
377
368
  protected el: HTMLElement;
378
369
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
379
370
  static ɵfac: i0.ɵɵFactoryDeclaration<IxDivider, never>;
380
- static ɵcmp: i0.ɵɵComponentDeclaration<IxDivider, "ix-divider", never, {}, {}, never, ["*"]>;
371
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxDivider, "ix-divider", never, {}, {}, never, ["*"], false, never>;
381
372
  }
382
373
  export declare interface IxDivider extends Components.IxDivider {
383
374
  }
@@ -386,7 +377,7 @@ export declare class IxDrawer {
386
377
  protected el: HTMLElement;
387
378
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
388
379
  static ɵfac: i0.ɵɵFactoryDeclaration<IxDrawer, never>;
389
- static ɵcmp: i0.ɵɵComponentDeclaration<IxDrawer, "ix-drawer", never, { "closeOnClickOutside": "closeOnClickOutside"; "fullHeight": "fullHeight"; "maxWidth": "maxWidth"; "minWidth": "minWidth"; "show": "show"; "width": "width"; }, {}, never, ["*"]>;
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>;
390
381
  }
391
382
  export declare interface IxDrawer extends Components.IxDrawer {
392
383
  /**
@@ -403,7 +394,7 @@ export declare class IxDropdown {
403
394
  protected el: HTMLElement;
404
395
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
405
396
  static ɵfac: i0.ɵɵFactoryDeclaration<IxDropdown, never>;
406
- static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdown, "ix-dropdown", never, { "anchor": "anchor"; "closeBehavior": "closeBehavior"; "header": "header"; "placement": "placement"; "positioningStrategy": "positioningStrategy"; "show": "show"; "suppressAutomaticPlacement": "suppressAutomaticPlacement"; "trigger": "trigger"; }, {}, never, ["*"]>;
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>;
407
398
  }
408
399
  export declare interface IxDropdown extends Components.IxDropdown {
409
400
  /**
@@ -416,7 +407,7 @@ export declare class IxDropdownButton {
416
407
  protected el: HTMLElement;
417
408
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
418
409
  static ɵfac: i0.ɵɵFactoryDeclaration<IxDropdownButton, never>;
419
- static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdownButton, "ix-dropdown-button", never, { "closeBehavior": "closeBehavior"; "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "label": "label"; "outline": "outline"; "placement": "placement"; "variant": "variant"; }, {}, never, ["*"]>;
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>;
420
411
  }
421
412
  export declare interface IxDropdownButton extends Components.IxDropdownButton {
422
413
  }
@@ -425,7 +416,7 @@ export declare class IxDropdownHeader {
425
416
  protected el: HTMLElement;
426
417
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
427
418
  static ɵfac: i0.ɵɵFactoryDeclaration<IxDropdownHeader, never>;
428
- 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>;
429
420
  }
430
421
  export declare interface IxDropdownHeader extends Components.IxDropdownHeader {
431
422
  }
@@ -434,7 +425,7 @@ export declare class IxDropdownItem {
434
425
  protected el: HTMLElement;
435
426
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
436
427
  static ɵfac: i0.ɵɵFactoryDeclaration<IxDropdownItem, never>;
437
- static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdownItem, "ix-dropdown-item", never, { "checked": "checked"; "disabled": "disabled"; "hover": "hover"; "icon": "icon"; "label": "label"; }, {}, never, ["*"]>;
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>;
438
429
  }
439
430
  export declare interface IxDropdownItem extends Components.IxDropdownItem {
440
431
  }
@@ -443,7 +434,7 @@ export declare class IxDropdownQuickActions {
443
434
  protected el: HTMLElement;
444
435
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
445
436
  static ɵfac: i0.ɵɵFactoryDeclaration<IxDropdownQuickActions, never>;
446
- 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>;
447
438
  }
448
439
  export declare interface IxDropdownQuickActions extends Components.IxDropdownQuickActions {
449
440
  }
@@ -452,7 +443,7 @@ export declare class IxEmptyState {
452
443
  protected el: HTMLElement;
453
444
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
454
445
  static ɵfac: i0.ɵɵFactoryDeclaration<IxEmptyState, never>;
455
- static ɵcmp: i0.ɵɵComponentDeclaration<IxEmptyState, "ix-empty-state", never, { "action": "action"; "header": "header"; "icon": "icon"; "layout": "layout"; "subHeader": "subHeader"; }, {}, never, ["*"]>;
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>;
456
447
  }
457
448
  export declare interface IxEmptyState extends Components.IxEmptyState {
458
449
  /**
@@ -465,7 +456,7 @@ export declare class IxEventList {
465
456
  protected el: HTMLElement;
466
457
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
467
458
  static ɵfac: i0.ɵɵFactoryDeclaration<IxEventList, never>;
468
- static ɵcmp: i0.ɵɵComponentDeclaration<IxEventList, "ix-event-list", never, { "animated": "animated"; "chevron": "chevron"; "compact": "compact"; "itemHeight": "itemHeight"; }, {}, never, ["*"]>;
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>;
469
460
  }
470
461
  export declare interface IxEventList extends Components.IxEventList {
471
462
  }
@@ -474,7 +465,7 @@ export declare class IxEventListItem {
474
465
  protected el: HTMLElement;
475
466
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
476
467
  static ɵfac: i0.ɵɵFactoryDeclaration<IxEventListItem, never>;
477
- 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>;
478
469
  }
479
470
  export declare interface IxEventListItem extends Components.IxEventListItem {
480
471
  /**
@@ -487,7 +478,7 @@ export declare class IxExpandingSearch {
487
478
  protected el: HTMLElement;
488
479
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
489
480
  static ɵfac: i0.ɵɵFactoryDeclaration<IxExpandingSearch, never>;
490
- static ɵcmp: i0.ɵɵComponentDeclaration<IxExpandingSearch, "ix-expanding-search", never, { "fullWidth": "fullWidth"; "ghost": "ghost"; "icon": "icon"; "outline": "outline"; "placeholder": "placeholder"; "value": "value"; "variant": "variant"; }, {}, never, ["*"]>;
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>;
491
482
  }
492
483
  export declare interface IxExpandingSearch extends Components.IxExpandingSearch {
493
484
  /**
@@ -500,7 +491,7 @@ export declare class IxFieldLabel {
500
491
  protected el: HTMLElement;
501
492
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
502
493
  static ɵfac: i0.ɵɵFactoryDeclaration<IxFieldLabel, never>;
503
- 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>;
504
495
  }
505
496
  export declare interface IxFieldLabel extends Components.IxFieldLabel {
506
497
  }
@@ -509,7 +500,7 @@ export declare class IxFilterChip {
509
500
  protected el: HTMLElement;
510
501
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
511
502
  static ɵfac: i0.ɵɵFactoryDeclaration<IxFilterChip, never>;
512
- 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>;
513
504
  }
514
505
  export declare interface IxFilterChip extends Components.IxFilterChip {
515
506
  /**
@@ -522,16 +513,20 @@ export declare class IxFlipTile {
522
513
  protected el: HTMLElement;
523
514
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
524
515
  static ɵfac: i0.ɵɵFactoryDeclaration<IxFlipTile, never>;
525
- 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>;
526
517
  }
527
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>>;
528
523
  }
529
524
  export declare class IxFlipTileContent {
530
525
  protected z: NgZone;
531
526
  protected el: HTMLElement;
532
527
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
533
528
  static ɵfac: i0.ɵɵFactoryDeclaration<IxFlipTileContent, never>;
534
- 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>;
535
530
  }
536
531
  export declare interface IxFlipTileContent extends Components.IxFlipTileContent {
537
532
  }
@@ -540,7 +535,7 @@ export declare class IxGroup {
540
535
  protected el: HTMLElement;
541
536
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
542
537
  static ɵfac: i0.ɵɵFactoryDeclaration<IxGroup, never>;
543
- 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>;
544
539
  }
545
540
  export declare interface IxGroup extends Components.IxGroup {
546
541
  /**
@@ -561,7 +556,7 @@ export declare class IxGroupContextMenu {
561
556
  protected el: HTMLElement;
562
557
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
563
558
  static ɵfac: i0.ɵɵFactoryDeclaration<IxGroupContextMenu, never>;
564
- 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>;
565
560
  }
566
561
  export declare interface IxGroupContextMenu extends Components.IxGroupContextMenu {
567
562
  }
@@ -570,7 +565,7 @@ export declare class IxGroupItem {
570
565
  protected el: HTMLElement;
571
566
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
572
567
  static ɵfac: i0.ɵɵFactoryDeclaration<IxGroupItem, never>;
573
- 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>;
574
569
  }
575
570
  export declare interface IxGroupItem extends Components.IxGroupItem {
576
571
  /**
@@ -583,7 +578,7 @@ export declare class IxHelperText {
583
578
  protected el: HTMLElement;
584
579
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
585
580
  static ɵfac: i0.ɵɵFactoryDeclaration<IxHelperText, never>;
586
- 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>;
587
582
  }
588
583
  export declare interface IxHelperText extends Components.IxHelperText {
589
584
  }
@@ -592,7 +587,7 @@ export declare class IxIconButton {
592
587
  protected el: HTMLElement;
593
588
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
594
589
  static ɵfac: i0.ɵɵFactoryDeclaration<IxIconButton, never>;
595
- 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>;
596
591
  }
597
592
  export declare interface IxIconButton extends Components.IxIconButton {
598
593
  }
@@ -601,7 +596,7 @@ export declare class IxIconToggleButton {
601
596
  protected el: HTMLElement;
602
597
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
603
598
  static ɵfac: i0.ɵɵFactoryDeclaration<IxIconToggleButton, never>;
604
- 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>;
605
600
  }
606
601
  export declare interface IxIconToggleButton extends Components.IxIconToggleButton {
607
602
  /**
@@ -614,7 +609,7 @@ export declare class IxInput {
614
609
  protected el: HTMLElement;
615
610
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
616
611
  static ɵfac: i0.ɵɵFactoryDeclaration<IxInput, never>;
617
- 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>;
618
613
  }
619
614
  export declare interface IxInput extends Components.IxInput {
620
615
  /**
@@ -635,7 +630,7 @@ export declare class IxInputGroup {
635
630
  protected el: HTMLElement;
636
631
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
637
632
  static ɵfac: i0.ɵɵFactoryDeclaration<IxInputGroup, never>;
638
- static ɵcmp: i0.ɵɵComponentDeclaration<IxInputGroup, "ix-input-group", never, {}, {}, never, ["*"]>;
633
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxInputGroup, "ix-input-group", never, {}, {}, never, ["*"], false, never>;
639
634
  }
640
635
  export declare interface IxInputGroup extends Components.IxInputGroup {
641
636
  }
@@ -644,7 +639,7 @@ export declare class IxKeyValue {
644
639
  protected el: HTMLElement;
645
640
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
646
641
  static ɵfac: i0.ɵɵFactoryDeclaration<IxKeyValue, never>;
647
- 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>;
648
643
  }
649
644
  export declare interface IxKeyValue extends Components.IxKeyValue {
650
645
  }
@@ -653,7 +648,7 @@ export declare class IxKeyValueList {
653
648
  protected el: HTMLElement;
654
649
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
655
650
  static ɵfac: i0.ɵɵFactoryDeclaration<IxKeyValueList, never>;
656
- 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>;
657
652
  }
658
653
  export declare interface IxKeyValueList extends Components.IxKeyValueList {
659
654
  }
@@ -662,7 +657,7 @@ export declare class IxKpi {
662
657
  protected el: HTMLElement;
663
658
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
664
659
  static ɵfac: i0.ɵɵFactoryDeclaration<IxKpi, never>;
665
- 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>;
666
661
  }
667
662
  export declare interface IxKpi extends Components.IxKpi {
668
663
  }
@@ -671,7 +666,7 @@ export declare class IxLayoutAuto {
671
666
  protected el: HTMLElement;
672
667
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
673
668
  static ɵfac: i0.ɵɵFactoryDeclaration<IxLayoutAuto, never>;
674
- 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>;
675
670
  }
676
671
  export declare interface IxLayoutAuto extends Components.IxLayoutAuto {
677
672
  }
@@ -680,7 +675,7 @@ export declare class IxLayoutGrid {
680
675
  protected el: HTMLElement;
681
676
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
682
677
  static ɵfac: i0.ɵɵFactoryDeclaration<IxLayoutGrid, never>;
683
- 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>;
684
679
  }
685
680
  export declare interface IxLayoutGrid extends Components.IxLayoutGrid {
686
681
  }
@@ -689,7 +684,7 @@ export declare class IxLinkButton {
689
684
  protected el: HTMLElement;
690
685
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
691
686
  static ɵfac: i0.ɵɵFactoryDeclaration<IxLinkButton, never>;
692
- 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>;
693
688
  }
694
689
  export declare interface IxLinkButton extends Components.IxLinkButton {
695
690
  }
@@ -698,7 +693,7 @@ export declare class IxMapNavigation {
698
693
  protected el: HTMLElement;
699
694
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
700
695
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMapNavigation, never>;
701
- 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>;
702
697
  }
703
698
  export declare interface IxMapNavigation extends Components.IxMapNavigation {
704
699
  /**
@@ -715,7 +710,7 @@ export declare class IxMapNavigationOverlay {
715
710
  protected el: HTMLElement;
716
711
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
717
712
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMapNavigationOverlay, never>;
718
- 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>;
719
714
  }
720
715
  export declare interface IxMapNavigationOverlay extends Components.IxMapNavigationOverlay {
721
716
  /**
@@ -728,7 +723,7 @@ export declare class IxMenu {
728
723
  protected el: HTMLElement;
729
724
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
730
725
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenu, never>;
731
- 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>;
732
727
  }
733
728
  export declare interface IxMenu extends Components.IxMenu {
734
729
  /**
@@ -743,15 +738,27 @@ export declare interface IxMenu extends Components.IxMenu {
743
738
  * Event emitted when the app switch button is clicked @since 3.0.0
744
739
  */
745
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>>;
746
749
  }
747
750
  export declare class IxMenuAbout {
748
751
  protected z: NgZone;
749
752
  protected el: HTMLElement;
750
753
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
751
754
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuAbout, never>;
752
- 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>;
753
756
  }
754
757
  export declare interface IxMenuAbout extends Components.IxMenuAbout {
758
+ /**
759
+ * Active tab changed @since 3.0.0
760
+ */
761
+ tabChange: EventEmitter<CustomEvent<string>>;
755
762
  /**
756
763
  * About and Legal closed
757
764
  */
@@ -762,7 +769,7 @@ export declare class IxMenuAboutItem {
762
769
  protected el: HTMLElement;
763
770
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
764
771
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuAboutItem, never>;
765
- 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>;
766
773
  }
767
774
  export declare interface IxMenuAboutItem extends Components.IxMenuAboutItem {
768
775
  /**
@@ -775,7 +782,7 @@ export declare class IxMenuAboutNews {
775
782
  protected el: HTMLElement;
776
783
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
777
784
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuAboutNews, never>;
778
- 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>;
779
786
  }
780
787
  export declare interface IxMenuAboutNews extends Components.IxMenuAboutNews {
781
788
  /**
@@ -792,7 +799,7 @@ export declare class IxMenuAvatar {
792
799
  protected el: HTMLElement;
793
800
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
794
801
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuAvatar, never>;
795
- 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>;
796
803
  }
797
804
  export declare interface IxMenuAvatar extends Components.IxMenuAvatar {
798
805
  /**
@@ -805,7 +812,7 @@ export declare class IxMenuAvatarItem {
805
812
  protected el: HTMLElement;
806
813
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
807
814
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuAvatarItem, never>;
808
- 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>;
809
816
  }
810
817
  export declare interface IxMenuAvatarItem extends Components.IxMenuAvatarItem {
811
818
  /**
@@ -818,7 +825,7 @@ export declare class IxMenuCategory {
818
825
  protected el: HTMLElement;
819
826
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
820
827
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuCategory, never>;
821
- 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>;
822
829
  }
823
830
  export declare interface IxMenuCategory extends Components.IxMenuCategory {
824
831
  }
@@ -827,7 +834,7 @@ export declare class IxMenuItem {
827
834
  protected el: HTMLElement;
828
835
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
829
836
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuItem, never>;
830
- 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>;
831
838
  }
832
839
  export declare interface IxMenuItem extends Components.IxMenuItem {
833
840
  }
@@ -836,9 +843,13 @@ export declare class IxMenuSettings {
836
843
  protected el: HTMLElement;
837
844
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
838
845
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuSettings, never>;
839
- 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>;
840
847
  }
841
848
  export declare interface IxMenuSettings extends Components.IxMenuSettings {
849
+ /**
850
+ * Active tab changed @since 3.0.0
851
+ */
852
+ tabChange: EventEmitter<CustomEvent<string>>;
842
853
  /**
843
854
  * Popover closed
844
855
  */
@@ -849,7 +860,7 @@ export declare class IxMenuSettingsItem {
849
860
  protected el: HTMLElement;
850
861
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
851
862
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuSettingsItem, never>;
852
- 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>;
853
864
  }
854
865
  export declare interface IxMenuSettingsItem extends Components.IxMenuSettingsItem {
855
866
  /**
@@ -862,20 +873,24 @@ export declare class IxMessageBar {
862
873
  protected el: HTMLElement;
863
874
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
864
875
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMessageBar, never>;
865
- 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>;
866
877
  }
867
878
  export declare interface IxMessageBar extends Components.IxMessageBar {
868
879
  /**
869
880
  * An event emitted when the close button is clicked
870
881
  */
871
882
  closedChange: EventEmitter<CustomEvent<any>>;
883
+ /**
884
+ * An event emitted when the close animation is completed
885
+ */
886
+ closeAnimationCompleted: EventEmitter<CustomEvent<any>>;
872
887
  }
873
888
  export declare class IxModal {
874
889
  protected z: NgZone;
875
890
  protected el: HTMLElement;
876
891
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
877
892
  static ɵfac: i0.ɵɵFactoryDeclaration<IxModal, never>;
878
- 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>;
879
894
  }
880
895
  export declare interface IxModal extends Components.IxModal {
881
896
  /**
@@ -892,7 +907,7 @@ export declare class IxModalContent {
892
907
  protected el: HTMLElement;
893
908
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
894
909
  static ɵfac: i0.ɵɵFactoryDeclaration<IxModalContent, never>;
895
- static ɵcmp: i0.ɵɵComponentDeclaration<IxModalContent, "ix-modal-content", never, {}, {}, never, ["*"]>;
910
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxModalContent, "ix-modal-content", never, {}, {}, never, ["*"], false, never>;
896
911
  }
897
912
  export declare interface IxModalContent extends Components.IxModalContent {
898
913
  }
@@ -901,7 +916,7 @@ export declare class IxModalFooter {
901
916
  protected el: HTMLElement;
902
917
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
903
918
  static ɵfac: i0.ɵɵFactoryDeclaration<IxModalFooter, never>;
904
- static ɵcmp: i0.ɵɵComponentDeclaration<IxModalFooter, "ix-modal-footer", never, {}, {}, never, ["*"]>;
919
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxModalFooter, "ix-modal-footer", never, {}, {}, never, ["*"], false, never>;
905
920
  }
906
921
  export declare interface IxModalFooter extends Components.IxModalFooter {
907
922
  }
@@ -910,7 +925,7 @@ export declare class IxModalHeader {
910
925
  protected el: HTMLElement;
911
926
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
912
927
  static ɵfac: i0.ɵɵFactoryDeclaration<IxModalHeader, never>;
913
- 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>;
914
929
  }
915
930
  export declare interface IxModalHeader extends Components.IxModalHeader {
916
931
  /**
@@ -924,7 +939,7 @@ export declare class IxNumberInput {
924
939
  protected el: HTMLElement;
925
940
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
926
941
  static ɵfac: i0.ɵɵFactoryDeclaration<IxNumberInput, never>;
927
- 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>;
928
943
  }
929
944
  export declare interface IxNumberInput extends Components.IxNumberInput {
930
945
  /**
@@ -945,7 +960,7 @@ export declare class IxPagination {
945
960
  protected el: HTMLElement;
946
961
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
947
962
  static ɵfac: i0.ɵɵFactoryDeclaration<IxPagination, never>;
948
- 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>;
949
964
  }
950
965
  export declare interface IxPagination extends Components.IxPagination {
951
966
  /**
@@ -962,7 +977,7 @@ export declare class IxPane {
962
977
  protected el: HTMLElement;
963
978
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
964
979
  static ɵfac: i0.ɵɵFactoryDeclaration<IxPane, never>;
965
- 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>;
966
981
  }
967
982
  export declare interface IxPane extends Components.IxPane {
968
983
  /**
@@ -983,7 +998,7 @@ export declare class IxPaneLayout {
983
998
  protected el: HTMLElement;
984
999
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
985
1000
  static ɵfac: i0.ɵɵFactoryDeclaration<IxPaneLayout, never>;
986
- 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>;
987
1002
  }
988
1003
  export declare interface IxPaneLayout extends Components.IxPaneLayout {
989
1004
  }
@@ -992,7 +1007,7 @@ export declare class IxPill {
992
1007
  protected el: HTMLElement;
993
1008
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
994
1009
  static ɵfac: i0.ɵɵFactoryDeclaration<IxPill, never>;
995
- 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>;
996
1011
  }
997
1012
  export declare interface IxPill extends Components.IxPill {
998
1013
  }
@@ -1001,7 +1016,7 @@ export declare class IxPushCard {
1001
1016
  protected el: HTMLElement;
1002
1017
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1003
1018
  static ɵfac: i0.ɵɵFactoryDeclaration<IxPushCard, never>;
1004
- 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>;
1005
1020
  }
1006
1021
  export declare interface IxPushCard extends Components.IxPushCard {
1007
1022
  }
@@ -1010,7 +1025,7 @@ export declare class IxRadio {
1010
1025
  protected el: HTMLElement;
1011
1026
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1012
1027
  static ɵfac: i0.ɵɵFactoryDeclaration<IxRadio, never>;
1013
- 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>;
1014
1029
  }
1015
1030
  export declare interface IxRadio extends Components.IxRadio {
1016
1031
  /**
@@ -1027,7 +1042,7 @@ export declare class IxRadioGroup {
1027
1042
  protected el: HTMLElement;
1028
1043
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1029
1044
  static ɵfac: i0.ɵɵFactoryDeclaration<IxRadioGroup, never>;
1030
- 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>;
1031
1046
  }
1032
1047
  export declare interface IxRadioGroup extends Components.IxRadioGroup {
1033
1048
  /**
@@ -1040,7 +1055,7 @@ export declare class IxRow {
1040
1055
  protected el: HTMLElement;
1041
1056
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1042
1057
  static ɵfac: i0.ɵɵFactoryDeclaration<IxRow, never>;
1043
- static ɵcmp: i0.ɵɵComponentDeclaration<IxRow, "ix-row", never, {}, {}, never, ["*"]>;
1058
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxRow, "ix-row", never, {}, {}, never, ["*"], false, never>;
1044
1059
  }
1045
1060
  export declare interface IxRow extends Components.IxRow {
1046
1061
  }
@@ -1049,17 +1064,13 @@ export declare class IxSelect {
1049
1064
  protected el: HTMLElement;
1050
1065
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1051
1066
  static ɵfac: i0.ɵɵFactoryDeclaration<IxSelect, never>;
1052
- static ɵcmp: i0.ɵɵComponentDeclaration<IxSelect, "ix-select", never, { "allowClear": "allowClear"; "disabled": "disabled"; "dropdownMaxWidth": "dropdownMaxWidth"; "dropdownWidth": "dropdownWidth"; "editable": "editable"; "helperText": "helperText"; "hideListHeader": "hideListHeader"; "i18nNoMatches": "i18nNoMatches"; "i18nPlaceholder": "i18nPlaceholder"; "i18nPlaceholderEditable": "i18nPlaceholderEditable"; "i18nSelectListHeader": "i18nSelectListHeader"; "infoText": "infoText"; "invalidText": "invalidText"; "label": "label"; "mode": "mode"; "name": "name"; "readonly": "readonly"; "required": "required"; "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>;
1053
1068
  }
1054
1069
  export declare interface IxSelect extends Components.IxSelect {
1055
1070
  /**
1056
1071
  * Value changed @since 2.0.0
1057
1072
  */
1058
1073
  valueChange: EventEmitter<CustomEvent<string | string[]>>;
1059
- /**
1060
- * Item selection changed @deprecated since 2.0.0. Use `valueChange` instead.
1061
- */
1062
- itemSelectionChange: EventEmitter<CustomEvent<string[]>>;
1063
1074
  /**
1064
1075
  * Event dispatched whenever the text input changes. @since 2.0.0
1065
1076
  */
@@ -1078,7 +1089,7 @@ export declare class IxSelectItem {
1078
1089
  protected el: HTMLElement;
1079
1090
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1080
1091
  static ɵfac: i0.ɵɵFactoryDeclaration<IxSelectItem, never>;
1081
- 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>;
1082
1093
  }
1083
1094
  export declare interface IxSelectItem extends Components.IxSelectItem {
1084
1095
  /**
@@ -1091,7 +1102,7 @@ export declare class IxSlider {
1091
1102
  protected el: HTMLElement;
1092
1103
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1093
1104
  static ɵfac: i0.ɵɵFactoryDeclaration<IxSlider, never>;
1094
- 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>;
1095
1106
  }
1096
1107
  export declare interface IxSlider extends Components.IxSlider {
1097
1108
  valueChange: EventEmitter<CustomEvent<number>>;
@@ -1101,7 +1112,7 @@ export declare class IxSpinner {
1101
1112
  protected el: HTMLElement;
1102
1113
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1103
1114
  static ɵfac: i0.ɵɵFactoryDeclaration<IxSpinner, never>;
1104
- 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>;
1105
1116
  }
1106
1117
  export declare interface IxSpinner extends Components.IxSpinner {
1107
1118
  }
@@ -1110,7 +1121,7 @@ export declare class IxSplitButton {
1110
1121
  protected el: HTMLElement;
1111
1122
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1112
1123
  static ɵfac: i0.ɵɵFactoryDeclaration<IxSplitButton, never>;
1113
- 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>;
1114
1125
  }
1115
1126
  export declare interface IxSplitButton extends Components.IxSplitButton {
1116
1127
  /**
@@ -1118,25 +1129,12 @@ export declare interface IxSplitButton extends Components.IxSplitButton {
1118
1129
  */
1119
1130
  buttonClick: EventEmitter<CustomEvent<MouseEvent>>;
1120
1131
  }
1121
- export declare class IxSplitButtonItem {
1122
- protected z: NgZone;
1123
- protected el: HTMLElement;
1124
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1125
- static ɵfac: i0.ɵɵFactoryDeclaration<IxSplitButtonItem, never>;
1126
- static ɵcmp: i0.ɵɵComponentDeclaration<IxSplitButtonItem, "ix-split-button-item", never, { "icon": "icon"; "label": "label"; }, {}, never, ["*"]>;
1127
- }
1128
- export declare interface IxSplitButtonItem extends Components.IxSplitButtonItem {
1129
- /**
1130
- * Dropdown item clicked
1131
- */
1132
- itemClick: EventEmitter<CustomEvent<MouseEvent>>;
1133
- }
1134
1132
  export declare class IxTabItem {
1135
1133
  protected z: NgZone;
1136
1134
  protected el: HTMLElement;
1137
1135
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1138
1136
  static ɵfac: i0.ɵɵFactoryDeclaration<IxTabItem, never>;
1139
- 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>;
1140
1138
  }
1141
1139
  export declare interface IxTabItem extends Components.IxTabItem {
1142
1140
  /**
@@ -1149,7 +1147,7 @@ export declare class IxTabs {
1149
1147
  protected el: HTMLElement;
1150
1148
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1151
1149
  static ɵfac: i0.ɵɵFactoryDeclaration<IxTabs, never>;
1152
- 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>;
1153
1151
  }
1154
1152
  export declare interface IxTabs extends Components.IxTabs {
1155
1153
  /**
@@ -1162,7 +1160,7 @@ export declare class IxTextarea {
1162
1160
  protected el: HTMLElement;
1163
1161
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1164
1162
  static ɵfac: i0.ɵɵFactoryDeclaration<IxTextarea, never>;
1165
- 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>;
1166
1164
  }
1167
1165
  export declare interface IxTextarea extends Components.IxTextarea {
1168
1166
  /**
@@ -1183,7 +1181,7 @@ export declare class IxTile {
1183
1181
  protected el: HTMLElement;
1184
1182
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1185
1183
  static ɵfac: i0.ɵɵFactoryDeclaration<IxTile, never>;
1186
- 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>;
1187
1185
  }
1188
1186
  export declare interface IxTile extends Components.IxTile {
1189
1187
  }
@@ -1192,17 +1190,13 @@ export declare class IxTimePicker {
1192
1190
  protected el: HTMLElement;
1193
1191
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1194
1192
  static ɵfac: i0.ɵɵFactoryDeclaration<IxTimePicker, never>;
1195
- 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>;
1196
1194
  }
1197
1195
  export declare interface IxTimePicker extends Components.IxTimePicker {
1198
1196
  /**
1199
1197
  * Time event
1200
1198
  */
1201
1199
  timeSelect: EventEmitter<CustomEvent<string>>;
1202
- /**
1203
- * Time event @deprecated Will be removed in 3.0.0. Use `time-select` event.
1204
- */
1205
- done: EventEmitter<CustomEvent<string>>;
1206
1200
  /**
1207
1201
  * Time change event
1208
1202
  */
@@ -1213,7 +1207,7 @@ export declare class IxToast {
1213
1207
  protected el: HTMLElement;
1214
1208
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1215
1209
  static ɵfac: i0.ɵɵFactoryDeclaration<IxToast, never>;
1216
- 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>;
1217
1211
  }
1218
1212
  export declare interface IxToast extends Components.IxToast {
1219
1213
  /**
@@ -1226,7 +1220,7 @@ export declare class IxToastContainer {
1226
1220
  protected el: HTMLElement;
1227
1221
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1228
1222
  static ɵfac: i0.ɵɵFactoryDeclaration<IxToastContainer, never>;
1229
- 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>;
1230
1224
  }
1231
1225
  export declare interface IxToastContainer extends Components.IxToastContainer {
1232
1226
  }
@@ -1235,7 +1229,7 @@ export declare class IxToggle {
1235
1229
  protected el: HTMLElement;
1236
1230
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1237
1231
  static ɵfac: i0.ɵɵFactoryDeclaration<IxToggle, never>;
1238
- 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>;
1239
1233
  }
1240
1234
  export declare interface IxToggle extends Components.IxToggle {
1241
1235
  /**
@@ -1248,7 +1242,7 @@ export declare class IxToggleButton {
1248
1242
  protected el: HTMLElement;
1249
1243
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1250
1244
  static ɵfac: i0.ɵɵFactoryDeclaration<IxToggleButton, never>;
1251
- 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>;
1252
1246
  }
1253
1247
  export declare interface IxToggleButton extends Components.IxToggleButton {
1254
1248
  /**
@@ -1261,7 +1255,7 @@ export declare class IxTooltip {
1261
1255
  protected el: HTMLElement;
1262
1256
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1263
1257
  static ɵfac: i0.ɵɵFactoryDeclaration<IxTooltip, never>;
1264
- 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>;
1265
1259
  }
1266
1260
  export declare interface IxTooltip extends Components.IxTooltip {
1267
1261
  }
@@ -1270,7 +1264,7 @@ export declare class IxTreeItem {
1270
1264
  protected el: HTMLElement;
1271
1265
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1272
1266
  static ɵfac: i0.ɵɵFactoryDeclaration<IxTreeItem, never>;
1273
- 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>;
1274
1268
  }
1275
1269
  export declare interface IxTreeItem extends Components.IxTreeItem {
1276
1270
  /**
@@ -1287,7 +1281,7 @@ export declare class IxTypography {
1287
1281
  protected el: HTMLElement;
1288
1282
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1289
1283
  static ɵfac: i0.ɵɵFactoryDeclaration<IxTypography, never>;
1290
- 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>;
1291
1285
  }
1292
1286
  export declare interface IxTypography extends Components.IxTypography {
1293
1287
  }
@@ -1296,7 +1290,7 @@ export declare class IxUpload {
1296
1290
  protected el: HTMLElement;
1297
1291
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1298
1292
  static ɵfac: i0.ɵɵFactoryDeclaration<IxUpload, never>;
1299
- 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>;
1300
1294
  }
1301
1295
  export declare interface IxUpload extends Components.IxUpload {
1302
1296
  /**
@@ -1309,7 +1303,7 @@ export declare class IxValidationTooltip {
1309
1303
  protected el: HTMLElement;
1310
1304
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1311
1305
  static ɵfac: i0.ɵɵFactoryDeclaration<IxValidationTooltip, never>;
1312
- 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>;
1313
1307
  }
1314
1308
  export declare interface IxValidationTooltip extends Components.IxValidationTooltip {
1315
1309
  }
@@ -1318,7 +1312,7 @@ export declare class IxWorkflowStep {
1318
1312
  protected el: HTMLElement;
1319
1313
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1320
1314
  static ɵfac: i0.ɵɵFactoryDeclaration<IxWorkflowStep, never>;
1321
- 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>;
1322
1316
  }
1323
1317
  export declare interface IxWorkflowStep extends Components.IxWorkflowStep {
1324
1318
  }
@@ -1327,7 +1321,7 @@ export declare class IxWorkflowSteps {
1327
1321
  protected el: HTMLElement;
1328
1322
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1329
1323
  static ɵfac: i0.ɵɵFactoryDeclaration<IxWorkflowSteps, never>;
1330
- 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>;
1331
1325
  }
1332
1326
  export declare interface IxWorkflowSteps extends Components.IxWorkflowSteps {
1333
1327
  /**