igniteui-angular-inputs 18.1.1 → 18.2.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (224) hide show
  1. package/bundles/igniteui-angular-inputs.umd.js +16857 -7563
  2. package/bundles/igniteui-angular-inputs.umd.min.js +1 -1
  3. package/esm2015/lib/ButtonGroupView_combined.js +19 -19
  4. package/esm2015/lib/ButtonView_combined.js +820 -790
  5. package/esm2015/lib/CalendarView_combined.js +82 -82
  6. package/esm2015/lib/ColorEditor.js +7 -0
  7. package/esm2015/lib/ColorEditorBridge.js +7 -0
  8. package/esm2015/lib/ColorEditorGotFocusEventArgs.js +16 -0
  9. package/esm2015/lib/ColorEditorLostFocusEventArgs.js +16 -0
  10. package/esm2015/lib/ColorEditorPanel.js +7 -0
  11. package/esm2015/lib/ColorEditorPanelClosedEventArgs.js +16 -0
  12. package/esm2015/lib/ColorEditorPanelSelectedValueChangedEventArgs.js +33 -0
  13. package/esm2015/lib/ColorEditorPanelView.js +7 -0
  14. package/esm2015/lib/ColorEditorView.js +7 -0
  15. package/esm2015/lib/DatePickerView_combined.js +18 -18
  16. package/esm2015/lib/DefaultMultiSliderTrackBarVisual.js +113 -0
  17. package/esm2015/lib/DefaultMultiSliderTrackRangeVisual.js +208 -0
  18. package/esm2015/lib/DefaultMultiSliderTrackThumbCalloutVisual.js +170 -0
  19. package/esm2015/lib/DefaultMultiSliderTrackThumbVisual.js +193 -0
  20. package/esm2015/lib/DefaultMultiTrackShadeVisual.js +172 -0
  21. package/esm2015/lib/IMultiSliderTrackBarVisual.js +11 -0
  22. package/esm2015/lib/IMultiSliderTrackRangeVisual.js +11 -0
  23. package/esm2015/lib/IMultiSliderTrackShadeVisual.js +11 -0
  24. package/esm2015/lib/IMultiSliderTrackThumbCalloutVisual.js +11 -0
  25. package/esm2015/lib/IMultiSliderTrackThumbVisual.js +11 -0
  26. package/esm2015/lib/ISliderTrackOwner.js +11 -0
  27. package/esm2015/lib/IconClickedEventArgs.js +10 -0
  28. package/esm2015/lib/IconView_combined.js +345 -314
  29. package/esm2015/lib/InputGroupView_combined.js +456 -355
  30. package/esm2015/lib/MultiSlider.js +7 -0
  31. package/esm2015/lib/MultiSliderBridge.js +165 -0
  32. package/esm2015/lib/MultiSliderCursor.js +11 -0
  33. package/esm2015/lib/MultiSliderHitInfo.js +22 -0
  34. package/esm2015/lib/MultiSliderOrientation.js +17 -0
  35. package/esm2015/lib/MultiSliderResolvingToolTipValueEventArgs.js +33 -0
  36. package/esm2015/lib/MultiSliderThumb.js +7 -0
  37. package/esm2015/lib/MultiSliderThumbCollection.js +21 -0
  38. package/esm2015/lib/MultiSliderThumbRangePosition.js +16 -0
  39. package/esm2015/lib/MultiSliderThumbValueChangingEventArgs.js +21 -0
  40. package/esm2015/lib/MultiSliderThumb_combined.js +297 -0
  41. package/esm2015/lib/MultiSliderTrackShadeOrientation.js +11 -0
  42. package/esm2015/lib/MultiSliderTrackThumbRange.js +7 -0
  43. package/esm2015/lib/MultiSliderView.js +7 -0
  44. package/esm2015/lib/MultiSliderView_combined.js +1785 -0
  45. package/esm2015/lib/MultiSliderVisualArea.js +11 -0
  46. package/esm2015/lib/MultiSliderYValueChangingEventArgs.js +20 -0
  47. package/esm2015/lib/NativeUIXInputsFactory.js +1 -179
  48. package/esm2015/lib/NativeUIXInputsFactory_combined.js +2113 -0
  49. package/esm2015/lib/XButtonBridge.js +25 -20
  50. package/esm2015/lib/XButtonGroupBridge.js +177 -0
  51. package/esm2015/lib/XComponentBridge.js +3 -0
  52. package/esm2015/lib/XIconBridge.js +20 -16
  53. package/esm2015/lib/XInputBridge.js +274 -26
  54. package/esm2015/lib/XPopupBridge.js +117 -98
  55. package/esm2015/lib/igx-color-editor-component.js +470 -0
  56. package/esm2015/lib/igx-color-editor-dynamic-module.js +45 -0
  57. package/esm2015/lib/igx-color-editor-got-focus-event-args.js +27 -0
  58. package/esm2015/lib/igx-color-editor-lost-focus-event-args.js +27 -0
  59. package/esm2015/lib/igx-color-editor-module.js +39 -0
  60. package/esm2015/lib/igx-color-editor-panel-closed-event-args.js +27 -0
  61. package/esm2015/lib/igx-color-editor-panel-component.js +376 -0
  62. package/esm2015/lib/igx-color-editor-panel-dynamic-module.js +66 -0
  63. package/esm2015/lib/igx-color-editor-panel-module.js +60 -0
  64. package/esm2015/lib/igx-color-editor-panel-selected-value-changed-event-args.js +40 -0
  65. package/esm2015/lib/igx-multi-slider-component.js +642 -0
  66. package/esm2015/lib/igx-multi-slider-dynamic-module.js +38 -0
  67. package/esm2015/lib/igx-multi-slider-module.js +36 -0
  68. package/esm2015/lib/igx-multi-slider-resolving-tool-tip-value-event-args.js +39 -0
  69. package/esm2015/lib/igx-multi-slider-thumb-collection.js +53 -0
  70. package/esm2015/lib/igx-multi-slider-thumb-value-changing-event-args.js +56 -0
  71. package/esm2015/lib/igx-multi-slider-thumb.js +111 -0
  72. package/esm2015/lib/igx-multi-slider-track-thumb-range.js +119 -0
  73. package/esm2015/lib/igx-multi-slider-y-value-changing-event-args.js +33 -0
  74. package/esm2015/lib/igx-x-button-component.js +262 -262
  75. package/esm2015/lib/igx-x-icon-component.js +66 -55
  76. package/esm2015/lib/igx-x-input-group-component.js +48 -48
  77. package/esm2015/lib/igx-x-label-component.js +41 -40
  78. package/esm2015/public_api.js +55 -0
  79. package/esm5/lib/ButtonGroupView_combined.js +19 -19
  80. package/esm5/lib/ButtonView_combined.js +765 -735
  81. package/esm5/lib/CalendarView_combined.js +82 -82
  82. package/esm5/lib/ColorEditor.js +7 -0
  83. package/esm5/lib/ColorEditorBridge.js +7 -0
  84. package/esm5/lib/ColorEditorGotFocusEventArgs.js +20 -0
  85. package/esm5/lib/ColorEditorLostFocusEventArgs.js +20 -0
  86. package/esm5/lib/ColorEditorPanel.js +7 -0
  87. package/esm5/lib/ColorEditorPanelClosedEventArgs.js +20 -0
  88. package/esm5/lib/ColorEditorPanelSelectedValueChangedEventArgs.js +43 -0
  89. package/esm5/lib/ColorEditorPanelView.js +7 -0
  90. package/esm5/lib/ColorEditorView.js +7 -0
  91. package/esm5/lib/DatePickerView_combined.js +18 -18
  92. package/esm5/lib/DefaultMultiSliderTrackBarVisual.js +139 -0
  93. package/esm5/lib/DefaultMultiSliderTrackRangeVisual.js +242 -0
  94. package/esm5/lib/DefaultMultiSliderTrackThumbCalloutVisual.js +212 -0
  95. package/esm5/lib/DefaultMultiSliderTrackThumbVisual.js +227 -0
  96. package/esm5/lib/DefaultMultiTrackShadeVisual.js +206 -0
  97. package/esm5/lib/IMultiSliderTrackBarVisual.js +11 -0
  98. package/esm5/lib/IMultiSliderTrackRangeVisual.js +11 -0
  99. package/esm5/lib/IMultiSliderTrackShadeVisual.js +11 -0
  100. package/esm5/lib/IMultiSliderTrackThumbCalloutVisual.js +11 -0
  101. package/esm5/lib/IMultiSliderTrackThumbVisual.js +11 -0
  102. package/esm5/lib/ISliderTrackOwner.js +11 -0
  103. package/esm5/lib/IconClickedEventArgs.js +13 -1
  104. package/esm5/lib/IconView_combined.js +336 -301
  105. package/esm5/lib/InputGroupView_combined.js +444 -343
  106. package/esm5/lib/MultiSlider.js +7 -0
  107. package/esm5/lib/MultiSliderBridge.js +167 -0
  108. package/esm5/lib/MultiSliderCursor.js +11 -0
  109. package/esm5/lib/MultiSliderHitInfo.js +24 -0
  110. package/esm5/lib/MultiSliderOrientation.js +17 -0
  111. package/esm5/lib/MultiSliderResolvingToolTipValueEventArgs.js +43 -0
  112. package/esm5/lib/MultiSliderThumb.js +7 -0
  113. package/esm5/lib/MultiSliderThumbCollection.js +22 -0
  114. package/esm5/lib/MultiSliderThumbRangePosition.js +16 -0
  115. package/esm5/lib/MultiSliderThumbValueChangingEventArgs.js +23 -0
  116. package/esm5/lib/MultiSliderThumb_combined.js +352 -0
  117. package/esm5/lib/MultiSliderTrackShadeOrientation.js +11 -0
  118. package/esm5/lib/MultiSliderTrackThumbRange.js +7 -0
  119. package/esm5/lib/MultiSliderView.js +7 -0
  120. package/esm5/lib/MultiSliderView_combined.js +2006 -0
  121. package/esm5/lib/MultiSliderVisualArea.js +11 -0
  122. package/esm5/lib/MultiSliderYValueChangingEventArgs.js +22 -0
  123. package/esm5/lib/NativeUIXInputsFactory.js +1 -189
  124. package/esm5/lib/NativeUIXInputsFactory_combined.js +2298 -0
  125. package/esm5/lib/XButtonBridge.js +25 -20
  126. package/esm5/lib/XButtonGroupBridge.js +179 -0
  127. package/esm5/lib/XComponentBridge.js +3 -0
  128. package/esm5/lib/XIconBridge.js +20 -16
  129. package/esm5/lib/XInputBridge.js +274 -26
  130. package/esm5/lib/XPopupBridge.js +117 -98
  131. package/esm5/lib/igx-color-editor-component.js +555 -0
  132. package/esm5/lib/igx-color-editor-dynamic-module.js +44 -0
  133. package/esm5/lib/igx-color-editor-got-focus-event-args.js +33 -0
  134. package/esm5/lib/igx-color-editor-lost-focus-event-args.js +33 -0
  135. package/esm5/lib/igx-color-editor-module.js +38 -0
  136. package/esm5/lib/igx-color-editor-panel-closed-event-args.js +33 -0
  137. package/esm5/lib/igx-color-editor-panel-component.js +435 -0
  138. package/esm5/lib/igx-color-editor-panel-dynamic-module.js +65 -0
  139. package/esm5/lib/igx-color-editor-panel-module.js +59 -0
  140. package/esm5/lib/igx-color-editor-panel-selected-value-changed-event-args.js +54 -0
  141. package/esm5/lib/igx-multi-slider-component.js +842 -0
  142. package/esm5/lib/igx-multi-slider-dynamic-module.js +37 -0
  143. package/esm5/lib/igx-multi-slider-module.js +35 -0
  144. package/esm5/lib/igx-multi-slider-resolving-tool-tip-value-event-args.js +53 -0
  145. package/esm5/lib/igx-multi-slider-thumb-collection.js +58 -0
  146. package/esm5/lib/igx-multi-slider-thumb-value-changing-event-args.js +70 -0
  147. package/esm5/lib/igx-multi-slider-thumb.js +134 -0
  148. package/esm5/lib/igx-multi-slider-track-thumb-range.js +149 -0
  149. package/esm5/lib/igx-multi-slider-y-value-changing-event-args.js +43 -0
  150. package/esm5/lib/igx-x-button-component.js +262 -262
  151. package/esm5/lib/igx-x-icon-component.js +70 -55
  152. package/esm5/lib/igx-x-input-group-component.js +48 -48
  153. package/esm5/lib/igx-x-label-component.js +41 -40
  154. package/esm5/public_api.js +55 -0
  155. package/fesm2015/igniteui-angular-inputs.js +15626 -7466
  156. package/fesm5/igniteui-angular-inputs.js +16802 -7565
  157. package/lib/ButtonView_combined.d.ts +243 -241
  158. package/lib/ColorEditor.d.ts +1 -0
  159. package/lib/ColorEditorBridge.d.ts +1 -0
  160. package/lib/ColorEditorGotFocusEventArgs.d.ts +7 -0
  161. package/lib/ColorEditorLostFocusEventArgs.d.ts +7 -0
  162. package/lib/ColorEditorPanel.d.ts +1 -0
  163. package/lib/ColorEditorPanelClosedEventArgs.d.ts +7 -0
  164. package/lib/ColorEditorPanelSelectedValueChangedEventArgs.d.ts +14 -0
  165. package/lib/ColorEditorPanelView.d.ts +1 -0
  166. package/lib/ColorEditorView.d.ts +1 -0
  167. package/lib/DefaultMultiSliderTrackBarVisual.d.ts +34 -0
  168. package/lib/DefaultMultiSliderTrackRangeVisual.d.ts +43 -0
  169. package/lib/DefaultMultiSliderTrackThumbCalloutVisual.d.ts +49 -0
  170. package/lib/DefaultMultiSliderTrackThumbVisual.d.ts +45 -0
  171. package/lib/DefaultMultiTrackShadeVisual.d.ts +42 -0
  172. package/lib/IMultiSliderTrackBarVisual.d.ts +21 -0
  173. package/lib/IMultiSliderTrackRangeVisual.d.ts +25 -0
  174. package/lib/IMultiSliderTrackShadeVisual.d.ts +24 -0
  175. package/lib/IMultiSliderTrackThumbCalloutVisual.d.ts +27 -0
  176. package/lib/IMultiSliderTrackThumbVisual.d.ts +27 -0
  177. package/lib/ISliderTrackOwner.d.ts +15 -0
  178. package/lib/IconClickedEventArgs.d.ts +3 -0
  179. package/lib/IconView_combined.d.ts +88 -84
  180. package/lib/InputGroupView_combined.d.ts +120 -113
  181. package/lib/MultiSlider.d.ts +1 -0
  182. package/lib/MultiSliderBridge.d.ts +24 -0
  183. package/lib/MultiSliderCursor.d.ts +15 -0
  184. package/lib/MultiSliderHitInfo.d.ts +13 -0
  185. package/lib/MultiSliderOrientation.d.ts +10 -0
  186. package/lib/MultiSliderResolvingToolTipValueEventArgs.d.ts +13 -0
  187. package/lib/MultiSliderThumb.d.ts +1 -0
  188. package/lib/MultiSliderThumbCollection.d.ts +10 -0
  189. package/lib/MultiSliderThumbRangePosition.d.ts +9 -0
  190. package/lib/MultiSliderThumbValueChangingEventArgs.d.ts +10 -0
  191. package/lib/MultiSliderThumb_combined.d.ts +76 -0
  192. package/lib/MultiSliderTrackShadeOrientation.d.ts +14 -0
  193. package/lib/MultiSliderTrackThumbRange.d.ts +1 -0
  194. package/lib/MultiSliderView.d.ts +1 -0
  195. package/lib/MultiSliderView_combined.d.ts +298 -0
  196. package/lib/MultiSliderVisualArea.d.ts +14 -0
  197. package/lib/MultiSliderYValueChangingEventArgs.d.ts +8 -0
  198. package/lib/NativeUIXInputsFactory.d.ts +1 -24
  199. package/lib/NativeUIXInputsFactory_combined.d.ts +393 -0
  200. package/lib/XButtonGroupBridge.d.ts +29 -0
  201. package/lib/XInputBridge.d.ts +29 -5
  202. package/lib/XPopupBridge.d.ts +12 -9
  203. package/lib/igx-color-editor-component.d.ts +161 -0
  204. package/lib/igx-color-editor-dynamic-module.d.ts +10 -0
  205. package/lib/igx-color-editor-got-focus-event-args.d.ts +12 -0
  206. package/lib/igx-color-editor-lost-focus-event-args.d.ts +12 -0
  207. package/lib/igx-color-editor-module.d.ts +10 -0
  208. package/lib/igx-color-editor-panel-closed-event-args.d.ts +12 -0
  209. package/lib/igx-color-editor-panel-component.d.ts +125 -0
  210. package/lib/igx-color-editor-panel-dynamic-module.d.ts +13 -0
  211. package/lib/igx-color-editor-panel-module.d.ts +13 -0
  212. package/lib/igx-color-editor-panel-selected-value-changed-event-args.d.ts +16 -0
  213. package/lib/igx-multi-slider-component.d.ts +200 -0
  214. package/lib/igx-multi-slider-dynamic-module.d.ts +9 -0
  215. package/lib/igx-multi-slider-module.d.ts +9 -0
  216. package/lib/igx-multi-slider-resolving-tool-tip-value-event-args.d.ts +17 -0
  217. package/lib/igx-multi-slider-thumb-collection.d.ts +8 -0
  218. package/lib/igx-multi-slider-thumb-value-changing-event-args.d.ts +18 -0
  219. package/lib/igx-multi-slider-thumb.d.ts +33 -0
  220. package/lib/igx-multi-slider-track-thumb-range.d.ts +32 -0
  221. package/lib/igx-multi-slider-y-value-changing-event-args.d.ts +15 -0
  222. package/lib/igx-x-icon-component.d.ts +6 -1
  223. package/package.json +2 -2
  224. package/public_api.d.ts +55 -0
