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
@@ -92,10 +92,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
92
92
  * Gets the fill color currently used by the icon.
93
93
  */
94
94
  get: function () {
95
- return brushToString(this.i.cw);
95
+ return brushToString(this.i.cz);
96
96
  },
97
97
  set: function (v) {
98
- this.i.cw = stringToBrush(v);
98
+ this.i.cz = stringToBrush(v);
99
99
  },
100
100
  enumerable: false,
101
101
  configurable: true
@@ -105,10 +105,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
105
105
  * Gets the stroke color currently used by the icon.
106
106
  */
107
107
  get: function () {
108
- return brushToString(this.i.cx);
108
+ return brushToString(this.i.c0);
109
109
  },
110
110
  set: function (v) {
111
- this.i.cx = stringToBrush(v);
111
+ this.i.c0 = stringToBrush(v);
112
112
  },
113
113
  enumerable: false,
114
114
  configurable: true
@@ -118,10 +118,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
118
118
  * Gets the text color currently used by the icon.
119
119
  */
120
120
  get: function () {
121
- return brushToString(this.i.cy);
121
+ return brushToString(this.i.c1);
122
122
  },
123
123
  set: function (v) {
124
- this.i.cy = stringToBrush(v);
124
+ this.i.c1 = stringToBrush(v);
125
125
  },
126
126
  enumerable: false,
127
127
  configurable: true
@@ -131,10 +131,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
131
131
  * Gets the stroke width currently used by the icon.
132
132
  */
133
133
  get: function () {
134
- return this.i.af;
134
+ return this.i.ag;
135
135
  },
136
136
  set: function (v) {
137
- this.i.af = +v;
137
+ this.i.ag = +v;
138
138
  },
139
139
  enumerable: false,
140
140
  configurable: true
@@ -157,10 +157,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
157
157
  * Gets or sets the stroke color to use for the icon.
158
158
  */
159
159
  get: function () {
160
- return brushToString(this.i.dc);
160
+ return brushToString(this.i.df);
161
161
  },
162
162
  set: function (v) {
163
- this.i.dc = stringToBrush(v);
163
+ this.i.df = stringToBrush(v);
164
164
  },
165
165
  enumerable: false,
166
166
  configurable: true
@@ -170,10 +170,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
170
170
  * Gets or sets the stroke thickness to use for the icon.
171
171
  */
172
172
  get: function () {
173
- return this.i.al;
173
+ return this.i.am;
174
174
  },
175
175
  set: function (v) {
176
- this.i.al = +v;
176
+ this.i.am = +v;
177
177
  },
178
178
  enumerable: false,
179
179
  configurable: true
@@ -183,10 +183,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
183
183
  * Gets or sets the text color to use for the icon.
184
184
  */
185
185
  get: function () {
186
- return brushToString(this.i.dd);
186
+ return brushToString(this.i.dg);
187
187
  },
188
188
  set: function (v) {
189
- this.i.dd = stringToBrush(v);
189
+ this.i.dg = stringToBrush(v);
190
190
  },
191
191
  enumerable: false,
192
192
  configurable: true
@@ -196,10 +196,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
196
196
  * Gets or sets the fill color to use when the icon is hovered.
197
197
  */
198
198
  get: function () {
199
- return brushToString(this.i.c5);
199
+ return brushToString(this.i.c8);
200
200
  },
201
201
  set: function (v) {
202
- this.i.c5 = stringToBrush(v);
202
+ this.i.c8 = stringToBrush(v);
203
203
  },
204
204
  enumerable: false,
205
205
  configurable: true
@@ -209,10 +209,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
209
209
  * Gets or sets the stroke color to use when the icon is hovered.
210
210
  */
211
211
  get: function () {
212
- return brushToString(this.i.c6);
212
+ return brushToString(this.i.c9);
213
213
  },
214
214
  set: function (v) {
215
- this.i.c6 = stringToBrush(v);
215
+ this.i.c9 = stringToBrush(v);
216
216
  },
217
217
  enumerable: false,
218
218
  configurable: true
@@ -222,10 +222,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
222
222
  * Gets or sets the stroke thickness to use when the icon is hovered.
223
223
  */
224
224
  get: function () {
225
- return this.i.aj;
225
+ return this.i.ak;
226
226
  },
