@siemens/ix-angular 0.0.0-pr-1724-20250305102750 → 0.0.0-pr-1642-20250313082857

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 +1 -1
  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 +102 -133
  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 +1330 -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 -2632
  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 -152
  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 -3508
  143. package/fesm2015/siemens-ix-angular.mjs.map +0 -1
  144. package/fesm2020/siemens-ix-angular.mjs +0 -3532
  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"; "tooltipText": "tooltipText"; "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; }; "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,7 +306,7 @@ 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; }; "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
  /**
@@ -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; }; "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,25 +340,15 @@ 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; }; "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
- /**
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
352
  /**
363
353
  * Time change @since 1.1.0
364
354
  */
@@ -377,7 +367,7 @@ export declare class IxDivider {
377
367
  protected el: HTMLElement;
378
368
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
379
369
  static ɵfac: i0.ɵɵFactoryDeclaration<IxDivider, never>;
380
- static ɵcmp: i0.ɵɵComponentDeclaration<IxDivider, "ix-divider", never, {}, {}, never, ["*"]>;
370
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxDivider, "ix-divider", never, {}, {}, never, ["*"], false, never>;
381
371
  }
382
372
  export declare interface IxDivider extends Components.IxDivider {
383
373
  }
@@ -386,7 +376,7 @@ export declare class IxDrawer {
386
376
  protected el: HTMLElement;
387
377
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
388
378
  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, ["*"]>;
379
+ 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
380
  }
