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.
- package/bundles/igniteui-angular-inputs.umd.js +16857 -7563
- package/bundles/igniteui-angular-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonGroupView_combined.js +19 -19
- package/esm2015/lib/ButtonView_combined.js +820 -790
- package/esm2015/lib/CalendarView_combined.js +82 -82
- package/esm2015/lib/ColorEditor.js +7 -0
- package/esm2015/lib/ColorEditorBridge.js +7 -0
- package/esm2015/lib/ColorEditorGotFocusEventArgs.js +16 -0
- package/esm2015/lib/ColorEditorLostFocusEventArgs.js +16 -0
- package/esm2015/lib/ColorEditorPanel.js +7 -0
- package/esm2015/lib/ColorEditorPanelClosedEventArgs.js +16 -0
- package/esm2015/lib/ColorEditorPanelSelectedValueChangedEventArgs.js +33 -0
- package/esm2015/lib/ColorEditorPanelView.js +7 -0
- package/esm2015/lib/ColorEditorView.js +7 -0
- package/esm2015/lib/DatePickerView_combined.js +18 -18
- package/esm2015/lib/DefaultMultiSliderTrackBarVisual.js +113 -0
- package/esm2015/lib/DefaultMultiSliderTrackRangeVisual.js +208 -0
- package/esm2015/lib/DefaultMultiSliderTrackThumbCalloutVisual.js +170 -0
- package/esm2015/lib/DefaultMultiSliderTrackThumbVisual.js +193 -0
- package/esm2015/lib/DefaultMultiTrackShadeVisual.js +172 -0
- package/esm2015/lib/IMultiSliderTrackBarVisual.js +11 -0
- package/esm2015/lib/IMultiSliderTrackRangeVisual.js +11 -0
- package/esm2015/lib/IMultiSliderTrackShadeVisual.js +11 -0
- package/esm2015/lib/IMultiSliderTrackThumbCalloutVisual.js +11 -0
- package/esm2015/lib/IMultiSliderTrackThumbVisual.js +11 -0
- package/esm2015/lib/ISliderTrackOwner.js +11 -0
- package/esm2015/lib/IconClickedEventArgs.js +10 -0
- package/esm2015/lib/IconView_combined.js +345 -314
- package/esm2015/lib/InputGroupView_combined.js +456 -355
- package/esm2015/lib/MultiSlider.js +7 -0
- package/esm2015/lib/MultiSliderBridge.js +165 -0
- package/esm2015/lib/MultiSliderCursor.js +11 -0
- package/esm2015/lib/MultiSliderHitInfo.js +22 -0
- package/esm2015/lib/MultiSliderOrientation.js +17 -0
- package/esm2015/lib/MultiSliderResolvingToolTipValueEventArgs.js +33 -0
- package/esm2015/lib/MultiSliderThumb.js +7 -0
- package/esm2015/lib/MultiSliderThumbCollection.js +21 -0
- package/esm2015/lib/MultiSliderThumbRangePosition.js +16 -0
- package/esm2015/lib/MultiSliderThumbValueChangingEventArgs.js +21 -0
- package/esm2015/lib/MultiSliderThumb_combined.js +297 -0
- package/esm2015/lib/MultiSliderTrackShadeOrientation.js +11 -0
- package/esm2015/lib/MultiSliderTrackThumbRange.js +7 -0
- package/esm2015/lib/MultiSliderView.js +7 -0
- package/esm2015/lib/MultiSliderView_combined.js +1785 -0
- package/esm2015/lib/MultiSliderVisualArea.js +11 -0
- package/esm2015/lib/MultiSliderYValueChangingEventArgs.js +20 -0
- package/esm2015/lib/NativeUIXInputsFactory.js +1 -179
- package/esm2015/lib/NativeUIXInputsFactory_combined.js +2113 -0
- package/esm2015/lib/XButtonBridge.js +25 -20
- package/esm2015/lib/XButtonGroupBridge.js +177 -0
- package/esm2015/lib/XComponentBridge.js +3 -0
- package/esm2015/lib/XIconBridge.js +20 -16
- package/esm2015/lib/XInputBridge.js +274 -26
- package/esm2015/lib/XPopupBridge.js +117 -98
- package/esm2015/lib/igx-color-editor-component.js +470 -0
- package/esm2015/lib/igx-color-editor-dynamic-module.js +45 -0
- package/esm2015/lib/igx-color-editor-got-focus-event-args.js +27 -0
- package/esm2015/lib/igx-color-editor-lost-focus-event-args.js +27 -0
- package/esm2015/lib/igx-color-editor-module.js +39 -0
- package/esm2015/lib/igx-color-editor-panel-closed-event-args.js +27 -0
- package/esm2015/lib/igx-color-editor-panel-component.js +376 -0
- package/esm2015/lib/igx-color-editor-panel-dynamic-module.js +66 -0
- package/esm2015/lib/igx-color-editor-panel-module.js +60 -0
- package/esm2015/lib/igx-color-editor-panel-selected-value-changed-event-args.js +40 -0
- package/esm2015/lib/igx-multi-slider-component.js +642 -0
- package/esm2015/lib/igx-multi-slider-dynamic-module.js +38 -0
- package/esm2015/lib/igx-multi-slider-module.js +36 -0
- package/esm2015/lib/igx-multi-slider-resolving-tool-tip-value-event-args.js +39 -0
- package/esm2015/lib/igx-multi-slider-thumb-collection.js +53 -0
- package/esm2015/lib/igx-multi-slider-thumb-value-changing-event-args.js +56 -0
- package/esm2015/lib/igx-multi-slider-thumb.js +111 -0
- package/esm2015/lib/igx-multi-slider-track-thumb-range.js +119 -0
- package/esm2015/lib/igx-multi-slider-y-value-changing-event-args.js +33 -0
- package/esm2015/lib/igx-x-button-component.js +262 -262
- package/esm2015/lib/igx-x-icon-component.js +66 -55
- package/esm2015/lib/igx-x-input-group-component.js +48 -48
- package/esm2015/lib/igx-x-label-component.js +41 -40
- package/esm2015/public_api.js +55 -0
- package/esm5/lib/ButtonGroupView_combined.js +19 -19
- package/esm5/lib/ButtonView_combined.js +765 -735
- package/esm5/lib/CalendarView_combined.js +82 -82
- package/esm5/lib/ColorEditor.js +7 -0
- package/esm5/lib/ColorEditorBridge.js +7 -0
- package/esm5/lib/ColorEditorGotFocusEventArgs.js +20 -0
- package/esm5/lib/ColorEditorLostFocusEventArgs.js +20 -0
- package/esm5/lib/ColorEditorPanel.js +7 -0
- package/esm5/lib/ColorEditorPanelClosedEventArgs.js +20 -0
- package/esm5/lib/ColorEditorPanelSelectedValueChangedEventArgs.js +43 -0
- package/esm5/lib/ColorEditorPanelView.js +7 -0
- package/esm5/lib/ColorEditorView.js +7 -0
- package/esm5/lib/DatePickerView_combined.js +18 -18
- package/esm5/lib/DefaultMultiSliderTrackBarVisual.js +139 -0
- package/esm5/lib/DefaultMultiSliderTrackRangeVisual.js +242 -0
- package/esm5/lib/DefaultMultiSliderTrackThumbCalloutVisual.js +212 -0
- package/esm5/lib/DefaultMultiSliderTrackThumbVisual.js +227 -0
- package/esm5/lib/DefaultMultiTrackShadeVisual.js +206 -0
- package/esm5/lib/IMultiSliderTrackBarVisual.js +11 -0
- package/esm5/lib/IMultiSliderTrackRangeVisual.js +11 -0
- package/esm5/lib/IMultiSliderTrackShadeVisual.js +11 -0
- package/esm5/lib/IMultiSliderTrackThumbCalloutVisual.js +11 -0
- package/esm5/lib/IMultiSliderTrackThumbVisual.js +11 -0
- package/esm5/lib/ISliderTrackOwner.js +11 -0
- package/esm5/lib/IconClickedEventArgs.js +13 -1
- package/esm5/lib/IconView_combined.js +336 -301
- package/esm5/lib/InputGroupView_combined.js +444 -343
- package/esm5/lib/MultiSlider.js +7 -0
- package/esm5/lib/MultiSliderBridge.js +167 -0
- package/esm5/lib/MultiSliderCursor.js +11 -0
- package/esm5/lib/MultiSliderHitInfo.js +24 -0
- package/esm5/lib/MultiSliderOrientation.js +17 -0
- package/esm5/lib/MultiSliderResolvingToolTipValueEventArgs.js +43 -0
- package/esm5/lib/MultiSliderThumb.js +7 -0
- package/esm5/lib/MultiSliderThumbCollection.js +22 -0
- package/esm5/lib/MultiSliderThumbRangePosition.js +16 -0
- package/esm5/lib/MultiSliderThumbValueChangingEventArgs.js +23 -0
- package/esm5/lib/MultiSliderThumb_combined.js +352 -0
- package/esm5/lib/MultiSliderTrackShadeOrientation.js +11 -0
- package/esm5/lib/MultiSliderTrackThumbRange.js +7 -0
- package/esm5/lib/MultiSliderView.js +7 -0
- package/esm5/lib/MultiSliderView_combined.js +2006 -0
- package/esm5/lib/MultiSliderVisualArea.js +11 -0
- package/esm5/lib/MultiSliderYValueChangingEventArgs.js +22 -0
- package/esm5/lib/NativeUIXInputsFactory.js +1 -189
- package/esm5/lib/NativeUIXInputsFactory_combined.js +2298 -0
- package/esm5/lib/XButtonBridge.js +25 -20
- package/esm5/lib/XButtonGroupBridge.js +179 -0
- package/esm5/lib/XComponentBridge.js +3 -0
- package/esm5/lib/XIconBridge.js +20 -16
- package/esm5/lib/XInputBridge.js +274 -26
- package/esm5/lib/XPopupBridge.js +117 -98
- package/esm5/lib/igx-color-editor-component.js +555 -0
- package/esm5/lib/igx-color-editor-dynamic-module.js +44 -0
- package/esm5/lib/igx-color-editor-got-focus-event-args.js +33 -0
- package/esm5/lib/igx-color-editor-lost-focus-event-args.js +33 -0
- package/esm5/lib/igx-color-editor-module.js +38 -0
- package/esm5/lib/igx-color-editor-panel-closed-event-args.js +33 -0
- package/esm5/lib/igx-color-editor-panel-component.js +435 -0
- package/esm5/lib/igx-color-editor-panel-dynamic-module.js +65 -0
- package/esm5/lib/igx-color-editor-panel-module.js +59 -0
- package/esm5/lib/igx-color-editor-panel-selected-value-changed-event-args.js +54 -0
- package/esm5/lib/igx-multi-slider-component.js +842 -0
- package/esm5/lib/igx-multi-slider-dynamic-module.js +37 -0
- package/esm5/lib/igx-multi-slider-module.js +35 -0
- package/esm5/lib/igx-multi-slider-resolving-tool-tip-value-event-args.js +53 -0
- package/esm5/lib/igx-multi-slider-thumb-collection.js +58 -0
- package/esm5/lib/igx-multi-slider-thumb-value-changing-event-args.js +70 -0
- package/esm5/lib/igx-multi-slider-thumb.js +134 -0
- package/esm5/lib/igx-multi-slider-track-thumb-range.js +149 -0
- package/esm5/lib/igx-multi-slider-y-value-changing-event-args.js +43 -0
- package/esm5/lib/igx-x-button-component.js +262 -262
- package/esm5/lib/igx-x-icon-component.js +70 -55
- package/esm5/lib/igx-x-input-group-component.js +48 -48
- package/esm5/lib/igx-x-label-component.js +41 -40
- package/esm5/public_api.js +55 -0
- package/fesm2015/igniteui-angular-inputs.js +15626 -7466
- package/fesm5/igniteui-angular-inputs.js +16802 -7565
- package/lib/ButtonView_combined.d.ts +243 -241
- package/lib/ColorEditor.d.ts +1 -0
- package/lib/ColorEditorBridge.d.ts +1 -0
- package/lib/ColorEditorGotFocusEventArgs.d.ts +7 -0
- package/lib/ColorEditorLostFocusEventArgs.d.ts +7 -0
- package/lib/ColorEditorPanel.d.ts +1 -0
- package/lib/ColorEditorPanelClosedEventArgs.d.ts +7 -0
- package/lib/ColorEditorPanelSelectedValueChangedEventArgs.d.ts +14 -0
- package/lib/ColorEditorPanelView.d.ts +1 -0
- package/lib/ColorEditorView.d.ts +1 -0
- package/lib/DefaultMultiSliderTrackBarVisual.d.ts +34 -0
- package/lib/DefaultMultiSliderTrackRangeVisual.d.ts +43 -0
- package/lib/DefaultMultiSliderTrackThumbCalloutVisual.d.ts +49 -0
- package/lib/DefaultMultiSliderTrackThumbVisual.d.ts +45 -0
- package/lib/DefaultMultiTrackShadeVisual.d.ts +42 -0
- package/lib/IMultiSliderTrackBarVisual.d.ts +21 -0
- package/lib/IMultiSliderTrackRangeVisual.d.ts +25 -0
- package/lib/IMultiSliderTrackShadeVisual.d.ts +24 -0
- package/lib/IMultiSliderTrackThumbCalloutVisual.d.ts +27 -0
- package/lib/IMultiSliderTrackThumbVisual.d.ts +27 -0
- package/lib/ISliderTrackOwner.d.ts +15 -0
- package/lib/IconClickedEventArgs.d.ts +3 -0
- package/lib/IconView_combined.d.ts +88 -84
- package/lib/InputGroupView_combined.d.ts +120 -113
- package/lib/MultiSlider.d.ts +1 -0
- package/lib/MultiSliderBridge.d.ts +24 -0
- package/lib/MultiSliderCursor.d.ts +15 -0
- package/lib/MultiSliderHitInfo.d.ts +13 -0
- package/lib/MultiSliderOrientation.d.ts +10 -0
- package/lib/MultiSliderResolvingToolTipValueEventArgs.d.ts +13 -0
- package/lib/MultiSliderThumb.d.ts +1 -0
- package/lib/MultiSliderThumbCollection.d.ts +10 -0
- package/lib/MultiSliderThumbRangePosition.d.ts +9 -0
- package/lib/MultiSliderThumbValueChangingEventArgs.d.ts +10 -0
- package/lib/MultiSliderThumb_combined.d.ts +76 -0
- package/lib/MultiSliderTrackShadeOrientation.d.ts +14 -0
- package/lib/MultiSliderTrackThumbRange.d.ts +1 -0
- package/lib/MultiSliderView.d.ts +1 -0
- package/lib/MultiSliderView_combined.d.ts +298 -0
- package/lib/MultiSliderVisualArea.d.ts +14 -0
- package/lib/MultiSliderYValueChangingEventArgs.d.ts +8 -0
- package/lib/NativeUIXInputsFactory.d.ts +1 -24
- package/lib/NativeUIXInputsFactory_combined.d.ts +393 -0
- package/lib/XButtonGroupBridge.d.ts +29 -0
- package/lib/XInputBridge.d.ts +29 -5
- package/lib/XPopupBridge.d.ts +12 -9
- package/lib/igx-color-editor-component.d.ts +161 -0
- package/lib/igx-color-editor-dynamic-module.d.ts +10 -0
- package/lib/igx-color-editor-got-focus-event-args.d.ts +12 -0
- package/lib/igx-color-editor-lost-focus-event-args.d.ts +12 -0
- package/lib/igx-color-editor-module.d.ts +10 -0
- package/lib/igx-color-editor-panel-closed-event-args.d.ts +12 -0
- package/lib/igx-color-editor-panel-component.d.ts +125 -0
- package/lib/igx-color-editor-panel-dynamic-module.d.ts +13 -0
- package/lib/igx-color-editor-panel-module.d.ts +13 -0
- package/lib/igx-color-editor-panel-selected-value-changed-event-args.d.ts +16 -0
- package/lib/igx-multi-slider-component.d.ts +200 -0
- package/lib/igx-multi-slider-dynamic-module.d.ts +9 -0
- package/lib/igx-multi-slider-module.d.ts +9 -0
- package/lib/igx-multi-slider-resolving-tool-tip-value-event-args.d.ts +17 -0
- package/lib/igx-multi-slider-thumb-collection.d.ts +8 -0
- package/lib/igx-multi-slider-thumb-value-changing-event-args.d.ts +18 -0
- package/lib/igx-multi-slider-thumb.d.ts +33 -0
- package/lib/igx-multi-slider-track-thumb-range.d.ts +32 -0
- package/lib/igx-multi-slider-y-value-changing-event-args.d.ts +15 -0
- package/lib/igx-x-icon-component.d.ts +6 -1
- package/package.json +2 -2
- 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.
|
|
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.
|
|
157
|
+
this.d.cf();
|
|
158
158
|
};
|
|
159
|
-
IconView.prototype.
|
|
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.
|
|
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.
|
|
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.
|
|
211
|
-
this.v.rootWrapper.setStyleProperty("height", isNaN_(this.d.
|
|
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.
|
|
214
|
-
var a = isNaN_(this.d.
|
|
215
|
-
var b = isNaN_(this.d.
|
|
216
|
-
var c = isNaN_(this.d.
|
|
217
|
-
var d = isNaN_(this.d.
|
|
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.
|
|
280
|
+
this.d.cc();
|
|
276
281
|
};
|
|
277
282
|
IconView.prototype.ae = function (a) {
|
|
278
|
-
this.d.
|
|
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.
|
|
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.
|
|
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.
|
|
434
|
-
_this.
|
|
435
|
-
_this.
|
|
436
|
-
_this.
|
|
437
|
-
_this.
|
|
438
|
-
_this.
|
|
439
|
-
_this.
|
|
440
|
-
_this.
|
|
441
|
-
_this.
|
|
442
|
-
_this.
|
|
443
|
-
_this.
|
|
444
|
-
_this.
|
|
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.
|
|
456
|
+
_this.cu = null;
|
|
457
|
+
_this.cv = null;
|
|
458
|
+
_this.cw = null;
|
|
459
|
+
_this.av = null;
|
|
452
460
|
_this.az = null;
|
|
453
|
-
_this.
|
|
461
|
+
_this.a2 = null;
|
|
462
|
+
_this.a1 = null;
|
|
454
463
|
_this.a = null;
|
|
455
464
|
_this.l = null;
|
|
456
|
-
_this.
|
|
457
|
-
_this.
|
|
465
|
+
_this.a0 = "ig-icon-" + XIcon.au++;
|
|
466
|
+
_this.as = 0;
|
|
458
467
|
_this.n = false;
|
|
459
|
-
_this.
|
|
468
|
+
_this.ay = null;
|
|
460
469
|
_this.p = false;
|
|
461
470
|
_this.o = false;
|
|
462
|
-
_this.
|
|
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.
|
|
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.
|
|
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.
|
|
503
|
+
this.ch(a, b, c);
|
|
495
504
|
};
|
|
496
|
-
XIcon.prototype.
|
|
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.
|
|
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.
|
|
521
|
+
this.cj();
|
|
513
522
|
break;
|
|
514
523
|
case "SVG":
|
|
515
|
-
this.
|
|
524
|
+
this.a2 = null;
|
|
516
525
|
this.a = null;
|
|
517
|
-
this.
|
|
526
|
+
this.cj();
|
|
518
527
|
break;
|
|
519
528
|
case "SVGPath":
|
|
520
|
-
this.
|
|
529
|
+
this.a1 = null;
|
|
521
530
|
this.a = null;
|
|
522
|
-
this.
|
|
531
|
+
this.cj();
|
|
523
532
|
break;
|
|
524
533
|
case "SVGPaths":
|
|
525
|
-
this.
|
|
526
|
-
this.
|
|
527
|
-
this.
|
|
534
|
+
this.a1 = null;
|
|
535
|
+
this.a2 = null;
|
|
536
|
+
this.cj();
|
|
528
537
|
break;
|
|
529
538
|
case "DataURL":
|
|
530
|
-
this.
|
|
531
|
-
this.
|
|
539
|
+
this.a1 = null;
|
|
540
|
+
this.a2 = null;
|
|
532
541
|
this.a = null;
|
|
533
|
-
this.
|
|
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.
|
|
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.
|
|
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.
|
|
551
|
-
var a = this.fill != null ? this.fill : XIcon.
|
|
552
|
-
var b = this.
|
|
553
|
-
var c = !isNaN_(this.
|
|
554
|
-
var d = this.
|
|
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.
|
|
557
|
-
this.
|
|
558
|
-
this.
|
|
559
|
-
this.
|
|
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.
|
|
563
|
-
this.
|
|
564
|
-
this.
|
|
565
|
-
this.
|
|
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.
|
|
576
|
-
NativeUI.y(this.view.z, this.
|
|
590
|
+
XIcon.prototype.ck = function () {
|
|
591
|
+
NativeUI.y(this.view.z, this.al);
|
|
577
592
|
};
|
|
578
|
-
XIcon.prototype.
|
|
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.
|
|
583
|
-
NativeUI.aa(b, this.
|
|
584
|
-
NativeUI.ad(b, this.
|
|
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.
|
|
605
|
+
this.view.at(this.svgPath);
|
|
591
606
|
c = true;
|
|
592
607
|
}
|
|
593
608
|
else {
|
|
594
|
-
this.view.
|
|
609
|
+
this.view.au(this.svgPath);
|
|
595
610
|
}
|
|
596
611
|
}
|
|
597
612
|
else if (this.b != null) {
|
|
598
|
-
this.view.
|
|
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.
|
|
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.
|
|
608
|
-
e(d[g], this.
|
|
622
|
+
if (this.cz != null) {
|
|
623
|
+
e(d[g], this.cz);
|
|
609
624
|
}
|
|
610
|
-
if (this.
|
|
611
|
-
f(d[g], this.
|
|
625
|
+
if (this.c0 != null) {
|
|
626
|
+
f(d[g], this.c0);
|
|
612
627
|
}
|
|
613
|
-
if (!isNaN_(this.
|
|
614
|
-
NativeUI.ad(d[g], this.
|
|
628
|
+
if (!isNaN_(this.ag)) {
|
|
629
|
+
NativeUI.ad(d[g], this.ag);
|
|
615
630
|
}
|
|
616
|
-
if (this.
|
|
617
|
-
NativeUI.q(d[g], this.
|
|
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.
|
|
643
|
+
this.view.aw(this.m);
|
|
629
644
|
}
|
|
630
645
|
return;
|
|
631
646
|
}
|
|
632
647
|
else if (this.svg != null) {
|
|
633
|
-
this.view.
|
|
648
|
+
this.view.at(this.svg);
|
|
634
649
|
c = true;
|
|
635
650
|
}
|
|
636
|
-
else if (this.
|
|
637
|
-
this.view.ap(this.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
681
|
-
NativeUI.aa(this.view.q._inner[ab].d, ac.m.f(this.
|
|
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.
|
|
686
|
-
NativeUI.r(ad, this.
|
|
703
|
+
if (this.cz != null) {
|
|
704
|
+
NativeUI.r(ad, this.cz);
|
|
687
705
|
}
|
|
688
|
-
if (this.
|
|
689
|
-
NativeUI.aa(ad, this.
|
|
706
|
+
if (this.c0 != null) {
|
|
707
|
+
NativeUI.aa(ad, this.c0);
|
|
690
708
|
}
|
|
691
|
-
if (!isNaN_(this.
|
|
692
|
-
NativeUI.ad(ad, this.
|
|
709
|
+
if (!isNaN_(this.ag)) {
|
|
710
|
+
NativeUI.ad(ad, this.ag);
|
|
693
711
|
}
|
|
694
712
|
}
|
|
695
713
|
if (this.m != null) {
|
|
696
|
-
this.view.
|
|
714
|
+
this.view.aw(this.m);
|
|
697
715
|
}
|
|
698
|
-
if (this.
|
|
699
|
-
NativeUI.q(this.view.z, this.
|
|
716
|
+
if (this.c1 != null) {
|
|
717
|
+
NativeUI.q(this.view.z, this.c1);
|
|
700
718
|
}
|
|
701
719
|
};
|
|
702
|
-
XIcon.prototype.
|
|
720
|
+
XIcon.prototype.cg = function () {
|
|
703
721
|
var e_3, _a, e_4, _b;
|
|
704
|
-
if (this.
|
|
705
|
-
this.view.am(this.
|
|
722
|
+
if (this.cz != null) {
|
|
723
|
+
this.view.am(this.cz, "fill");
|
|
706
724
|
}
|
|
707
|
-
if (this.
|
|
708
|
-
this.view.am(this.
|
|
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.
|
|
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, "
|
|
785
|
+
Object.defineProperty(XIcon.prototype, "cz", {
|
|
768
786
|
get: function () {
|
|
769
|
-
return this.
|
|
787
|
+
return this.cm;
|
|
770
788
|
},
|
|
771
789
|
set: function (a) {
|
|
772
|
-
var b = this.
|
|
773
|
-
this.
|
|
774
|
-
if (b != this.
|
|
775
|
-
this.
|
|
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, "
|
|
799
|
+
Object.defineProperty(XIcon.prototype, "c0", {
|
|
782
800
|
get: function () {
|
|
783
|
-
return this.
|
|
801
|
+
return this.cn;
|
|
784
802
|
},
|
|
785
803
|
set: function (a) {
|
|
786
|
-
var b = this.
|
|
787
|
-
this.
|
|
788
|
-
if (b != this.
|
|
789
|
-
this.
|
|
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, "
|
|
813
|
+
Object.defineProperty(XIcon.prototype, "c1", {
|
|
796
814
|
get: function () {
|
|
797
|
-
return this.
|
|
815
|
+
return this.co;
|
|
798
816
|
},
|
|
799
817
|
set: function (a) {
|
|
800
|
-
var b = this.
|
|
801
|
-
this.
|
|
802
|
-
if (b != this.
|
|
803
|
-
this.
|
|
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, "
|
|
827
|
+
Object.defineProperty(XIcon.prototype, "ag", {
|
|
810
828
|
get: function () {
|
|
811
|
-
return this.
|
|
829
|
+
return this.w;
|
|
812
830
|
},
|
|
813
831
|
set: function (a) {
|
|
814
|
-
var b = this.
|
|
815
|
-
this.
|
|
816
|
-
if (b != this.
|
|
817
|
-
this.
|
|
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.
|
|
843
|
+
return this.cp;
|
|
826
844
|
},
|
|
827
845
|
set: function (a) {
|
|
828
|
-
var b = this.
|
|
829
|
-
this.
|
|
830
|
-
if (b != this.
|
|
831
|
-
this.
|
|
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, "
|
|
855
|
+
Object.defineProperty(XIcon.prototype, "df", {
|
|
838
856
|
get: function () {
|
|
839
|
-
return this.
|
|
857
|
+
return this.cx;
|
|
840
858
|
},
|
|
841
859
|
set: function (a) {
|
|
842
|
-
var b = this.
|
|
843
|
-
this.
|
|
844
|
-
if (b != this.
|
|
845
|
-
this.
|
|
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, "
|
|
869
|
+
Object.defineProperty(XIcon.prototype, "am", {
|
|
852
870
|
get: function () {
|
|
853
|
-
return this.
|
|
871
|
+
return this.aa;
|
|
854
872
|
},
|
|
855
873
|
set: function (a) {
|
|
856
|
-
var b = this.
|
|
857
|
-
this.
|
|
858
|
-
if (b != this.
|
|
859
|
-
this.
|
|
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, "
|
|
883
|
+
Object.defineProperty(XIcon.prototype, "dg", {
|
|
866
884
|
get: function () {
|
|
867
|
-
return this.
|
|
885
|
+
return this.cy;
|
|
868
886
|
},
|
|
869
887
|
set: function (a) {
|
|
870
|
-
var b = this.
|
|
871
|
-
this.
|
|
872
|
-
if (b != this.
|
|
873
|
-
this.
|
|
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, "
|
|
897
|
+
Object.defineProperty(XIcon.prototype, "c8", {
|
|
880
898
|
get: function () {
|
|
881
|
-
return this.
|
|
899
|
+
return this.cq;
|
|
882
900
|
},
|
|
883
901
|
set: function (a) {
|
|
884
|
-
var b = this.
|
|
885
|
-
this.
|
|
886
|
-
if (b != this.
|
|
887
|
-
this.
|
|
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, "
|
|
911
|
+
Object.defineProperty(XIcon.prototype, "c9", {
|
|
894
912
|
get: function () {
|
|
895
|
-
return this.
|
|
913
|
+
return this.cr;
|
|
896
914
|
},
|
|
897
915
|
set: function (a) {
|
|
898
|
-
var b = this.
|
|
899
|
-
this.
|
|
900
|
-
if (b != this.
|
|
901
|
-
this.
|
|
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, "
|
|
925
|
+
Object.defineProperty(XIcon.prototype, "ak", {
|
|
908
926
|
get: function () {
|
|
909
|
-
return this.
|
|
927
|
+
return this.y;
|
|
910
928
|
},
|
|
911
929
|
set: function (a) {
|
|
912
|
-
var b = this.
|
|
913
|
-
this.
|
|
914
|
-
if (b != this.
|
|
915
|
-
this.
|
|
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, "
|
|
939
|
+
Object.defineProperty(XIcon.prototype, "da", {
|
|
922
940
|
get: function () {
|
|
923
|
-
return this.
|
|
941
|
+
return this.cs;
|
|
924
942
|
},
|
|
925
943
|
set: function (a) {
|
|
926
|
-
var b = this.
|
|
927
|
-
this.
|
|
928
|
-
if (b != this.
|
|
929
|
-
this.
|
|
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.
|
|
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.
|
|
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, "
|
|
981
|
+
Object.defineProperty(XIcon.prototype, "db", {
|
|
964
982
|
get: function () {
|
|
965
|
-
return this.
|
|
983
|
+
return this.ct;
|
|
966
984
|
},
|
|
967
985
|
set: function (a) {
|
|
968
|
-
var b = this.
|
|
969
|
-
this.
|
|
970
|
-
if (b != this.
|
|
971
|
-
this.
|
|
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, "
|
|
995
|
+
Object.defineProperty(XIcon.prototype, "dc", {
|
|
978
996
|
get: function () {
|
|
979
|
-
return this.
|
|
997
|
+
return this.cu;
|
|
980
998
|
},
|
|
981
999
|
set: function (a) {
|
|
982
|
-
var b = this.
|
|
983
|
-
this.
|
|
984
|
-
if (b != this.
|
|
985
|
-
this.
|
|
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, "
|
|
1009
|
+
Object.defineProperty(XIcon.prototype, "dd", {
|
|
992
1010
|
get: function () {
|
|
993
|
-
return this.
|
|
1011
|
+
return this.cv;
|
|
994
1012
|
},
|
|
995
1013
|
set: function (a) {
|
|
996
|
-
var b = this.
|
|
997
|
-
this.
|
|
998
|
-
if (b != this.
|
|
999
|
-
this.
|
|
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, "
|
|
1023
|
+
Object.defineProperty(XIcon.prototype, "de", {
|
|
1006
1024
|
get: function () {
|
|
1007
|
-
return this.
|
|
1025
|
+
return this.cw;
|
|
1008
1026
|
},
|
|
1009
1027
|
set: function (a) {
|
|
1010
|
-
var b = this.
|
|
1011
|
-
this.
|
|
1012
|
-
if (b != this.
|
|
1013
|
-
this.
|
|
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, "
|
|
1037
|
+
Object.defineProperty(XIcon.prototype, "ax", {
|
|
1020
1038
|
get: function () {
|
|
1021
|
-
return this.
|
|
1039
|
+
return this.av;
|
|
1022
1040
|
},
|
|
1023
1041
|
set: function (a) {
|
|
1024
|
-
var b = this.
|
|
1025
|
-
this.
|
|
1026
|
-
if (b != this.
|
|
1027
|
-
this.
|
|
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, "
|
|
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.
|
|
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.
|
|
1081
|
+
return this.a1;
|
|
1050
1082
|
},
|
|
1051
1083
|
set: function (a) {
|
|
1052
|
-
var b = this.
|
|
1053
|
-
this.
|
|
1054
|
-
if (b != this.
|
|
1055
|
-
this.
|
|
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.
|
|
1101
|
+
this.ce("SVGPaths", b, this.a);
|
|
1070
1102
|
}
|
|
1071
1103
|
},
|
|
1072
1104
|
enumerable: false,
|
|
1073
1105
|
configurable: true
|
|
1074
1106
|
});
|
|
1075
|
-
XIcon.prototype.
|
|
1107
|
+
XIcon.prototype.cc = function () {
|
|
1076
1108
|
this.t = true;
|
|
1077
1109
|
};
|
|
1078
|
-
XIcon.prototype.
|
|
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.
|
|
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, "
|
|
1127
|
+
Object.defineProperty(XIcon.prototype, "bk", {
|
|
1096
1128
|
get: function () {
|
|
1097
|
-
return this.
|
|
1129
|
+
return this.a0;
|
|
1098
1130
|
},
|
|
1099
1131
|
set: function (a) {
|
|
1100
|
-
var b = this.
|
|
1101
|
-
this.
|
|
1102
|
-
if (b != this.
|
|
1103
|
-
this.
|
|
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, "
|
|
1148
|
+
Object.defineProperty(XIcon.prototype, "at", {
|
|
1117
1149
|
get: function () {
|
|
1118
|
-
return this.
|
|
1150
|
+
return this.as;
|
|
1119
1151
|
},
|
|
1120
1152
|
set: function (a) {
|
|
1121
|
-
var b = this.
|
|
1122
|
-
this.
|
|
1153
|
+
var b = this.as;
|
|
1154
|
+
this.as = a;
|
|
1123
1155
|
this.n = true;
|
|
1124
|
-
if (b != this.
|
|
1125
|
-
this.
|
|
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, "
|
|
1163
|
+
Object.defineProperty(XIcon.prototype, "a7", {
|
|
1132
1164
|
get: function () {
|
|
1133
|
-
return this.
|
|
1165
|
+
return this.ay;
|
|
1134
1166
|
},
|
|
1135
1167
|
set: function (a) {
|
|
1136
|
-
var b = this.
|
|
1137
|
-
this.
|
|
1138
|
-
if (b != this.
|
|
1139
|
-
this.
|
|
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.
|
|
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.
|
|
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, "
|
|
1205
|
+
Object.defineProperty(XIcon.prototype, "al", {
|
|
1188
1206
|
get: function () {
|
|
1189
|
-
return this.
|
|
1207
|
+
return this.z;
|
|
1190
1208
|
},
|
|
1191
1209
|
set: function (a) {
|
|
1192
|
-
var b = this.
|
|
1193
|
-
this.
|
|
1194
|
-
if (b != this.
|
|
1195
|
-
this.
|
|
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.
|
|
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.
|
|
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, "
|
|
1247
|
+
Object.defineProperty(XIcon.prototype, "aq", {
|
|
1230
1248
|
get: function () {
|
|
1231
|
-
return this.
|
|
1249
|
+
return this.ae;
|
|
1232
1250
|
},
|
|
1233
1251
|
set: function (a) {
|
|
1234
|
-
var b = this.
|
|
1235
|
-
this.
|
|
1236
|
-
if (b != this.
|
|
1237
|
-
this.
|
|
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, "
|
|
1261
|
+
Object.defineProperty(XIcon.prototype, "an", {
|
|
1244
1262
|
get: function () {
|
|
1245
|
-
return this.
|
|
1263
|
+
return this.ab;
|
|
1246
1264
|
},
|
|
1247
1265
|
set: function (a) {
|
|
1248
|
-
var b = this.
|
|
1249
|
-
this.
|
|
1250
|
-
if (b != this.
|
|
1251
|
-
this.
|
|
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, "
|
|
1275
|
+
Object.defineProperty(XIcon.prototype, "ar", {
|
|
1258
1276
|
get: function () {
|
|
1259
|
-
return this.
|
|
1277
|
+
return this.af;
|
|
1260
1278
|
},
|
|
1261
1279
|
set: function (a) {
|
|
1262
|
-
var b = this.
|
|
1263
|
-
this.
|
|
1264
|
-
if (b != this.
|
|
1265
|
-
this.
|
|
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
|
|
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.
|
|
1311
|
+
XIcon.prototype.v = function () {
|
|
1280
1312
|
if (this.disabled) {
|
|
1281
|
-
return;
|
|
1313
|
+
return false;
|
|
1282
1314
|
}
|
|
1283
1315
|
if (this.clicked != null) {
|
|
1284
|
-
|
|
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.
|
|
1325
|
+
XIcon.prototype.aw = function () {
|
|
1291
1326
|
return this.g();
|
|
1292
1327
|
};
|
|
1293
|
-
XIcon.prototype.
|
|
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.
|
|
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.
|
|
1350
|
-
XIcon.at = 0;
|
|
1385
|
+
XIcon.au = 0;
|
|
1351
1386
|
return XIcon;
|
|
1352
1387
|
}(Base));
|
|
1353
1388
|
export { XIcon };
|