227
227
  set: function (v) {
228
- this.i.aj = +v;
228
+ this.i.ak = +v;
229
229
  },
230
230
  enumerable: false,
231
231
  configurable: true
@@ -235,10 +235,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
235
235
  * Gets or sets the text color to use when the icon is hovered.
236
236
  */
237
237
  get: function () {
238
- return brushToString(this.i.c7);
238
+ return brushToString(this.i.da);
239
239
  },
240
240
  set: function (v) {
241
- this.i.c7 = stringToBrush(v);
241
+ this.i.da = stringToBrush(v);
242
242
  },
243
243
  enumerable: false,
244
244
  configurable: true
@@ -284,10 +284,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
284
284
  * class.
285
285
  */
286
286
  get: function () {
287
- return brushToString(this.i.c8);
287
+ return brushToString(this.i.db);
288
288
  },
289
289
  set: function (v) {
290
- this.i.c8 = stringToBrush(v);
290
+ this.i.db = stringToBrush(v);
291
291
  },
292
292
  enumerable: false,
293
293
  configurable: true
@@ -301,10 +301,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
301
301
  * class.
302
302
  */
303
303
  get: function () {
304
- return brushToString(this.i.c9);
304
+ return brushToString(this.i.dc);
305
305
  },
306
306
  set: function (v) {
307
- this.i.c9 = stringToBrush(v);
307
+ this.i.dc = stringToBrush(v);
308
308
  },
309
309
  enumerable: false,
310
310
  configurable: true
@@ -318,10 +318,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
318
318
  * class.
319
319
  */
320
320
  get: function () {
321
- return brushToString(this.i.da);
321
+ return brushToString(this.i.dd);
322
322
  },
323
323
  set: function (v) {
324
- this.i.da = stringToBrush(v);
324
+ this.i.dd = stringToBrush(v);
325
325
  },
326
326
  enumerable: false,
327
327
  configurable: true
@@ -335,10 +335,23 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
335
335
  * class.
336
336
  */
337
337
  get: function () {
338
- return brushToString(this.i.db);
338
+ return brushToString(this.i.de);
339
339
  },
340
340
  set: function (v) {
341
- this.i.db = stringToBrush(v);
341
+ this.i.de = stringToBrush(v);
342
+ },
343
+ enumerable: false,
344
+ configurable: true
345
+ });
346
+ Object.defineProperty(IgxXIconComponent.prototype, "source", {
347
+ /**
348
+ * Gets or sets the image source for the icon. Used if none of the other icon types are not used.
349
+ */
350
+ get: function () {
351
+ return this.i.ax;
352
+ },
353
+ set: function (v) {
354
+ this.i.ax = v;
342
355
  },
343
356
  enumerable: false,
344
357
  configurable: true
@@ -348,10 +361,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
348
361
  * Gets or sets data url for the icon to use.
349
362
  */
350
363
  get: function () {
351
- return this.i.a7;
364
+ return this.i.ba;
352
365
  },
353
366
  set: function (v) {
354
- this.i.a7 = v;
367
+ this.i.ba = v;
355
368
  },
356
369
  enumerable: false,
357
370
  configurable: true
@@ -422,10 +435,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
422
435
  * Gets or sets the id to use for the checkbox.
423
436
  */
424
437
  get: function () {
425
- return this.i.bh;
438
+ return this.i.bk;
426
439
  },
427
440
  set: function (v) {
428
- this.i.bh = v;
441
+ this.i.bk = v;
429
442
  },
430
443
  enumerable: false,
431
444
  configurable: true
@@ -435,10 +448,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
435
448
  * Gets or sets TabIndex to use for the checkbox.
436
449
  */
437
450
  get: function () {
438
- return this.i.as;
451
+ return this.i.at;
439
452
  },
440
453
  set: function (v) {
441
- this.i.as = +v;
454
+ this.i.at = +v;
442
455
  },
443
456
  enumerable: false,
444
457
  configurable: true
@@ -448,10 +461,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
448
461
  * Gets or sets the value of the aria-label attribute.
449
462
  */
450
463
  get: function () {
451
- return this.i.a4;
464
+ return this.i.a7;
452
465
  },
453
466
  set: function (v) {
454
- this.i.a4 = v;
467
+ this.i.a7 = v;
455
468
  },
456
469
  enumerable: false,
457
470
  configurable: true
@@ -484,10 +497,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
484
497
  });
