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
|
@@ -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.
|
|
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.
|
|
122
|
+
this.d.cf();
|
|
123
123
|
}
|
|
124
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
176
|
-
this.v.rootWrapper.setStyleProperty("height", isNaN_(this.d.
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
let a = isNaN_(this.d.
|
|
180
|
-
let b = isNaN_(this.d.
|
|
181
|
-
let c = isNaN_(this.d.
|
|
182
|
-
let d = isNaN_(this.d.
|
|
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.
|
|
245
|
+
this.d.cc();
|
|
241
246
|
}
|
|
242
247
|
ae(a) {
|
|
243
|
-
this.d.
|
|
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
|
-
|
|
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.
|
|
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.
|
|
382
|
-
this.
|
|
383
|
-
this.
|
|
384
|
-
this.
|
|
385
|
-
this.
|
|
386
|
-
this.
|
|
387
|
-
this.
|
|
388
|
-
this.
|
|
389
|
-
this.
|
|
390
|
-
this.
|
|
391
|
-
this.
|
|
392
|
-
this.
|
|
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.
|
|
404
|
+
this.cu = null;
|
|
405
|
+
this.cv = null;
|
|
406
|
+
this.cw = null;
|
|
407
|
+
this.av = null;
|
|
400
408
|
this.az = null;
|
|
401
|
-
this.
|
|
409
|
+
this.a2 = null;
|
|
410
|
+
this.a1 = null;
|
|
402
411
|
this.a = null;
|
|
403
412
|
this.l = null;
|
|
404
|
-
this.
|
|
405
|
-
this.
|
|
413
|
+
this.a0 = "ig-icon-" + XIcon.au++;
|
|
414
|
+
this.as = 0;
|
|
406
415
|
this.n = false;
|
|
407
|
-
this.
|
|
416
|
+
this.ay = null;
|
|
408
417
|
this.p = false;
|
|
409
418
|
this.o = false;
|
|
410
|
-
this.
|
|
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.
|
|
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
|
-
|
|
442
|
+
ce(a, b, c) {
|
|
434
443
|
if (this.propertyChanged != null) {
|
|
435
444
|
this.propertyChanged(this, new PropertyChangedEventArgs(a));
|
|
436
445
|
}
|
|
437
|
-
this.
|
|
446
|
+
this.ch(a, b, c);
|
|
438
447
|
}
|
|
439
|
-
|
|
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.
|
|
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.
|
|
464
|
+
this.cj();
|
|
456
465
|
break;
|
|
457
466
|
case "SVG":
|
|
458
|
-
this.
|
|
467
|
+
this.a2 = null;
|
|
459
468
|
this.a = null;
|
|
460
|
-
this.
|
|
469
|
+
this.cj();
|
|
461
470
|
break;
|
|
462
471
|
case "SVGPath":
|
|
463
|
-
this.
|
|
472
|
+
this.a1 = null;
|
|
464
473
|
this.a = null;
|
|
465
|
-
this.
|
|
474
|
+
this.cj();
|
|
466
475
|
break;
|
|
467
476
|
case "SVGPaths":
|
|
468
|
-
this.
|
|
469
|
-
this.
|
|
470
|
-
this.
|
|
477
|
+
this.a1 = null;
|
|
478
|
+
this.a2 = null;
|
|
479
|
+
this.cj();
|
|
471
480
|
break;
|
|
472
481
|
case "DataURL":
|
|
473
|
-
this.
|
|
474
|
-
this.
|
|
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.
|
|
491
|
+
this.cj();
|
|
477
492
|
break;
|
|
478
493
|
case "Opacity":
|
|
479
|
-
this.
|
|
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.
|
|
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
|
-
|
|
494
|
-
let a = this.fill != null ? this.fill : XIcon.
|
|
495
|
-
let b = this.
|
|
496
|
-
let c = !isNaN_(this.
|
|
497
|
-
let d = this.
|
|
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.
|
|
500
|
-
this.
|
|
501
|
-
this.
|
|
502
|
-
this.
|
|
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.
|
|
506
|
-
this.
|
|
507
|
-
this.
|
|
508
|
-
this.
|
|
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
|
-
|
|
515
|
-
NativeUI.y(this.view.z, this.
|
|
529
|
+
ck() {
|
|
530
|
+
NativeUI.y(this.view.z, this.al);
|
|
516
531
|
}
|
|
517
|
-
|
|
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.
|
|
522
|
-
NativeUI.aa(b, this.
|
|
523
|
-
NativeUI.ad(b, this.
|
|
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.
|
|
544
|
+
this.view.at(this.svgPath);
|
|
530
545
|
c = true;
|
|
531
546
|
}
|
|
532
547
|
else {
|
|
533
|
-
this.view.
|
|
548
|
+
this.view.au(this.svgPath);
|
|
534
549
|
}
|
|
535
550
|
}
|
|
536
551
|
else if (this.b != null) {
|
|
537
|
-
this.view.
|
|
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.
|
|
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.
|
|
547
|
-
e(d[g], this.
|
|
561
|
+
if (this.cz != null) {
|
|
562
|
+
e(d[g], this.cz);
|
|
548
563
|
}
|
|
549
|
-
if (this.
|
|
550
|
-
f(d[g], this.
|
|
564
|
+
if (this.c0 != null) {
|
|
565
|
+
f(d[g], this.c0);
|
|
551
566
|
}
|
|
552
|
-
if (!isNaN_(this.
|
|
553
|
-
NativeUI.ad(d[g], this.
|
|
567
|
+
if (!isNaN_(this.ag)) {
|
|
568
|
+
NativeUI.ad(d[g], this.ag);
|
|
554
569
|
}
|
|
555
|
-
if (this.
|
|
556
|
-
NativeUI.q(d[g], this.
|
|
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.
|
|
582
|
+
this.view.aw(this.m);
|
|
568
583
|
}
|
|
569
584
|
return;
|
|
570
585
|
}
|
|
571
586
|
else if (this.svg != null) {
|
|
572
|
-
this.view.
|
|
587
|
+
this.view.at(this.svg);
|
|
573
588
|
c = true;
|
|
574
589
|
}
|
|
575
|
-
else if (this.
|
|
576
|
-
this.view.ap(this.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
620
|
-
NativeUI.aa(this.view.q._inner[ab].d, ac.m.f(this.
|
|
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.
|
|
625
|
-
NativeUI.r(ad, this.
|
|
642
|
+
if (this.cz != null) {
|
|
643
|
+
NativeUI.r(ad, this.cz);
|
|
626
644
|
}
|
|
627
|
-
if (this.
|
|
628
|
-
NativeUI.aa(ad, this.
|
|
645
|
+
if (this.c0 != null) {
|
|
646
|
+
NativeUI.aa(ad, this.c0);
|
|
629
647
|
}
|
|
630
|
-
if (!isNaN_(this.
|
|
631
|
-
NativeUI.ad(ad, this.
|
|
648
|
+
if (!isNaN_(this.ag)) {
|
|
649
|
+
NativeUI.ad(ad, this.ag);
|
|
632
650
|
}
|
|
633
651
|
}
|
|
634
652
|
if (this.m != null) {
|
|
635
|
-
this.view.
|
|
653
|
+
this.view.aw(this.m);
|
|
636
654
|
}
|
|
637
|
-
if (this.
|
|
638
|
-
NativeUI.q(this.view.z, this.
|
|
655
|
+
if (this.c1 != null) {
|
|
656
|
+
NativeUI.q(this.view.z, this.c1);
|
|
639
657
|
}
|
|
640
658
|
}
|
|
641
|
-
|
|
642
|
-
if (this.
|
|
643
|
-
this.view.am(this.
|
|
659
|
+
cg() {
|
|
660
|
+
if (this.cz != null) {
|
|
661
|
+
this.view.am(this.cz, "fill");
|
|
644
662
|
}
|
|
645
|
-
if (this.
|
|
646
|
-
this.view.am(this.
|
|
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.
|
|
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
|
|
687
|
+
get cz() {
|
|
710
688
|
return this.cm;
|
|
711
689
|
}
|
|
712
|
-
set
|
|
690
|
+
set cz(a) {
|
|
713
691
|
let b = this.cm;
|
|
714
692
|
this.cm = a;
|
|
715
693
|
if (b != this.cm) {
|
|
716
|
-
this.
|
|
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
|
|
697
|
+
get c0() {
|
|
750
698
|
return this.cn;
|
|
751
699
|
}
|
|
752
|
-
set
|
|
700
|
+
set c0(a) {
|
|
753
701
|
let b = this.cn;
|
|
754
702
|
this.cn = a;
|
|
755
703
|
if (b != this.cn) {
|
|
756
|
-
this.
|
|
704
|
+
this.ce("ActualStroke", b, a);
|
|
757
705
|
}
|
|
758
706
|
}
|
|
759
|
-
get
|
|
707
|
+
get c1() {
|
|
760
708
|
return this.co;
|
|
761
709
|
}
|
|
762
|
-
set
|
|
710
|
+
set c1(a) {
|
|
763
711
|
let b = this.co;
|
|
764
712
|
this.co = a;
|
|
765
713
|
if (b != this.co) {
|
|
766
|
-
this.
|
|
714
|
+
this.ce("ActualTextColor", b, a);
|
|
767
715
|
}
|
|
768
716
|
}
|
|
769
|
-
get
|
|
770
|
-
return this.
|
|
717
|
+
get ag() {
|
|
718
|
+
return this.w;
|
|
771
719
|
}
|
|
772
|
-
set
|
|
773
|
-
let b = this.
|
|
774
|
-
this.
|
|
775
|
-
if (b != this.
|
|
776
|
-
this.
|
|
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
|
|
727
|
+
get fill() {
|
|
780
728
|
return this.cp;
|
|
781
729
|
}
|
|
782
|
-
set
|
|
730
|
+
set fill(a) {
|
|
783
731
|
let b = this.cp;
|
|
784
732
|
this.cp = a;
|
|
785
733
|
if (b != this.cp) {
|
|
786
|
-
this.
|
|
734
|
+
this.ce("Fill", b, a);
|
|
787
735
|
}
|
|
788
736
|
}
|
|
789
|
-
get
|
|
790
|
-
return this.
|
|
737
|
+
get df() {
|
|
738
|
+
return this.cx;
|
|
791
739
|
}
|
|
792
|
-
set
|
|
793
|
-
let b = this.
|
|
794
|
-
this.
|
|
795
|
-
if (b != this.
|
|
796
|
-
this.
|
|
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
|
|
800
|
-
return this.
|
|
747
|
+
get am() {
|
|
748
|
+
return this.aa;
|
|
801
749
|
}
|
|
802
|
-
set
|
|
803
|
-
let b = this.
|
|
804
|
-
this.
|
|
805
|
-
if (b != this.
|
|
806
|
-
this.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
834
|
+
this.ce("PrimaryFillColor", b, this.ct);
|
|
847
835
|
}
|
|
848
836
|
}
|
|
849
|
-
get
|
|
850
|
-
return this.
|
|
837
|
+
get dc() {
|
|
838
|
+
return this.cu;
|
|
851
839
|
}
|
|
852
|
-
set
|
|
853
|
-
let b = this.
|
|
854
|
-
this.
|
|
855
|
-
if (b != this.
|
|
856
|
-
this.
|
|
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
|
|
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
|
|
880
|
+
set ba(a) {
|
|
863
881
|
let b = this.az;
|
|
864
882
|
this.az = a;
|
|
865
883
|
if (b != this.az) {
|
|
866
|
-
this.
|
|
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.
|
|
898
|
+
return this.a1;
|
|
871
899
|
}
|
|
872
900
|
set svg(a) {
|
|
873
|
-
let b = this.
|
|
874
|
-
this.
|
|
875
|
-
if (b != this.
|
|
876
|
-
this.
|
|
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.
|
|
914
|
+
this.ce("SVGPaths", b, this.a);
|
|
887
915
|
}
|
|
888
916
|
}
|
|
889
|
-
|
|
917
|
+
cc() {
|
|
890
918
|
this.t = true;
|
|
891
919
|
}
|
|
892
|
-
|
|
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.
|
|
930
|
+
this.ce("TextStyle", b, a);
|
|
903
931
|
}
|
|
904
932
|
}
|
|
905
|
-
get
|
|
906
|
-
return this.
|
|
933
|
+
get bk() {
|
|
934
|
+
return this.a0;
|
|
907
935
|
}
|
|
908
|
-
set
|
|
909
|
-
let b = this.
|
|
910
|
-
this.
|
|
911
|
-
if (b != this.
|
|
912
|
-
this.
|
|
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
|
|
919
|
-
return this.
|
|
946
|
+
get at() {
|
|
947
|
+
return this.as;
|
|
920
948
|
}
|
|
921
|
-
set
|
|
922
|
-
let b = this.
|
|
923
|
-
this.
|
|
949
|
+
set at(a) {
|
|
950
|
+
let b = this.as;
|
|
951
|
+
this.as = a;
|
|
924
952
|
this.n = true;
|
|
925
|
-
if (b != this.
|
|
926
|
-
this.
|
|
953
|
+
if (b != this.as) {
|
|
954
|
+
this.ce("TabIndex", b, a);
|
|
927
955
|
}
|
|
928
956
|
}
|
|
929
|
-
get
|
|
930
|
-
return this.
|
|
957
|
+
get a7() {
|
|
958
|
+
return this.ay;
|
|
931
959
|
}
|
|
932
|
-
set
|
|
933
|
-
let b = this.
|
|
934
|
-
this.
|
|
935
|
-
if (b != this.
|
|
936
|
-
this.
|
|
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.
|
|
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.
|
|
984
|
+
this.ce("IsDisabled", b, a);
|
|
957
985
|
}
|
|
958
986
|
}
|
|
959
|
-
get
|
|
960
|
-
return this.
|
|
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
|
|
973
|
-
let b = this.
|
|
974
|
-
this.
|
|
975
|
-
if (b != this.
|
|
976
|
-
this.
|
|
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.
|
|
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.
|
|
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.
|
|
1024
|
+
this.ce("ViewBoxWidth", b, this.ae);
|
|
1017
1025
|
}
|
|
1018
1026
|
}
|
|
1019
|
-
get
|
|
1020
|
-
return this.
|
|
1027
|
+
get an() {
|
|
1028
|
+
return this.ab;
|
|
1021
1029
|
}
|
|
1022
|
-
set
|
|
1023
|
-
let b = this.
|
|
1024
|
-
this.
|
|
1025
|
-
if (b != this.
|
|
1026
|
-
this.
|
|
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
|
-
|
|
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
|
-
|
|
1065
|
+
v() {
|
|
1038
1066
|
if (this.disabled) {
|
|
1039
|
-
return;
|
|
1067
|
+
return false;
|
|
1040
1068
|
}
|
|
1041
1069
|
if (this.clicked != null) {
|
|
1042
|
-
|
|
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
|
-
|
|
1079
|
+
aw() {
|
|
1049
1080
|
return this.g();
|
|
1050
1081
|
}
|
|
1051
|
-
|
|
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.
|
|
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.
|
|
1109
|
-
XIcon.at = 0;
|
|
1140
|
+
XIcon.au = 0;
|
|
1110
1141
|
return XIcon;
|
|
1111
1142
|
})();
|