391
381
  export declare interface IxDrawer extends Components.IxDrawer {
392
382
  /**
@@ -403,7 +393,7 @@ export declare class IxDropdown {
403
393
  protected el: HTMLElement;
404
394
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
405
395
  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, ["*"]>;
396
+ 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
397
  }
408
398
  export declare interface IxDropdown extends Components.IxDropdown {
409
399
  /**
@@ -416,7 +406,7 @@ export declare class IxDropdownButton {
416
406
  protected el: HTMLElement;
417
407
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
418
408
  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, ["*"]>;
409
+ 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
410
  }
421
411
  export declare interface IxDropdownButton extends Components.IxDropdownButton {
422
412
  }
@@ -425,7 +415,7 @@ export declare class IxDropdownHeader {
425
415
  protected el: HTMLElement;
426
416
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
427
417
  static ɵfac: i0.ɵɵFactoryDeclaration<IxDropdownHeader, never>;
428
- static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdownHeader, "ix-dropdown-header", never, { "label": "label"; }, {}, never, ["*"]>;
418
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdownHeader, "ix-dropdown-header", never, { "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
429
419
  }
430
420
  export declare interface IxDropdownHeader extends Components.IxDropdownHeader {
431
421
  }
@@ -434,7 +424,7 @@ export declare class IxDropdownItem {
434
424
  protected el: HTMLElement;
435
425
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
436
426
  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, ["*"]>;
427
+ 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
428
  }
439
429
  export declare interface IxDropdownItem extends Components.IxDropdownItem {
440
430
  }
@@ -443,7 +433,7 @@ export declare class IxDropdownQuickActions {
443
433
  protected el: HTMLElement;
444
434
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
445
435
  static ɵfac: i0.ɵɵFactoryDeclaration<IxDropdownQuickActions, never>;
446
- static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdownQuickActions, "ix-dropdown-quick-actions", never, {}, {}, never, ["*"]>;
436
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxDropdownQuickActions, "ix-dropdown-quick-actions", never, {}, {}, never, ["*"], false, never>;
447
437
  }
448
438
  export declare interface IxDropdownQuickActions extends Components.IxDropdownQuickActions {
449
439
  }
@@ -452,7 +442,7 @@ export declare class IxEmptyState {
452
442
  protected el: HTMLElement;
453
443
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
454
444
  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, ["*"]>;
445
+ 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
446
  }
457
447
  export declare interface IxEmptyState extends Components.IxEmptyState {
458
448
  /**
@@ -465,7 +455,7 @@ export declare class IxEventList {
465
455
  protected el: HTMLElement;
466
456
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
467
457
  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, ["*"]>;
458
+ 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
459
  }
470
460
  export declare interface IxEventList extends Components.IxEventList {
471
461
  }
@@ -474,7 +464,7 @@ export declare class IxEventListItem {
474
464
  protected el: HTMLElement;
475
465
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
476
466
  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, ["*"]>;
467
+ 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
468
  }
479
469
  export declare interface IxEventListItem extends Components.IxEventListItem {
480
470
  /**
@@ -487,7 +477,7 @@ export declare class IxExpandingSearch {
487
477
  protected el: HTMLElement;
488
478
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
489
479
  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, ["*"]>;
480
+ 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
481
  }
492
482
  export declare interface IxExpandingSearch extends Components.IxExpandingSearch {
493
483
  /**
@@ -500,7 +490,7 @@ export declare class IxFieldLabel {
500
490
  protected el: HTMLElement;
501
491
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
502
492
  static ɵfac: i0.ɵɵFactoryDeclaration<IxFieldLabel, never>;
503
- static ɵcmp: i0.ɵɵComponentDeclaration<IxFieldLabel, "ix-field-label", never, { "htmlFor": "htmlFor"; "required": "required"; }, {}, never, ["*"]>;
493
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxFieldLabel, "ix-field-label", never, { "htmlFor": { "alias": "htmlFor"; "required": false; }; "required": { "alias": "required"; "required": false; }; }, {}, never, ["*"], false, never>;
504
494
  }
505
495
  export declare interface IxFieldLabel extends Components.IxFieldLabel {
506
496
  }
@@ -509,7 +499,7 @@ export declare class IxFilterChip {
509
499
  protected el: HTMLElement;
510
500
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
511
501
  static ɵfac: i0.ɵɵFactoryDeclaration<IxFilterChip, never>;
512
- static ɵcmp: i0.ɵɵComponentDeclaration<IxFilterChip, "ix-filter-chip", never, { "disabled": "disabled"; "readonly": "readonly"; }, {}, never, ["*"]>;
502
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxFilterChip, "ix-filter-chip", never, { "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; }, {}, never, ["*"], false, never>;
513
503
  }
514
504
  export declare interface IxFilterChip extends Components.IxFilterChip {
515
505
  /**
@@ -522,7 +512,7 @@ export declare class IxFlipTile {
522
512
  protected el: HTMLElement;
523
513
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
524
514
  static ɵfac: i0.ɵɵFactoryDeclaration<IxFlipTile, never>;
525
- static ɵcmp: i0.ɵɵComponentDeclaration<IxFlipTile, "ix-flip-tile", never, { "height": "height"; "index": "index"; "state": "state"; "width": "width"; }, {}, never, ["*"]>;
515
+ 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
516
  }
527
517
  export declare interface IxFlipTile extends Components.IxFlipTile {
528
518
  /**
@@ -535,7 +525,7 @@ export declare class IxFlipTileContent {
535
525
  protected el: HTMLElement;
536
526
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
537
527
  static ɵfac: i0.ɵɵFactoryDeclaration<IxFlipTileContent, never>;
538
- static ɵcmp: i0.ɵɵComponentDeclaration<IxFlipTileContent, "ix-flip-tile-content", never, {}, {}, never, ["*"]>;
528
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxFlipTileContent, "ix-flip-tile-content", never, {}, {}, never, ["*"], false, never>;
539
529
  }
540
530
  export declare interface IxFlipTileContent extends Components.IxFlipTileContent {
541
531
  }
@@ -544,7 +534,7 @@ export declare class IxGroup {
544
534
  protected el: HTMLElement;
545
535
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
546
536
  static ɵfac: i0.ɵɵFactoryDeclaration<IxGroup, never>;
547
- static ɵcmp: i0.ɵɵComponentDeclaration<IxGroup, "ix-group", never, { "collapsed": "collapsed"; "expandOnHeaderClick": "expandOnHeaderClick"; "header": "header"; "index": "index"; "selected": "selected"; "subHeader": "subHeader"; "suppressHeaderSelection": "suppressHeaderSelection"; }, {}, never, ["*"]>;
537
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxGroup, "ix-group", never, { "collapsed": { "alias": "collapsed"; "required": false; }; "expandOnHeaderClick": { "alias": "expandOnHeaderClick"; "required": false; }; "header": { "alias": "header"; "required": false; }; "index": { "alias": "index"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "subHeader": { "alias": "subHeader"; "required": false; }; "suppressHeaderSelection": { "alias": "suppressHeaderSelection"; "required": false; }; }, {}, never, ["*"], false, never>;
548
538
  }
549
539
  export declare interface IxGroup extends Components.IxGroup {
550
540
  /**
@@ -565,7 +555,7 @@ export declare class IxGroupContextMenu {
565
555
  protected el: HTMLElement;
566
556
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
567
557
  static ɵfac: i0.ɵɵFactoryDeclaration<IxGroupContextMenu, never>;
568
- static ɵcmp: i0.ɵɵComponentDeclaration<IxGroupContextMenu, "ix-group-context-menu", never, {}, {}, never, ["*"]>;
558
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxGroupContextMenu, "ix-group-context-menu", never, {}, {}, never, ["*"], false, never>;
569
559
  }
570
560
  export declare interface IxGroupContextMenu extends Components.IxGroupContextMenu {
571
561
  }
@@ -574,7 +564,7 @@ export declare class IxGroupItem {
574
564
  protected el: HTMLElement;
575
565
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
576
566
  static ɵfac: i0.ɵɵFactoryDeclaration<IxGroupItem, never>;
577
- static ɵcmp: i0.ɵɵComponentDeclaration<IxGroupItem, "ix-group-item", never, { "focusable": "focusable"; "icon": "icon"; "index": "index"; "secondaryText": "secondaryText"; "selected": "selected"; "suppressSelection": "suppressSelection"; "text": "text"; }, {}, never, ["*"]>;
567
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxGroupItem, "ix-group-item", never, { "focusable": { "alias": "focusable"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "index": { "alias": "index"; "required": false; }; "secondaryText": { "alias": "secondaryText"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "suppressSelection": { "alias": "suppressSelection"; "required": false; }; "text": { "alias": "text"; "required": false; }; }, {}, never, ["*"], false, never>;
578
568
  }
579
569
  export declare interface IxGroupItem extends Components.IxGroupItem {
580
570
  /**
@@ -587,7 +577,7 @@ export declare class IxHelperText {
587
577
  protected el: HTMLElement;
588
578
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
589
579
  static ɵfac: i0.ɵɵFactoryDeclaration<IxHelperText, never>;
590
- static ɵcmp: i0.ɵɵComponentDeclaration<IxHelperText, "ix-helper-text", never, { "helperText": "helperText"; "htmlFor": "htmlFor"; "infoText": "infoText"; "invalidText": "invalidText"; "validText": "validText"; "warningText": "warningText"; }, {}, never, ["*"]>;
580
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxHelperText, "ix-helper-text", never, { "helperText": { "alias": "helperText"; "required": false; }; "htmlFor": { "alias": "htmlFor"; "required": false; }; "infoText": { "alias": "infoText"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "validText": { "alias": "validText"; "required": false; }; "warningText": { "alias": "warningText"; "required": false; }; }, {}, never, ["*"], false, never>;
591
581
  }
592
582
  export declare interface IxHelperText extends Components.IxHelperText {
593
583
  }
@@ -596,7 +586,7 @@ export declare class IxIconButton {
596
586
  protected el: HTMLElement;
597
587
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
598
588
  static ɵfac: i0.ɵɵFactoryDeclaration<IxIconButton, never>;
599
- 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, ["*"]>;
589
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxIconButton, "ix-icon-button", never, { "a11yLabel": { "alias": "a11yLabel"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "ghost": { "alias": "ghost"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "outline": { "alias": "outline"; "required": false; }; "oval": { "alias": "oval"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
600
590
  }
601
591
  export declare interface IxIconButton extends Components.IxIconButton {
602
592
  }
@@ -605,7 +595,7 @@ export declare class IxIconToggleButton {
605
595
  protected el: HTMLElement;
606
596
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
607
597
  static ɵfac: i0.ɵɵFactoryDeclaration<IxIconToggleButton, never>;
608
- static ɵcmp: i0.ɵɵComponentDeclaration<IxIconToggleButton, "ix-icon-toggle-button", never, { "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "loading": "loading"; "outline": "outline"; "pressed": "pressed"; "size": "size"; "variant": "variant"; }, {}, never, ["*"]>;
598
+ 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>;
609
599
  }
610
600
  export declare interface IxIconToggleButton extends Components.IxIconToggleButton {
611
601
  /**
@@ -618,7 +608,7 @@ export declare class IxInput {
618
608
  protected el: HTMLElement;
619
609
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
620
610
  static ɵfac: i0.ɵɵFactoryDeclaration<IxInput, never>;
621
- static ɵcmp: i0.ɵɵComponentDeclaration<IxInput, "ix-input", never, { "allowedCharactersPattern": "allowedCharactersPattern"; "disabled": "disabled"; "helperText": "helperText"; "infoText": "infoText"; "invalidText": "invalidText"; "label": "label"; "maxLength": "maxLength"; "minLength": "minLength"; "name": "name"; "pattern": "pattern"; "placeholder": "placeholder"; "readonly": "readonly"; "required": "required"; "showTextAsTooltip": "showTextAsTooltip"; "type": "type"; "validText": "validText"; "value": "value"; "warningText": "warningText"; }, {}, never, ["*"]>;
611
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxInput, "ix-input", never, { "allowedCharactersPattern": { "alias": "allowedCharactersPattern"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "infoText": { "alias": "infoText"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "showTextAsTooltip": { "alias": "showTextAsTooltip"; "required": false; }; "type": { "alias": "type"; "required": false; }; "validText": { "alias": "validText"; "required": false; }; "value": { "alias": "value"; "required": false; }; "warningText": { "alias": "warningText"; "required": false; }; }, {}, never, ["*"], false, never>;
622
612
  }
623
613
  export declare interface IxInput extends Components.IxInput {
624
614
  /**
@@ -639,7 +629,7 @@ export declare class IxInputGroup {
639
629
  protected el: HTMLElement;
640
630
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
641
631
  static ɵfac: i0.ɵɵFactoryDeclaration<IxInputGroup, never>;
642
- static ɵcmp: i0.ɵɵComponentDeclaration<IxInputGroup, "ix-input-group", never, {}, {}, never, ["*"]>;
632
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxInputGroup, "ix-input-group", never, {}, {}, never, ["*"], false, never>;
643
633
  }
644
634
  export declare interface IxInputGroup extends Components.IxInputGroup {
645
635
  }
@@ -648,7 +638,7 @@ export declare class IxKeyValue {
648
638
  protected el: HTMLElement;
649
639
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
650
640
  static ɵfac: i0.ɵɵFactoryDeclaration<IxKeyValue, never>;
651
- static ɵcmp: i0.ɵɵComponentDeclaration<IxKeyValue, "ix-key-value", never, { "icon": "icon"; "label": "label"; "labelPosition": "labelPosition"; "value": "value"; }, {}, never, ["*"]>;
641
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxKeyValue, "ix-key-value", never, { "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelPosition": { "alias": "labelPosition"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
652
642
  }
653
643
  export declare interface IxKeyValue extends Components.IxKeyValue {
654
644
  }
@@ -657,7 +647,7 @@ export declare class IxKeyValueList {
657
647
  protected el: HTMLElement;
658
648
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
659
649
  static ɵfac: i0.ɵɵFactoryDeclaration<IxKeyValueList, never>;
660
- static ɵcmp: i0.ɵɵComponentDeclaration<IxKeyValueList, "ix-key-value-list", never, { "striped": "striped"; }, {}, never, ["*"]>;
650
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxKeyValueList, "ix-key-value-list", never, { "striped": { "alias": "striped"; "required": false; }; }, {}, never, ["*"], false, never>;
661
651
  }
662
652
  export declare interface IxKeyValueList extends Components.IxKeyValueList {
663
653
  }
@@ -666,7 +656,7 @@ export declare class IxKpi {
666
656
  protected el: HTMLElement;
667
657
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
668
658
  static ɵfac: i0.ɵɵFactoryDeclaration<IxKpi, never>;
669
- static ɵcmp: i0.ɵɵComponentDeclaration<IxKpi, "ix-kpi", never, { "label": "label"; "orientation": "orientation"; "state": "state"; "unit": "unit"; "value": "value"; }, {}, never, ["*"]>;
659
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxKpi, "ix-kpi", never, { "label": { "alias": "label"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "state": { "alias": "state"; "required": false; }; "unit": { "alias": "unit"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
670
660
  }
671
661
  export declare interface IxKpi extends Components.IxKpi {
672
662
  }
@@ -675,7 +665,7 @@ export declare class IxLayoutAuto {
675
665
  protected el: HTMLElement;
676
666
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
677
667
  static ɵfac: i0.ɵɵFactoryDeclaration<IxLayoutAuto, never>;
678
- static ɵcmp: i0.ɵɵComponentDeclaration<IxLayoutAuto, "ix-layout-auto", never, { "layout": "layout"; }, {}, never, ["*"]>;
668
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxLayoutAuto, "ix-layout-auto", never, { "layout": { "alias": "layout"; "required": false; }; }, {}, never, ["*"], false, never>;
679
669
  }
680
670
  export declare interface IxLayoutAuto extends Components.IxLayoutAuto {
681
671
  }
@@ -684,7 +674,7 @@ export declare class IxLayoutGrid {
684
674
  protected el: HTMLElement;
685
675
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
686
676
  static ɵfac: i0.ɵɵFactoryDeclaration<IxLayoutGrid, never>;
687
- static ɵcmp: i0.ɵɵComponentDeclaration<IxLayoutGrid, "ix-layout-grid", never, { "columns": "columns"; "gap": "gap"; "noMargin": "noMargin"; }, {}, never, ["*"]>;
677
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxLayoutGrid, "ix-layout-grid", never, { "columns": { "alias": "columns"; "required": false; }; "gap": { "alias": "gap"; "required": false; }; "noMargin": { "alias": "noMargin"; "required": false; }; }, {}, never, ["*"], false, never>;
688
678
  }
689
679
  export declare interface IxLayoutGrid extends Components.IxLayoutGrid {
690
680
  }
@@ -693,7 +683,7 @@ export declare class IxLinkButton {
693
683
  protected el: HTMLElement;
694
684
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
695
685
  static ɵfac: i0.ɵɵFactoryDeclaration<IxLinkButton, never>;
696
- static ɵcmp: i0.ɵɵComponentDeclaration<IxLinkButton, "ix-link-button", never, { "disabled": "disabled"; "target": "target"; "url": "url"; }, {}, never, ["*"]>;
686
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxLinkButton, "ix-link-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "target": { "alias": "target"; "required": false; }; "url": { "alias": "url"; "required": false; }; }, {}, never, ["*"], false, never>;
697
687
  }
698
688
  export declare interface IxLinkButton extends Components.IxLinkButton {
699
689
  }
@@ -702,7 +692,7 @@ export declare class IxMapNavigation {
702
692
  protected el: HTMLElement;
703
693
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
704
694
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMapNavigation, never>;
705
- static ɵcmp: i0.ɵɵComponentDeclaration<IxMapNavigation, "ix-map-navigation", never, { "applicationName": "applicationName"; "hideContextMenu": "hideContextMenu"; "navigationTitle": "navigationTitle"; }, {}, never, ["*"]>;
695
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMapNavigation, "ix-map-navigation", never, { "applicationName": { "alias": "applicationName"; "required": false; }; "hideContextMenu": { "alias": "hideContextMenu"; "required": false; }; "navigationTitle": { "alias": "navigationTitle"; "required": false; }; }, {}, never, ["*"], false, never>;
706
696
  }
707
697
  export declare interface IxMapNavigation extends Components.IxMapNavigation {
708
698
  /**
@@ -719,7 +709,7 @@ export declare class IxMapNavigationOverlay {
719
709
  protected el: HTMLElement;
720
710
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
721
711
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMapNavigationOverlay, never>;
722
- static ɵcmp: i0.ɵɵComponentDeclaration<IxMapNavigationOverlay, "ix-map-navigation-overlay", never, { "color": "color"; "icon": "icon"; "iconColor": "iconColor"; "name": "name"; }, {}, never, ["*"]>;
712
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMapNavigationOverlay, "ix-map-navigation-overlay", never, { "color": { "alias": "color"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, {}, never, ["*"], false, never>;
723
713
  }
724
714
  export declare interface IxMapNavigationOverlay extends Components.IxMapNavigationOverlay {
725
715
  /**
@@ -732,7 +722,7 @@ export declare class IxMenu {
732
722
  protected el: HTMLElement;
733
723
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
734
724
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenu, never>;
735
- 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, ["*"]>;
725
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMenu, "ix-menu", never, { "applicationDescription": { "alias": "applicationDescription"; "required": false; }; "applicationName": { "alias": "applicationName"; "required": false; }; "enableSettings": { "alias": "enableSettings"; "required": false; }; "enableToggleTheme": { "alias": "enableToggleTheme"; "required": false; }; "expand": { "alias": "expand"; "required": false; }; "i18nCollapse": { "alias": "i18nCollapse"; "required": false; }; "i18nExpand": { "alias": "i18nExpand"; "required": false; }; "i18nExpandSidebar": { "alias": "i18nExpandSidebar"; "required": false; }; "i18nLegal": { "alias": "i18nLegal"; "required": false; }; "i18nSettings": { "alias": "i18nSettings"; "required": false; }; "i18nToggleTheme": { "alias": "i18nToggleTheme"; "required": false; }; "pinned": { "alias": "pinned"; "required": false; }; "showAbout": { "alias": "showAbout"; "required": false; }; "showSettings": { "alias": "showSettings"; "required": false; }; "startExpanded": { "alias": "startExpanded"; "required": false; }; }, {}, never, ["*"], false, never>;
736
726
  }
737
727
  export declare interface IxMenu extends Components.IxMenu {
738
728
  /**
@@ -761,7 +751,7 @@ export declare class IxMenuAbout {
761
751
  protected el: HTMLElement;
762
752
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
763
753
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuAbout, never>;
764
- static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAbout, "ix-menu-about", never, { "activeTabLabel": "activeTabLabel"; "label": "label"; "show": "show"; }, {}, never, ["*"]>;
754
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAbout, "ix-menu-about", never, { "activeTabLabel": { "alias": "activeTabLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
765
755
  }
766
756
  export declare interface IxMenuAbout extends Components.IxMenuAbout {
767
757
  /**
@@ -778,7 +768,7 @@ export declare class IxMenuAboutItem {
778
768
  protected el: HTMLElement;
779
769
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
780
770
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuAboutItem, never>;
781
- static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAboutItem, "ix-menu-about-item", never, { "label": "label"; }, {}, never, ["*"]>;
771
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAboutItem, "ix-menu-about-item", never, { "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
782
772
  }
783
773
  export declare interface IxMenuAboutItem extends Components.IxMenuAboutItem {
784
774
  /**
@@ -791,7 +781,7 @@ export declare class IxMenuAboutNews {
791
781
  protected el: HTMLElement;
792
782
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
793
783
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuAboutNews, never>;
794
- static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAboutNews, "ix-menu-about-news", never, { "aboutItemLabel": "aboutItemLabel"; "expanded": "expanded"; "i18nShowMore": "i18nShowMore"; "label": "label"; "offsetBottom": "offsetBottom"; "show": "show"; }, {}, never, ["*"]>;
784
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAboutNews, "ix-menu-about-news", never, { "aboutItemLabel": { "alias": "aboutItemLabel"; "required": false; }; "i18nShowMore": { "alias": "i18nShowMore"; "required": false; }; "label": { "alias": "label"; "required": false; }; "offsetBottom": { "alias": "offsetBottom"; "required": false; }; "show": { "alias": "show"; "required": false; }; }, {}, never, ["*"], false, never>;
795
785
  }
796
786
  export declare interface IxMenuAboutNews extends Components.IxMenuAboutNews {
797
787
  /**
@@ -808,7 +798,7 @@ export declare class IxMenuAvatar {
808
798
  protected el: HTMLElement;
809
799
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
810
800
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuAvatar, never>;
811
- static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAvatar, "ix-menu-avatar", never, { "bottom": "bottom"; "i18nLogout": "i18nLogout"; "image": "image"; "initials": "initials"; "showLogoutButton": "showLogoutButton"; "top": "top"; }, {}, never, ["*"]>;
801
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAvatar, "ix-menu-avatar", never, { "bottom": { "alias": "bottom"; "required": false; }; "i18nLogout": { "alias": "i18nLogout"; "required": false; }; "image": { "alias": "image"; "required": false; }; "initials": { "alias": "initials"; "required": false; }; "showLogoutButton": { "alias": "showLogoutButton"; "required": false; }; "top": { "alias": "top"; "required": false; }; }, {}, never, ["*"], false, never>;
812
802
  }
813
803
  export declare interface IxMenuAvatar extends Components.IxMenuAvatar {
814
804
  /**
@@ -821,7 +811,7 @@ export declare class IxMenuAvatarItem {
821
811
  protected el: HTMLElement;
822
812
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
823
813
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuAvatarItem, never>;
824
- static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAvatarItem, "ix-menu-avatar-item", never, { "icon": "icon"; "label": "label"; }, {}, never, ["*"]>;
814
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuAvatarItem, "ix-menu-avatar-item", never, { "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
825
815
  }
826
816
  export declare interface IxMenuAvatarItem extends Components.IxMenuAvatarItem {
827
817
  /**
@@ -834,7 +824,7 @@ export declare class IxMenuCategory {
834
824
  protected el: HTMLElement;
835
825
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
836
826
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuCategory, never>;
837
- static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuCategory, "ix-menu-category", never, { "icon": "icon"; "label": "label"; "notifications": "notifications"; }, {}, never, ["*"]>;
827
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuCategory, "ix-menu-category", never, { "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "notifications": { "alias": "notifications"; "required": false; }; }, {}, never, ["*"], false, never>;
838
828
  }
839
829
  export declare interface IxMenuCategory extends Components.IxMenuCategory {
840
830
  }
@@ -843,7 +833,7 @@ export declare class IxMenuItem {
843
833
  protected el: HTMLElement;
844
834
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
845
835
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuItem, never>;
846
- static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuItem, "ix-menu-item", never, { "active": "active"; "bottom": "bottom"; "disabled": "disabled"; "home": "home"; "icon": "icon"; "label": "label"; "notifications": "notifications"; "tabIcon": "tabIcon"; }, {}, never, ["*"]>;
836
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuItem, "ix-menu-item", never, { "active": { "alias": "active"; "required": false; }; "bottom": { "alias": "bottom"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "home": { "alias": "home"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "notifications": { "alias": "notifications"; "required": false; }; }, {}, never, ["*"], false, never>;
847
837
  }
848
838
  export declare interface IxMenuItem extends Components.IxMenuItem {
849
839
  }
@@ -852,7 +842,7 @@ export declare class IxMenuSettings {
852
842
  protected el: HTMLElement;
853
843
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
854
844
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuSettings, never>;
855
- static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuSettings, "ix-menu-settings", never, { "activeTabLabel": "activeTabLabel"; "label": "label"; "show": "show"; }, {}, never, ["*"]>;
845
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuSettings, "ix-menu-settings", never, { "activeTabLabel": { "alias": "activeTabLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
856
846
  }
857
847
  export declare interface IxMenuSettings extends Components.IxMenuSettings {
858
848
  /**
@@ -869,7 +859,7 @@ export declare class IxMenuSettingsItem {
869
859
  protected el: HTMLElement;
870
860
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
871
861
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMenuSettingsItem, never>;
872
- static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuSettingsItem, "ix-menu-settings-item", never, { "label": "label"; }, {}, never, ["*"]>;
862
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMenuSettingsItem, "ix-menu-settings-item", never, { "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], false, never>;
873
863
  }
874
864
  export declare interface IxMenuSettingsItem extends Components.IxMenuSettingsItem {
875
865
  /**
@@ -882,7 +872,7 @@ export declare class IxMessageBar {
882
872
  protected el: HTMLElement;
883
873
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
884
874
  static ɵfac: i0.ɵɵFactoryDeclaration<IxMessageBar, never>;
885
- static ɵcmp: i0.ɵɵComponentDeclaration<IxMessageBar, "ix-message-bar", never, { "dismissible": "dismissible"; "type": "type"; }, {}, never, ["*"]>;
875
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxMessageBar, "ix-message-bar", never, { "dismissible": { "alias": "dismissible"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
886
876
  }
887
877
  export declare interface IxMessageBar extends Components.IxMessageBar {
888
878
  /**
@@ -899,7 +889,7 @@ export declare class IxModal {
899
889
  protected el: HTMLElement;
900
890
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
901
891
  static ɵfac: i0.ɵɵFactoryDeclaration<IxModal, never>;
902
- static ɵcmp: i0.ɵɵComponentDeclaration<IxModal, "ix-modal", never, { "animation": "animation"; "backdrop": "backdrop"; "beforeDismiss": "beforeDismiss"; "centered": "centered"; "closeOnBackdropClick": "closeOnBackdropClick"; "closeOnEscape": "closeOnEscape"; "keyboard": "keyboard"; "size": "size"; }, {}, never, ["*"]>;
892
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxModal, "ix-modal", never, { "animation": { "alias": "animation"; "required": false; }; "backdrop": { "alias": "backdrop"; "required": false; }; "beforeDismiss": { "alias": "beforeDismiss"; "required": false; }; "centered": { "alias": "centered"; "required": false; }; "closeOnBackdropClick": { "alias": "closeOnBackdropClick"; "required": false; }; "closeOnEscape": { "alias": "closeOnEscape"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
903
893
  }
904
894
  export declare interface IxModal extends Components.IxModal {
905
895
  /**
@@ -916,7 +906,7 @@ export declare class IxModalContent {
916
906
  protected el: HTMLElement;
917
907
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
918
908
  static ɵfac: i0.ɵɵFactoryDeclaration<IxModalContent, never>;
919
- static ɵcmp: i0.ɵɵComponentDeclaration<IxModalContent, "ix-modal-content", never, {}, {}, never, ["*"]>;
909
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxModalContent, "ix-modal-content", never, {}, {}, never, ["*"], false, never>;
920
910
  }
921
911
  export declare interface IxModalContent extends Components.IxModalContent {
922
912
  }
@@ -925,7 +915,7 @@ export declare class IxModalFooter {
925
915
  protected el: HTMLElement;
926
916
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
927
917
  static ɵfac: i0.ɵɵFactoryDeclaration<IxModalFooter, never>;
928
- static ɵcmp: i0.ɵɵComponentDeclaration<IxModalFooter, "ix-modal-footer", never, {}, {}, never, ["*"]>;
918
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxModalFooter, "ix-modal-footer", never, {}, {}, never, ["*"], false, never>;
929
919
  }
930
920
  export declare interface IxModalFooter extends Components.IxModalFooter {
931
921
  }
@@ -934,7 +924,7 @@ export declare class IxModalHeader {
934
924
  protected el: HTMLElement;
935
925
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
936
926
  static ɵfac: i0.ɵɵFactoryDeclaration<IxModalHeader, never>;
937
- static ɵcmp: i0.ɵɵComponentDeclaration<IxModalHeader, "ix-modal-header", never, { "hideClose": "hideClose"; "icon": "icon"; "iconColor": "iconColor"; }, {}, never, ["*"]>;
927
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxModalHeader, "ix-modal-header", never, { "hideClose": { "alias": "hideClose"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; }, {}, never, ["*"], false, never>;
938
928
  }
939
929
  export declare interface IxModalHeader extends Components.IxModalHeader {
940
930
  /**
@@ -948,7 +938,7 @@ export declare class IxNumberInput {
948
938
  protected el: HTMLElement;
949
939
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
950
940
  static ɵfac: i0.ɵɵFactoryDeclaration<IxNumberInput, never>;
951
- static ɵcmp: i0.ɵɵComponentDeclaration<IxNumberInput, "ix-number-input", never, { "allowedCharactersPattern": "allowedCharactersPattern"; "disabled": "disabled"; "helperText": "helperText"; "infoText": "infoText"; "invalidText": "invalidText"; "label": "label"; "max": "max"; "min": "min"; "name": "name"; "pattern": "pattern"; "placeholder": "placeholder"; "readonly": "readonly"; "required": "required"; "showStepperButtons": "showStepperButtons"; "showTextAsTooltip": "showTextAsTooltip"; "validText": "validText"; "value": "value"; "warningText": "warningText"; }, {}, never, ["*"]>;
941
+ 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>;
952
942
  }
953
943
  export declare interface IxNumberInput extends Components.IxNumberInput {
954
944
  /**
@@ -969,7 +959,7 @@ export declare class IxPagination {
969
959
  protected el: HTMLElement;
970
960
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
971
961
  static ɵfac: i0.ɵɵFactoryDeclaration<IxPagination, never>;
972
- static ɵcmp: i0.ɵɵComponentDeclaration<IxPagination, "ix-pagination", never, { "advanced": "advanced"; "count": "count"; "i18nItems": "i18nItems"; "i18nOf": "i18nOf"; "i18nPage": "i18nPage"; "itemCount": "itemCount"; "selectedPage": "selectedPage"; "showItemCount": "showItemCount"; }, {}, never, ["*"]>;
962
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxPagination, "ix-pagination", never, { "advanced": { "alias": "advanced"; "required": false; }; "count": { "alias": "count"; "required": false; }; "i18nItems": { "alias": "i18nItems"; "required": false; }; "i18nOf": { "alias": "i18nOf"; "required": false; }; "i18nPage": { "alias": "i18nPage"; "required": false; }; "itemCount": { "alias": "itemCount"; "required": false; }; "selectedPage": { "alias": "selectedPage"; "required": false; }; "showItemCount": { "alias": "showItemCount"; "required": false; }; }, {}, never, ["*"], false, never>;
973
963
  }
974
964
  export declare interface IxPagination extends Components.IxPagination {
975
965
  /**
@@ -986,7 +976,7 @@ export declare class IxPane {
986
976
  protected el: HTMLElement;
987
977
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
988
978
  static ɵfac: i0.ɵɵFactoryDeclaration<IxPane, never>;
989
- static ɵcmp: i0.ɵɵComponentDeclaration<IxPane, "ix-pane", never, { "borderless": "borderless"; "composition": "composition"; "expanded": "expanded"; "heading": "heading"; "hideOnCollapse": "hideOnCollapse"; "icon": "icon"; "size": "size"; "variant": "variant"; }, {}, never, ["*"]>;
979
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxPane, "ix-pane", never, { "borderless": { "alias": "borderless"; "required": false; }; "composition": { "alias": "composition"; "required": false; }; "expanded": { "alias": "expanded"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "hideOnCollapse": { "alias": "hideOnCollapse"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "size": { "alias": "size"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
990
980
  }
991
981
  export declare interface IxPane extends Components.IxPane {
992
982
  /**
@@ -1007,7 +997,7 @@ export declare class IxPaneLayout {
1007
997
  protected el: HTMLElement;
1008
998
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1009
999
  static ɵfac: i0.ɵɵFactoryDeclaration<IxPaneLayout, never>;
1010
- static ɵcmp: i0.ɵɵComponentDeclaration<IxPaneLayout, "ix-pane-layout", never, { "borderless": "borderless"; "layout": "layout"; "variant": "variant"; }, {}, never, ["*"]>;
1000
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxPaneLayout, "ix-pane-layout", never, { "borderless": { "alias": "borderless"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
1011
1001
  }
1012
1002
  export declare interface IxPaneLayout extends Components.IxPaneLayout {
1013
1003
  }
@@ -1016,7 +1006,7 @@ export declare class IxPill {
1016
1006
  protected el: HTMLElement;
1017
1007
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1018
1008
  static ɵfac: i0.ɵɵFactoryDeclaration<IxPill, never>;
1019
- static ɵcmp: i0.ɵɵComponentDeclaration<IxPill, "ix-pill", never, { "alignLeft": "alignLeft"; "background": "background"; "color": "color"; "icon": "icon"; "outline": "outline"; "pillColor": "pillColor"; "tooltipText": "tooltipText"; "variant": "variant"; }, {}, never, ["*"]>;
1009
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxPill, "ix-pill", never, { "alignLeft": { "alias": "alignLeft"; "required": false; }; "background": { "alias": "background"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "outline": { "alias": "outline"; "required": false; }; "pillColor": { "alias": "pillColor"; "required": false; }; "tooltipText": { "alias": "tooltipText"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
1020
1010
  }
1021
1011
  export declare interface IxPill extends Components.IxPill {
1022
1012
  }
@@ -1025,7 +1015,7 @@ export declare class IxPushCard {
1025
1015
  protected el: HTMLElement;
1026
1016
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1027
1017
  static ɵfac: i0.ɵɵFactoryDeclaration<IxPushCard, never>;
1028
- static ɵcmp: i0.ɵɵComponentDeclaration<IxPushCard, "ix-push-card", never, { "collapse": "collapse"; "heading": "heading"; "icon": "icon"; "notification": "notification"; "subheading": "subheading"; "variant": "variant"; }, {}, never, ["*"]>;
1018
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxPushCard, "ix-push-card", never, { "collapse": { "alias": "collapse"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "notification": { "alias": "notification"; "required": false; }; "subheading": { "alias": "subheading"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
1029
1019
  }
1030
1020
  export declare interface IxPushCard extends Components.IxPushCard {
1031
1021
  }
@@ -1034,7 +1024,7 @@ export declare class IxRadio {
1034
1024
  protected el: HTMLElement;
1035
1025
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1036
1026
  static ɵfac: i0.ɵɵFactoryDeclaration<IxRadio, never>;
1037
- static ɵcmp: i0.ɵɵComponentDeclaration<IxRadio, "ix-radio", never, { "checked": "checked"; "disabled": "disabled"; "label": "label"; "name": "name"; "value": "value"; }, {}, never, ["*"]>;
1027
+ 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>;
1038
1028
  }
1039
1029
  export declare interface IxRadio extends Components.IxRadio {
1040
1030
  /**
@@ -1051,7 +1041,7 @@ export declare class IxRadioGroup {
1051
1041
  protected el: HTMLElement;
1052
1042
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1053
1043
  static ɵfac: i0.ɵɵFactoryDeclaration<IxRadioGroup, never>;
1054
- static ɵcmp: i0.ɵɵComponentDeclaration<IxRadioGroup, "ix-radio-group", never, { "direction": "direction"; "helperText": "helperText"; "infoText": "infoText"; "invalidText": "invalidText"; "label": "label"; "showTextAsTooltip": "showTextAsTooltip"; "validText": "validText"; "value": "value"; "warningText": "warningText"; }, {}, never, ["*"]>;
1044
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxRadioGroup, "ix-radio-group", never, { "direction": { "alias": "direction"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "infoText": { "alias": "infoText"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "showTextAsTooltip": { "alias": "showTextAsTooltip"; "required": false; }; "validText": { "alias": "validText"; "required": false; }; "value": { "alias": "value"; "required": false; }; "warningText": { "alias": "warningText"; "required": false; }; }, {}, never, ["*"], false, never>;
1055
1045
  }
1056
1046
  export declare interface IxRadioGroup extends Components.IxRadioGroup {
1057
1047
  /**
@@ -1064,7 +1054,7 @@ export declare class IxRow {
1064
1054
  protected el: HTMLElement;
1065
1055
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1066
1056
  static ɵfac: i0.ɵɵFactoryDeclaration<IxRow, never>;
1067
- static ɵcmp: i0.ɵɵComponentDeclaration<IxRow, "ix-row", never, {}, {}, never, ["*"]>;
1057
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxRow, "ix-row", never, {}, {}, never, ["*"], false, never>;
1068
1058
  }
1069
1059
  export declare interface IxRow extends Components.IxRow {
1070
1060
  }
@@ -1073,17 +1063,13 @@ export declare class IxSelect {
1073
1063
  protected el: HTMLElement;
1074
1064
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1075
1065
  static ɵfac: i0.ɵɵFactoryDeclaration<IxSelect, never>;
1076
- static ɵcmp: i0.ɵɵComponentDeclaration<IxSelect, "ix-select", never, { "allowClear": "allowClear"; "disabled": "disabled"; "dropdownMaxWidth": "dropdownMaxWidth"; "dropdownWidth": "dropdownWidth"; "editable": "editable"; "helperText": "helperText"; "hideListHeader": "hideListHeader"; "i18nNoMatches": "i18nNoMatches"; "i18nPlaceholder": "i18nPlaceholder"; "i18nPlaceholderEditable": "i18nPlaceholderEditable"; "i18nSelectListHeader": "i18nSelectListHeader"; "infoText": "infoText"; "invalidText": "invalidText"; "label": "label"; "mode": "mode"; "name": "name"; "readonly": "readonly"; "required": "required"; "selectedIndices": "selectedIndices"; "showTextAsTooltip": "showTextAsTooltip"; "validText": "validText"; "value": "value"; "warningText": "warningText"; }, {}, never, ["*"]>;
1066
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxSelect, "ix-select", never, { "allowClear": { "alias": "allowClear"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "dropdownMaxWidth": { "alias": "dropdownMaxWidth"; "required": false; }; "dropdownWidth": { "alias": "dropdownWidth"; "required": false; }; "editable": { "alias": "editable"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "hideListHeader": { "alias": "hideListHeader"; "required": false; }; "i18nNoMatches": { "alias": "i18nNoMatches"; "required": false; }; "i18nPlaceholder": { "alias": "i18nPlaceholder"; "required": false; }; "i18nPlaceholderEditable": { "alias": "i18nPlaceholderEditable"; "required": false; }; "i18nSelectListHeader": { "alias": "i18nSelectListHeader"; "required": false; }; "infoText": { "alias": "infoText"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "name": { "alias": "name"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "showTextAsTooltip": { "alias": "showTextAsTooltip"; "required": false; }; "validText": { "alias": "validText"; "required": false; }; "value": { "alias": "value"; "required": false; }; "warningText": { "alias": "warningText"; "required": false; }; }, {}, never, ["*"], false, never>;
1077
1067
  }
1078
1068
  export declare interface IxSelect extends Components.IxSelect {
1079
1069
  /**
1080
1070
  * Value changed @since 2.0.0
1081
1071
  */
1082
1072
  valueChange: EventEmitter<CustomEvent<string | string[]>>;
1083
- /**
1084
- * Item selection changed @deprecated since 2.0.0. Use `valueChange` instead.
1085
- */
1086
- itemSelectionChange: EventEmitter<CustomEvent<string[]>>;
1087
1073
  /**
1088
1074
  * Event dispatched whenever the text input changes. @since 2.0.0
1089
1075
  */
@@ -1102,7 +1088,7 @@ export declare class IxSelectItem {
1102
1088
  protected el: HTMLElement;
1103
1089
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1104
1090
  static ɵfac: i0.ɵɵFactoryDeclaration<IxSelectItem, never>;
1105
- static ɵcmp: i0.ɵɵComponentDeclaration<IxSelectItem, "ix-select-item", never, { "label": "label"; "selected": "selected"; "value": "value"; }, {}, never, ["*"]>;
1091
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxSelectItem, "ix-select-item", never, { "label": { "alias": "label"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
1106
1092
  }
1107
1093
  export declare interface IxSelectItem extends Components.IxSelectItem {
1108
1094
  /**
@@ -1115,7 +1101,7 @@ export declare class IxSlider {
1115
1101
  protected el: HTMLElement;
1116
1102
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1117
1103
  static ɵfac: i0.ɵɵFactoryDeclaration<IxSlider, never>;
1118
- static ɵcmp: i0.ɵɵComponentDeclaration<IxSlider, "ix-slider", never, { "disabled": "disabled"; "error": "error"; "marker": "marker"; "max": "max"; "min": "min"; "step": "step"; "trace": "trace"; "traceReference": "traceReference"; "value": "value"; }, {}, never, ["*"]>;
1104
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxSlider, "ix-slider", never, { "disabled": { "alias": "disabled"; "required": false; }; "error": { "alias": "error"; "required": false; }; "marker": { "alias": "marker"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "step": { "alias": "step"; "required": false; }; "trace": { "alias": "trace"; "required": false; }; "traceReference": { "alias": "traceReference"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
1119
1105
  }
1120
1106
  export declare interface IxSlider extends Components.IxSlider {
1121
1107
  valueChange: EventEmitter<CustomEvent<number>>;
@@ -1125,7 +1111,7 @@ export declare class IxSpinner {
1125
1111
  protected el: HTMLElement;
1126
1112
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1127
1113
  static ɵfac: i0.ɵɵFactoryDeclaration<IxSpinner, never>;
1128
- static ɵcmp: i0.ɵɵComponentDeclaration<IxSpinner, "ix-spinner", never, { "size": "size"; "variant": "variant"; }, {}, never, ["*"]>;
1114
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxSpinner, "ix-spinner", never, { "size": { "alias": "size"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
1129
1115
  }
1130
1116
  export declare interface IxSpinner extends Components.IxSpinner {
1131
1117
  }
@@ -1134,7 +1120,7 @@ export declare class IxSplitButton {
1134
1120
  protected el: HTMLElement;
1135
1121
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1136
1122
  static ɵfac: i0.ɵɵFactoryDeclaration<IxSplitButton, never>;
1137
- static ɵcmp: i0.ɵɵComponentDeclaration<IxSplitButton, "ix-split-button", never, { "closeBehavior": "closeBehavior"; "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "label": "label"; "outline": "outline"; "placement": "placement"; "splitIcon": "splitIcon"; "variant": "variant"; }, {}, never, ["*"]>;
1123
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxSplitButton, "ix-split-button", never, { "closeBehavior": { "alias": "closeBehavior"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "ghost": { "alias": "ghost"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "outline": { "alias": "outline"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "splitIcon": { "alias": "splitIcon"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
1138
1124
  }
1139
1125
  export declare interface IxSplitButton extends Components.IxSplitButton {
1140
1126
  /**
@@ -1142,25 +1128,12 @@ export declare interface IxSplitButton extends Components.IxSplitButton {
1142
1128
  */
1143
1129
  buttonClick: EventEmitter<CustomEvent<MouseEvent>>;
1144
1130
  }
1145
- export declare class IxSplitButtonItem {
1146
- protected z: NgZone;
1147
- protected el: HTMLElement;
1148
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1149
- static ɵfac: i0.ɵɵFactoryDeclaration<IxSplitButtonItem, never>;
1150
- static ɵcmp: i0.ɵɵComponentDeclaration<IxSplitButtonItem, "ix-split-button-item", never, { "icon": "icon"; "label": "label"; }, {}, never, ["*"]>;
1151
- }
1152
- export declare interface IxSplitButtonItem extends Components.IxSplitButtonItem {
1153
- /**
1154
- * Dropdown item clicked
1155
- */
1156
- itemClick: EventEmitter<CustomEvent<MouseEvent>>;
1157
- }
1158
1131
  export declare class IxTabItem {
1159
1132
  protected z: NgZone;
1160
1133
  protected el: HTMLElement;
1161
1134
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1162
1135
  static ɵfac: i0.ɵɵFactoryDeclaration<IxTabItem, never>;
1163
- static ɵcmp: i0.ɵɵComponentDeclaration<IxTabItem, "ix-tab-item", never, { "counter": "counter"; "disabled": "disabled"; "icon": "icon"; "layout": "layout"; "placement": "placement"; "rounded": "rounded"; "selected": "selected"; "small": "small"; }, {}, never, ["*"]>;
1136
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxTabItem, "ix-tab-item", never, { "counter": { "alias": "counter"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "small": { "alias": "small"; "required": false; }; }, {}, never, ["*"], false, never>;
1164
1137
  }
1165
1138
  export declare interface IxTabItem extends Components.IxTabItem {
1166
1139
  /**
@@ -1173,7 +1146,7 @@ export declare class IxTabs {
1173
1146
  protected el: HTMLElement;
1174
1147
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1175
1148
  static ɵfac: i0.ɵɵFactoryDeclaration<IxTabs, never>;
1176
- static ɵcmp: i0.ɵɵComponentDeclaration<IxTabs, "ix-tabs", never, { "layout": "layout"; "placement": "placement"; "rounded": "rounded"; "selected": "selected"; "small": "small"; }, {}, never, ["*"]>;
1149
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxTabs, "ix-tabs", never, { "layout": { "alias": "layout"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "small": { "alias": "small"; "required": false; }; }, {}, never, ["*"], false, never>;
1177
1150
  }
1178
1151
  export declare interface IxTabs extends Components.IxTabs {
1179
1152
  /**
@@ -1186,7 +1159,7 @@ export declare class IxTextarea {
1186
1159
  protected el: HTMLElement;
1187
1160
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1188
1161
  static ɵfac: i0.ɵɵFactoryDeclaration<IxTextarea, never>;
1189
- static ɵcmp: i0.ɵɵComponentDeclaration<IxTextarea, "ix-textarea", never, { "disabled": "disabled"; "helperText": "helperText"; "infoText": "infoText"; "invalidText": "invalidText"; "label": "label"; "maxLength": "maxLength"; "minLength": "minLength"; "name": "name"; "placeholder": "placeholder"; "readonly": "readonly"; "required": "required"; "resizeBehavior": "resizeBehavior"; "showTextAsTooltip": "showTextAsTooltip"; "textareaCols": "textareaCols"; "textareaHeight": "textareaHeight"; "textareaRows": "textareaRows"; "textareaWidth": "textareaWidth"; "validText": "validText"; "value": "value"; "warningText": "warningText"; }, {}, never, ["*"]>;
1162
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxTextarea, "ix-textarea", never, { "disabled": { "alias": "disabled"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "infoText": { "alias": "infoText"; "required": false; }; "invalidText": { "alias": "invalidText"; "required": false; }; "label": { "alias": "label"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "resizeBehavior": { "alias": "resizeBehavior"; "required": false; }; "showTextAsTooltip": { "alias": "showTextAsTooltip"; "required": false; }; "textareaCols": { "alias": "textareaCols"; "required": false; }; "textareaHeight": { "alias": "textareaHeight"; "required": false; }; "textareaRows": { "alias": "textareaRows"; "required": false; }; "textareaWidth": { "alias": "textareaWidth"; "required": false; }; "validText": { "alias": "validText"; "required": false; }; "value": { "alias": "value"; "required": false; }; "warningText": { "alias": "warningText"; "required": false; }; }, {}, never, ["*"], false, never>;
1190
1163
  }
1191
1164
  export declare interface IxTextarea extends Components.IxTextarea {
1192
1165
  /**
@@ -1207,7 +1180,7 @@ export declare class IxTile {
1207
1180
  protected el: HTMLElement;
1208
1181
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1209
1182
  static ɵfac: i0.ɵɵFactoryDeclaration<IxTile, never>;
1210
- static ɵcmp: i0.ɵɵComponentDeclaration<IxTile, "ix-tile", never, { "size": "size"; }, {}, never, ["*"]>;
1183
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxTile, "ix-tile", never, { "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
1211
1184
  }
1212
1185
  export declare interface IxTile extends Components.IxTile {
1213
1186
  }
@@ -1216,17 +1189,13 @@ export declare class IxTimePicker {
1216
1189
  protected el: HTMLElement;
1217
1190
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1218
1191
  static ɵfac: i0.ɵɵFactoryDeclaration<IxTimePicker, never>;
1219
- 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, ["*"]>;
1192
+ 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>;
1220
1193
  }
1221
1194
  export declare interface IxTimePicker extends Components.IxTimePicker {
1222
1195
  /**
1223
1196
  * Time event
1224
1197
  */
1225
1198
  timeSelect: EventEmitter<CustomEvent<string>>;
1226
- /**
1227
- * Time event @deprecated Will be removed in 3.0.0. Use `time-select` event.
1228
- */
1229
- done: EventEmitter<CustomEvent<string>>;
1230
1199
  /**
1231
1200
  * Time change event
1232
1201
  */
@@ -1237,7 +1206,7 @@ export declare class IxToast {
1237
1206
  protected el: HTMLElement;
1238
1207
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1239
1208
  static ɵfac: i0.ɵɵFactoryDeclaration<IxToast, never>;
1240
- static ɵcmp: i0.ɵɵComponentDeclaration<IxToast, "ix-toast", never, { "autoClose": "autoClose"; "autoCloseDelay": "autoCloseDelay"; "icon": "icon"; "iconColor": "iconColor"; "toastTitle": "toastTitle"; "type": "type"; }, {}, never, ["*"]>;
1209
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxToast, "ix-toast", never, { "autoClose": { "alias": "autoClose"; "required": false; }; "autoCloseDelay": { "alias": "autoCloseDelay"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "toastTitle": { "alias": "toastTitle"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
1241
1210
  }
1242
1211
  export declare interface IxToast extends Components.IxToast {
1243
1212
  /**
@@ -1250,7 +1219,7 @@ export declare class IxToastContainer {
1250
1219
  protected el: HTMLElement;
1251
1220
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1252
1221
  static ɵfac: i0.ɵɵFactoryDeclaration<IxToastContainer, never>;
1253
- static ɵcmp: i0.ɵɵComponentDeclaration<IxToastContainer, "ix-toast-container", never, { "containerClass": "containerClass"; "containerId": "containerId"; "position": "position"; }, {}, never, ["*"]>;
1222
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxToastContainer, "ix-toast-container", never, { "containerClass": { "alias": "containerClass"; "required": false; }; "containerId": { "alias": "containerId"; "required": false; }; "position": { "alias": "position"; "required": false; }; }, {}, never, ["*"], false, never>;
1254
1223
  }
1255
1224
  export declare interface IxToastContainer extends Components.IxToastContainer {
1256
1225
  }
@@ -1259,7 +1228,7 @@ export declare class IxToggle {
1259
1228
  protected el: HTMLElement;
1260
1229
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1261
1230
  static ɵfac: i0.ɵɵFactoryDeclaration<IxToggle, never>;
1262
- static ɵcmp: i0.ɵɵComponentDeclaration<IxToggle, "ix-toggle", never, { "checked": "checked"; "disabled": "disabled"; "hideText": "hideText"; "indeterminate": "indeterminate"; "name": "name"; "required": "required"; "textIndeterminate": "textIndeterminate"; "textOff": "textOff"; "textOn": "textOn"; "value": "value"; }, {}, never, ["*"]>;
1231
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxToggle, "ix-toggle", never, { "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "hideText": { "alias": "hideText"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "textIndeterminate": { "alias": "textIndeterminate"; "required": false; }; "textOff": { "alias": "textOff"; "required": false; }; "textOn": { "alias": "textOn"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
1263
1232
  }
1264
1233
  export declare interface IxToggle extends Components.IxToggle {
1265
1234
  /**
@@ -1272,7 +1241,7 @@ export declare class IxToggleButton {
1272
1241
  protected el: HTMLElement;
1273
1242
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1274
1243
  static ɵfac: i0.ɵɵFactoryDeclaration<IxToggleButton, never>;
1275
- static ɵcmp: i0.ɵɵComponentDeclaration<IxToggleButton, "ix-toggle-button", never, { "disabled": "disabled"; "ghost": "ghost"; "icon": "icon"; "loading": "loading"; "outline": "outline"; "pressed": "pressed"; "variant": "variant"; }, {}, never, ["*"]>;
1244
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxToggleButton, "ix-toggle-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "ghost": { "alias": "ghost"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "outline": { "alias": "outline"; "required": false; }; "pressed": { "alias": "pressed"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], false, never>;
1276
1245
  }
1277
1246
  export declare interface IxToggleButton extends Components.IxToggleButton {
1278
1247
  /**
@@ -1285,7 +1254,7 @@ export declare class IxTooltip {
1285
1254
  protected el: HTMLElement;
1286
1255
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1287
1256
  static ɵfac: i0.ɵɵFactoryDeclaration<IxTooltip, never>;
1288
- static ɵcmp: i0.ɵɵComponentDeclaration<IxTooltip, "ix-tooltip", never, { "for": "for"; "interactive": "interactive"; "placement": "placement"; "titleContent": "titleContent"; }, {}, never, ["*"]>;
1257
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxTooltip, "ix-tooltip", never, { "for": { "alias": "for"; "required": false; }; "interactive": { "alias": "interactive"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "titleContent": { "alias": "titleContent"; "required": false; }; }, {}, never, ["*"], false, never>;
1289
1258
  }
1290
1259
  export declare interface IxTooltip extends Components.IxTooltip {
1291
1260
  }
@@ -1294,7 +1263,7 @@ export declare class IxTreeItem {
1294
1263
  protected el: HTMLElement;
1295
1264
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1296
1265
  static ɵfac: i0.ɵɵFactoryDeclaration<IxTreeItem, never>;
1297
- static ɵcmp: i0.ɵɵComponentDeclaration<IxTreeItem, "ix-tree-item", never, { "context": "context"; "hasChildren": "hasChildren"; "text": "text"; }, {}, never, ["*"]>;
1266
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxTreeItem, "ix-tree-item", never, { "context": { "alias": "context"; "required": false; }; "hasChildren": { "alias": "hasChildren"; "required": false; }; "text": { "alias": "text"; "required": false; }; }, {}, never, ["*"], false, never>;
1298
1267
  }
1299
1268
  export declare interface IxTreeItem extends Components.IxTreeItem {
1300
1269
  /**
@@ -1311,7 +1280,7 @@ export declare class IxTypography {
1311
1280
  protected el: HTMLElement;
1312
1281
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1313
1282
  static ɵfac: i0.ɵɵFactoryDeclaration<IxTypography, never>;
1314
- static ɵcmp: i0.ɵɵComponentDeclaration<IxTypography, "ix-typography", never, { "bold": "bold"; "color": "color"; "format": "format"; "textColor": "textColor"; "textDecoration": "textDecoration"; }, {}, never, ["*"]>;
1283
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxTypography, "ix-typography", never, { "bold": { "alias": "bold"; "required": false; }; "format": { "alias": "format"; "required": false; }; "textColor": { "alias": "textColor"; "required": false; }; "textDecoration": { "alias": "textDecoration"; "required": false; }; }, {}, never, ["*"], false, never>;
1315
1284
  }
1316
1285
  export declare interface IxTypography extends Components.IxTypography {
1317
1286
  }
@@ -1320,7 +1289,7 @@ export declare class IxUpload {
1320
1289
  protected el: HTMLElement;
1321
1290
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1322
1291
  static ɵfac: i0.ɵɵFactoryDeclaration<IxUpload, never>;
1323
- static ɵcmp: i0.ɵɵComponentDeclaration<IxUpload, "ix-upload", never, { "accept": "accept"; "disabled": "disabled"; "i18nUploadDisabled": "i18nUploadDisabled"; "i18nUploadFile": "i18nUploadFile"; "loadingText": "loadingText"; "multiline": "multiline"; "multiple": "multiple"; "selectFileText": "selectFileText"; "state": "state"; "uploadFailedText": "uploadFailedText"; "uploadSuccessText": "uploadSuccessText"; }, {}, never, ["*"]>;
1292
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxUpload, "ix-upload", never, { "accept": { "alias": "accept"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "i18nUploadDisabled": { "alias": "i18nUploadDisabled"; "required": false; }; "i18nUploadFile": { "alias": "i18nUploadFile"; "required": false; }; "loadingText": { "alias": "loadingText"; "required": false; }; "multiline": { "alias": "multiline"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "selectFileText": { "alias": "selectFileText"; "required": false; }; "state": { "alias": "state"; "required": false; }; "uploadFailedText": { "alias": "uploadFailedText"; "required": false; }; "uploadSuccessText": { "alias": "uploadSuccessText"; "required": false; }; }, {}, never, ["*"], false, never>;
1324
1293
  }
1325
1294
  export declare interface IxUpload extends Components.IxUpload {
1326
1295
  /**
@@ -1333,7 +1302,7 @@ export declare class IxValidationTooltip {
1333
1302
  protected el: HTMLElement;
1334
1303
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1335
1304
  static ɵfac: i0.ɵɵFactoryDeclaration<IxValidationTooltip, never>;
1336
- static ɵcmp: i0.ɵɵComponentDeclaration<IxValidationTooltip, "ix-validation-tooltip", never, { "message": "message"; "placement": "placement"; "suppressAutomaticPlacement": "suppressAutomaticPlacement"; }, {}, never, ["*"]>;
1305
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxValidationTooltip, "ix-validation-tooltip", never, { "message": { "alias": "message"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "suppressAutomaticPlacement": { "alias": "suppressAutomaticPlacement"; "required": false; }; }, {}, never, ["*"], false, never>;
1337
1306
  }
1338
1307
  export declare interface IxValidationTooltip extends Components.IxValidationTooltip {
1339
1308
  }
@@ -1342,7 +1311,7 @@ export declare class IxWorkflowStep {
1342
1311
  protected el: HTMLElement;
1343
1312
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1344
1313
  static ɵfac: i0.ɵɵFactoryDeclaration<IxWorkflowStep, never>;
1345
- static ɵcmp: i0.ɵɵComponentDeclaration<IxWorkflowStep, "ix-workflow-step", never, { "clickable": "clickable"; "disabled": "disabled"; "selected": "selected"; "status": "status"; "vertical": "vertical"; }, {}, never, ["*"]>;
1314
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxWorkflowStep, "ix-workflow-step", never, { "clickable": { "alias": "clickable"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "status": { "alias": "status"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; }, {}, never, ["*"], false, never>;
1346
1315
  }
1347
1316
  export declare interface IxWorkflowStep extends Components.IxWorkflowStep {
1348
1317
  }
@@ -1351,7 +1320,7 @@ export declare class IxWorkflowSteps {
1351
1320
  protected el: HTMLElement;
1352
1321
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1353
1322
  static ɵfac: i0.ɵɵFactoryDeclaration<IxWorkflowSteps, never>;
1354
- static ɵcmp: i0.ɵɵComponentDeclaration<IxWorkflowSteps, "ix-workflow-steps", never, { "clickable": "clickable"; "selectedIndex": "selectedIndex"; "vertical": "vertical"; }, {}, never, ["*"]>;
1323
+ static ɵcmp: i0.ɵɵComponentDeclaration<IxWorkflowSteps, "ix-workflow-steps", never, { "clickable": { "alias": "clickable"; "required": false; }; "selectedIndex": { "alias": "selectedIndex"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; }, {}, never, ["*"], false, never>;
1355
1324
  }
1356
1325
  export declare interface IxWorkflowSteps extends Components.IxWorkflowSteps {
1357
1326
  /**