485
498
  Object.defineProperty(IgxXIconComponent.prototype, "opacity", {
486
499
  get: function () {
487
- return this.i.ak;
500
+ return this.i.al;
488
501
  },
489
502
  set: function (v) {
490
- this.i.ak = +v;
503
+ this.i.al = +v;
491
504
  },
492
505
  enumerable: false,
493
506
  configurable: true
@@ -497,10 +510,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
497
510
  * Gets or sets the viewbox left for the svg icon.
498
511
  */
499
512
  get: function () {
500
- return this.i.an;
513
+ return this.i.ao;
501
514
  },
502
515
  set: function (v) {
503
- this.i.an = +v;
516
+ this.i.ao = +v;
504
517
  },
505
518
  enumerable: false,
506
519
  configurable: true
@@ -510,10 +523,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
510
523
  * Gets or sets the viewbox top for the svg icon.
511
524
  */
512
525
  get: function () {
513
- return this.i.ao;
526
+ return this.i.ap;
514
527
  },
515
528
  set: function (v) {
516
- this.i.ao = +v;
529
+ this.i.ap = +v;
517
530
  },
518
531
  enumerable: false,
519
532
  configurable: true
@@ -523,10 +536,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
523
536
  * Gets or sets the viewbox width for the svg icon.
524
537
  */
525
538
  get: function () {
526
- return this.i.ap;
539
+ return this.i.aq;
527
540
  },
528
541
  set: function (v) {
529
- this.i.ap = +v;
542
+ this.i.aq = +v;
530
543
  },
531
544
  enumerable: false,
532
545
  configurable: true
@@ -536,10 +549,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
536
549
  * Gets or sets the viewbox height for the svg icon.
537
550
  */
538
551
  get: function () {
539
- return this.i.am;
552
+ return this.i.an;
540
553
  },
541
554
  set: function (v) {
542
- this.i.am = +v;
555
+ this.i.an = +v;
543
556
  },
544
557
  enumerable: false,
545
558
  configurable: true
@@ -549,10 +562,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
549
562
  * Gets or sets the width of the icon.
550
563
  */
551
564
  get: function () {
552
- return this.i.aq;
565
+ return this.i.ar;
553
566
  },
554
567
  set: function (v) {
555
- this.i.aq = +v;
568
+ this.i.ar = +v;
556
569
  },
557
570
  enumerable: false,
558
571
  configurable: true
@@ -562,10 +575,10 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
562
575
  * Gets or sets the height of the icon.
563
576
  */
564
577
  get: function () {
565
- return this.i.ai;
578
+ return this.i.aj;
566
579
  },
567
580
  set: function (v) {
568
- this.i.ai = +v;
581
+ this.i.aj = +v;
569
582
  },
570
583
  enumerable: false,
571
584
  configurable: true
@@ -646,7 +659,7 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
646
659
 
647
660
  */
648
661
  IgxXIconComponent.prototype.exportVisualModel = function () {
649
- var iv = this.i.au();
662
+ var iv = this.i.aw();
650
663
  return (iv);
651
664
  };
652
665
  /**
@@ -654,7 +667,7 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
654
667
 
655
668
  */
656
669
  IgxXIconComponent.prototype.exportSerializedVisualModel = function () {
657
- var iv = this.i.a9();
670
+ var iv = this.i.bc();
658
671
  return (iv);
659
672
  };
660
673
  IgxXIconComponent.prototype._runInZone = function (act) {
@@ -666,7 +679,7 @@ var IgxXIconComponent = /** @class */ /*@__PURE__*/ (function () {
666
679
  }
667
680
  };
668
681
  IgxXIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxXIconComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.NgZone }, { token: i0.Injector }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.Component });
