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
@@ -114,14 +114,14 @@ export let IconView = /*@__PURE__*/ (() => {
114
114
  d.setStyleProperty("width", "100%");
115
115
  d.setStyleProperty("object-fit", "contain");
116
116
  this.x = d;
117
- this.aw();
117
+ this.ax();
118
118
  this.w = a.createElementNS("defs", "http://www.w3.org/2000/svg");
119
119
  this.y.append(this.w);
120
120
  this.v.append(this.y);
121
121
  this.o.add(c.listen("click", runOn(this, this.ah)));
122
- this.d.cc();
122
+ this.d.cf();
123
123
  }
124
- at(a) {
124
+ au(a) {
125
125
  this.n.clear();
126
126
  this.v.rootWrapper.removeChildren();
127
127
  this.v.rootWrapper.append(this.y);
@@ -136,7 +136,7 @@ export let IconView = /*@__PURE__*/ (() => {
136
136
  this.p.add(b);
137
137
  }
138
138
  }
139
- au(a) {
139
+ av(a) {
140
140
  this.n.clear();
141
141
  this.v.rootWrapper.removeChildren();
142
142
  this.v.rootWrapper.append(this.y);
@@ -153,7 +153,7 @@ export let IconView = /*@__PURE__*/ (() => {
153
153
  }
154
154
  }
155
155
  }
156
- as(a) {
156
+ at(a) {
157
157
  this.v.rootWrapper.removeChildren();
158
158
  if (a != null) {
159
159
  let b = this.v.rootWrapper.getNativeElement();
@@ -168,18 +168,23 @@ export let IconView = /*@__PURE__*/ (() => {
168
168
  this.x.setAttribute("src", a);
169
169
  }
170
170
  }
171
+ as(a) {
172
+ if (typeof a === 'string') {
173
+ this.ap(typeCast(String_$type, a));
174
+ }
175
+ }
171
176
  k() {
172
177
  return this.d.svgPath != null || this.d.svg != null || this.d.b != null;
173
178
  }
174
179
  ar() {
175
- this.v.rootWrapper.setStyleProperty("width", isNaN_(this.d.aq) ? "1.5rem" : this.d.aq + "px");
176
- this.v.rootWrapper.setStyleProperty("height", isNaN_(this.d.ai) ? "1.5rem" : this.d.ai + "px");
177
- }
178
- aw() {
179
- let a = isNaN_(this.d.an) ? 0 : this.d.an;
180
- let b = isNaN_(this.d.ao) ? 0 : this.d.ao;
181
- let c = isNaN_(this.d.ap) ? 24 : this.d.ap;
182
- let d = isNaN_(this.d.am) ? 24 : this.d.am;
180
+ this.v.rootWrapper.setStyleProperty("width", isNaN_(this.d.ar) ? "1.5rem" : this.d.ar + "px");
181
+ this.v.rootWrapper.setStyleProperty("height", isNaN_(this.d.aj) ? "1.5rem" : this.d.aj + "px");
182
+ }
183
+ ax() {
184
+ let a = isNaN_(this.d.ao) ? 0 : this.d.ao;
185
+ let b = isNaN_(this.d.ap) ? 0 : this.d.ap;
186
+ let c = isNaN_(this.d.aq) ? 24 : this.d.aq;
187
+ let d = isNaN_(this.d.an) ? 24 : this.d.an;
183
188
  this.y.setAttribute("viewBox", a + " " + b + " " + c + " " + d);
184
189
  }
185
190
  am(a, b) {
@@ -237,10 +242,10 @@ export let IconView = /*@__PURE__*/ (() => {
237
242
  }
238
243
  }
239
244
  ad(a) {
240
- this.d.b9();
245
+ this.d.cc();
241
246
  }
242
247
  ae(a) {
243
- this.d.ca();
248
+ this.d.cd();
244
249
  }
245
250
  ag() {
246
251
  this.j = true;
@@ -254,7 +259,7 @@ export let IconView = /*@__PURE__*/ (() => {
254
259
  }
255
260
  this.o.clear();
256
261
  }
257
- av(a) {
262
+ aw(a) {
258
263
  if (a != null) {
259
264
  this.v.rootWrapper.setStyleProperty("font", a.fontString);
260
265
  }
@@ -269,7 +274,10 @@ export let IconView = /*@__PURE__*/ (() => {
269
274
  return c;
270
275
  }
271
276
  ah(a) {
272
- this.d.b7();
277
+ if (this.d.v()) {
278
+ a.stopPropagation();
279
+ a.preventDefault();
280
+ }
273
281
  }
274
282
  a() {
275
283
  let a = new List$1(PrimitiveVisualData.$, 0);
@@ -378,42 +386,43 @@ export let XIcon = /*@__PURE__*/ (() => {
378
386
  super();
379
387
  this._view = null;
380
388
  this.j = 0;
381
- this.cj = XIcon.cz;
382
- this.ck = XIcon.c3;
383
- this.cl = XIcon.c4;
384
- this.v = XIcon.ah;
385
- this.cm = XIcon.cz;
386
- this.cu = XIcon.c3;
387
- this.z = XIcon.ah;
388
- this.cv = XIcon.c4;
389
- this.cn = XIcon.c0;
390
- this.co = XIcon.c1;
391
- this.x = XIcon.ag;
392
- this.cp = null;
389
+ this.cm = XIcon.c2;
390
+ this.cn = XIcon.c6;
391
+ this.co = XIcon.c7;
392
+ this.w = XIcon.ai;
393
+ this.cp = XIcon.c2;
394
+ this.cx = XIcon.c6;
395
+ this.aa = XIcon.ai;
396
+ this.cy = XIcon.c7;
397
+ this.cq = XIcon.c3;
398
+ this.cr = XIcon.c4;
399
+ this.y = XIcon.ah;
400
+ this.cs = null;
393
401
  this.c = null;
394
402
  this.d = null;
395
- this.cq = null;
396
- this.cr = null;
397
- this.cs = null;
398
403
  this.ct = null;
399
- this.aw = null;
404
+ this.cu = null;
405
+ this.cv = null;
406
+ this.cw = null;
407
+ this.av = null;
400
408
  this.az = null;
401
- this.ay = null;
409
+ this.a2 = null;
410
+ this.a1 = null;
402
411
  this.a = null;
403
412
  this.l = null;
404
- this.ax = "ig-icon-" + XIcon.at++;
405
- this.ar = 0;
413
+ this.a0 = "ig-icon-" + XIcon.au++;
414
+ this.as = 0;
406
415
  this.n = false;
407
- this.av = null;
416
+ this.ay = null;
408
417
  this.p = false;
409
418
  this.o = false;
410
- this.y = 1;
411
- this.ab = NaN;
419
+ this.z = 1;
412
420
  this.ac = NaN;
413
421
  this.ad = NaN;
414
- this.aa = NaN;
415
422
  this.ae = NaN;
416
- this.w = NaN;
423
+ this.ab = NaN;
424
+ this.af = NaN;
425
+ this.x = NaN;
417
426
  this.clicked = null;
418
427
  this.propertyChanged = null;
419
428
  let a = new IconView();
@@ -430,13 +439,13 @@ export let XIcon = /*@__PURE__*/ (() => {
430
439
  destroy() {
431
440
  this.provideContainer(null);
432
441
  }
433
- cb(a, b, c) {
442
+ ce(a, b, c) {
434
443
  if (this.propertyChanged != null) {
435
444
  this.propertyChanged(this, new PropertyChangedEventArgs(a));
436
445
  }
437
- this.ce(a, b, c);
446
+ this.ch(a, b, c);
438
447
  }
439
- ce(a, b, c) {
448
+ ch(a, b, c) {
440
449
  switch (a) {
441
450
  case "Fill":
442
451
  case "Stroke":
@@ -445,44 +454,50 @@ export let XIcon = /*@__PURE__*/ (() => {
445
454
  case "HoverStroke":
446
455
  case "HoverStrokeThickness":
447
456
  case "IsHover":
448
- this.ci();
457
+ this.cl();
449
458
  break;
450
459
  case "FillColors":
451
460
  case "StrokeColors":
452
461
  case "ActualFill":
453
462
  case "ActualStroke":
454
463
  case "ActualStrokeWidth":
455
- this.cg();
464
+ this.cj();
456
465
  break;
457
466
  case "SVG":
458
- this.az = null;
467
+ this.a2 = null;
459
468
  this.a = null;
460
- this.cg();
469
+ this.cj();
461
470
  break;
462
471
  case "SVGPath":
463
- this.ay = null;
472
+ this.a1 = null;
464
473
  this.a = null;
465
- this.cg();
474
+ this.cj();
466
475
  break;
467
476
  case "SVGPaths":
468
- this.ay = null;
469
- this.az = null;
470
- this.cg();
477
+ this.a1 = null;
478
+ this.a2 = null;
479
+ this.cj();
471
480
  break;
472
481
  case "DataURL":
473
- this.ay = null;
474
- this.az = null;
482
+ this.a1 = null;
483
+ this.a2 = null;
484
+ this.a = null;
485
+ this.cj();
486
+ break;
487
+ case "Source":
488
+ this.a1 = null;
489
+ this.a2 = null;
475
490
  this.a = null;
476
- this.cg();
491
+ this.cj();
477
492
  break;
478
493
  case "Opacity":
479
- this.ch();
494
+ this.ck();
480
495
  break;
481
496
  case "ViewBoxLeft":
482
497
  case "ViewBoxTop":
483
498
  case "ViewBoxWidth":
484
499
  case "ViewBoxHeight":
485
- this.view.aw();
500
+ this.view.ax();
486
501
  break;
487
502
  case "Width":
488
503
  case "Height":
@@ -490,70 +505,70 @@ export let XIcon = /*@__PURE__*/ (() => {
490
505
  break;
491
506
  }
492
507
  }
493
- ci() {
494
- let a = this.fill != null ? this.fill : XIcon.cz;
495
- let b = this.dc != null ? this.dc : XIcon.c3;
496
- let c = !isNaN_(this.al) ? this.al : XIcon.ah;
497
- let d = this.dd != null ? this.dd : XIcon.c4;
508
+ cl() {
509
+ let a = this.fill != null ? this.fill : XIcon.c2;
510
+ let b = this.df != null ? this.df : XIcon.c6;
511
+ let c = !isNaN_(this.am) ? this.am : XIcon.ai;
512
+ let d = this.dg != null ? this.dg : XIcon.c7;
498
513
  if (this.t) {
499
- this.cw = this.c5 != null ? this.c5 : a;
500
- this.cx = this.c6 != null ? this.c6 : b;
501
- this.af = !isNaN_(this.aj) ? this.aj : c;
502
- this.cy = this.c7 != null ? this.c7 : d;
514
+ this.cz = this.c8 != null ? this.c8 : a;
515
+ this.c0 = this.c9 != null ? this.c9 : b;
516
+ this.ag = !isNaN_(this.ak) ? this.ak : c;
517
+ this.c1 = this.da != null ? this.da : d;
503
518
  }
504
519
  else {
505
- this.cw = a;
506
- this.cx = b;
507
- this.af = c;
508
- this.cy = d;
520
+ this.cz = a;
521
+ this.c0 = b;
522
+ this.ag = c;
523
+ this.c1 = d;
509
524
  }
510
525
  }
511
526
  get r() {
512
527
  return this.svgPath != null && !this.view.m;
513
528
  }
514
- ch() {
515
- NativeUI.y(this.view.z, this.ak);
529
+ ck() {
530
+ NativeUI.y(this.view.z, this.al);
516
531
  }
517
- cg() {
532
+ cj() {
518
533
  let a = this.view.z;
519
534
  if (this.r) {
520
535
  let b = this.view.aa;
521
- NativeUI.r(b, this.cw);
522
- NativeUI.aa(b, this.cx);
523
- NativeUI.ad(b, this.af);
536
+ NativeUI.r(b, this.cz);
537
+ NativeUI.aa(b, this.c0);
538
+ NativeUI.ad(b, this.ag);
524
539
  }
525
540
  else {
526
541
  let c = false;
527
542
  if (this.svgPath != null) {
528
543
  if (stringStartsWith(trimStart(this.svgPath, ' ', '\n', '\r', '\t'), "<svg")) {
529
- this.view.as(this.svgPath);
544
+ this.view.at(this.svgPath);
530
545
  c = true;
531
546
  }
532
547
  else {
533
- this.view.at(this.svgPath);
548
+ this.view.au(this.svgPath);
534
549
  }
535
550
  }
536
551
  else if (this.b != null) {
537
- this.view.au(this.b);
552
+ this.view.av(this.b);
538
553
  let d = this.view.c;
539
554
  if (d != null && d.length > 0) {
540
555
  let e = NativeUI.r;
541
556
  let f = NativeUI.aa;
542
- this.cd();
557
+ this.cg();
543
558
  e = runOn(this.view, this.view.an);
544
559
  f = runOn(this.view, this.view.ao);
545
560
  for (let g = 0; g < d.length; g++) {
546
- if (this.cw != null) {
547
- e(d[g], this.cw);
561
+ if (this.cz != null) {
562
+ e(d[g], this.cz);
548
563
  }
549
- if (this.cx != null) {
550
- f(d[g], this.cx);
564
+ if (this.c0 != null) {
565
+ f(d[g], this.c0);
551
566
  }
552
- if (!isNaN_(this.af)) {
553
- NativeUI.ad(d[g], this.af);
567
+ if (!isNaN_(this.ag)) {
568
+ NativeUI.ad(d[g], this.ag);
554
569
  }
555
- if (this.cy != null) {
556
- NativeUI.q(d[g], this.cy);
570
+ if (this.c1 != null) {
571
+ NativeUI.q(d[g], this.c1);
557
572
  }
558
573
  if (this.e != null && this.e.count == d.length) {
559
574
  e(d[g], this.e.item(g));
@@ -564,33 +579,36 @@ export let XIcon = /*@__PURE__*/ (() => {
564
579
  }
565
580
  }
566
581
  if (this.m != null) {
567
- this.view.av(this.m);
582
+ this.view.aw(this.m);
568
583
  }
569
584
  return;
570
585
  }
571
586
  else if (this.svg != null) {
572
- this.view.as(this.svg);
587
+ this.view.at(this.svg);
573
588
  c = true;
574
589
  }
575
- else if (this.a7 != null) {
576
- this.view.ap(this.a7);
590
+ else if (this.ba != null) {
591
+ this.view.ap(this.ba);
592
+ }
593
+ else if (this.ax != null) {
594
+ this.view.as(this.ax);
577
595
  }
578
596
  if (c) {
579
597
  for (let h = 0; h < this.view.r.count; h++) {
580
598
  let i = this.view.r._inner[h].c;
581
- NativeUI.r(this.view.r._inner[h].d, i.l.f(this.c8));
599
+ NativeUI.r(this.view.r._inner[h].d, i.l.f(this.db));
582
600
  }
583
601
  for (let j = 0; j < this.view.s.count; j++) {
584
602
  let k = this.view.s._inner[j].c;
585
- NativeUI.aa(this.view.s._inner[j].d, k.m.f(this.c9));
603
+ NativeUI.aa(this.view.s._inner[j].d, k.m.f(this.dc));
586
604
  }
587
605
  for (let l = 0; l < this.view.t.count; l++) {
588
606
  let m = this.view.t._inner[l].c;
589
- NativeUI.r(this.view.t._inner[l].d, m.l.f(this.da));
607
+ NativeUI.r(this.view.t._inner[l].d, m.l.f(this.dd));
590
608
  }
591
609
  for (let n = 0; n < this.view.u.count; n++) {
592
610
  let o = this.view.u._inner[n].c;
593
- NativeUI.aa(this.view.u._inner[n].d, o.m.f(this.db));
611
+ NativeUI.aa(this.view.u._inner[n].d, o.m.f(this.de));
594
612
  }
595
613
  for (let p = 0; p < this.view.e.o.count; p++) {
596
614
  let q = this.view.e.o._inner[p];
@@ -616,34 +634,34 @@ export let XIcon = /*@__PURE__*/ (() => {
616
634
  }
617
635
  for (let ab = 0; ab < this.view.q.count; ab++) {
618
636
  let ac = this.view.q._inner[ab].c;
619
- NativeUI.r(this.view.q._inner[ab].d, ac.l.f(this.cw));
620
- NativeUI.aa(this.view.q._inner[ab].d, ac.m.f(this.cx));
637
+ NativeUI.r(this.view.q._inner[ab].d, ac.l.f(this.cz));
638
+ NativeUI.aa(this.view.q._inner[ab].d, ac.m.f(this.c0));
621
639
  }
622
640
  }
623
641
  let ad = this.view.z;
624
- if (this.cw != null) {
625
- NativeUI.r(ad, this.cw);
642
+ if (this.cz != null) {
643
+ NativeUI.r(ad, this.cz);
626
644
  }
627
- if (this.cx != null) {
628
- NativeUI.aa(ad, this.cx);
645
+ if (this.c0 != null) {
646
+ NativeUI.aa(ad, this.c0);
629
647
  }
630
- if (!isNaN_(this.af)) {
631
- NativeUI.ad(ad, this.af);
648
+ if (!isNaN_(this.ag)) {
649
+ NativeUI.ad(ad, this.ag);
632
650
  }
633
651
  }
634
652
  if (this.m != null) {
635
- this.view.av(this.m);
653
+ this.view.aw(this.m);
636
654
  }
637
- if (this.cy != null) {
638
- NativeUI.q(this.view.z, this.cy);
655
+ if (this.c1 != null) {
656
+ NativeUI.q(this.view.z, this.c1);
639
657
  }
640
658
  }
641
- cd() {
642
- if (this.cw != null) {
643
- this.view.am(this.cw, "fill");
659
+ cg() {
660
+ if (this.cz != null) {
661
+ this.view.am(this.cz, "fill");
644
662
  }
645
- if (this.cx != null) {
646
- this.view.am(this.cx, "stroke");
663
+ if (this.c0 != null) {
664
+ this.view.am(this.c0, "stroke");
647
665
  }
648
666
  if (this.e != null) {
649
667
  for (let a of fromEnum(this.e)) {
@@ -663,147 +681,87 @@ export let XIcon = /*@__PURE__*/ (() => {
663
681
  let b = this.j;
664
682
  this.j = a;
665
683
  if (b != this.j) {
666
- this.cb("BaseTheme", enumGetBox(BaseControlTheme_$type, b), enumGetBox(BaseControlTheme_$type, a));
667
- }
668
- }
669
- get cw() {
670
- return this.cj;
671
- }
672
- set cw(a) {
673
- let b = this.cj;
674
- this.cj = a;
675
- if (b != this.cj) {
676
- this.cb("ActualFill", b, a);
677
- }
678
- }
679
- get cx() {
680
- return this.ck;
681
- }
682
- set cx(a) {
683
- let b = this.ck;
684
- this.ck = a;
685
- if (b != this.ck) {
686
- this.cb("ActualStroke", b, a);
687
- }
688
- }
689
- get cy() {
690
- return this.cl;
691
- }
692
- set cy(a) {
693
- let b = this.cl;
694
- this.cl = a;
695
- if (b != this.cl) {
696
- this.cb("ActualTextColor", b, a);
697
- }
698
- }
699
- get af() {
700
- return this.v;
701
- }
702
- set af(a) {
703
- let b = this.v;
704
- this.v = a;
705
- if (b != this.v) {
706
- this.cb("ActualStrokeWidth", b, a);
684
+ this.ce("BaseTheme", enumGetBox(BaseControlTheme_$type, b), enumGetBox(BaseControlTheme_$type, a));
707
685
  }
708
686
  }
709
- get fill() {
687
+ get cz() {
710
688
  return this.cm;
711
689
  }
712
- set fill(a) {
690
+ set cz(a) {
713
691
  let b = this.cm;
714
692
  this.cm = a;
715
693
  if (b != this.cm) {
716
- this.cb("Fill", b, a);
717
- }
718
- }
719
- get dc() {
720
- return this.cu;
721
- }
722
- set dc(a) {
723
- let b = this.cu;
724
- this.cu = a;
725
- if (b != this.cu) {
726
- this.cb("Stroke", b, a);
727
- }
728
- }
729
- get al() {
730
- return this.z;
731
- }
732
- set al(a) {
733
- let b = this.z;
734
- this.z = a;
735
- if (b != this.z) {
736
- this.cb("StrokeWidth", b, a);
737
- }
738
- }
739
- get dd() {
740
- return this.cv;
741
- }
742
- set dd(a) {
743
- let b = this.cv;
744
- this.cv = a;
745
- if (b != this.cv) {
746
- this.cb("TextColor", b, a);
694
+ this.ce("ActualFill", b, a);
747
695
  }
748
696
  }
749
- get c5() {
697
+ get c0() {
750
698
  return this.cn;
751
699
  }
752
- set c5(a) {
700
+ set c0(a) {
753
701
  let b = this.cn;
754
702
  this.cn = a;
755
703
  if (b != this.cn) {
756
- this.cb("HoverFill", b, a);
704
+ this.ce("ActualStroke", b, a);
757
705
  }
758
706
  }
759
- get c6() {
707
+ get c1() {
760
708
  return this.co;
761
709
  }
762
- set c6(a) {
710
+ set c1(a) {
763
711
  let b = this.co;
764
712
  this.co = a;
765
713
  if (b != this.co) {
766
- this.cb("HoverStroke", b, a);
714
+ this.ce("ActualTextColor", b, a);
767
715
  }
768
716
  }
769
- get aj() {
770
- return this.x;
717
+ get ag() {
718
+ return this.w;
771
719
  }
772
- set aj(a) {
773
- let b = this.x;
774
- this.x = a;
775
- if (b != this.x) {
776
- this.cb("HoverStrokeThickness", b, a);
720
+ set ag(a) {
721
+ let b = this.w;
722
+ this.w = a;
723
+ if (b != this.w) {
724
+ this.ce("ActualStrokeWidth", b, a);
777
725
  }
778
726
  }
779
- get c7() {
727
+ get fill() {
780
728
  return this.cp;
781
729
  }
782
- set c7(a) {
730
+ set fill(a) {
783
731
  let b = this.cp;
784
732
  this.cp = a;
785
733
  if (b != this.cp) {
786
- this.cb("HoverTextColor", b, a);
734
+ this.ce("Fill", b, a);
787
735
  }
788
736
  }
789
- get e() {
790
- return this.c;
737
+ get df() {
738
+ return this.cx;
791
739
  }
792
- set e(a) {
793
- let b = this.c;
794
- this.c = a;
795
- if (b != this.c) {
796
- this.cb("FillColors", b, this.c);
740
+ set df(a) {
741
+ let b = this.cx;
742
+ this.cx = a;
743
+ if (b != this.cx) {
744
+ this.ce("Stroke", b, a);
797
745
  }
798
746
  }
799
- get f() {
800
- return this.d;
747
+ get am() {
748
+ return this.aa;
801
749
  }
802
- set f(a) {
803
- let b = this.d;
804
- this.d = a;
805
- if (b != this.d) {
806
- this.cb("StrokeColors", b, this.d);
750
+ set am(a) {
751
+ let b = this.aa;
752
+ this.aa = a;
753
+ if (b != this.aa) {
754
+ this.ce("StrokeWidth", b, a);
755
+ }
756
+ }
757
+ get dg() {
758
+ return this.cy;
759
+ }
760
+ set dg(a) {
761
+ let b = this.cy;
762
+ this.cy = a;
763
+ if (b != this.cy) {
764
+ this.ce("TextColor", b, a);
807
765
  }
808
766
  }
809
767
  get c8() {
@@ -813,7 +771,7 @@ export let XIcon = /*@__PURE__*/ (() => {
813
771
  let b = this.cq;
814
772
  this.cq = a;
815
773
  if (b != this.cq) {
816
- this.cb("PrimaryFillColor", b, this.cq);
774
+ this.ce("HoverFill", b, a);
817
775
  }
818
776
  }
819
777
  get c9() {
@@ -823,7 +781,17 @@ export let XIcon = /*@__PURE__*/ (() => {
823
781
  let b = this.cr;
824
782
  this.cr = a;
825
783
  if (b != this.cr) {
826
- this.cb("PrimaryStrokeColor", b, this.cr);
784
+ this.ce("HoverStroke", b, a);
785
+ }
786
+ }
787
+ get ak() {
788
+ return this.y;
789
+ }
790
+ set ak(a) {
791
+ let b = this.y;
792
+ this.y = a;
793
+ if (b != this.y) {
794
+ this.ce("HoverStrokeThickness", b, a);
827
795
  }
828
796
  }
829
797
  get da() {
@@ -833,7 +801,27 @@ export let XIcon = /*@__PURE__*/ (() => {
833
801
  let b = this.cs;
834
802
  this.cs = a;
835
803
  if (b != this.cs) {
836
- this.cb("SecondaryFillColor", b, this.cs);
804
+ this.ce("HoverTextColor", b, a);
805
+ }
806
+ }
807
+ get e() {
808
+ return this.c;
809
+ }
810
+ set e(a) {
811
+ let b = this.c;
812
+ this.c = a;
813
+ if (b != this.c) {
814
+ this.ce("FillColors", b, this.c);
815
+ }
816
+ }
817
+ get f() {
818
+ return this.d;
819
+ }
820
+ set f(a) {
821
+ let b = this.d;
822
+ this.d = a;
823
+ if (b != this.d) {
824
+ this.ce("StrokeColors", b, this.d);
837
825
  }
838
826
  }
839
827
  get db() {
@@ -843,37 +831,77 @@ export let XIcon = /*@__PURE__*/ (() => {
843
831
  let b = this.ct;
844
832
  this.ct = a;
845
833
  if (b != this.ct) {
846
- this.cb("SecondaryStrokeColor", b, this.ct);
834
+ this.ce("PrimaryFillColor", b, this.ct);
847
835
  }
848
836
  }
849
- get a7() {
850
- return this.aw;
837
+ get dc() {
838
+ return this.cu;
851
839
  }
852
- set a7(a) {
853
- let b = this.aw;
854
- this.aw = a;
855
- if (b != this.aw) {
856
- this.cb("DataURL", b, a);
840
+ set dc(a) {
841
+ let b = this.cu;
842
+ this.cu = a;
843
+ if (b != this.cu) {
844
+ this.ce("PrimaryStrokeColor", b, this.cu);
857
845
  }
858
846
  }
859
- get svgPath() {
847
+ get dd() {
848
+ return this.cv;
849
+ }
850
+ set dd(a) {
851
+ let b = this.cv;
852
+ this.cv = a;
853
+ if (b != this.cv) {
854
+ this.ce("SecondaryFillColor", b, this.cv);
855
+ }
856
+ }
857
+ get de() {
858
+ return this.cw;
859
+ }
860
+ set de(a) {
861
+ let b = this.cw;
862
+ this.cw = a;
863
+ if (b != this.cw) {
864
+ this.ce("SecondaryStrokeColor", b, this.cw);
865
+ }
866
+ }
867
+ get ax() {
868
+ return this.av;
869
+ }
870
+ set ax(a) {
871
+ let b = this.av;
872
+ this.av = a;
873
+ if (b != this.av) {
874
+ this.ce("Source", b, a);
875
+ }
876
+ }
877
+ get ba() {
860
878
  return this.az;
861
879
  }
862
- set svgPath(a) {
880
+ set ba(a) {
863
881
  let b = this.az;
864
882
  this.az = a;
865
883
  if (b != this.az) {
866
- this.cb("SVGPath", b, a);
884
+ this.ce("DataURL", b, a);
885
+ }
886
+ }
887
+ get svgPath() {
888
+ return this.a2;
889
+ }
890
+ set svgPath(a) {
891
+ let b = this.a2;
892
+ this.a2 = a;
893
+ if (b != this.a2) {
894
+ this.ce("SVGPath", b, a);
867
895
  }
868
896
  }
869
897
  get svg() {
870
- return this.ay;
898
+ return this.a1;
871
899
  }
872
900
  set svg(a) {
873
- let b = this.ay;
874
- this.ay = a;
875
- if (b != this.ay) {
876
- this.cb("SVG", b, this.ay);
901
+ let b = this.a1;
902
+ this.a1 = a;
903
+ if (b != this.a1) {
904
+ this.ce("SVG", b, this.a1);
877
905
  }
878
906
  }
879
907
  get b() {
@@ -883,13 +911,13 @@ export let XIcon = /*@__PURE__*/ (() => {
883
911
  let b = this.a;
884
912
  this.a = a;
885
913
  if (b != this.a) {
886
- this.cb("SVGPaths", b, this.a);
914
+ this.ce("SVGPaths", b, this.a);
887
915
  }
888
916
  }
889
- b9() {
917
+ cc() {
890
918
  this.t = true;
891
919
  }
892
- ca() {
920
+ cd() {
893
921
  this.t = false;
894
922
  }
895
923
  get m() {
@@ -899,41 +927,41 @@ export let XIcon = /*@__PURE__*/ (() => {
899
927
  let b = this.l;
900
928
  this.l = a;
901
929
  if (b != this.l) {
902
- this.cb("TextStyle", b, a);
930
+ this.ce("TextStyle", b, a);
903
931
  }
904
932
  }
905
- get bh() {
906
- return this.ax;
933
+ get bk() {
934
+ return this.a0;
907
935
  }
908
- set bh(a) {
909
- let b = this.ax;
910
- this.ax = a;
911
- if (b != this.ax) {
912
- this.cb("Id", b, a);
936
+ set bk(a) {
937
+ let b = this.a0;
938
+ this.a0 = a;
939
+ if (b != this.a0) {
940
+ this.ce("Id", b, a);
913
941
  }
914
942
  }
915
943
  get q() {
916
944
  return this.n;
917
945
  }
918
- get as() {
919
- return this.ar;
946
+ get at() {
947
+ return this.as;
920
948
  }
921
- set as(a) {
922
- let b = this.ar;
923
- this.ar = a;
949
+ set at(a) {
950
+ let b = this.as;
951
+ this.as = a;
924
952
  this.n = true;
925
- if (b != this.ar) {
926
- this.cb("TabIndex", b, a);
953
+ if (b != this.as) {
954
+ this.ce("TabIndex", b, a);
927
955
  }
928
956
  }
929
- get a4() {
930
- return this.av;
957
+ get a7() {
958
+ return this.ay;
931
959
  }
932
- set a4(a) {
933
- let b = this.av;
934
- this.av = a;
935
- if (b != this.av) {
936
- this.cb("AriaLabel", b, a);
960
+ set a7(a) {
961
+ let b = this.ay;
962
+ this.ay = a;
963
+ if (b != this.ay) {
964
+ this.ce("AriaLabel", b, a);
937
965
  }
938
966
  }
939
967
  get t() {
@@ -943,7 +971,7 @@ export let XIcon = /*@__PURE__*/ (() => {
943
971
  let b = this.p;
944
972
  this.p = a;
945
973
  if (b != this.p) {
946
- this.cb("IsHover", b, a);
974
+ this.ce("IsHover", b, a);
947
975
  }
948
976
  }
949
977
  get disabled() {
@@ -953,27 +981,17 @@ export let XIcon = /*@__PURE__*/ (() => {
953
981
  let b = this.o;
954
982
  this.o = a;
955
983
  if (b != this.o) {
956
- this.cb("IsDisabled", b, a);
984
+ this.ce("IsDisabled", b, a);
957
985
  }
958
986
  }
959
- get ak() {
960
- return this.y;
961
- }
962
- set ak(a) {
963
- let b = this.y;
964
- this.y = a;
965
- if (b != this.y) {
966
- this.cb("Opacity", b, this.y);
967
- }
968
- }
969
- get an() {
970
- return this.ab;
987
+ get al() {
988
+ return this.z;
971
989
  }
972
- set an(a) {
973
- let b = this.ab;
974
- this.ab = a;
975
- if (b != this.ab) {
976
- this.cb("ViewBoxLeft", b, this.ab);
990
+ set al(a) {
991
+ let b = this.z;
992
+ this.z = a;
993
+ if (b != this.z) {
994
+ this.ce("Opacity", b, this.z);
977
995
  }
978
996
  }
979
997
  get ao() {
@@ -983,7 +1001,7 @@ export let XIcon = /*@__PURE__*/ (() => {
983
1001
  let b = this.ac;
984
1002
  this.ac = a;
985
1003
  if (b != this.ac) {
986
- this.cb("ViewBoxTop", b, this.ac);
1004
+ this.ce("ViewBoxLeft", b, this.ac);
987
1005
  }
988
1006
  }
989
1007
  get ap() {
@@ -993,17 +1011,7 @@ export let XIcon = /*@__PURE__*/ (() => {
993
1011
  let b = this.ad;
994
1012
  this.ad = a;
995
1013
  if (b != this.ad) {
996
- this.cb("ViewBoxWidth", b, this.ad);
997
- }
998
- }
999
- get am() {
1000
- return this.aa;
1001
- }
1002
- set am(a) {
1003
- let b = this.aa;
1004
- this.aa = a;
1005
- if (b != this.aa) {
1006
- this.cb("ViewBoxHeight", b, this.aa);
1014
+ this.ce("ViewBoxTop", b, this.ad);
1007
1015
  }
1008
1016
  }
1009
1017
  get aq() {
@@ -1013,20 +1021,40 @@ export let XIcon = /*@__PURE__*/ (() => {
1013
1021
  let b = this.ae;
1014
1022
  this.ae = a;
1015
1023
  if (b != this.ae) {
1016
- this.cb("Width", b, this.ae);
1024
+ this.ce("ViewBoxWidth", b, this.ae);
1017
1025
  }
1018
1026
  }
1019
- get ai() {
1020
- return this.w;
1027
+ get an() {
1028
+ return this.ab;
1021
1029
  }
1022
- set ai(a) {
1023
- let b = this.w;
1024
- this.w = a;
1025
- if (b != this.w) {
1026
- this.cb("Height", b, this.w);
1030
+ set an(a) {
1031
+ let b = this.ab;
1032
+ this.ab = a;
1033
+ if (b != this.ab) {
1034
+ this.ce("ViewBoxHeight", b, this.ab);
1027
1035
  }
1028
1036
  }
1029
- cc() {
1037
+ get ar() {
1038
+ return this.af;
1039
+ }
1040
+ set ar(a) {
1041
+ let b = this.af;
1042
+ this.af = a;
1043
+ if (b != this.af) {
1044
+ this.ce("Width", b, this.af);
1045
+ }
1046
+ }
1047
+ get aj() {
1048
+ return this.x;
1049
+ }
1050
+ set aj(a) {
1051
+ let b = this.x;
1052
+ this.x = a;
1053
+ if (b != this.x) {
1054
+ this.ce("Height", b, this.x);
1055
+ }
1056
+ }
1057
+ cf() {
1030
1058
  }
1031
1059
  onDetachedFromUI() {
1032
1060
  this.view.aj();
@@ -1034,21 +1062,24 @@ export let XIcon = /*@__PURE__*/ (() => {
1034
1062
  onAttachedToUI() {
1035
1063
  this.view.ag();
1036
1064
  }
1037
- b7() {
1065
+ v() {
1038
1066
  if (this.disabled) {
1039
- return;
1067
+ return false;
1040
1068
  }
1041
1069
  if (this.clicked != null) {
1042
- this.clicked(this, new IconClickedEventArgs());
1070
+ let a = new IconClickedEventArgs();
1071
+ this.clicked(this, a);
1072
+ return a.handled;
1043
1073
  }
1074
+ return false;
1044
1075
  }
1045
1076
  u() {
1046
1077
  return this.view.l();
1047
1078
  }
1048
- au() {
1079
+ aw() {
1049
1080
  return this.g();
1050
1081
  }
1051
- a9() {
1082
+ bc() {
1052
1083
  let a = this.g();
1053
1084
  return a.l();
1054
1085
  }
@@ -1062,7 +1093,7 @@ export let XIcon = /*@__PURE__*/ (() => {
1062
1093
  a.a = this.view.a();
1063
1094
  a.svg = this.svg;
1064
1095
  a.svgPath = this.svgPath;
1065
- a.k = this.a7;
1096
+ a.k = this.ba;
1066
1097
  if (this.m != null) {
1067
1098
  let c = this.m;
1068
1099
  if (this.view != null && c.q == null) {
@@ -1098,14 +1129,14 @@ export let XIcon = /*@__PURE__*/ (() => {
1098
1129
  }
1099
1130
  }
1100
1131
  XIcon.$t = markType(XIcon, 'XIcon', Base.$, [INotifyPropertyChanged_$type, IIcon_$type]);
1101
- XIcon.cz = null;
1102
- XIcon.c4 = null;
1103
- XIcon.c3 = null;
1104
- XIcon.c0 = null;
1105
- XIcon.c1 = null;
1106
1132
  XIcon.c2 = null;
1133
+ XIcon.c7 = null;
1134
+ XIcon.c6 = null;
1135
+ XIcon.c3 = null;
1136
+ XIcon.c4 = null;
1137
+ XIcon.c5 = null;
1138
+ XIcon.ai = NaN;
1107
1139
  XIcon.ah = NaN;
1108
- XIcon.ag = NaN;
1109
- XIcon.at = 0;
1140
+ XIcon.au = 0;
1110
1141
  return XIcon;
1111
1142
  })();