@@ -60,6 +60,7 @@ export let IgxXLabelComponent = /*@__PURE__*/ (() => {
60
60
  this._portalManager.onChildContentChanged(this._childTemplateRef);
61
61
  this._styling(this._root, this);
62
62
  this.updateStyle();
63
+ this.i.onSizeReady();
63
64
  }
64
65
  createImplementation() {
65
66
  return new XLabel();
@@ -101,64 +102,64 @@ export let IgxXLabelComponent = /*@__PURE__*/ (() => {
101
102
  * Gets the actual color to use for the text color.
102
103
  */
103
104
  get actualTextColor() {
104
- return brushToString(this.i.cz);
105
+ return brushToString(this.i.c2);
105
106
  }
106
107
  set actualTextColor(v) {
107
- this.i.cz = stringToBrush(v);
108
+ this.i.c2 = stringToBrush(v);
108
109
  }
109
110
  /**
110
111
  * Gets the actual color to use for the text color.
111
112
  */
112
113
  get actualHighlightTextColor() {
113
- return brushToString(this.i.cw);
114
+ return brushToString(this.i.cz);
114
115
  }
115
116
  set actualHighlightTextColor(v) {
116
- this.i.cw = stringToBrush(v);
117
+ this.i.cz = stringToBrush(v);
117
118
  }
118
119
  /**
119
120
  * Gets the actual color to use for the text color when highlighted and hovered.
120
121
  */
121
122
  get actualHoverHighlightTextColor() {
122
- return brushToString(this.i.cx);
123
+ return brushToString(this.i.c0);
123
124
  }
124
125
  set actualHoverHighlightTextColor(v) {
125
- this.i.cx = stringToBrush(v);
126
+ this.i.c0 = stringToBrush(v);
126
127
  }
127
128
  /**
128
129
  * Gets the actual hover color to use for the text.
129
130
  */
130
131
  get actualHoverTextColor() {
131
- return brushToString(this.i.cy);
132
+ return brushToString(this.i.c1);
132
133
  }
133
134
  set actualHoverTextColor(v) {
134
- this.i.cy = stringToBrush(v);
135
+ this.i.c1 = stringToBrush(v);
135
136
  }
136
137
  /**
137
138
  * Gets or sets the color to use for the text.
138
139
  */
139
140
  get textColor() {
140
- return brushToString(this.i.df);
141
+ return brushToString(this.i.di);
141
142
  }
142
143
  set textColor(v) {
143
- this.i.df = stringToBrush(v);
144
+ this.i.di = stringToBrush(v);
144
145
  }
145
146
  /**
146
147
  * Gets or sets the color to use for the text.
147
148
  */
148
149
  get highlightTextColor() {
149
- return brushToString(this.i.dc);
150
+ return brushToString(this.i.df);
150
151
  }
151
152
  set highlightTextColor(v) {
152
- this.i.dc = stringToBrush(v);
153
+ this.i.df = stringToBrush(v);
153
154
  }
154
155
  /**
155
156
  * Gets or sets the color to use for the text.
156
157
  */
157
158
  get hoverHighlightTextColor() {
158
- return brushToString(this.i.dd);
159
+ return brushToString(this.i.dg);
159
160
  }
160
161
  set hoverHighlightTextColor(v) {
161
- this.i.dd = stringToBrush(v);
162
+ this.i.dg = stringToBrush(v);
162
163
  }
163
164
  /**
164
165
  * Gets or sets the use for the button.
@@ -178,91 +179,91 @@ export let IgxXLabelComponent = /*@__PURE__*/ (() => {
178
179
  * Gets or sets the color to use for the hovered text of the button regardless of type.
179
180
  */
180
181
  get hoverTextColor() {
181
- return brushToString(this.i.de);
182
+ return brushToString(this.i.dh);
182
183
  }
183
184
  set hoverTextColor(v) {
184
- this.i.de = stringToBrush(v);
185
+ this.i.dh = stringToBrush(v);
185
186
  }
186
187
  /**
187
188
  * Gets or sets the id to use for the checkbox.
188
189
  */
189
190
  get id() {
190
- return this.i.bu;
191
+ return this.i.bv;
191
192
  }
192
193
  set id(v) {
193
- this.i.bu = v;
194
+ this.i.bv = v;
194
195
  }
195
196
  /**
196
197
  * Gets or sets the id to use for the checkbox.
197
198
  */
198
199
  get display() {
199
- return this.i.bi;
200
+ return this.i.bj;
200
201
  }
201
202
  set display(v) {
202
- this.i.bi = v;
203
+ this.i.bj = v;
203
204
  }
204
205
  /**
205
206
  * Gets or sets the id to use for the checkbox.
206
207
  */
207
208
  get flexDirection() {
208
- return this.i.bl;
209
+ return this.i.bm;
209
210
  }
210
211
  set flexDirection(v) {
211
- this.i.bl = v;
212
+ this.i.bm = v;
212
213
  }
213
214
  /**
214
215
  * Gets or sets the flex-grow setting for the button.
215
216
  */
216
217
  get flexGrow() {
217
- return this.i.bn;
218
+ return this.i.bo;
218
219
  }
219
220
  set flexGrow(v) {
220
- this.i.bn = v;
221
+ this.i.bo = v;
221
222
  }
222
223
  /**
223
224
  * Gets or sets the id to use for the checkbox.
224
225
  */
225
226
  get alignItems() {
226
- return this.i.ba;
227
+ return this.i.bb;
227
228
  }
228
229
  set alignItems(v) {
229
- this.i.ba = v;
230
+ this.i.bb = v;
230
231
  }
231
232
  /**
232
233
  * Gets or sets the id to use for the checkbox.
233
234
  */
234
235
  get alignSelf() {
235
- return this.i.bc;
236
+ return this.i.bd;
236
237
  }
237
238
  set alignSelf(v) {
238
- this.i.bc = v;
239
+ this.i.bd = v;
239
240
  }
240
241
  /**
241
242
  * Gets or sets TabIndex to use for the checkbox.
242
243
  */
243
244
  get tabIndex() {
244
- return this.i.as;
245
+ return this.i.at;
245
246
  }
246
247
  set tabIndex(v) {
247
- this.i.as = +v;
248
+ this.i.at = +v;
248
249
  }
249
250
  /**
250
251
  * Gets or sets the for attribute to use for the label.
251
252
  */
252
253
  get for() {
253
- return this.i.bp;
254
+ return this.i.bq;
254
255
  }
255
256
  set for(v) {
256
- this.i.bp = v;
257
+ this.i.bq = v;
257
258
  }
258
259
  /**
259
260
  * Gets or sets the value of the aria-label attribute.
260
261
  */
261
262
  get ariaLabel() {
262
- return this.i.be;
263
+ return this.i.bf;
263
264
  }
264
265
  set ariaLabel(v) {
265
- this.i.be = v;
266
+ this.i.bf = v;
266
267
  }
267
268
  /**
268
269
  * Gets or sets the text for the label.
@@ -277,19 +278,19 @@ export let IgxXLabelComponent = /*@__PURE__*/ (() => {
277
278
  * Gets or sets whether the label is hovered.
278
279
  */
279
280
  get isHover() {
280
- return this.i.am;
281
+ return this.i.an;
281
282
  }
282
283
  set isHover(v) {
283
- this.i.am = ensureBool(v);
284
+ this.i.an = ensureBool(v);
284
285
  }
285
286
  /**
286
287
  * Gets or sets the value for the label.
287
288
  */
288
289
  get value() {
289
- return this.i.aq;
290
+ return this.i.ar;
290
291
  }
291
292
  set value(v) {
292
- this.i.aq = ensureBool(v);
293
+ this.i.ar = ensureBool(v);
293
294
  }
294
295
  /**
295
296
  * Gets or sets whether the checkbox is disabled.
@@ -311,7 +312,7 @@ export let IgxXLabelComponent = /*@__PURE__*/ (() => {
311
312
 
312
313
  */
313
314
  exportVisualModel() {
314
- let iv = this.i.au();
315
+ let iv = this.i.av();
315
316
  return (iv);
316
317
  }
317
318
  /**
@@ -319,7 +320,7 @@ export let IgxXLabelComponent = /*@__PURE__*/ (() => {
319
320
 
320
321
  */
321
322
  exportSerializedVisualModel() {
322
- let iv = this.i.bk();
323
+ let iv = this.i.bl();
323
324
  return (iv);
324
325
  }
325
326
  }
@@ -24,10 +24,18 @@ export * from './lib/LostFocusEventArgs';
24
24
  export * from './lib/igx-lost-focus-event-args';
25
25
  export * from './lib/DateFormats';
26
26
  export * from './lib/DatePickerVisualModelExport';
27
+ export * from './lib/igx-color-editor-component';
28
+ export * from './lib/igx-color-editor-panel-component';
27
29
  export * from './lib/igx-x-checkbox-component';
30
+ export * from './lib/igx-color-editor-dynamic-module';
31
+ export * from './lib/igx-color-editor-module';
32
+ export * from './lib/igx-color-editor-panel-dynamic-module';
33
+ export * from './lib/igx-color-editor-panel-module';
28
34
  export * from './lib/igx-x-checkbox-dynamic-module';
29
35
  export * from './lib/igx-x-checkbox-module';
30
36
  export * from './lib/igx-x-ripple-component';
37
+ export * from './lib/igx-multi-slider-dynamic-module';
38
+ export * from './lib/igx-multi-slider-module';
31
39
  export * from './lib/igx-x-ripple-dynamic-module';
32
40
  export * from './lib/igx-x-ripple-module';
33
41
  export * from './lib/igx-x-button-component';
@@ -54,7 +62,10 @@ export * from './lib/igx-x-prefix-component';
54
62
  export * from './lib/igx-x-suffix-component';
55
63
  export * from './lib/NativeUIXInputsFactory';
56
64
  export * from './lib/XComponentBridge';
65
+ export * from './lib/MultiSliderBridge';
57
66
  export * from './lib/XButtonBridge';
67
+ export * from './lib/XButtonGroupBridge';
68
+ export * from './lib/ColorEditorBridge';
58
69
  export * from './lib/XCheckboxBridge';
59
70
  export * from './lib/XIconButtonBridge';
60
71
  export * from './lib/XInputBridge';
@@ -64,6 +75,10 @@ export * from './lib/KEYCODES';
64
75
  export * from './lib/MaskOptions';
65
76
  export * from './lib/Replaced';
66
77
  export * from './lib/MaskParsingService';
78
+ export * from './lib/ColorEditorPanelView';
79
+ export * from './lib/MultiSliderView';
80
+ export * from './lib/MultiSliderCursor';
81
+ export * from './lib/ColorEditorView';
67
82
  export * from './lib/InputGroupView';
68
83
  export * from './lib/ElevationHelper';
69
84
  export * from './lib/ButtonGroupView';
@@ -75,6 +90,46 @@ export * from './lib/IconView';
75
90
  export * from './lib/ButtonView';
76
91
  export * from './lib/RippleView';
77
92
  export * from './lib/CheckboxView';
93
+ export * from './lib/ColorEditor';
94
+ export * from './lib/ColorEditorGotFocusEventArgs';
95
+ export * from './lib/igx-color-editor-got-focus-event-args';
96
+ export * from './lib/ColorEditorLostFocusEventArgs';
97
+ export * from './lib/igx-color-editor-lost-focus-event-args';
98
+ export * from './lib/ColorEditorPanel';
99
+ export * from './lib/ColorEditorPanelClosedEventArgs';
100
+ export * from './lib/igx-color-editor-panel-closed-event-args';
101
+ export * from './lib/ColorEditorPanelSelectedValueChangedEventArgs';
102
+ export * from './lib/igx-color-editor-panel-selected-value-changed-event-args';
103
+ export * from './lib/ISliderTrackOwner';
104
+ export * from './lib/MultiSlider';
105
+ export * from './lib/igx-multi-slider-component';
106
+ export * from './lib/MultiSliderThumbValueChangingEventArgs';
107
+ export * from './lib/igx-multi-slider-thumb-value-changing-event-args';
108
+ export * from './lib/MultiSliderYValueChangingEventArgs';
109
+ export * from './lib/igx-multi-slider-y-value-changing-event-args';
110
+ export * from './lib/MultiSliderHitInfo';
111
+ export * from './lib/MultiSliderResolvingToolTipValueEventArgs';
112
+ export * from './lib/igx-multi-slider-resolving-tool-tip-value-event-args';
113
+ export * from './lib/igx-multi-slider-thumb-collection';
114
+ export * from './lib/MultiSliderThumbCollection';
115
+ export * from './lib/IMultiSliderTrackBarVisual';
116
+ export * from './lib/DefaultMultiSliderTrackBarVisual';
117
+ export * from './lib/IMultiSliderTrackRangeVisual';
118
+ export * from './lib/DefaultMultiSliderTrackRangeVisual';
119
+ export * from './lib/IMultiSliderTrackShadeVisual';
120
+ export * from './lib/MultiSliderTrackShadeOrientation';
121
+ export * from './lib/DefaultMultiTrackShadeVisual';
122
+ export * from './lib/MultiSliderThumb';
123
+ export * from './lib/igx-multi-slider-thumb';
124
+ export * from './lib/MultiSliderThumbRangePosition';
125
+ export * from './lib/IMultiSliderTrackThumbCalloutVisual';
126
+ export * from './lib/DefaultMultiSliderTrackThumbCalloutVisual';
127
+ export * from './lib/MultiSliderTrackThumbRange';
128
+ export * from './lib/igx-multi-slider-track-thumb-range';
129
+ export * from './lib/IMultiSliderTrackThumbVisual';
130
+ export * from './lib/DefaultMultiSliderTrackThumbVisual';
131
+ export * from './lib/MultiSliderOrientation';
132
+ export * from './lib/MultiSliderVisualArea';
78
133
  export * from './lib/XSuffix';
79
134
  export * from './lib/SuffixShiftType';
80
135
  export * from './lib/XPrefix';
@@ -488,10 +488,10 @@ var XButtonGroup = /** @class */ /*@__PURE__*/ (function (_super) {
488
488
  this.d = this.c(this.d, a, b);
489
489
  }
490
490
  this.df();
491
+ this.u = false;
491
492
  if (this.selectionChanged != null) {
492
493
  this.selectionChanged(this, new ButtonGroupSelectionChangedEventArgs());
493
494
  }
494
- this.u = false;
495
495
  };
496
496
  XButtonGroup.prototype.c = function (a, b, c) {
497
497
  var d = new Array(Math.max(0, this.a.length + 1));
@@ -615,7 +615,7 @@ var XButtonGroup = /** @class */ /*@__PURE__*/ (function (_super) {
615
615
  }
616
616
  };
617
617
  XButtonGroup.prototype.dl = function (a, b) {
618
- return new CornerRadius(1, !isNaN_(a.c) ? a.c : b.c, !isNaN_(a.d) ? a.d : b.d, !isNaN_(a.b) ? a.b : b.b, !isNaN_(a.a) ? a.a : b.a);
618
+ return new CornerRadius(1, !isNaN_(a.d) ? a.d : b.d, !isNaN_(a.e) ? a.e : b.e, !isNaN_(a.c) ? a.c : b.c, !isNaN_(a.b) ? a.b : b.b);
619
619
  };
620
620
  XButtonGroup.prototype.dg = function () {
621
621
  switch (this.i) {
@@ -671,23 +671,23 @@ var XButtonGroup = /** @class */ /*@__PURE__*/ (function (_super) {
671
671
  if (this.v) {
672
672
  b.disabled = this.disabled;
673
673
  }
674
- b.nt = this.e0;
674
+ b.nv = this.e0;
675
675
  b.bg = this.ak;
676
- b.ph = this.e2;
677
- b.pg = this.e1;
678
- b.pi = this.e3;
676
+ b.pj = this.e2;
677
+ b.pi = this.e1;
678
+ b.pk = this.e3;
679
679
  this.view.x(b);
680
680
  if (this.aa(b)) {
681
- b.ns = this.e7;
682
- b.q7 = this.fa;
683
- b.p7 = this.e8;
684
- b.p8 = this.e9;
681
+ b.nu = this.e7;
682
+ b.q9 = this.fa;
683
+ b.p9 = this.e8;
684
+ b.qa = this.e9;
685
685
  }
686
686
  else {
687
- b.ns = this.ez;
688
- b.q7 = this.e6;
689
- b.p7 = this.e4;
690
- b.p8 = this.e5;
687
+ b.nu = this.ez;
688
+ b.q9 = this.e6;
689
+ b.p9 = this.e4;
690
+ b.qa = this.e5;
691
691
  }
692
692
  }
693
693
  };
@@ -701,22 +701,22 @@ var XButtonGroup = /** @class */ /*@__PURE__*/ (function (_super) {
701
701
  return false;
702
702
  };
703
703
  XButtonGroup.prototype.dk = function (a) {
704
- a.kt = new CornerRadius(1, 0, 0, 0, 0);
704
+ a.ku = new CornerRadius(1, 0, 0, 0, 0);
705
705
  };
706
706
  XButtonGroup.prototype.dj = function (a) {
707
707
  if (this.k == 1) {
708
- a.kt = new CornerRadius(1, 0, 0, this.al, this.al);
708
+ a.ku = new CornerRadius(1, 0, 0, this.al, this.al);
709
709
  }
710
710
  else {
711
- a.kt = new CornerRadius(1, 0, this.al, this.al, 0);
711
+ a.ku = new CornerRadius(1, 0, this.al, this.al, 0);
712
712
  }
713
713
  };
714
714
  XButtonGroup.prototype.di = function (a) {
715
715
  if (this.k == 1) {
716
- a.kt = new CornerRadius(1, this.al, this.al, 0, 0);
716
+ a.ku = new CornerRadius(1, this.al, this.al, 0, 0);
717
717
  }
718
718
  else {
719
- a.kt = new CornerRadius(1, this.al, 0, 0, this.al);
719
+ a.ku = new CornerRadius(1, this.al, 0, 0, this.al);
720
720
  }
721
721
  };
722
722
  XButtonGroup.prototype.dh = function (a) {