669
- IgxXIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: IgxXIconComponent, selector: "igx-x-icon", inputs: { baseTheme: "baseTheme", actualFill: "actualFill", actualStroke: "actualStroke", actualTextColor: "actualTextColor", actualStrokeWidth: "actualStrokeWidth", fill: "fill", stroke: "stroke", strokeWidth: "strokeWidth", textColor: "textColor", hoverFill: "hoverFill", hoverStroke: "hoverStroke", hoverStrokeThickness: "hoverStrokeThickness", hoverTextColor: "hoverTextColor", fillColors: "fillColors", strokeColors: "strokeColors", primaryFillColor: "primaryFillColor", primaryStrokeColor: "primaryStrokeColor", secondaryFillColor: "secondaryFillColor", secondaryStrokeColor: "secondaryStrokeColor", dataURL: "dataURL", svgPath: "svgPath", svg: "svg", sVGPaths: "sVGPaths", textStyle: "textStyle", id: "id", tabIndex: ["tabindex", "tabIndex"], ariaLabel: ["aria-label", "ariaLabel"], isHover: "isHover", disabled: "disabled", opacity: "opacity", viewBoxLeft: "viewBoxLeft", viewBoxTop: "viewBoxTop", viewBoxWidth: "viewBoxWidth", viewBoxHeight: "viewBoxHeight", width: "width", height: "height" }, host: { properties: { "attr.id": "this.id" }, classAttribute: "ig-x-icon igx-x-icon" }, providers: [], viewQueries: [{ propertyName: "_dynamicContent", first: true, predicate: ["dynamicContent"], descendants: true, read: ViewContainerRef, static: true }, { propertyName: "_childTemplateRef", first: true, predicate: ["childContent"], descendants: true, read: TemplateRef }], ngImport: i0, template: "<ng-template #childContent><ng-content></ng-content></ng-template>\n<ng-container #dynamicContent></ng-container>", isInline: true, styles: ["\n\t\t:host {\n\t\t\tdisplay: inline-block; \n vertical-align: middle; \n\t\t}\n\t"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
682
+ IgxXIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: IgxXIconComponent, selector: "igx-x-icon", inputs: { baseTheme: "baseTheme", actualFill: "actualFill", actualStroke: "actualStroke", actualTextColor: "actualTextColor", actualStrokeWidth: "actualStrokeWidth", fill: "fill", stroke: "stroke", strokeWidth: "strokeWidth", textColor: "textColor", hoverFill: "hoverFill", hoverStroke: "hoverStroke", hoverStrokeThickness: "hoverStrokeThickness", hoverTextColor: "hoverTextColor", fillColors: "fillColors", strokeColors: "strokeColors", primaryFillColor: "primaryFillColor", primaryStrokeColor: "primaryStrokeColor", secondaryFillColor: "secondaryFillColor", secondaryStrokeColor: "secondaryStrokeColor", source: "source", dataURL: "dataURL", svgPath: "svgPath", svg: "svg", sVGPaths: "sVGPaths", textStyle: "textStyle", id: "id", tabIndex: ["tabindex", "tabIndex"], ariaLabel: ["aria-label", "ariaLabel"], isHover: "isHover", disabled: "disabled", opacity: "opacity", viewBoxLeft: "viewBoxLeft", viewBoxTop: "viewBoxTop", viewBoxWidth: "viewBoxWidth", viewBoxHeight: "viewBoxHeight", width: "width", height: "height" }, host: { properties: { "attr.id": "this.id" }, classAttribute: "ig-x-icon igx-x-icon" }, providers: [], viewQueries: [{ propertyName: "_dynamicContent", first: true, predicate: ["dynamicContent"], descendants: true, read: ViewContainerRef, static: true }, { propertyName: "_childTemplateRef", first: true, predicate: ["childContent"], descendants: true, read: TemplateRef }], ngImport: i0, template: "<ng-template #childContent><ng-content></ng-content></ng-template>\n<ng-container #dynamicContent></ng-container>", isInline: true, styles: ["\n\t\t:host {\n\t\t\tdisplay: inline-block; \n vertical-align: middle; \n\t\t}\n\t"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
670
683
  return IgxXIconComponent;
671
684
  }());
672
685
  export { IgxXIconComponent };
@@ -724,6 +737,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImpo
724
737
  type: Input
725
738
  }], secondaryStrokeColor: [{
726
739
  type: Input
740
+ }], source: [{
741
+ type: Input
727
742
  }], dataURL: [{
728
743
  type: Input
729
744
  }], svgPath: [{