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
@@ -149,14 +149,14 @@ var IconView = /** @class */ /*@__PURE__*/ (function (_super) {
149
149
  d.setStyleProperty("width", "100%");
150
150
  d.setStyleProperty("object-fit", "contain");
151
151
  this.x = d;
152
- this.aw();
152
+ this.ax();
153
153
  this.w = a.createElementNS("defs", "http://www.w3.org/2000/svg");
154
154
  this.y.append(this.w);
155
155
  this.v.append(this.y);
156
156
  this.o.add(c.listen("click", runOn(this, this.ah)));
157
- this.d.cc();
157
+ this.d.cf();
158
158
  };
159
- IconView.prototype.at = function (a) {
159
+ IconView.prototype.au = function (a) {
160
160
  this.n.clear();
161
161
  this.v.rootWrapper.removeChildren();
162
162
  this.v.rootWrapper.append(this.y);
@@ -171,7 +171,7 @@ var IconView = /** @class */ /*@__PURE__*/ (function (_super) {
171
171
  this.p.add(b);
172
172
  }
173
173
  };
174
- IconView.prototype.au = function (a) {
174
+ IconView.prototype.av = function (a) {
175
175
  this.n.clear();
176
176
  this.v.rootWrapper.removeChildren();
177
177
  this.v.rootWrapper.append(this.y);
@@ -188,7 +188,7 @@ var IconView = /** @class */ /*@__PURE__*/ (function (_super) {
188
188
  }
189
189
  }
190
190
  };
191
- IconView.prototype.as = function (a) {
191
+ IconView.prototype.at = function (a) {
192
192
  this.v.rootWrapper.removeChildren();
193
193
  if (a != null) {
194
194
  var b = this.v.rootWrapper.getNativeElement();
@@ -203,18 +203,23 @@ var IconView = /** @class */ /*@__PURE__*/ (function (_super) {
203
203
  this.x.setAttribute("src", a);
204
204
  }
205
205
  };
206
+ IconView.prototype.as = function (a) {
207
+ if (typeof a === 'string') {
208
+ this.ap(typeCast(String_$type, a));
209
+ }
210
+ };
206
211
  IconView.prototype.k = function () {
207
212
  return this.d.svgPath != null || this.d.svg != null || this.d.b != null;
208
213
  };
209
214
  IconView.prototype.ar = function () {
210
- this.v.rootWrapper.setStyleProperty("width", isNaN_(this.d.aq) ? "1.5rem" : this.d.aq + "px");
211
- this.v.rootWrapper.setStyleProperty("height", isNaN_(this.d.ai) ? "1.5rem" : this.d.ai + "px");
215
+ this.v.rootWrapper.setStyleProperty("width", isNaN_(this.d.ar) ? "1.5rem" : this.d.ar + "px");
216
+ this.v.rootWrapper.setStyleProperty("height", isNaN_(this.d.aj) ? "1.5rem" : this.d.aj + "px");
212
217
  };
213
- IconView.prototype.aw = function () {
214
- var a = isNaN_(this.d.an) ? 0 : this.d.an;
215
- var b = isNaN_(this.d.ao) ? 0 : this.d.ao;
216
- var c = isNaN_(this.d.ap) ? 24 : this.d.ap;
217
- var d = isNaN_(this.d.am) ? 24 : this.d.am;
218
+ IconView.prototype.ax = function () {
219
+ var a = isNaN_(this.d.ao) ? 0 : this.d.ao;
220
+ var b = isNaN_(this.d.ap) ? 0 : this.d.ap;
221
+ var c = isNaN_(this.d.aq) ? 24 : this.d.aq;
222
+ var d = isNaN_(this.d.an) ? 24 : this.d.an;
218
223
  this.y.setAttribute("viewBox", a + " " + b + " " + c + " " + d);
219
224
  };
220
225
  IconView.prototype.am = function (a, b) {
@@ -272,10 +277,10 @@ var IconView = /** @class */ /*@__PURE__*/ (function (_super) {
272
277
  }
273
278
  };
274
279
  IconView.prototype.ad = function (a) {
275
- this.d.b9();
280
+ this.d.cc();
276
281
  };
277
282
  IconView.prototype.ae = function (a) {
278
- this.d.ca();
283
+ this.d.cd();
279
284
  };
280
285
  IconView.prototype.ag = function () {
281
286
  this.j = true;
@@ -306,7 +311,7 @@ var IconView = /** @class */ /*@__PURE__*/ (function (_super) {
306
311
  }
307
312
  this.o.clear();
308
313
  };
309
- IconView.prototype.av = function (a) {
314
+ IconView.prototype.aw = function (a) {
310
315
  if (a != null) {
311
316
  this.v.rootWrapper.setStyleProperty("font", a.fontString);
312
317
  }
@@ -321,7 +326,10 @@ var IconView = /** @class */ /*@__PURE__*/ (function (_super) {
321
326
  return c;
322
327
  };
323
328
  IconView.prototype.ah = function (a) {
324
- this.d.b7();
329
+ if (this.d.v()) {
330
+ a.stopPropagation();
331
+ a.preventDefault();
332
+ }
325
333
  };
326
334
  IconView.prototype.a = function () {
327
335
  var a = new List$1(PrimitiveVisualData.$, 0);
@@ -430,42 +438,43 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
430
438
  var _this = _super.call(this) || this;
431
439
  _this._view = null;
432
440
  _this.j = 0;
433
- _this.cj = XIcon.cz;
434
- _this.ck = XIcon.c3;
435
- _this.cl = XIcon.c4;
436
- _this.v = XIcon.ah;
437
- _this.cm = XIcon.cz;
438
- _this.cu = XIcon.c3;
439
- _this.z = XIcon.ah;
440
- _this.cv = XIcon.c4;
441
- _this.cn = XIcon.c0;
442
- _this.co = XIcon.c1;
443
- _this.x = XIcon.ag;
444
- _this.cp = null;
441
+ _this.cm = XIcon.c2;
442
+ _this.cn = XIcon.c6;
443
+ _this.co = XIcon.c7;
444
+ _this.w = XIcon.ai;
445
+ _this.cp = XIcon.c2;
446
+ _this.cx = XIcon.c6;
447
+ _this.aa = XIcon.ai;
448
+ _this.cy = XIcon.c7;
449
+ _this.cq = XIcon.c3;
450
+ _this.cr = XIcon.c4;
451
+ _this.y = XIcon.ah;
452
+ _this.cs = null;
445
453
  _this.c = null;
446
454
  _this.d = null;
447
- _this.cq = null;
448
- _this.cr = null;
449
- _this.cs = null;
450
455
  _this.ct = null;
451
- _this.aw = null;
456
+ _this.cu = null;
457
+ _this.cv = null;
458
+ _this.cw = null;
459
+ _this.av = null;
452
460
  _this.az = null;
453
- _this.ay = null;
461
+ _this.a2 = null;
462
+ _this.a1 = null;
454
463
  _this.a = null;
455
464
  _this.l = null;
456
- _this.ax = "ig-icon-" + XIcon.at++;
457
- _this.ar = 0;
465
+ _this.a0 = "ig-icon-" + XIcon.au++;
466
+ _this.as = 0;
458
467
  _this.n = false;
459
- _this.av = null;
468
+ _this.ay = null;
460
469
  _this.p = false;
461
470
  _this.o = false;
462
- _this.y = 1;
463
- _this.ab = NaN;
471
+ _this.z = 1;
464
472
  _this.ac = NaN;
465
473
  _this.ad = NaN;
466
- _this.aa = NaN;
467
474
  _this.ae = NaN;
468
- _this.w = NaN;
475
+ _this.ab = NaN;
476
+ _this.af = NaN;
477
+ _this.x = NaN;
469
478
  _this.clicked = null;
470
479
  _this.propertyChanged = null;
471
480
  var a = new IconView();
@@ -487,13 +496,13 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
487
496
  XIcon.prototype.destroy = function () {
488
497
  this.provideContainer(null);
489
498
  };
490
- XIcon.prototype.cb = function (a, b, c) {
499
+ XIcon.prototype.ce = function (a, b, c) {
491
500
  if (this.propertyChanged != null) {
492
501
  this.propertyChanged(this, new PropertyChangedEventArgs(a));
493
502
  }
494
- this.ce(a, b, c);
503
+ this.ch(a, b, c);
495
504
  };
496
- XIcon.prototype.ce = function (a, b, c) {
505
+ XIcon.prototype.ch = function (a, b, c) {
497
506
  switch (a) {
498
507
  case "Fill":
499
508
  case "Stroke":
@@ -502,44 +511,50 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
502
511
  case "HoverStroke":
503
512
  case "HoverStrokeThickness":
504
513
  case "IsHover":
505
- this.ci();
514
+ this.cl();
506
515
  break;
507
516
  case "FillColors":
508
517
  case "StrokeColors":
509
518
  case "ActualFill":
510
519
  case "ActualStroke":
511
520
  case "ActualStrokeWidth":
512
- this.cg();
521
+ this.cj();
513
522
  break;
514
523
  case "SVG":
515
- this.az = null;
524
+ this.a2 = null;
516
525
  this.a = null;
517
- this.cg();
526
+ this.cj();
518
527
  break;
519
528
  case "SVGPath":
520
- this.ay = null;
529
+ this.a1 = null;
521
530
  this.a = null;
522
- this.cg();
531
+ this.cj();
523
532
  break;
524
533
  case "SVGPaths":
525
- this.ay = null;
526
- this.az = null;
527
- this.cg();
534
+ this.a1 = null;
535
+ this.a2 = null;
536
+ this.cj();
528
537
  break;
529
538
  case "DataURL":
530
- this.ay = null;
531
- this.az = null;
539
+ this.a1 = null;
540
+ this.a2 = null;
532
541
  this.a = null;
533
- this.cg();
542
+ this.cj();
543
+ break;
544
+ case "Source":
545
+ this.a1 = null;
546
+ this.a2 = null;
547
+ this.a = null;
548
+ this.cj();
534
549
  break;
535
550
  case "Opacity":
536
- this.ch();
551
+ this.ck();
537
552
  break;
538
553
  case "ViewBoxLeft":
539
554
  case "ViewBoxTop":
540
555
  case "ViewBoxWidth":
541
556
  case "ViewBoxHeight":
542
- this.view.aw();
557
+ this.view.ax();
543
558
  break;
544
559
  case "Width":
545
560
  case "Height":
@@ -547,22 +562,22 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
547
562
  break;
548
563
  }
549
564
  };
550
- XIcon.prototype.ci = function () {
551
- var a = this.fill != null ? this.fill : XIcon.cz;
552
- var b = this.dc != null ? this.dc : XIcon.c3;
553
- var c = !isNaN_(this.al) ? this.al : XIcon.ah;
554
- var d = this.dd != null ? this.dd : XIcon.c4;
565
+ XIcon.prototype.cl = function () {
566
+ var a = this.fill != null ? this.fill : XIcon.c2;
567
+ var b = this.df != null ? this.df : XIcon.c6;
568
+ var c = !isNaN_(this.am) ? this.am : XIcon.ai;
569
+ var d = this.dg != null ? this.dg : XIcon.c7;
555
570
  if (this.t) {
556
- this.cw = this.c5 != null ? this.c5 : a;
557
- this.cx = this.c6 != null ? this.c6 : b;
558
- this.af = !isNaN_(this.aj) ? this.aj : c;
559
- this.cy = this.c7 != null ? this.c7 : d;
571
+ this.cz = this.c8 != null ? this.c8 : a;
572
+ this.c0 = this.c9 != null ? this.c9 : b;
573
+ this.ag = !isNaN_(this.ak) ? this.ak : c;
574
+ this.c1 = this.da != null ? this.da : d;
560
575
  }
561
576
  else {
562
- this.cw = a;
563
- this.cx = b;
564
- this.af = c;
565
- this.cy = d;
577
+ this.cz = a;
578
+ this.c0 = b;
579
+ this.ag = c;
580
+ this.c1 = d;
566
581
  }
567
582
  };
568
583
  Object.defineProperty(XIcon.prototype, "r", {
@@ -572,49 +587,49 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
572
587
  enumerable: false,
573
588
  configurable: true
574
589
  });
575
- XIcon.prototype.ch = function () {
576
- NativeUI.y(this.view.z, this.ak);
590
+ XIcon.prototype.ck = function () {
591
+ NativeUI.y(this.view.z, this.al);
577
592
  };
578
- XIcon.prototype.cg = function () {
593
+ XIcon.prototype.cj = function () {
579
594
  var a = this.view.z;
580
595
  if (this.r) {
581
596
  var b = this.view.aa;
582
- NativeUI.r(b, this.cw);
583
- NativeUI.aa(b, this.cx);
584
- NativeUI.ad(b, this.af);
597
+ NativeUI.r(b, this.cz);
598
+ NativeUI.aa(b, this.c0);
599
+ NativeUI.ad(b, this.ag);
585
600
  }
586
601
  else {
587
602
  var c = false;
588
603
  if (this.svgPath != null) {
589
604
  if (stringStartsWith(trimStart(this.svgPath, ' ', '\n', '\r', '\t'), "<svg")) {
590
- this.view.as(this.svgPath);
605
+ this.view.at(this.svgPath);
591
606
  c = true;
592
607
  }
593
608
  else {
594
- this.view.at(this.svgPath);
609
+ this.view.au(this.svgPath);
595
610
  }
596
611
  }
597
612
  else if (this.b != null) {
598
- this.view.au(this.b);
613
+ this.view.av(this.b);
599
614
  var d = this.view.c;
600
615
  if (d != null && d.length > 0) {
601
616
  var e = NativeUI.r;
602
617
  var f = NativeUI.aa;
603
- this.cd();
618
+ this.cg();
604
619
  e = runOn(this.view, this.view.an);
605
620
  f = runOn(this.view, this.view.ao);
606
621
  for (var g = 0; g < d.length; g++) {
607
- if (this.cw != null) {
608
- e(d[g], this.cw);
622
+ if (this.cz != null) {
623
+ e(d[g], this.cz);
609
624
  }
610
- if (this.cx != null) {
611
- f(d[g], this.cx);
625
+ if (this.c0 != null) {
626
+ f(d[g], this.c0);
612
627
  }
613
- if (!isNaN_(this.af)) {
614
- NativeUI.ad(d[g], this.af);
628
+ if (!isNaN_(this.ag)) {
629
+ NativeUI.ad(d[g], this.ag);
615
630
  }
616
- if (this.cy != null) {
617
- NativeUI.q(d[g], this.cy);
631
+ if (this.c1 != null) {
632
+ NativeUI.q(d[g], this.c1);
618
633
  }
619
634
  if (this.e != null && this.e.count == d.length) {
620
635
  e(d[g], this.e.item(g));
@@ -625,33 +640,36 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
625
640
  }
626
641
  }
627
642
  if (this.m != null) {
628
- this.view.av(this.m);
643
+ this.view.aw(this.m);
629
644
  }
630
645
  return;
631
646
  }
632
647
  else if (this.svg != null) {
633
- this.view.as(this.svg);
648
+ this.view.at(this.svg);
634
649
  c = true;
635
650
  }
636
- else if (this.a7 != null) {
637
- this.view.ap(this.a7);
651
+ else if (this.ba != null) {
652
+ this.view.ap(this.ba);
653
+ }
654
+ else if (this.ax != null) {
655
+ this.view.as(this.ax);
638
656
  }
639
657
  if (c) {
640
658
  for (var h = 0; h < this.view.r.count; h++) {
641
659
  var i = this.view.r._inner[h].c;
642
- NativeUI.r(this.view.r._inner[h].d, i.l.f(this.c8));
660
+ NativeUI.r(this.view.r._inner[h].d, i.l.f(this.db));
643
661
  }
644
662
  for (var j = 0; j < this.view.s.count; j++) {
645
663
  var k = this.view.s._inner[j].c;
646
- NativeUI.aa(this.view.s._inner[j].d, k.m.f(this.c9));
664
+ NativeUI.aa(this.view.s._inner[j].d, k.m.f(this.dc));
647
665
  }
648
666
  for (var l = 0; l < this.view.t.count; l++) {
649
667
  var m = this.view.t._inner[l].c;
650
- NativeUI.r(this.view.t._inner[l].d, m.l.f(this.da));
668
+ NativeUI.r(this.view.t._inner[l].d, m.l.f(this.dd));
651
669
  }
652
670
  for (var n = 0; n < this.view.u.count; n++) {
653
671
  var o = this.view.u._inner[n].c;
654
- NativeUI.aa(this.view.u._inner[n].d, o.m.f(this.db));
672
+ NativeUI.aa(this.view.u._inner[n].d, o.m.f(this.de));
655
673
  }
656
674
  for (var p = 0; p < this.view.e.o.count; p++) {
657
675
  var q = this.view.e.o._inner[p];
@@ -677,35 +695,35 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
677
695
  }
678
696
  for (var ab = 0; ab < this.view.q.count; ab++) {
679
697
  var ac = this.view.q._inner[ab].c;
680
- NativeUI.r(this.view.q._inner[ab].d, ac.l.f(this.cw));
681
- NativeUI.aa(this.view.q._inner[ab].d, ac.m.f(this.cx));
698
+ NativeUI.r(this.view.q._inner[ab].d, ac.l.f(this.cz));
699
+ NativeUI.aa(this.view.q._inner[ab].d, ac.m.f(this.c0));
682
700
  }
683
701
  }
684
702
  var ad = this.view.z;
685
- if (this.cw != null) {
686
- NativeUI.r(ad, this.cw);
703
+ if (this.cz != null) {
704
+ NativeUI.r(ad, this.cz);
687
705
  }
688
- if (this.cx != null) {
689
- NativeUI.aa(ad, this.cx);
706
+ if (this.c0 != null) {
707
+ NativeUI.aa(ad, this.c0);
690
708
  }
691
- if (!isNaN_(this.af)) {
692
- NativeUI.ad(ad, this.af);
709
+ if (!isNaN_(this.ag)) {
710
+ NativeUI.ad(ad, this.ag);
693
711
  }
694
712
  }
695
713
  if (this.m != null) {
696
- this.view.av(this.m);
714
+ this.view.aw(this.m);
697
715
  }
698
- if (this.cy != null) {
699
- NativeUI.q(this.view.z, this.cy);
716
+ if (this.c1 != null) {
717
+ NativeUI.q(this.view.z, this.c1);
700
718
  }
701
719
  };
702
- XIcon.prototype.cd = function () {
720
+ XIcon.prototype.cg = function () {
703
721
  var e_3, _a, e_4, _b;
704
- if (this.cw != null) {
705
- this.view.am(this.cw, "fill");
722
+ if (this.cz != null) {
723
+ this.view.am(this.cz, "fill");
706
724
  }
707
- if (this.cx != null) {
708
- this.view.am(this.cx, "stroke");
725
+ if (this.c0 != null) {
726
+ this.view.am(this.c0, "stroke");
709
727
  }
710
728
  if (this.e != null) {
711
729
  try {
@@ -758,63 +776,63 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
758
776
  var b = this.j;
759
777
  this.j = a;
760
778
  if (b != this.j) {
761
- this.cb("BaseTheme", enumGetBox(BaseControlTheme_$type, b), enumGetBox(BaseControlTheme_$type, a));
779
+ this.ce("BaseTheme", enumGetBox(BaseControlTheme_$type, b), enumGetBox(BaseControlTheme_$type, a));
762
780
  }
763
781
  },
764
782
  enumerable: false,
765
783
  configurable: true
766
784
  });
767
- Object.defineProperty(XIcon.prototype, "cw", {
785
+ Object.defineProperty(XIcon.prototype, "cz", {
768
786
  get: function () {
769
- return this.cj;
787
+ return this.cm;
770
788
  },
771
789
  set: function (a) {
772
- var b = this.cj;
773
- this.cj = a;
774
- if (b != this.cj) {
775
- this.cb("ActualFill", b, a);
790
+ var b = this.cm;
791
+ this.cm = a;
792
+ if (b != this.cm) {
793
+ this.ce("ActualFill", b, a);
776
794
  }
777
795
  },
778
796
  enumerable: false,
779
797
  configurable: true
780
798
  });
781
- Object.defineProperty(XIcon.prototype, "cx", {
799
+ Object.defineProperty(XIcon.prototype, "c0", {
782
800
  get: function () {
783
- return this.ck;
801
+ return this.cn;
784
802
  },
785
803
  set: function (a) {
786
- var b = this.ck;
787
- this.ck = a;
788
- if (b != this.ck) {
789
- this.cb("ActualStroke", b, a);
804
+ var b = this.cn;
805
+ this.cn = a;
806
+ if (b != this.cn) {
807
+ this.ce("ActualStroke", b, a);
790
808
  }
791
809
  },
792
810
  enumerable: false,
793
811
  configurable: true
794
812
  });
795
- Object.defineProperty(XIcon.prototype, "cy", {
813
+ Object.defineProperty(XIcon.prototype, "c1", {
796
814
  get: function () {
797
- return this.cl;
815
+ return this.co;
798
816
  },
799
817
  set: function (a) {
800
- var b = this.cl;
801
- this.cl = a;
802
- if (b != this.cl) {
803
- this.cb("ActualTextColor", b, a);
818
+ var b = this.co;
819
+ this.co = a;
820
+ if (b != this.co) {
821
+ this.ce("ActualTextColor", b, a);
804
822
  }
805
823
  },
806
824
  enumerable: false,
807
825
  configurable: true
808
826
  });
809
- Object.defineProperty(XIcon.prototype, "af", {
827
+ Object.defineProperty(XIcon.prototype, "ag", {
810
828
  get: function () {
811
- return this.v;
829
+ return this.w;
812
830
  },
813
831
  set: function (a) {
814
- var b = this.v;
815
- this.v = a;
816
- if (b != this.v) {
817
- this.cb("ActualStrokeWidth", b, a);
832
+ var b = this.w;
833
+ this.w = a;
834
+ if (b != this.w) {
835
+ this.ce("ActualStrokeWidth", b, a);
818
836
  }
819
837
  },
820
838
  enumerable: false,
@@ -822,111 +840,111 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
822
840
  });
823
841
  Object.defineProperty(XIcon.prototype, "fill", {
824
842
  get: function () {
825
- return this.cm;
843
+ return this.cp;
826
844
  },
827
845
  set: function (a) {
828
- var b = this.cm;
829
- this.cm = a;
830
- if (b != this.cm) {
831
- this.cb("Fill", b, a);
846
+ var b = this.cp;
847
+ this.cp = a;
848
+ if (b != this.cp) {
849
+ this.ce("Fill", b, a);
832
850
  }
833
851
  },
834
852
  enumerable: false,
835
853
  configurable: true
836
854
  });
837
- Object.defineProperty(XIcon.prototype, "dc", {
855
+ Object.defineProperty(XIcon.prototype, "df", {
838
856
  get: function () {
839
- return this.cu;
857
+ return this.cx;
840
858
  },
841
859
  set: function (a) {
842
- var b = this.cu;
843
- this.cu = a;
844
- if (b != this.cu) {
845
- this.cb("Stroke", b, a);
860
+ var b = this.cx;
861
+ this.cx = a;
862
+ if (b != this.cx) {
863
+ this.ce("Stroke", b, a);
846
864
  }
847
865
  },
848
866
  enumerable: false,
849
867
  configurable: true
850
868
  });
851
- Object.defineProperty(XIcon.prototype, "al", {
869
+ Object.defineProperty(XIcon.prototype, "am", {
852
870
  get: function () {
853
- return this.z;
871
+ return this.aa;
854
872
  },
855
873
  set: function (a) {
856
- var b = this.z;
857
- this.z = a;
858
- if (b != this.z) {
859
- this.cb("StrokeWidth", b, a);
874
+ var b = this.aa;
875
+ this.aa = a;
876
+ if (b != this.aa) {
877
+ this.ce("StrokeWidth", b, a);
860
878
  }
861
879
  },
862
880
  enumerable: false,
863
881
  configurable: true
864
882
  });
865
- Object.defineProperty(XIcon.prototype, "dd", {
883
+ Object.defineProperty(XIcon.prototype, "dg", {
866
884
  get: function () {
867
- return this.cv;
885
+ return this.cy;
868
886
  },
869
887
  set: function (a) {
870
- var b = this.cv;
871
- this.cv = a;
872
- if (b != this.cv) {
873
- this.cb("TextColor", b, a);
888
+ var b = this.cy;
889
+ this.cy = a;
890
+ if (b != this.cy) {
891
+ this.ce("TextColor", b, a);
874
892
  }
875
893
  },
876
894
  enumerable: false,
877
895
  configurable: true
878
896
  });
879
- Object.defineProperty(XIcon.prototype, "c5", {
897
+ Object.defineProperty(XIcon.prototype, "c8", {
880
898
  get: function () {
881
- return this.cn;
899
+ return this.cq;
882
900
  },
883
901
  set: function (a) {
884
- var b = this.cn;
885
- this.cn = a;
886
- if (b != this.cn) {
887
- this.cb("HoverFill", b, a);
902
+ var b = this.cq;
903
+ this.cq = a;
904
+ if (b != this.cq) {
905
+ this.ce("HoverFill", b, a);
888
906
  }
889
907
  },
890
908
  enumerable: false,
891
909
  configurable: true
892
910
  });
893
- Object.defineProperty(XIcon.prototype, "c6", {
911
+ Object.defineProperty(XIcon.prototype, "c9", {
894
912
  get: function () {
895
- return this.co;
913
+ return this.cr;
896
914
  },
897
915
  set: function (a) {
898
- var b = this.co;
899
- this.co = a;
900
- if (b != this.co) {
901
- this.cb("HoverStroke", b, a);
916
+ var b = this.cr;
917
+ this.cr = a;
918
+ if (b != this.cr) {
919
+ this.ce("HoverStroke", b, a);
902
920
  }
903
921
  },
904
922
  enumerable: false,
905
923
  configurable: true
906
924
  });
907
- Object.defineProperty(XIcon.prototype, "aj", {
925
+ Object.defineProperty(XIcon.prototype, "ak", {
908
926
  get: function () {
909
- return this.x;
927
+ return this.y;
910
928
  },
911
929
  set: function (a) {
912
- var b = this.x;
913
- this.x = a;
914
- if (b != this.x) {
915
- this.cb("HoverStrokeThickness", b, a);
930
+ var b = this.y;
931
+ this.y = a;
932
+ if (b != this.y) {
933
+ this.ce("HoverStrokeThickness", b, a);
916
934
  }
917
935
  },
918
936
  enumerable: false,
919
937
  configurable: true
920
938
  });
921
- Object.defineProperty(XIcon.prototype, "c7", {
939
+ Object.defineProperty(XIcon.prototype, "da", {
922
940
  get: function () {
923
- return this.cp;
941
+ return this.cs;
924
942
  },
925
943
  set: function (a) {
926
- var b = this.cp;
927
- this.cp = a;
928
- if (b != this.cp) {
929
- this.cb("HoverTextColor", b, a);
944
+ var b = this.cs;
945
+ this.cs = a;
946
+ if (b != this.cs) {
947
+ this.ce("HoverTextColor", b, a);
930
948
  }
931
949
  },
932
950
  enumerable: false,
@@ -940,7 +958,7 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
940
958
  var b = this.c;
941
959
  this.c = a;
942
960
  if (b != this.c) {
943
- this.cb("FillColors", b, this.c);
961
+ this.ce("FillColors", b, this.c);
944
962
  }
945
963
  },
946
964
  enumerable: false,
@@ -954,83 +972,83 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
954
972
  var b = this.d;
955
973
  this.d = a;
956
974
  if (b != this.d) {
957
- this.cb("StrokeColors", b, this.d);
975
+ this.ce("StrokeColors", b, this.d);
958
976
  }
959
977
  },
960
978
  enumerable: false,
961
979
  configurable: true
962
980
  });
963
- Object.defineProperty(XIcon.prototype, "c8", {
981
+ Object.defineProperty(XIcon.prototype, "db", {
964
982
  get: function () {
965
- return this.cq;
983
+ return this.ct;
966
984
  },
967
985
  set: function (a) {
968
- var b = this.cq;
969
- this.cq = a;
970
- if (b != this.cq) {
971
- this.cb("PrimaryFillColor", b, this.cq);
986
+ var b = this.ct;
987
+ this.ct = a;
988
+ if (b != this.ct) {
989
+ this.ce("PrimaryFillColor", b, this.ct);
972
990
  }
973
991
  },
974
992
  enumerable: false,
975
993
  configurable: true
976
994
  });
977
- Object.defineProperty(XIcon.prototype, "c9", {
995
+ Object.defineProperty(XIcon.prototype, "dc", {
978
996
  get: function () {
979
- return this.cr;
997
+ return this.cu;
980
998
  },
981
999
  set: function (a) {
982
- var b = this.cr;
983
- this.cr = a;
984
- if (b != this.cr) {
985
- this.cb("PrimaryStrokeColor", b, this.cr);
1000
+ var b = this.cu;
1001
+ this.cu = a;
1002
+ if (b != this.cu) {
1003
+ this.ce("PrimaryStrokeColor", b, this.cu);
986
1004
  }
987
1005
  },
988
1006
  enumerable: false,
989
1007
  configurable: true
990
1008
  });
991
- Object.defineProperty(XIcon.prototype, "da", {
1009
+ Object.defineProperty(XIcon.prototype, "dd", {
992
1010
  get: function () {
993
- return this.cs;
1011
+ return this.cv;
994
1012
  },
995
1013
  set: function (a) {
996
- var b = this.cs;
997
- this.cs = a;
998
- if (b != this.cs) {
999
- this.cb("SecondaryFillColor", b, this.cs);
1014
+ var b = this.cv;
1015
+ this.cv = a;
1016
+ if (b != this.cv) {
1017
+ this.ce("SecondaryFillColor", b, this.cv);
1000
1018
  }
1001
1019
  },
1002
1020
  enumerable: false,
1003
1021
  configurable: true
1004
1022
  });
1005
- Object.defineProperty(XIcon.prototype, "db", {
1023
+ Object.defineProperty(XIcon.prototype, "de", {
1006
1024
  get: function () {
1007
- return this.ct;
1025
+ return this.cw;
1008
1026
  },
1009
1027
  set: function (a) {
1010
- var b = this.ct;
1011
- this.ct = a;
1012
- if (b != this.ct) {
1013
- this.cb("SecondaryStrokeColor", b, this.ct);
1028
+ var b = this.cw;
1029
+ this.cw = a;
1030
+ if (b != this.cw) {
1031
+ this.ce("SecondaryStrokeColor", b, this.cw);
1014
1032
  }
1015
1033
  },
1016
1034
  enumerable: false,
1017
1035
  configurable: true
1018
1036
  });
1019
- Object.defineProperty(XIcon.prototype, "a7", {
1037
+ Object.defineProperty(XIcon.prototype, "ax", {
1020
1038
  get: function () {
1021
- return this.aw;
1039
+ return this.av;
1022
1040
  },
1023
1041
  set: function (a) {
1024
- var b = this.aw;
1025
- this.aw = a;
1026
- if (b != this.aw) {
1027
- this.cb("DataURL", b, a);
1042
+ var b = this.av;
1043
+ this.av = a;
1044
+ if (b != this.av) {
1045
+ this.ce("Source", b, a);
1028
1046
  }
1029
1047
  },
1030
1048
  enumerable: false,
1031
1049
  configurable: true
1032
1050
  });
1033
- Object.defineProperty(XIcon.prototype, "svgPath", {
1051
+ Object.defineProperty(XIcon.prototype, "ba", {
1034
1052
  get: function () {
1035
1053
  return this.az;
1036
1054
  },
@@ -1038,7 +1056,21 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
1038
1056
  var b = this.az;
1039
1057
  this.az = a;
1040
1058
  if (b != this.az) {
1041
- this.cb("SVGPath", b, a);
1059
+ this.ce("DataURL", b, a);
1060
+ }
1061
+ },
1062
+ enumerable: false,
1063
+ configurable: true
1064
+ });
1065
+ Object.defineProperty(XIcon.prototype, "svgPath", {
1066
+ get: function () {
1067
+ return this.a2;
1068
+ },
1069
+ set: function (a) {
1070
+ var b = this.a2;
1071
+ this.a2 = a;
1072
+ if (b != this.a2) {
1073
+ this.ce("SVGPath", b, a);
1042
1074
  }
1043
1075
  },
1044
1076
  enumerable: false,
@@ -1046,13 +1078,13 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
1046
1078
  });
1047
1079
  Object.defineProperty(XIcon.prototype, "svg", {
1048
1080
  get: function () {
1049
- return this.ay;
1081
+ return this.a1;
1050
1082
  },
1051
1083
  set: function (a) {
1052
- var b = this.ay;
1053
- this.ay = a;
1054
- if (b != this.ay) {
1055
- this.cb("SVG", b, this.ay);
1084
+ var b = this.a1;
1085
+ this.a1 = a;
1086
+ if (b != this.a1) {
1087
+ this.ce("SVG", b, this.a1);
1056
1088
  }
1057
1089
  },
1058
1090
  enumerable: false,
@@ -1066,16 +1098,16 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
1066
1098
  var b = this.a;
1067
1099
  this.a = a;
1068
1100
  if (b != this.a) {
1069
- this.cb("SVGPaths", b, this.a);
1101
+ this.ce("SVGPaths", b, this.a);
1070
1102
  }
1071
1103
  },
1072
1104
  enumerable: false,
1073
1105
  configurable: true
1074
1106
  });
1075
- XIcon.prototype.b9 = function () {
1107
+ XIcon.prototype.cc = function () {
1076
1108
  this.t = true;
1077
1109
  };
1078
- XIcon.prototype.ca = function () {
1110
+ XIcon.prototype.cd = function () {
1079
1111
  this.t = false;
1080
1112
  };
1081
1113
  Object.defineProperty(XIcon.prototype, "m", {
@@ -1086,21 +1118,21 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
1086
1118
  var b = this.l;
1087
1119
  this.l = a;
1088
1120
  if (b != this.l) {
1089
- this.cb("TextStyle", b, a);
1121
+ this.ce("TextStyle", b, a);
1090
1122
  }
1091
1123
  },
1092
1124
  enumerable: false,
1093
1125
  configurable: true
1094
1126
  });
1095
- Object.defineProperty(XIcon.prototype, "bh", {
1127
+ Object.defineProperty(XIcon.prototype, "bk", {
1096
1128
  get: function () {
1097
- return this.ax;
1129
+ return this.a0;
1098
1130
  },
1099
1131
  set: function (a) {
1100
- var b = this.ax;
1101
- this.ax = a;
1102
- if (b != this.ax) {
1103
- this.cb("Id", b, a);
1132
+ var b = this.a0;
1133
+ this.a0 = a;
1134
+ if (b != this.a0) {
1135
+ this.ce("Id", b, a);
1104
1136
  }
1105
1137
  },
1106
1138
  enumerable: false,
@@ -1113,30 +1145,30 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
1113
1145
  enumerable: false,
1114
1146
  configurable: true
1115
1147
  });
1116
- Object.defineProperty(XIcon.prototype, "as", {
1148
+ Object.defineProperty(XIcon.prototype, "at", {
1117
1149
  get: function () {
1118
- return this.ar;
1150
+ return this.as;
1119
1151
  },
1120
1152
  set: function (a) {
1121
- var b = this.ar;
1122
- this.ar = a;
1153
+ var b = this.as;
1154
+ this.as = a;
1123
1155
  this.n = true;
1124
- if (b != this.ar) {
1125
- this.cb("TabIndex", b, a);
1156
+ if (b != this.as) {
1157
+ this.ce("TabIndex", b, a);
1126
1158
  }
1127
1159
  },
1128
1160
  enumerable: false,
1129
1161
  configurable: true
1130
1162
  });
1131
- Object.defineProperty(XIcon.prototype, "a4", {
1163
+ Object.defineProperty(XIcon.prototype, "a7", {
1132
1164
  get: function () {
1133
- return this.av;
1165
+ return this.ay;
1134
1166
  },
1135
1167
  set: function (a) {
1136
- var b = this.av;
1137
- this.av = a;
1138
- if (b != this.av) {
1139
- this.cb("AriaLabel", b, a);
1168
+ var b = this.ay;
1169
+ this.ay = a;
1170
+ if (b != this.ay) {
1171
+ this.ce("AriaLabel", b, a);
1140
1172
  }
1141
1173
  },
1142
1174
  enumerable: false,
@@ -1150,7 +1182,7 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
1150
1182
  var b = this.p;
1151
1183
  this.p = a;
1152
1184
  if (b != this.p) {
1153
- this.cb("IsHover", b, a);
1185
+ this.ce("IsHover", b, a);
1154
1186
  }
1155
1187
  },
1156
1188
  enumerable: false,
@@ -1164,35 +1196,21 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
1164
1196
  var b = this.o;
1165
1197
  this.o = a;
1166
1198
  if (b != this.o) {
1167
- this.cb("IsDisabled", b, a);
1168
- }
1169
- },
1170
- enumerable: false,
1171
- configurable: true
1172
- });
1173
- Object.defineProperty(XIcon.prototype, "ak", {
1174
- get: function () {
1175
- return this.y;
1176
- },
1177
- set: function (a) {
1178
- var b = this.y;
1179
- this.y = a;
1180
- if (b != this.y) {
1181
- this.cb("Opacity", b, this.y);
1199
+ this.ce("IsDisabled", b, a);
1182
1200
  }
1183
1201
  },
1184
1202
  enumerable: false,
1185
1203
  configurable: true
1186
1204
  });
1187
- Object.defineProperty(XIcon.prototype, "an", {
1205
+ Object.defineProperty(XIcon.prototype, "al", {
1188
1206
  get: function () {
1189
- return this.ab;
1207
+ return this.z;
1190
1208
  },
1191
1209
  set: function (a) {
1192
- var b = this.ab;
1193
- this.ab = a;
1194
- if (b != this.ab) {
1195
- this.cb("ViewBoxLeft", b, this.ab);
1210
+ var b = this.z;
1211
+ this.z = a;
1212
+ if (b != this.z) {
1213
+ this.ce("Opacity", b, this.z);
1196
1214
  }
1197
1215
  },
1198
1216
  enumerable: false,
@@ -1206,7 +1224,7 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
1206
1224
  var b = this.ac;
1207
1225
  this.ac = a;
1208
1226
  if (b != this.ac) {
1209
- this.cb("ViewBoxTop", b, this.ac);
1227
+ this.ce("ViewBoxLeft", b, this.ac);
1210
1228
  }
1211
1229
  },
1212
1230
  enumerable: false,
@@ -1220,55 +1238,69 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
1220
1238
  var b = this.ad;
1221
1239
  this.ad = a;
1222
1240
  if (b != this.ad) {
1223
- this.cb("ViewBoxWidth", b, this.ad);
1241
+ this.ce("ViewBoxTop", b, this.ad);
1224
1242
  }
1225
1243
  },
1226
1244
  enumerable: false,
1227
1245
  configurable: true
1228
1246
  });
1229
- Object.defineProperty(XIcon.prototype, "am", {
1247
+ Object.defineProperty(XIcon.prototype, "aq", {
1230
1248
  get: function () {
1231
- return this.aa;
1249
+ return this.ae;
1232
1250
  },
1233
1251
  set: function (a) {
1234
- var b = this.aa;
1235
- this.aa = a;
1236
- if (b != this.aa) {
1237
- this.cb("ViewBoxHeight", b, this.aa);
1252
+ var b = this.ae;
1253
+ this.ae = a;
1254
+ if (b != this.ae) {
1255
+ this.ce("ViewBoxWidth", b, this.ae);
1238
1256
  }
1239
1257
  },
1240
1258
  enumerable: false,
1241
1259
  configurable: true
1242
1260
  });
1243
- Object.defineProperty(XIcon.prototype, "aq", {
1261
+ Object.defineProperty(XIcon.prototype, "an", {
1244
1262
  get: function () {
1245
- return this.ae;
1263
+ return this.ab;
1246
1264
  },
1247
1265
  set: function (a) {
1248
- var b = this.ae;
1249
- this.ae = a;
1250
- if (b != this.ae) {
1251
- this.cb("Width", b, this.ae);
1266
+ var b = this.ab;
1267
+ this.ab = a;
1268
+ if (b != this.ab) {
1269
+ this.ce("ViewBoxHeight", b, this.ab);
1252
1270
  }
1253
1271
  },
1254
1272
  enumerable: false,
1255
1273
  configurable: true
1256
1274
  });
1257
- Object.defineProperty(XIcon.prototype, "ai", {
1275
+ Object.defineProperty(XIcon.prototype, "ar", {
1258
1276
  get: function () {
1259
- return this.w;
1277
+ return this.af;
1260
1278
  },
1261
1279
  set: function (a) {
1262
- var b = this.w;
1263
- this.w = a;
1264
- if (b != this.w) {
1265
- this.cb("Height", b, this.w);
1280
+ var b = this.af;
1281
+ this.af = a;
1282
+ if (b != this.af) {
1283
+ this.ce("Width", b, this.af);
1266
1284
  }
1267
1285
  },
1268
1286
  enumerable: false,
1269
1287
  configurable: true
1270
1288
  });
1271
- XIcon.prototype.cc = function () {
1289
+ Object.defineProperty(XIcon.prototype, "aj", {
1290
+ get: function () {
1291
+ return this.x;
1292
+ },
1293
+ set: function (a) {
1294
+ var b = this.x;
1295
+ this.x = a;
1296
+ if (b != this.x) {
1297
+ this.ce("Height", b, this.x);
1298
+ }
1299
+ },
1300
+ enumerable: false,
1301
+ configurable: true
1302
+ });
1303
+ XIcon.prototype.cf = function () {
1272
1304
  };
1273
1305
  XIcon.prototype.onDetachedFromUI = function () {
1274
1306
  this.view.aj();
@@ -1276,21 +1308,24 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
1276
1308
  XIcon.prototype.onAttachedToUI = function () {
1277
1309
  this.view.ag();
1278
1310
  };
1279
- XIcon.prototype.b7 = function () {
1311
+ XIcon.prototype.v = function () {
1280
1312
  if (this.disabled) {
1281
- return;
1313
+ return false;
1282
1314
  }
1283
1315
  if (this.clicked != null) {
1284
- this.clicked(this, new IconClickedEventArgs());
1316
+ var a = new IconClickedEventArgs();
1317
+ this.clicked(this, a);
1318
+ return a.handled;
1285
1319
  }
1320
+ return false;
1286
1321
  };
1287
1322
  XIcon.prototype.u = function () {
1288
1323
  return this.view.l();
1289
1324
  };
1290
- XIcon.prototype.au = function () {
1325
+ XIcon.prototype.aw = function () {
1291
1326
  return this.g();
1292
1327
  };
1293
- XIcon.prototype.a9 = function () {
1328
+ XIcon.prototype.bc = function () {
1294
1329
  var a = this.g();
1295
1330
  return a.l();
1296
1331
  };
@@ -1304,7 +1339,7 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
1304
1339
  a.a = this.view.a();
1305
1340
  a.svg = this.svg;
1306
1341
  a.svgPath = this.svgPath;
1307
- a.k = this.a7;
1342
+ a.k = this.ba;
1308
1343
  if (this.m != null) {
1309
1344
  var c = this.m;
1310
1345
  if (this.view != null && c.q == null) {
@@ -1339,15 +1374,15 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
1339
1374
  this.view.ai(a);
1340
1375
  };
1341
1376
  XIcon.$t = markType(XIcon, 'XIcon', Base.$, [INotifyPropertyChanged_$type, IIcon_$type]);
1342
- XIcon.cz = null;
1343
- XIcon.c4 = null;
1344
- XIcon.c3 = null;
1345
- XIcon.c0 = null;
1346
- XIcon.c1 = null;
1347
1377
  XIcon.c2 = null;
1378
+ XIcon.c7 = null;
1379
+ XIcon.c6 = null;
1380
+ XIcon.c3 = null;
1381
+ XIcon.c4 = null;
1382
+ XIcon.c5 = null;
1383
+ XIcon.ai = NaN;
1348
1384
  XIcon.ah = NaN;
1349
- XIcon.ag = NaN;
1350
- XIcon.at = 0;
1385
+ XIcon.au = 0;
1351
1386
  return XIcon;
1352
1387
  }(Base));
1353
1388
  export { XIcon };