igniteui-angular-inputs 17.3.0-beta.0 → 17.3.1-alpha.0
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 +1095 -789
- package/bundles/igniteui-angular-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonView_combined.js +22 -22
- package/esm2015/lib/CalendarView_combined.js +14 -14
- package/esm2015/lib/CheckboxView_combined.js +73 -67
- package/esm2015/lib/DatePickerView_combined.js +14 -14
- package/esm2015/lib/IconView_combined.js +659 -472
- package/esm2015/lib/IconVisualModelExport.js +13 -11
- package/esm2015/lib/InputGroupView_combined.js +29 -29
- package/esm2015/lib/NativeUIXInputsFactory.js +1 -1
- package/esm2015/lib/XButtonBridge.js +7 -0
- package/esm2015/lib/XIconBridge.js +55 -31
- package/esm2015/lib/XIconButtonBridge.js +1 -1
- package/esm2015/lib/igx-x-icon-component.js +90 -64
- package/esm5/lib/ButtonView_combined.js +22 -22
- package/esm5/lib/CalendarView_combined.js +14 -14
- package/esm5/lib/CheckboxView_combined.js +77 -67
- package/esm5/lib/DatePickerView_combined.js +14 -14
- package/esm5/lib/IconView_combined.js +678 -446
- package/esm5/lib/IconVisualModelExport.js +13 -11
- package/esm5/lib/InputGroupView_combined.js +29 -29
- package/esm5/lib/NativeUIXInputsFactory.js +1 -1
- package/esm5/lib/XButtonBridge.js +7 -0
- package/esm5/lib/XIconBridge.js +55 -31
- package/esm5/lib/XIconButtonBridge.js +1 -1
- package/esm5/lib/igx-x-icon-component.js +98 -64
- package/fesm2015/igniteui-angular-inputs.js +971 -722
- package/fesm5/igniteui-angular-inputs.js +1096 -790
- package/lib/CheckboxView_combined.d.ts +17 -16
- package/lib/IconView_combined.d.ts +155 -136
- package/lib/IconVisualModelExport.d.ts +4 -3
- package/lib/XIconBridge.d.ts +3 -0
- package/lib/igx-x-icon-component.d.ts +12 -1
- package/package.json +2 -2
|
@@ -6,14 +6,17 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
|
|
|
6
6
|
*/
|
|
7
7
|
import { __extends, __values } from "tslib";
|
|
8
8
|
import { Base, String_$type, Delegate_$type, fromEnum, runOn, markType, INotifyPropertyChanged_$type, PropertyChangedEventArgs, enumGetBox } from "igniteui-angular-core";
|
|
9
|
+
import { DomWrapper_$type } from "igniteui-angular-core";
|
|
9
10
|
import { List$1 } from "igniteui-angular-core";
|
|
10
11
|
import { Tuple$2 } from "igniteui-angular-core";
|
|
11
12
|
import { SVGNode } from "igniteui-angular-core";
|
|
12
13
|
import { FastIterationDictionary$2 } from "igniteui-angular-core";
|
|
14
|
+
import { Dictionary$2 } from "igniteui-angular-core";
|
|
15
|
+
import { Brush } from "igniteui-angular-core";
|
|
16
|
+
import { NativeUI } from "igniteui-angular-core";
|
|
13
17
|
import { isNaN_ } from "igniteui-angular-core";
|
|
14
18
|
import { IIcon_$type } from "igniteui-angular-core";
|
|
15
19
|
import { BaseControlTheme_$type } from "igniteui-angular-core";
|
|
16
|
-
import { NativeUI } from "igniteui-angular-core";
|
|
17
20
|
import { IconClickedEventArgs } from "./IconClickedEventArgs";
|
|
18
21
|
import { IconVisualModelExport } from "./IconVisualModelExport";
|
|
19
22
|
import { AppearanceHelper } from "igniteui-angular-core";
|
|
@@ -27,62 +30,74 @@ var IconView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
27
30
|
__extends(IconView, _super);
|
|
28
31
|
function IconView() {
|
|
29
32
|
var _this = _super.call(this) || this;
|
|
30
|
-
_this.b = null;
|
|
31
|
-
_this.o = null;
|
|
32
|
-
_this.e = null;
|
|
33
|
-
_this.i = new List$1(Delegate_$type, 0);
|
|
34
|
-
_this.j = null;
|
|
35
|
-
_this.k = null;
|
|
36
|
-
_this.l = null;
|
|
37
|
-
_this.m = null;
|
|
38
|
-
_this.n = null;
|
|
39
|
-
_this.c = null;
|
|
40
33
|
_this.d = null;
|
|
41
|
-
_this.u = null;
|
|
42
34
|
_this.t = null;
|
|
43
|
-
_this.
|
|
35
|
+
_this.g = null;
|
|
36
|
+
_this.m = new List$1(Delegate_$type, 0);
|
|
37
|
+
_this.o = null;
|
|
44
38
|
_this.p = null;
|
|
45
39
|
_this.q = null;
|
|
46
|
-
_this.
|
|
47
|
-
_this.
|
|
48
|
-
_this.
|
|
49
|
-
_this.
|
|
50
|
-
_this.
|
|
51
|
-
_this.
|
|
52
|
-
_this.
|
|
40
|
+
_this.r = null;
|
|
41
|
+
_this.s = null;
|
|
42
|
+
_this.e = null;
|
|
43
|
+
_this.f = null;
|
|
44
|
+
_this.ab = null;
|
|
45
|
+
_this.a = null;
|
|
46
|
+
_this.aa = null;
|
|
47
|
+
_this.z = null;
|
|
48
|
+
_this.l = new Dictionary$2(Brush.$, String_$type, 0);
|
|
49
|
+
_this.h = true;
|
|
50
|
+
_this.w = null;
|
|
51
|
+
_this.v = null;
|
|
52
|
+
_this.u = null;
|
|
53
|
+
_this.n = new List$1(DomWrapper_$type, 0);
|
|
54
|
+
_this.o = new List$1(Tuple$2.$.specialize(SVGNode.$, Base.$), 0);
|
|
55
|
+
_this.p = new List$1(Tuple$2.$.specialize(SVGNode.$, Base.$), 0);
|
|
56
|
+
_this.q = new List$1(Tuple$2.$.specialize(SVGNode.$, Base.$), 0);
|
|
57
|
+
_this.r = new List$1(Tuple$2.$.specialize(SVGNode.$, Base.$), 0);
|
|
58
|
+
_this.s = new List$1(Tuple$2.$.specialize(SVGNode.$, Base.$), 0);
|
|
59
|
+
_this.e = new FastIterationDictionary$2(String_$type, List$1.$.specialize(Tuple$2.$.specialize(SVGNode.$, Base.$)), 0);
|
|
60
|
+
_this.f = new FastIterationDictionary$2(String_$type, List$1.$.specialize(Tuple$2.$.specialize(SVGNode.$, Base.$)), 0);
|
|
53
61
|
return _this;
|
|
54
62
|
}
|
|
55
|
-
IconView.prototype.
|
|
63
|
+
IconView.prototype.aj = function () {
|
|
56
64
|
};
|
|
57
|
-
IconView.prototype.
|
|
65
|
+
IconView.prototype.j = function () {
|
|
58
66
|
return true;
|
|
59
67
|
};
|
|
60
|
-
Object.defineProperty(IconView.prototype, "
|
|
68
|
+
Object.defineProperty(IconView.prototype, "x", {
|
|
61
69
|
get: function () {
|
|
62
|
-
return this.
|
|
70
|
+
return this.w;
|
|
63
71
|
},
|
|
64
72
|
enumerable: false,
|
|
65
73
|
configurable: true
|
|
66
74
|
});
|
|
67
|
-
Object.defineProperty(IconView.prototype, "
|
|
75
|
+
Object.defineProperty(IconView.prototype, "y", {
|
|
68
76
|
get: function () {
|
|
69
77
|
return null;
|
|
70
78
|
},
|
|
71
79
|
enumerable: false,
|
|
72
80
|
configurable: true
|
|
73
81
|
});
|
|
74
|
-
Object.defineProperty(IconView.prototype, "
|
|
82
|
+
Object.defineProperty(IconView.prototype, "c", {
|
|
83
|
+
get: function () {
|
|
84
|
+
return this.n.toArray();
|
|
85
|
+
},
|
|
86
|
+
enumerable: false,
|
|
87
|
+
configurable: true
|
|
88
|
+
});
|
|
89
|
+
Object.defineProperty(IconView.prototype, "k", {
|
|
75
90
|
get: function () {
|
|
76
91
|
return true;
|
|
77
92
|
},
|
|
78
93
|
enumerable: false,
|
|
79
94
|
configurable: true
|
|
80
95
|
});
|
|
81
|
-
IconView.prototype.
|
|
96
|
+
IconView.prototype.ah = function (a) {
|
|
82
97
|
var e_1, _a;
|
|
83
98
|
if (a == null) {
|
|
84
99
|
try {
|
|
85
|
-
for (var _b = __values(fromEnum(this.
|
|
100
|
+
for (var _b = __values(fromEnum(this.m)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
86
101
|
var b = _c.value;
|
|
87
102
|
b();
|
|
88
103
|
}
|
|
@@ -100,84 +115,177 @@ var IconView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
100
115
|
throw e_1.error;
|
|
101
116
|
}
|
|
102
117
|
}
|
|
103
|
-
this.
|
|
104
|
-
if (this.
|
|
105
|
-
this.
|
|
118
|
+
this.m.clear();
|
|
119
|
+
if (this.w != null) {
|
|
120
|
+
this.w.unlistenAll();
|
|
121
|
+
}
|
|
122
|
+
if (this.v != null) {
|
|
123
|
+
this.v.unlistenAll();
|
|
106
124
|
}
|
|
107
125
|
}
|
|
108
|
-
this.
|
|
126
|
+
this.t = a;
|
|
109
127
|
a.rootWrapper.setStyleProperty("position", "relative");
|
|
110
|
-
this.
|
|
111
|
-
this.
|
|
112
|
-
this.
|
|
113
|
-
this.
|
|
114
|
-
this.
|
|
115
|
-
|
|
128
|
+
this.t.rootWrapper.setStyleProperty("display", "flex");
|
|
129
|
+
this.t.rootWrapper.setStyleProperty("flex-direction", "row");
|
|
130
|
+
this.t.rootWrapper.setStyleProperty("flex-wrap", "no-wrap");
|
|
131
|
+
this.t.rootWrapper.setStyleProperty("align-items", "center");
|
|
132
|
+
this.t.rootWrapper.setStyleProperty("justify-content", "center");
|
|
133
|
+
this.ap();
|
|
134
|
+
var c = this.t.createElementNS("svg", "http://www.w3.org/2000/svg");
|
|
116
135
|
c.setStyleProperty("position", "absolute");
|
|
117
136
|
c.setStyleProperty("top", "0");
|
|
118
137
|
c.setStyleProperty("left", "0");
|
|
119
138
|
c.setStyleProperty("right", "0");
|
|
120
139
|
c.setStyleProperty("bottom", "0");
|
|
121
|
-
this.
|
|
122
|
-
this.
|
|
123
|
-
|
|
124
|
-
d.
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
140
|
+
this.w = c;
|
|
141
|
+
var d = this.t.createElement("img");
|
|
142
|
+
d.setStyleProperty("height", "100%");
|
|
143
|
+
d.setStyleProperty("width", "100%");
|
|
144
|
+
d.setStyleProperty("object-fit", "contain");
|
|
145
|
+
this.v = d;
|
|
146
|
+
this.au();
|
|
147
|
+
this.u = a.createElementNS("defs", "http://www.w3.org/2000/svg");
|
|
148
|
+
this.w.append(this.u);
|
|
149
|
+
this.t.append(this.w);
|
|
150
|
+
this.m.add(c.listen("click", runOn(this, this.ag)));
|
|
151
|
+
this.d.cc();
|
|
152
|
+
};
|
|
153
|
+
IconView.prototype.ar = function (a) {
|
|
154
|
+
this.l.clear();
|
|
155
|
+
if (this.ab != a) {
|
|
156
|
+
this.ab = a;
|
|
157
|
+
this.t.rootWrapper.removeChildren();
|
|
158
|
+
this.t.rootWrapper.append(this.w);
|
|
159
|
+
this.w.removeChildren();
|
|
160
|
+
this.u.removeChildren();
|
|
161
|
+
this.n.clear();
|
|
162
|
+
var b = this.t.createElementNS("path", "http://www.w3.org/2000/svg");
|
|
163
|
+
b.setAttribute("d", this.ab);
|
|
164
|
+
this.w.append(this.u);
|
|
165
|
+
this.w.append(b);
|
|
166
|
+
this.n.add(b);
|
|
128
167
|
}
|
|
129
|
-
this.q = d;
|
|
130
|
-
this.o.append(this.p);
|
|
131
|
-
this.i.add(c.listen("click", runOn(this, this.z)));
|
|
132
|
-
this.b.b6();
|
|
133
168
|
};
|
|
134
|
-
IconView.prototype.
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
this.
|
|
138
|
-
this.
|
|
139
|
-
|
|
140
|
-
|
|
169
|
+
IconView.prototype.as = function (a) {
|
|
170
|
+
this.l.clear();
|
|
171
|
+
if (this.a != a) {
|
|
172
|
+
this.a = a;
|
|
173
|
+
this.t.rootWrapper.removeChildren();
|
|
174
|
+
this.t.rootWrapper.append(this.w);
|
|
175
|
+
this.w.removeChildren();
|
|
176
|
+
this.u.removeChildren();
|
|
177
|
+
this.n.clear();
|
|
178
|
+
if (this.a != null && this.a.length > 0) {
|
|
179
|
+
this.w.append(this.u);
|
|
180
|
+
for (var b = 0; b < this.a.length; b++) {
|
|
181
|
+
var c = this.t.createElementNS("path", "http://www.w3.org/2000/svg");
|
|
182
|
+
c.setAttribute("d", this.a[b]);
|
|
183
|
+
this.w.append(c);
|
|
184
|
+
this.n.add(c);
|
|
185
|
+
}
|
|
141
186
|
}
|
|
142
187
|
}
|
|
143
188
|
};
|
|
144
|
-
IconView.prototype.
|
|
145
|
-
if (this.
|
|
146
|
-
this.
|
|
147
|
-
this.
|
|
148
|
-
var b = this.
|
|
149
|
-
b.innerHTML = this.
|
|
189
|
+
IconView.prototype.aq = function (a) {
|
|
190
|
+
if (this.aa != a) {
|
|
191
|
+
this.aa = a;
|
|
192
|
+
this.t.rootWrapper.removeChildren();
|
|
193
|
+
var b = this.t.rootWrapper.getNativeElement();
|
|
194
|
+
b.innerHTML = this.aa;
|
|
195
|
+
}
|
|
196
|
+
};
|
|
197
|
+
IconView.prototype.ao = function (a) {
|
|
198
|
+
if (this.z != a) {
|
|
199
|
+
this.z = a;
|
|
200
|
+
this.t.rootWrapper.removeChildren();
|
|
201
|
+
this.t.rootWrapper.append(this.v);
|
|
202
|
+
this.v.setAttribute("src", a);
|
|
150
203
|
}
|
|
151
204
|
};
|
|
152
|
-
IconView.prototype.
|
|
153
|
-
this.
|
|
154
|
-
this.o.rootWrapper.setStyleProperty("height", isNaN_(this.b.ag) ? "1.5rem" : this.b.ag + "px");
|
|
205
|
+
IconView.prototype.i = function () {
|
|
206
|
+
return this.d.svgPath != null || this.d.svg != null || this.d.b != null;
|
|
155
207
|
};
|
|
156
|
-
IconView.prototype.
|
|
157
|
-
this.
|
|
208
|
+
IconView.prototype.ap = function () {
|
|
209
|
+
this.t.rootWrapper.setStyleProperty("width", isNaN_(this.d.aq) ? "1.5rem" : this.d.aq + "px");
|
|
210
|
+
this.t.rootWrapper.setStyleProperty("height", isNaN_(this.d.ai) ? "1.5rem" : this.d.ai + "px");
|
|
211
|
+
};
|
|
212
|
+
IconView.prototype.au = function () {
|
|
213
|
+
var a = isNaN_(this.d.an) ? 0 : this.d.an;
|
|
214
|
+
var b = isNaN_(this.d.ao) ? 0 : this.d.ao;
|
|
215
|
+
var c = isNaN_(this.d.ap) ? 24 : this.d.ap;
|
|
216
|
+
var d = isNaN_(this.d.am) ? 24 : this.d.am;
|
|
217
|
+
this.w.setAttribute("viewBox", a + " " + b + " " + c + " " + d);
|
|
218
|
+
};
|
|
219
|
+
IconView.prototype.al = function (a, b) {
|
|
220
|
+
var c = a.color;
|
|
221
|
+
if (!this.l.containsKey(a)) {
|
|
222
|
+
if (a.isGradient) {
|
|
223
|
+
var d = this.u.getChildCount();
|
|
224
|
+
var e = a;
|
|
225
|
+
var f = this.t.createElementNS("linearGradient", "http://www.w3.org/2000/svg");
|
|
226
|
+
var g = "ig_gradient_" + b + "_" + d;
|
|
227
|
+
f.setAttribute("id", g);
|
|
228
|
+
f.setAttribute("x1", e.startX.toString());
|
|
229
|
+
f.setAttribute("x2", e.endX.toString());
|
|
230
|
+
f.setAttribute("y1", e.startY.toString());
|
|
231
|
+
f.setAttribute("y2", e.endY.toString());
|
|
232
|
+
var j = e.gradientStops;
|
|
233
|
+
for (var i = 0; i < j.length; i++) {
|
|
234
|
+
var h = j[i];
|
|
235
|
+
var k = this.t.createElementNS("stop", "http://www.w3.org/2000/svg");
|
|
236
|
+
k.setAttribute("offset", h.offset * 100 + "%");
|
|
237
|
+
k.setAttribute("stop-color", h._fill);
|
|
238
|
+
f.append(k);
|
|
239
|
+
}
|
|
240
|
+
this.u.append(f);
|
|
241
|
+
this.l.addItem(a, g);
|
|
242
|
+
}
|
|
243
|
+
else if (a.isRadialGradient) {
|
|
244
|
+
}
|
|
245
|
+
}
|
|
158
246
|
};
|
|
159
|
-
IconView.prototype.
|
|
247
|
+
IconView.prototype.am = function (a, b) {
|
|
248
|
+
var c = a;
|
|
249
|
+
if (this.l.containsKey(b)) {
|
|
250
|
+
c.setAttribute("fill", "url(#" + this.l.item(b) + ")");
|
|
251
|
+
this.t.rootWrapper.removeChildren();
|
|
252
|
+
this.t.rootWrapper.append(this.w);
|
|
253
|
+
}
|
|
254
|
+
else {
|
|
255
|
+
NativeUI.r(a, b);
|
|
256
|
+
}
|
|
160
257
|
};
|
|
161
|
-
IconView.prototype.
|
|
162
|
-
|
|
258
|
+
IconView.prototype.an = function (a, b) {
|
|
259
|
+
var c = a;
|
|
260
|
+
if (this.l.containsKey(b)) {
|
|
261
|
+
c.setAttribute("stroke", "url('#" + this.l.item(b) + "')");
|
|
262
|
+
}
|
|
263
|
+
else {
|
|
264
|
+
NativeUI.aa(a, b);
|
|
163
265
|
}
|
|
164
266
|
};
|
|
165
|
-
IconView.prototype.
|
|
166
|
-
this.b.b3();
|
|
267
|
+
IconView.prototype.ac = function (a) {
|
|
167
268
|
};
|
|
168
|
-
IconView.prototype.
|
|
169
|
-
this.
|
|
269
|
+
IconView.prototype.ak = function () {
|
|
270
|
+
if (this.j()) {
|
|
271
|
+
}
|
|
272
|
+
};
|
|
273
|
+
IconView.prototype.ad = function (a) {
|
|
274
|
+
this.d.b9();
|
|
170
275
|
};
|
|
171
|
-
IconView.prototype.
|
|
172
|
-
this.
|
|
173
|
-
this.i.add(this.o.rootWrapper.listen("mouseenter", runOn(this, this.w)));
|
|
174
|
-
this.i.add(this.o.rootWrapper.listen("mouseleave", runOn(this, this.x)));
|
|
276
|
+
IconView.prototype.ae = function (a) {
|
|
277
|
+
this.d.ca();
|
|
175
278
|
};
|
|
176
|
-
IconView.prototype.
|
|
279
|
+
IconView.prototype.af = function () {
|
|
280
|
+
this.h = true;
|
|
281
|
+
this.m.add(this.t.rootWrapper.listen("mouseenter", runOn(this, this.ad)));
|
|
282
|
+
this.m.add(this.t.rootWrapper.listen("mouseleave", runOn(this, this.ae)));
|
|
283
|
+
};
|
|
284
|
+
IconView.prototype.ai = function () {
|
|
177
285
|
var e_2, _a;
|
|
178
|
-
this.
|
|
286
|
+
this.h = false;
|
|
179
287
|
try {
|
|
180
|
-
for (var _b = __values(fromEnum(this.
|
|
288
|
+
for (var _b = __values(fromEnum(this.m)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
181
289
|
var a = _c.value;
|
|
182
290
|
a();
|
|
183
291
|
}
|
|
@@ -195,15 +303,15 @@ var IconView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
195
303
|
throw e_2.error;
|
|
196
304
|
}
|
|
197
305
|
}
|
|
198
|
-
this.
|
|
306
|
+
this.m.clear();
|
|
199
307
|
};
|
|
200
|
-
IconView.prototype.
|
|
308
|
+
IconView.prototype.at = function (a) {
|
|
201
309
|
if (a != null) {
|
|
202
|
-
this.
|
|
310
|
+
this.t.rootWrapper.setStyleProperty("font", a.fontString);
|
|
203
311
|
}
|
|
204
312
|
};
|
|
205
|
-
IconView.prototype.
|
|
206
|
-
var rect_ = this.
|
|
313
|
+
IconView.prototype.b = function () {
|
|
314
|
+
var rect_ = this.t.rootWrapper.getNativeElement().getBoundingClientRect();
|
|
207
315
|
var a = (rect_.top);
|
|
208
316
|
var b = (rect_.left);
|
|
209
317
|
var c = new Array(2);
|
|
@@ -211,8 +319,8 @@ var IconView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
211
319
|
c[1] = b;
|
|
212
320
|
return c;
|
|
213
321
|
};
|
|
214
|
-
IconView.prototype.
|
|
215
|
-
this.
|
|
322
|
+
IconView.prototype.ag = function (a) {
|
|
323
|
+
this.d.b7();
|
|
216
324
|
};
|
|
217
325
|
IconView.$t = markType(IconView, 'IconView');
|
|
218
326
|
return IconView;
|
|
@@ -226,47 +334,49 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
226
334
|
function XIcon() {
|
|
227
335
|
var _this = _super.call(this) || this;
|
|
228
336
|
_this._view = null;
|
|
229
|
-
_this.
|
|
230
|
-
_this.
|
|
231
|
-
_this.
|
|
232
|
-
_this.
|
|
233
|
-
_this.
|
|
234
|
-
_this.
|
|
235
|
-
_this.
|
|
236
|
-
_this.
|
|
237
|
-
_this.
|
|
238
|
-
_this.
|
|
239
|
-
_this.
|
|
240
|
-
_this.
|
|
241
|
-
_this.
|
|
242
|
-
_this.
|
|
243
|
-
_this.
|
|
244
|
-
_this.
|
|
245
|
-
_this.
|
|
246
|
-
_this.
|
|
247
|
-
_this.
|
|
337
|
+
_this.j = 0;
|
|
338
|
+
_this.cj = XIcon.cz;
|
|
339
|
+
_this.ck = XIcon.c3;
|
|
340
|
+
_this.cl = XIcon.c4;
|
|
341
|
+
_this.v = XIcon.ah;
|
|
342
|
+
_this.cm = XIcon.cz;
|
|
343
|
+
_this.cu = XIcon.c3;
|
|
344
|
+
_this.z = XIcon.ah;
|
|
345
|
+
_this.cv = XIcon.c4;
|
|
346
|
+
_this.cn = XIcon.c0;
|
|
347
|
+
_this.co = XIcon.c1;
|
|
348
|
+
_this.x = XIcon.ag;
|
|
349
|
+
_this.cp = null;
|
|
350
|
+
_this.c = null;
|
|
351
|
+
_this.d = null;
|
|
352
|
+
_this.cq = null;
|
|
353
|
+
_this.cr = null;
|
|
354
|
+
_this.cs = null;
|
|
355
|
+
_this.ct = null;
|
|
248
356
|
_this.aw = null;
|
|
249
|
-
_this.
|
|
250
|
-
_this.
|
|
251
|
-
_this.
|
|
252
|
-
_this.
|
|
253
|
-
_this.
|
|
254
|
-
_this.
|
|
357
|
+
_this.az = null;
|
|
358
|
+
_this.ay = null;
|
|
359
|
+
_this.a = null;
|
|
360
|
+
_this.l = null;
|
|
361
|
+
_this.ax = "ig-icon-" + XIcon.at++;
|
|
362
|
+
_this.ar = 0;
|
|
255
363
|
_this.n = false;
|
|
256
|
-
_this.
|
|
257
|
-
_this.
|
|
258
|
-
_this.
|
|
259
|
-
_this.
|
|
364
|
+
_this.av = null;
|
|
365
|
+
_this.p = false;
|
|
366
|
+
_this.o = false;
|
|
367
|
+
_this.y = 1;
|
|
260
368
|
_this.ab = NaN;
|
|
261
|
-
_this.y = NaN;
|
|
262
369
|
_this.ac = NaN;
|
|
263
|
-
_this.
|
|
370
|
+
_this.ad = NaN;
|
|
371
|
+
_this.aa = NaN;
|
|
372
|
+
_this.ae = NaN;
|
|
373
|
+
_this.w = NaN;
|
|
264
374
|
_this.clicked = null;
|
|
265
375
|
_this.propertyChanged = null;
|
|
266
376
|
var a = new IconView();
|
|
267
|
-
a.
|
|
377
|
+
a.d = _this;
|
|
268
378
|
_this.view = a;
|
|
269
|
-
_this.view.
|
|
379
|
+
_this.view.aj();
|
|
270
380
|
return _this;
|
|
271
381
|
}
|
|
272
382
|
Object.defineProperty(XIcon.prototype, "view", {
|
|
@@ -282,13 +392,13 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
282
392
|
XIcon.prototype.destroy = function () {
|
|
283
393
|
this.provideContainer(null);
|
|
284
394
|
};
|
|
285
|
-
XIcon.prototype.
|
|
395
|
+
XIcon.prototype.cb = function (a, b, c) {
|
|
286
396
|
if (this.propertyChanged != null) {
|
|
287
397
|
this.propertyChanged(this, new PropertyChangedEventArgs(a));
|
|
288
398
|
}
|
|
289
|
-
this.
|
|
399
|
+
this.ce(a, b, c);
|
|
290
400
|
};
|
|
291
|
-
XIcon.prototype.
|
|
401
|
+
XIcon.prototype.ce = function (a, b, c) {
|
|
292
402
|
switch (a) {
|
|
293
403
|
case "Fill":
|
|
294
404
|
case "Stroke":
|
|
@@ -297,209 +407,302 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
297
407
|
case "HoverStroke":
|
|
298
408
|
case "HoverStrokeThickness":
|
|
299
409
|
case "IsHover":
|
|
300
|
-
this.
|
|
410
|
+
this.ci();
|
|
301
411
|
break;
|
|
412
|
+
case "FillColors":
|
|
413
|
+
case "StrokeColors":
|
|
302
414
|
case "ActualFill":
|
|
303
415
|
case "ActualStroke":
|
|
304
416
|
case "ActualStrokeWidth":
|
|
305
417
|
case "SVGPath":
|
|
418
|
+
case "SVGPaths":
|
|
306
419
|
case "SVG":
|
|
307
|
-
|
|
420
|
+
case "DataURL":
|
|
421
|
+
this.cg();
|
|
308
422
|
break;
|
|
309
423
|
case "Opacity":
|
|
310
|
-
this.
|
|
424
|
+
this.ch();
|
|
311
425
|
break;
|
|
312
426
|
case "ViewBoxLeft":
|
|
313
427
|
case "ViewBoxTop":
|
|
314
428
|
case "ViewBoxWidth":
|
|
315
429
|
case "ViewBoxHeight":
|
|
316
|
-
this.view.
|
|
430
|
+
this.view.au();
|
|
317
431
|
break;
|
|
318
432
|
case "Width":
|
|
319
433
|
case "Height":
|
|
320
|
-
this.view.
|
|
434
|
+
this.view.ap();
|
|
321
435
|
break;
|
|
322
436
|
}
|
|
323
437
|
};
|
|
324
|
-
XIcon.prototype.
|
|
325
|
-
var a = this.fill != null ? this.fill : XIcon.
|
|
326
|
-
var b = this.
|
|
327
|
-
var c = !isNaN_(this.
|
|
328
|
-
var d = this.
|
|
329
|
-
if (this.
|
|
330
|
-
this.
|
|
331
|
-
this.
|
|
332
|
-
this.
|
|
333
|
-
this.
|
|
438
|
+
XIcon.prototype.ci = function () {
|
|
439
|
+
var a = this.fill != null ? this.fill : XIcon.cz;
|
|
440
|
+
var b = this.dc != null ? this.dc : XIcon.c3;
|
|
441
|
+
var c = !isNaN_(this.al) ? this.al : XIcon.ah;
|
|
442
|
+
var d = this.dd != null ? this.dd : XIcon.c4;
|
|
443
|
+
if (this.t) {
|
|
444
|
+
this.cw = this.c5 != null ? this.c5 : a;
|
|
445
|
+
this.cx = this.c6 != null ? this.c6 : b;
|
|
446
|
+
this.af = !isNaN_(this.aj) ? this.aj : c;
|
|
447
|
+
this.cy = this.c7 != null ? this.c7 : d;
|
|
334
448
|
}
|
|
335
449
|
else {
|
|
336
|
-
this.
|
|
337
|
-
this.
|
|
338
|
-
this.
|
|
339
|
-
this.
|
|
450
|
+
this.cw = a;
|
|
451
|
+
this.cx = b;
|
|
452
|
+
this.af = c;
|
|
453
|
+
this.cy = d;
|
|
340
454
|
}
|
|
341
455
|
};
|
|
342
|
-
Object.defineProperty(XIcon.prototype, "
|
|
456
|
+
Object.defineProperty(XIcon.prototype, "r", {
|
|
343
457
|
get: function () {
|
|
344
|
-
return this.svgPath != null && !this.view.
|
|
458
|
+
return this.svgPath != null && !this.view.k;
|
|
345
459
|
},
|
|
346
460
|
enumerable: false,
|
|
347
461
|
configurable: true
|
|
348
462
|
});
|
|
349
|
-
XIcon.prototype.
|
|
350
|
-
NativeUI.y(this.view.
|
|
463
|
+
XIcon.prototype.ch = function () {
|
|
464
|
+
NativeUI.y(this.view.x, this.ak);
|
|
351
465
|
};
|
|
352
|
-
XIcon.prototype.
|
|
353
|
-
var a = this.view.
|
|
354
|
-
if (this.
|
|
355
|
-
var b = this.view.
|
|
356
|
-
NativeUI.r(b, this.
|
|
357
|
-
NativeUI.aa(b, this.
|
|
358
|
-
NativeUI.ad(b, this.
|
|
466
|
+
XIcon.prototype.cg = function () {
|
|
467
|
+
var a = this.view.x;
|
|
468
|
+
if (this.r) {
|
|
469
|
+
var b = this.view.y;
|
|
470
|
+
NativeUI.r(b, this.cw);
|
|
471
|
+
NativeUI.aa(b, this.cx);
|
|
472
|
+
NativeUI.ad(b, this.af);
|
|
359
473
|
}
|
|
360
474
|
else {
|
|
361
475
|
var c = false;
|
|
362
476
|
if (this.svgPath != null) {
|
|
363
477
|
if (stringStartsWith(trimStart(this.svgPath, ' ', '\n', '\r', '\t'), "<svg")) {
|
|
364
|
-
this.view.
|
|
478
|
+
this.view.aq(this.svgPath);
|
|
365
479
|
c = true;
|
|
366
480
|
}
|
|
367
481
|
else {
|
|
368
|
-
this.view.
|
|
482
|
+
this.view.ar(this.svgPath);
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
else if (this.b != null) {
|
|
486
|
+
this.view.as(this.b);
|
|
487
|
+
var d = this.view.c;
|
|
488
|
+
if (d != null && d.length > 0) {
|
|
489
|
+
var e = NativeUI.r;
|
|
490
|
+
var f = NativeUI.aa;
|
|
491
|
+
this.cd();
|
|
492
|
+
e = runOn(this.view, this.view.am);
|
|
493
|
+
f = runOn(this.view, this.view.an);
|
|
494
|
+
for (var g = 0; g < d.length; g++) {
|
|
495
|
+
if (this.cw != null) {
|
|
496
|
+
e(d[g], this.cw);
|
|
497
|
+
}
|
|
498
|
+
if (this.cx != null) {
|
|
499
|
+
f(d[g], this.cx);
|
|
500
|
+
}
|
|
501
|
+
if (!isNaN_(this.af)) {
|
|
502
|
+
NativeUI.ad(d[g], this.af);
|
|
503
|
+
}
|
|
504
|
+
if (this.cy != null) {
|
|
505
|
+
NativeUI.q(d[g], this.cy);
|
|
506
|
+
}
|
|
507
|
+
if (this.e != null && this.e.count == d.length) {
|
|
508
|
+
e(d[g], this.e.item(g));
|
|
509
|
+
}
|
|
510
|
+
if (this.f != null && this.f.count == d.length) {
|
|
511
|
+
f(d[g], this.f.item(g));
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
if (this.m != null) {
|
|
516
|
+
this.view.at(this.m);
|
|
369
517
|
}
|
|
518
|
+
return;
|
|
370
519
|
}
|
|
371
520
|
else if (this.svg != null) {
|
|
372
|
-
this.view.
|
|
521
|
+
this.view.aq(this.svg);
|
|
373
522
|
c = true;
|
|
374
523
|
}
|
|
524
|
+
else if (this.a7 != null) {
|
|
525
|
+
this.view.ao(this.a7);
|
|
526
|
+
}
|
|
375
527
|
if (c) {
|
|
376
|
-
for (var
|
|
377
|
-
var
|
|
378
|
-
NativeUI.r(this.view.
|
|
528
|
+
for (var h = 0; h < this.view.p.count; h++) {
|
|
529
|
+
var i = this.view.p._inner[h].c;
|
|
530
|
+
NativeUI.r(this.view.p._inner[h].d, i.l.f(this.c8));
|
|
379
531
|
}
|
|
380
|
-
for (var
|
|
381
|
-
var
|
|
382
|
-
NativeUI.aa(this.view.
|
|
532
|
+
for (var j = 0; j < this.view.q.count; j++) {
|
|
533
|
+
var k = this.view.q._inner[j].c;
|
|
534
|
+
NativeUI.aa(this.view.q._inner[j].d, k.m.f(this.c9));
|
|
383
535
|
}
|
|
384
|
-
for (var
|
|
385
|
-
var
|
|
386
|
-
NativeUI.r(this.view.
|
|
536
|
+
for (var l = 0; l < this.view.r.count; l++) {
|
|
537
|
+
var m = this.view.r._inner[l].c;
|
|
538
|
+
NativeUI.r(this.view.r._inner[l].d, m.l.f(this.da));
|
|
387
539
|
}
|
|
388
|
-
for (var
|
|
389
|
-
var
|
|
390
|
-
NativeUI.aa(this.view.
|
|
540
|
+
for (var n = 0; n < this.view.s.count; n++) {
|
|
541
|
+
var o = this.view.s._inner[n].c;
|
|
542
|
+
NativeUI.aa(this.view.s._inner[n].d, o.m.f(this.db));
|
|
391
543
|
}
|
|
392
|
-
for (var
|
|
393
|
-
var
|
|
394
|
-
var
|
|
395
|
-
var
|
|
396
|
-
if (
|
|
397
|
-
for (var
|
|
398
|
-
var
|
|
399
|
-
NativeUI.r(this.view.
|
|
544
|
+
for (var p = 0; p < this.view.e.o.count; p++) {
|
|
545
|
+
var q = this.view.e.o._inner[p];
|
|
546
|
+
var r = q.split('-');
|
|
547
|
+
var s = parseInt(r[r.length - 1]);
|
|
548
|
+
if (s < this.e.count) {
|
|
549
|
+
for (var t = 0; t < this.view.e.q._inner[p].count; t++) {
|
|
550
|
+
var u = this.view.e.q._inner[p]._inner[t].c;
|
|
551
|
+
NativeUI.r(this.view.e.q._inner[p]._inner[t].d, u.l.f(this.e.item(s)));
|
|
400
552
|
}
|
|
401
553
|
}
|
|
402
554
|
}
|
|
403
|
-
for (var
|
|
404
|
-
var
|
|
405
|
-
var
|
|
406
|
-
var
|
|
407
|
-
if (
|
|
408
|
-
for (var
|
|
409
|
-
var
|
|
410
|
-
NativeUI.aa(this.view.
|
|
555
|
+
for (var v = 0; v < this.view.f.o.count; v++) {
|
|
556
|
+
var w = this.view.f.o._inner[v];
|
|
557
|
+
var x = w.split('-');
|
|
558
|
+
var y = parseInt(x[x.length - 1]);
|
|
559
|
+
if (y < this.f.count) {
|
|
560
|
+
for (var z = 0; z < this.view.f.q._inner[v].count; z++) {
|
|
561
|
+
var aa = this.view.f.q._inner[v]._inner[z].c;
|
|
562
|
+
NativeUI.aa(this.view.f.q._inner[v]._inner[z].d, aa.m.f(this.f.item(y)));
|
|
411
563
|
}
|
|
412
564
|
}
|
|
413
565
|
}
|
|
414
|
-
for (var
|
|
415
|
-
var
|
|
416
|
-
NativeUI.r(this.view.
|
|
417
|
-
NativeUI.aa(this.view.
|
|
566
|
+
for (var ab = 0; ab < this.view.o.count; ab++) {
|
|
567
|
+
var ac = this.view.o._inner[ab].c;
|
|
568
|
+
NativeUI.r(this.view.o._inner[ab].d, ac.l.f(this.cw));
|
|
569
|
+
NativeUI.aa(this.view.o._inner[ab].d, ac.m.f(this.cx));
|
|
418
570
|
}
|
|
419
571
|
}
|
|
420
|
-
var
|
|
421
|
-
if (this.
|
|
422
|
-
NativeUI.r(
|
|
572
|
+
var ad = this.view.x;
|
|
573
|
+
if (this.cw != null) {
|
|
574
|
+
NativeUI.r(ad, this.cw);
|
|
423
575
|
}
|
|
424
|
-
if (this.
|
|
425
|
-
NativeUI.aa(
|
|
576
|
+
if (this.cx != null) {
|
|
577
|
+
NativeUI.aa(ad, this.cx);
|
|
426
578
|
}
|
|
427
|
-
if (!isNaN_(this.
|
|
428
|
-
NativeUI.ad(
|
|
579
|
+
if (!isNaN_(this.af)) {
|
|
580
|
+
NativeUI.ad(ad, this.af);
|
|
429
581
|
}
|
|
430
582
|
}
|
|
431
|
-
if (this.
|
|
432
|
-
this.view.
|
|
583
|
+
if (this.m != null) {
|
|
584
|
+
this.view.at(this.m);
|
|
585
|
+
}
|
|
586
|
+
if (this.cy != null) {
|
|
587
|
+
NativeUI.q(this.view.x, this.cy);
|
|
588
|
+
}
|
|
589
|
+
};
|
|
590
|
+
XIcon.prototype.cd = function () {
|
|
591
|
+
var e_3, _a, e_4, _b;
|
|
592
|
+
if (this.cw != null) {
|
|
593
|
+
this.view.al(this.cw, "fill");
|
|
594
|
+
}
|
|
595
|
+
if (this.cx != null) {
|
|
596
|
+
this.view.al(this.cx, "stroke");
|
|
597
|
+
}
|
|
598
|
+
if (this.e != null) {
|
|
599
|
+
try {
|
|
600
|
+
for (var _c = __values(fromEnum(this.e)), _d = _c.next(); !_d.done; _d = _c.next()) {
|
|
601
|
+
var a = _d.value;
|
|
602
|
+
this.view.al(a, "fills");
|
|
603
|
+
}
|
|
604
|
+
}
|
|
605
|
+
catch (e_3_1) {
|
|
606
|
+
e_3 = { error: e_3_1 };
|
|
607
|
+
}
|
|
608
|
+
finally {
|
|
609
|
+
try {
|
|
610
|
+
if (_d && !_d.done && (_a = _c.return))
|
|
611
|
+
_a.call(_c);
|
|
612
|
+
}
|
|
613
|
+
finally {
|
|
614
|
+
if (e_3)
|
|
615
|
+
throw e_3.error;
|
|
616
|
+
}
|
|
617
|
+
}
|
|
433
618
|
}
|
|
434
|
-
if (this.
|
|
435
|
-
|
|
619
|
+
if (this.f != null) {
|
|
620
|
+
try {
|
|
621
|
+
for (var _e = __values(fromEnum(this.f)), _f = _e.next(); !_f.done; _f = _e.next()) {
|
|
622
|
+
var b = _f.value;
|
|
623
|
+
this.view.al(b, "strokes");
|
|
624
|
+
}
|
|
625
|
+
}
|
|
626
|
+
catch (e_4_1) {
|
|
627
|
+
e_4 = { error: e_4_1 };
|
|
628
|
+
}
|
|
629
|
+
finally {
|
|
630
|
+
try {
|
|
631
|
+
if (_f && !_f.done && (_b = _e.return))
|
|
632
|
+
_b.call(_e);
|
|
633
|
+
}
|
|
634
|
+
finally {
|
|
635
|
+
if (e_4)
|
|
636
|
+
throw e_4.error;
|
|
637
|
+
}
|
|
638
|
+
}
|
|
436
639
|
}
|
|
437
640
|
};
|
|
438
|
-
Object.defineProperty(XIcon.prototype, "
|
|
641
|
+
Object.defineProperty(XIcon.prototype, "k", {
|
|
439
642
|
get: function () {
|
|
440
|
-
return this.
|
|
643
|
+
return this.j;
|
|
441
644
|
},
|
|
442
645
|
set: function (a) {
|
|
443
|
-
var b = this.
|
|
444
|
-
this.
|
|
445
|
-
if (b != this.
|
|
446
|
-
this.
|
|
646
|
+
var b = this.j;
|
|
647
|
+
this.j = a;
|
|
648
|
+
if (b != this.j) {
|
|
649
|
+
this.cb("BaseTheme", enumGetBox(BaseControlTheme_$type, b), enumGetBox(BaseControlTheme_$type, a));
|
|
447
650
|
}
|
|
448
651
|
},
|
|
449
652
|
enumerable: false,
|
|
450
653
|
configurable: true
|
|
451
654
|
});
|
|
452
|
-
Object.defineProperty(XIcon.prototype, "
|
|
655
|
+
Object.defineProperty(XIcon.prototype, "cw", {
|
|
453
656
|
get: function () {
|
|
454
|
-
return this.
|
|
657
|
+
return this.cj;
|
|
455
658
|
},
|
|
456
659
|
set: function (a) {
|
|
457
|
-
var b = this.
|
|
458
|
-
this.
|
|
459
|
-
if (b != this.
|
|
460
|
-
this.
|
|
660
|
+
var b = this.cj;
|
|
661
|
+
this.cj = a;
|
|
662
|
+
if (b != this.cj) {
|
|
663
|
+
this.cb("ActualFill", b, a);
|
|
461
664
|
}
|
|
462
665
|
},
|
|
463
666
|
enumerable: false,
|
|
464
667
|
configurable: true
|
|
465
668
|
});
|
|
466
|
-
Object.defineProperty(XIcon.prototype, "
|
|
669
|
+
Object.defineProperty(XIcon.prototype, "cx", {
|
|
467
670
|
get: function () {
|
|
468
|
-
return this.
|
|
671
|
+
return this.ck;
|
|
469
672
|
},
|
|
470
673
|
set: function (a) {
|
|
471
|
-
var b = this.
|
|
472
|
-
this.
|
|
473
|
-
if (b != this.
|
|
474
|
-
this.
|
|
674
|
+
var b = this.ck;
|
|
675
|
+
this.ck = a;
|
|
676
|
+
if (b != this.ck) {
|
|
677
|
+
this.cb("ActualStroke", b, a);
|
|
475
678
|
}
|
|
476
679
|
},
|
|
477
680
|
enumerable: false,
|
|
478
681
|
configurable: true
|
|
479
682
|
});
|
|
480
|
-
Object.defineProperty(XIcon.prototype, "
|
|
683
|
+
Object.defineProperty(XIcon.prototype, "cy", {
|
|
481
684
|
get: function () {
|
|
482
|
-
return this.
|
|
685
|
+
return this.cl;
|
|
483
686
|
},
|
|
484
687
|
set: function (a) {
|
|
485
|
-
var b = this.
|
|
486
|
-
this.
|
|
487
|
-
if (b != this.
|
|
488
|
-
this.
|
|
688
|
+
var b = this.cl;
|
|
689
|
+
this.cl = a;
|
|
690
|
+
if (b != this.cl) {
|
|
691
|
+
this.cb("ActualTextColor", b, a);
|
|
489
692
|
}
|
|
490
693
|
},
|
|
491
694
|
enumerable: false,
|
|
492
695
|
configurable: true
|
|
493
696
|
});
|
|
494
|
-
Object.defineProperty(XIcon.prototype, "
|
|
697
|
+
Object.defineProperty(XIcon.prototype, "af", {
|
|
495
698
|
get: function () {
|
|
496
|
-
return this.
|
|
699
|
+
return this.v;
|
|
497
700
|
},
|
|
498
701
|
set: function (a) {
|
|
499
|
-
var b = this.
|
|
500
|
-
this.
|
|
501
|
-
if (b != this.
|
|
502
|
-
this.
|
|
702
|
+
var b = this.v;
|
|
703
|
+
this.v = a;
|
|
704
|
+
if (b != this.v) {
|
|
705
|
+
this.cb("ActualStrokeWidth", b, a);
|
|
503
706
|
}
|
|
504
707
|
},
|
|
505
708
|
enumerable: false,
|
|
@@ -507,201 +710,201 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
507
710
|
});
|
|
508
711
|
Object.defineProperty(XIcon.prototype, "fill", {
|
|
509
712
|
get: function () {
|
|
510
|
-
return this.
|
|
713
|
+
return this.cm;
|
|
511
714
|
},
|
|
512
715
|
set: function (a) {
|
|
513
|
-
var b = this.
|
|
514
|
-
this.
|
|
515
|
-
if (b != this.
|
|
516
|
-
this.
|
|
716
|
+
var b = this.cm;
|
|
717
|
+
this.cm = a;
|
|
718
|
+
if (b != this.cm) {
|
|
719
|
+
this.cb("Fill", b, a);
|
|
517
720
|
}
|
|
518
721
|
},
|
|
519
722
|
enumerable: false,
|
|
520
723
|
configurable: true
|
|
521
724
|
});
|
|
522
|
-
Object.defineProperty(XIcon.prototype, "
|
|
725
|
+
Object.defineProperty(XIcon.prototype, "dc", {
|
|
523
726
|
get: function () {
|
|
524
|
-
return this.
|
|
727
|
+
return this.cu;
|
|
525
728
|
},
|
|
526
729
|
set: function (a) {
|
|
527
|
-
var b = this.
|
|
528
|
-
this.
|
|
529
|
-
if (b != this.
|
|
530
|
-
this.
|
|
730
|
+
var b = this.cu;
|
|
731
|
+
this.cu = a;
|
|
732
|
+
if (b != this.cu) {
|
|
733
|
+
this.cb("Stroke", b, a);
|
|
531
734
|
}
|
|
532
735
|
},
|
|
533
736
|
enumerable: false,
|
|
534
737
|
configurable: true
|
|
535
738
|
});
|
|
536
|
-
Object.defineProperty(XIcon.prototype, "
|
|
739
|
+
Object.defineProperty(XIcon.prototype, "al", {
|
|
537
740
|
get: function () {
|
|
538
|
-
return this.
|
|
741
|
+
return this.z;
|
|
539
742
|
},
|
|
540
743
|
set: function (a) {
|
|
541
|
-
var b = this.
|
|
542
|
-
this.
|
|
543
|
-
if (b != this.
|
|
544
|
-
this.
|
|
744
|
+
var b = this.z;
|
|
745
|
+
this.z = a;
|
|
746
|
+
if (b != this.z) {
|
|
747
|
+
this.cb("StrokeWidth", b, a);
|
|
545
748
|
}
|
|
546
749
|
},
|
|
547
750
|
enumerable: false,
|
|
548
751
|
configurable: true
|
|
549
752
|
});
|
|
550
|
-
Object.defineProperty(XIcon.prototype, "
|
|
753
|
+
Object.defineProperty(XIcon.prototype, "dd", {
|
|
551
754
|
get: function () {
|
|
552
|
-
return this.
|
|
755
|
+
return this.cv;
|
|
553
756
|
},
|
|
554
757
|
set: function (a) {
|
|
555
|
-
var b = this.
|
|
556
|
-
this.
|
|
557
|
-
if (b != this.
|
|
558
|
-
this.
|
|
758
|
+
var b = this.cv;
|
|
759
|
+
this.cv = a;
|
|
760
|
+
if (b != this.cv) {
|
|
761
|
+
this.cb("TextColor", b, a);
|
|
559
762
|
}
|
|
560
763
|
},
|
|
561
764
|
enumerable: false,
|
|
562
765
|
configurable: true
|
|
563
766
|
});
|
|
564
|
-
Object.defineProperty(XIcon.prototype, "
|
|
767
|
+
Object.defineProperty(XIcon.prototype, "c5", {
|
|
565
768
|
get: function () {
|
|
566
|
-
return this.
|
|
769
|
+
return this.cn;
|
|
567
770
|
},
|
|
568
771
|
set: function (a) {
|
|
569
|
-
var b = this.
|
|
570
|
-
this.
|
|
571
|
-
if (b != this.
|
|
572
|
-
this.
|
|
772
|
+
var b = this.cn;
|
|
773
|
+
this.cn = a;
|
|
774
|
+
if (b != this.cn) {
|
|
775
|
+
this.cb("HoverFill", b, a);
|
|
573
776
|
}
|
|
574
777
|
},
|
|
575
778
|
enumerable: false,
|
|
576
779
|
configurable: true
|
|
577
780
|
});
|
|
578
|
-
Object.defineProperty(XIcon.prototype, "
|
|
781
|
+
Object.defineProperty(XIcon.prototype, "c6", {
|
|
579
782
|
get: function () {
|
|
580
|
-
return this.
|
|
783
|
+
return this.co;
|
|
581
784
|
},
|
|
582
785
|
set: function (a) {
|
|
583
|
-
var b = this.
|
|
584
|
-
this.
|
|
585
|
-
if (b != this.
|
|
586
|
-
this.
|
|
786
|
+
var b = this.co;
|
|
787
|
+
this.co = a;
|
|
788
|
+
if (b != this.co) {
|
|
789
|
+
this.cb("HoverStroke", b, a);
|
|
587
790
|
}
|
|
588
791
|
},
|
|
589
792
|
enumerable: false,
|
|
590
793
|
configurable: true
|
|
591
794
|
});
|
|
592
|
-
Object.defineProperty(XIcon.prototype, "
|
|
795
|
+
Object.defineProperty(XIcon.prototype, "aj", {
|
|
593
796
|
get: function () {
|
|
594
|
-
return this.
|
|
797
|
+
return this.x;
|
|
595
798
|
},
|
|
596
799
|
set: function (a) {
|
|
597
|
-
var b = this.
|
|
598
|
-
this.
|
|
599
|
-
if (b != this.
|
|
600
|
-
this.
|
|
800
|
+
var b = this.x;
|
|
801
|
+
this.x = a;
|
|
802
|
+
if (b != this.x) {
|
|
803
|
+
this.cb("HoverStrokeThickness", b, a);
|
|
601
804
|
}
|
|
602
805
|
},
|
|
603
806
|
enumerable: false,
|
|
604
807
|
configurable: true
|
|
605
808
|
});
|
|
606
|
-
Object.defineProperty(XIcon.prototype, "
|
|
809
|
+
Object.defineProperty(XIcon.prototype, "c7", {
|
|
607
810
|
get: function () {
|
|
608
|
-
return this.
|
|
811
|
+
return this.cp;
|
|
609
812
|
},
|
|
610
813
|
set: function (a) {
|
|
611
|
-
var b = this.
|
|
612
|
-
this.
|
|
613
|
-
if (b != this.
|
|
614
|
-
this.
|
|
814
|
+
var b = this.cp;
|
|
815
|
+
this.cp = a;
|
|
816
|
+
if (b != this.cp) {
|
|
817
|
+
this.cb("HoverTextColor", b, a);
|
|
615
818
|
}
|
|
616
819
|
},
|
|
617
820
|
enumerable: false,
|
|
618
821
|
configurable: true
|
|
619
822
|
});
|
|
620
|
-
Object.defineProperty(XIcon.prototype, "
|
|
823
|
+
Object.defineProperty(XIcon.prototype, "e", {
|
|
621
824
|
get: function () {
|
|
622
|
-
return this.
|
|
825
|
+
return this.c;
|
|
623
826
|
},
|
|
624
827
|
set: function (a) {
|
|
625
|
-
var b = this.
|
|
626
|
-
this.
|
|
627
|
-
if (b != this.
|
|
628
|
-
this.
|
|
828
|
+
var b = this.c;
|
|
829
|
+
this.c = a;
|
|
830
|
+
if (b != this.c) {
|
|
831
|
+
this.cb("FillColors", b, this.c);
|
|
629
832
|
}
|
|
630
833
|
},
|
|
631
834
|
enumerable: false,
|
|
632
835
|
configurable: true
|
|
633
836
|
});
|
|
634
|
-
Object.defineProperty(XIcon.prototype, "
|
|
837
|
+
Object.defineProperty(XIcon.prototype, "f", {
|
|
635
838
|
get: function () {
|
|
636
|
-
return this.
|
|
839
|
+
return this.d;
|
|
637
840
|
},
|
|
638
841
|
set: function (a) {
|
|
639
|
-
var b = this.
|
|
640
|
-
this.
|
|
641
|
-
if (b != this.
|
|
642
|
-
this.
|
|
842
|
+
var b = this.d;
|
|
843
|
+
this.d = a;
|
|
844
|
+
if (b != this.d) {
|
|
845
|
+
this.cb("StrokeColors", b, this.d);
|
|
643
846
|
}
|
|
644
847
|
},
|
|
645
848
|
enumerable: false,
|
|
646
849
|
configurable: true
|
|
647
850
|
});
|
|
648
|
-
Object.defineProperty(XIcon.prototype, "
|
|
851
|
+
Object.defineProperty(XIcon.prototype, "c8", {
|
|
649
852
|
get: function () {
|
|
650
|
-
return this.
|
|
853
|
+
return this.cq;
|
|
651
854
|
},
|
|
652
855
|
set: function (a) {
|
|
653
|
-
var b = this.
|
|
654
|
-
this.
|
|
655
|
-
if (b != this.
|
|
656
|
-
this.
|
|
856
|
+
var b = this.cq;
|
|
857
|
+
this.cq = a;
|
|
858
|
+
if (b != this.cq) {
|
|
859
|
+
this.cb("PrimaryFillColor", b, this.cq);
|
|
657
860
|
}
|
|
658
861
|
},
|
|
659
862
|
enumerable: false,
|
|
660
863
|
configurable: true
|
|
661
864
|
});
|
|
662
|
-
Object.defineProperty(XIcon.prototype, "
|
|
865
|
+
Object.defineProperty(XIcon.prototype, "c9", {
|
|
663
866
|
get: function () {
|
|
664
|
-
return this.
|
|
867
|
+
return this.cr;
|
|
665
868
|
},
|
|
666
869
|
set: function (a) {
|
|
667
|
-
var b = this.
|
|
668
|
-
this.
|
|
669
|
-
if (b != this.
|
|
670
|
-
this.
|
|
870
|
+
var b = this.cr;
|
|
871
|
+
this.cr = a;
|
|
872
|
+
if (b != this.cr) {
|
|
873
|
+
this.cb("PrimaryStrokeColor", b, this.cr);
|
|
671
874
|
}
|
|
672
875
|
},
|
|
673
876
|
enumerable: false,
|
|
674
877
|
configurable: true
|
|
675
878
|
});
|
|
676
|
-
Object.defineProperty(XIcon.prototype, "
|
|
879
|
+
Object.defineProperty(XIcon.prototype, "da", {
|
|
677
880
|
get: function () {
|
|
678
|
-
return this.
|
|
881
|
+
return this.cs;
|
|
679
882
|
},
|
|
680
883
|
set: function (a) {
|
|
681
|
-
var b = this.
|
|
682
|
-
this.
|
|
683
|
-
if (b != this.
|
|
684
|
-
this.
|
|
884
|
+
var b = this.cs;
|
|
885
|
+
this.cs = a;
|
|
886
|
+
if (b != this.cs) {
|
|
887
|
+
this.cb("SecondaryFillColor", b, this.cs);
|
|
685
888
|
}
|
|
686
889
|
},
|
|
687
890
|
enumerable: false,
|
|
688
891
|
configurable: true
|
|
689
892
|
});
|
|
690
|
-
Object.defineProperty(XIcon.prototype, "
|
|
893
|
+
Object.defineProperty(XIcon.prototype, "db", {
|
|
691
894
|
get: function () {
|
|
692
|
-
return this.
|
|
895
|
+
return this.ct;
|
|
693
896
|
},
|
|
694
897
|
set: function (a) {
|
|
695
|
-
var b = this.
|
|
696
|
-
this.
|
|
697
|
-
if (b != this.
|
|
698
|
-
this.
|
|
898
|
+
var b = this.ct;
|
|
899
|
+
this.ct = a;
|
|
900
|
+
if (b != this.ct) {
|
|
901
|
+
this.cb("SecondaryStrokeColor", b, this.ct);
|
|
699
902
|
}
|
|
700
903
|
},
|
|
701
904
|
enumerable: false,
|
|
702
905
|
configurable: true
|
|
703
906
|
});
|
|
704
|
-
Object.defineProperty(XIcon.prototype, "
|
|
907
|
+
Object.defineProperty(XIcon.prototype, "a7", {
|
|
705
908
|
get: function () {
|
|
706
909
|
return this.aw;
|
|
707
910
|
},
|
|
@@ -709,7 +912,21 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
709
912
|
var b = this.aw;
|
|
710
913
|
this.aw = a;
|
|
711
914
|
if (b != this.aw) {
|
|
712
|
-
this.
|
|
915
|
+
this.cb("DataURL", b, a);
|
|
916
|
+
}
|
|
917
|
+
},
|
|
918
|
+
enumerable: false,
|
|
919
|
+
configurable: true
|
|
920
|
+
});
|
|
921
|
+
Object.defineProperty(XIcon.prototype, "svgPath", {
|
|
922
|
+
get: function () {
|
|
923
|
+
return this.az;
|
|
924
|
+
},
|
|
925
|
+
set: function (a) {
|
|
926
|
+
var b = this.az;
|
|
927
|
+
this.az = a;
|
|
928
|
+
if (b != this.az) {
|
|
929
|
+
this.cb("SVGPath", b, a);
|
|
713
930
|
}
|
|
714
931
|
},
|
|
715
932
|
enumerable: false,
|
|
@@ -717,97 +934,111 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
717
934
|
});
|
|
718
935
|
Object.defineProperty(XIcon.prototype, "svg", {
|
|
719
936
|
get: function () {
|
|
720
|
-
return this.
|
|
937
|
+
return this.ay;
|
|
721
938
|
},
|
|
722
939
|
set: function (a) {
|
|
723
|
-
var b = this.
|
|
724
|
-
this.
|
|
725
|
-
if (b != this.
|
|
726
|
-
this.
|
|
940
|
+
var b = this.ay;
|
|
941
|
+
this.ay = a;
|
|
942
|
+
if (b != this.ay) {
|
|
943
|
+
this.cb("SVG", b, this.ay);
|
|
944
|
+
}
|
|
945
|
+
},
|
|
946
|
+
enumerable: false,
|
|
947
|
+
configurable: true
|
|
948
|
+
});
|
|
949
|
+
Object.defineProperty(XIcon.prototype, "b", {
|
|
950
|
+
get: function () {
|
|
951
|
+
return this.a;
|
|
952
|
+
},
|
|
953
|
+
set: function (a) {
|
|
954
|
+
var b = this.a;
|
|
955
|
+
this.a = a;
|
|
956
|
+
if (b != this.a) {
|
|
957
|
+
this.cb("SVGPaths", b, this.a);
|
|
727
958
|
}
|
|
728
959
|
},
|
|
729
960
|
enumerable: false,
|
|
730
961
|
configurable: true
|
|
731
962
|
});
|
|
732
|
-
XIcon.prototype.
|
|
733
|
-
this.
|
|
963
|
+
XIcon.prototype.b9 = function () {
|
|
964
|
+
this.t = true;
|
|
734
965
|
};
|
|
735
|
-
XIcon.prototype.
|
|
736
|
-
this.
|
|
966
|
+
XIcon.prototype.ca = function () {
|
|
967
|
+
this.t = false;
|
|
737
968
|
};
|
|
738
|
-
Object.defineProperty(XIcon.prototype, "
|
|
969
|
+
Object.defineProperty(XIcon.prototype, "m", {
|
|
739
970
|
get: function () {
|
|
740
|
-
return this.
|
|
971
|
+
return this.l;
|
|
741
972
|
},
|
|
742
973
|
set: function (a) {
|
|
743
|
-
var b = this.
|
|
744
|
-
this.
|
|
745
|
-
if (b != this.
|
|
746
|
-
this.
|
|
974
|
+
var b = this.l;
|
|
975
|
+
this.l = a;
|
|
976
|
+
if (b != this.l) {
|
|
977
|
+
this.cb("TextStyle", b, a);
|
|
747
978
|
}
|
|
748
979
|
},
|
|
749
980
|
enumerable: false,
|
|
750
981
|
configurable: true
|
|
751
982
|
});
|
|
752
|
-
Object.defineProperty(XIcon.prototype, "
|
|
983
|
+
Object.defineProperty(XIcon.prototype, "bh", {
|
|
753
984
|
get: function () {
|
|
754
|
-
return this.
|
|
985
|
+
return this.ax;
|
|
755
986
|
},
|
|
756
987
|
set: function (a) {
|
|
757
|
-
var b = this.
|
|
758
|
-
this.
|
|
759
|
-
if (b != this.
|
|
760
|
-
this.
|
|
988
|
+
var b = this.ax;
|
|
989
|
+
this.ax = a;
|
|
990
|
+
if (b != this.ax) {
|
|
991
|
+
this.cb("Id", b, a);
|
|
761
992
|
}
|
|
762
993
|
},
|
|
763
994
|
enumerable: false,
|
|
764
995
|
configurable: true
|
|
765
996
|
});
|
|
766
|
-
Object.defineProperty(XIcon.prototype, "
|
|
997
|
+
Object.defineProperty(XIcon.prototype, "q", {
|
|
767
998
|
get: function () {
|
|
768
|
-
return this.
|
|
999
|
+
return this.n;
|
|
769
1000
|
},
|
|
770
1001
|
enumerable: false,
|
|
771
1002
|
configurable: true
|
|
772
1003
|
});
|
|
773
|
-
Object.defineProperty(XIcon.prototype, "
|
|
1004
|
+
Object.defineProperty(XIcon.prototype, "as", {
|
|
774
1005
|
get: function () {
|
|
775
|
-
return this.
|
|
1006
|
+
return this.ar;
|
|
776
1007
|
},
|
|
777
1008
|
set: function (a) {
|
|
778
|
-
var b = this.
|
|
779
|
-
this.
|
|
780
|
-
this.
|
|
781
|
-
if (b != this.
|
|
782
|
-
this.
|
|
1009
|
+
var b = this.ar;
|
|
1010
|
+
this.ar = a;
|
|
1011
|
+
this.n = true;
|
|
1012
|
+
if (b != this.ar) {
|
|
1013
|
+
this.cb("TabIndex", b, a);
|
|
783
1014
|
}
|
|
784
1015
|
},
|
|
785
1016
|
enumerable: false,
|
|
786
1017
|
configurable: true
|
|
787
1018
|
});
|
|
788
|
-
Object.defineProperty(XIcon.prototype, "
|
|
1019
|
+
Object.defineProperty(XIcon.prototype, "a4", {
|
|
789
1020
|
get: function () {
|
|
790
|
-
return this.
|
|
1021
|
+
return this.av;
|
|
791
1022
|
},
|
|
792
1023
|
set: function (a) {
|
|
793
|
-
var b = this.
|
|
794
|
-
this.
|
|
795
|
-
if (b != this.
|
|
796
|
-
this.
|
|
1024
|
+
var b = this.av;
|
|
1025
|
+
this.av = a;
|
|
1026
|
+
if (b != this.av) {
|
|
1027
|
+
this.cb("AriaLabel", b, a);
|
|
797
1028
|
}
|
|
798
1029
|
},
|
|
799
1030
|
enumerable: false,
|
|
800
1031
|
configurable: true
|
|
801
1032
|
});
|
|
802
|
-
Object.defineProperty(XIcon.prototype, "
|
|
1033
|
+
Object.defineProperty(XIcon.prototype, "t", {
|
|
803
1034
|
get: function () {
|
|
804
|
-
return this.
|
|
1035
|
+
return this.p;
|
|
805
1036
|
},
|
|
806
1037
|
set: function (a) {
|
|
807
|
-
var b = this.
|
|
808
|
-
this.
|
|
809
|
-
if (b != this.
|
|
810
|
-
this.
|
|
1038
|
+
var b = this.p;
|
|
1039
|
+
this.p = a;
|
|
1040
|
+
if (b != this.p) {
|
|
1041
|
+
this.cb("IsHover", b, a);
|
|
811
1042
|
}
|
|
812
1043
|
},
|
|
813
1044
|
enumerable: false,
|
|
@@ -815,125 +1046,125 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
815
1046
|
});
|
|
816
1047
|
Object.defineProperty(XIcon.prototype, "disabled", {
|
|
817
1048
|
get: function () {
|
|
818
|
-
return this.
|
|
1049
|
+
return this.o;
|
|
819
1050
|
},
|
|
820
1051
|
set: function (a) {
|
|
821
|
-
var b = this.
|
|
822
|
-
this.
|
|
823
|
-
if (b != this.
|
|
824
|
-
this.
|
|
1052
|
+
var b = this.o;
|
|
1053
|
+
this.o = a;
|
|
1054
|
+
if (b != this.o) {
|
|
1055
|
+
this.cb("IsDisabled", b, a);
|
|
825
1056
|
}
|
|
826
1057
|
},
|
|
827
1058
|
enumerable: false,
|
|
828
1059
|
configurable: true
|
|
829
1060
|
});
|
|
830
|
-
Object.defineProperty(XIcon.prototype, "
|
|
1061
|
+
Object.defineProperty(XIcon.prototype, "ak", {
|
|
831
1062
|
get: function () {
|
|
832
|
-
return this.
|
|
1063
|
+
return this.y;
|
|
833
1064
|
},
|
|
834
1065
|
set: function (a) {
|
|
835
|
-
var b = this.
|
|
836
|
-
this.
|
|
837
|
-
if (b != this.
|
|
838
|
-
this.
|
|
1066
|
+
var b = this.y;
|
|
1067
|
+
this.y = a;
|
|
1068
|
+
if (b != this.y) {
|
|
1069
|
+
this.cb("Opacity", b, this.y);
|
|
839
1070
|
}
|
|
840
1071
|
},
|
|
841
1072
|
enumerable: false,
|
|
842
1073
|
configurable: true
|
|
843
1074
|
});
|
|
844
|
-
Object.defineProperty(XIcon.prototype, "
|
|
1075
|
+
Object.defineProperty(XIcon.prototype, "an", {
|
|
845
1076
|
get: function () {
|
|
846
|
-
return this.
|
|
1077
|
+
return this.ab;
|
|
847
1078
|
},
|
|
848
1079
|
set: function (a) {
|
|
849
|
-
var b = this.
|
|
850
|
-
this.
|
|
851
|
-
if (b != this.
|
|
852
|
-
this.
|
|
1080
|
+
var b = this.ab;
|
|
1081
|
+
this.ab = a;
|
|
1082
|
+
if (b != this.ab) {
|
|
1083
|
+
this.cb("ViewBoxLeft", b, this.ab);
|
|
853
1084
|
}
|
|
854
1085
|
},
|
|
855
1086
|
enumerable: false,
|
|
856
1087
|
configurable: true
|
|
857
1088
|
});
|
|
858
|
-
Object.defineProperty(XIcon.prototype, "
|
|
1089
|
+
Object.defineProperty(XIcon.prototype, "ao", {
|
|
859
1090
|
get: function () {
|
|
860
|
-
return this.
|
|
1091
|
+
return this.ac;
|
|
861
1092
|
},
|
|
862
1093
|
set: function (a) {
|
|
863
|
-
var b = this.
|
|
864
|
-
this.
|
|
865
|
-
if (b != this.
|
|
866
|
-
this.
|
|
1094
|
+
var b = this.ac;
|
|
1095
|
+
this.ac = a;
|
|
1096
|
+
if (b != this.ac) {
|
|
1097
|
+
this.cb("ViewBoxTop", b, this.ac);
|
|
867
1098
|
}
|
|
868
1099
|
},
|
|
869
1100
|
enumerable: false,
|
|
870
1101
|
configurable: true
|
|
871
1102
|
});
|
|
872
|
-
Object.defineProperty(XIcon.prototype, "
|
|
1103
|
+
Object.defineProperty(XIcon.prototype, "ap", {
|
|
873
1104
|
get: function () {
|
|
874
|
-
return this.
|
|
1105
|
+
return this.ad;
|
|
875
1106
|
},
|
|
876
1107
|
set: function (a) {
|
|
877
|
-
var b = this.
|
|
878
|
-
this.
|
|
879
|
-
if (b != this.
|
|
880
|
-
this.
|
|
1108
|
+
var b = this.ad;
|
|
1109
|
+
this.ad = a;
|
|
1110
|
+
if (b != this.ad) {
|
|
1111
|
+
this.cb("ViewBoxWidth", b, this.ad);
|
|
881
1112
|
}
|
|
882
1113
|
},
|
|
883
1114
|
enumerable: false,
|
|
884
1115
|
configurable: true
|
|
885
1116
|
});
|
|
886
|
-
Object.defineProperty(XIcon.prototype, "
|
|
1117
|
+
Object.defineProperty(XIcon.prototype, "am", {
|
|
887
1118
|
get: function () {
|
|
888
|
-
return this.
|
|
1119
|
+
return this.aa;
|
|
889
1120
|
},
|
|
890
1121
|
set: function (a) {
|
|
891
|
-
var b = this.
|
|
892
|
-
this.
|
|
893
|
-
if (b != this.
|
|
894
|
-
this.
|
|
1122
|
+
var b = this.aa;
|
|
1123
|
+
this.aa = a;
|
|
1124
|
+
if (b != this.aa) {
|
|
1125
|
+
this.cb("ViewBoxHeight", b, this.aa);
|
|
895
1126
|
}
|
|
896
1127
|
},
|
|
897
1128
|
enumerable: false,
|
|
898
1129
|
configurable: true
|
|
899
1130
|
});
|
|
900
|
-
Object.defineProperty(XIcon.prototype, "
|
|
1131
|
+
Object.defineProperty(XIcon.prototype, "aq", {
|
|
901
1132
|
get: function () {
|
|
902
|
-
return this.
|
|
1133
|
+
return this.ae;
|
|
903
1134
|
},
|
|
904
1135
|
set: function (a) {
|
|
905
|
-
var b = this.
|
|
906
|
-
this.
|
|
907
|
-
if (b != this.
|
|
908
|
-
this.
|
|
1136
|
+
var b = this.ae;
|
|
1137
|
+
this.ae = a;
|
|
1138
|
+
if (b != this.ae) {
|
|
1139
|
+
this.cb("Width", b, this.ae);
|
|
909
1140
|
}
|
|
910
1141
|
},
|
|
911
1142
|
enumerable: false,
|
|
912
1143
|
configurable: true
|
|
913
1144
|
});
|
|
914
|
-
Object.defineProperty(XIcon.prototype, "
|
|
1145
|
+
Object.defineProperty(XIcon.prototype, "ai", {
|
|
915
1146
|
get: function () {
|
|
916
|
-
return this.
|
|
1147
|
+
return this.w;
|
|
917
1148
|
},
|
|
918
1149
|
set: function (a) {
|
|
919
|
-
var b = this.
|
|
920
|
-
this.
|
|
921
|
-
if (b != this.
|
|
922
|
-
this.
|
|
1150
|
+
var b = this.w;
|
|
1151
|
+
this.w = a;
|
|
1152
|
+
if (b != this.w) {
|
|
1153
|
+
this.cb("Height", b, this.w);
|
|
923
1154
|
}
|
|
924
1155
|
},
|
|
925
1156
|
enumerable: false,
|
|
926
1157
|
configurable: true
|
|
927
1158
|
});
|
|
928
|
-
XIcon.prototype.
|
|
1159
|
+
XIcon.prototype.cc = function () {
|
|
929
1160
|
};
|
|
930
1161
|
XIcon.prototype.onDetachedFromUI = function () {
|
|
931
|
-
this.view.
|
|
1162
|
+
this.view.ai();
|
|
932
1163
|
};
|
|
933
1164
|
XIcon.prototype.onAttachedToUI = function () {
|
|
934
|
-
this.view.
|
|
1165
|
+
this.view.af();
|
|
935
1166
|
};
|
|
936
|
-
XIcon.prototype.
|
|
1167
|
+
XIcon.prototype.b7 = function () {
|
|
937
1168
|
if (this.disabled) {
|
|
938
1169
|
return;
|
|
939
1170
|
}
|
|
@@ -941,72 +1172,73 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
941
1172
|
this.clicked(this, new IconClickedEventArgs());
|
|
942
1173
|
}
|
|
943
1174
|
};
|
|
944
|
-
XIcon.prototype.
|
|
945
|
-
return this.view.
|
|
1175
|
+
XIcon.prototype.u = function () {
|
|
1176
|
+
return this.view.j();
|
|
946
1177
|
};
|
|
947
|
-
XIcon.prototype.
|
|
948
|
-
return this.
|
|
1178
|
+
XIcon.prototype.au = function () {
|
|
1179
|
+
return this.g();
|
|
949
1180
|
};
|
|
950
|
-
XIcon.prototype.
|
|
951
|
-
var a = this.
|
|
952
|
-
return a.
|
|
1181
|
+
XIcon.prototype.a9 = function () {
|
|
1182
|
+
var a = this.g();
|
|
1183
|
+
return a.k();
|
|
953
1184
|
};
|
|
954
|
-
XIcon.prototype.
|
|
1185
|
+
XIcon.prototype.g = function () {
|
|
955
1186
|
var a = new IconVisualModelExport();
|
|
956
|
-
var b = this.view.
|
|
1187
|
+
var b = this.view.x;
|
|
957
1188
|
a.a = AppearanceHelper.a(NativeUI.al(b));
|
|
958
1189
|
a.c = AppearanceHelper.a(NativeUI.al(b));
|
|
959
1190
|
a.b = AppearanceHelper.a(NativeUI.am(b));
|
|
960
|
-
a.d = this.
|
|
961
|
-
var c = this.view.
|
|
1191
|
+
a.d = this.af;
|
|
1192
|
+
var c = this.view.b();
|
|
962
1193
|
a.h = c[0];
|
|
963
1194
|
a.f = c[1];
|
|
964
1195
|
a.e = NativeUI.d(b);
|
|
965
1196
|
a.i = NativeUI.k(b);
|
|
966
1197
|
a.svgPath = this.svgPath;
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
1198
|
+
a.j = this.a7;
|
|
1199
|
+
if (this.m != null) {
|
|
1200
|
+
var d = this.m;
|
|
1201
|
+
if (this.view != null && d.q == null) {
|
|
1202
|
+
var e = this.view.t;
|
|
971
1203
|
var f = FontUtil.getFontInfoFromString(e, d.fontString);
|
|
972
|
-
d.p = f.p;
|
|
973
|
-
d.e = f.e;
|
|
974
1204
|
d.q = f.q;
|
|
975
|
-
d.
|
|
1205
|
+
d.f = f.f;
|
|
1206
|
+
d.r = f.r;
|
|
976
1207
|
d.t = f.t;
|
|
977
1208
|
d.u = f.u;
|
|
1209
|
+
d.v = f.v;
|
|
978
1210
|
}
|
|
979
|
-
if (d.
|
|
980
|
-
a.
|
|
1211
|
+
if (d.q != null) {
|
|
1212
|
+
a.m = d.q;
|
|
981
1213
|
}
|
|
982
|
-
if (!isNaN_(d.
|
|
983
|
-
a.g = d.
|
|
1214
|
+
if (!isNaN_(d.f)) {
|
|
1215
|
+
a.g = d.f;
|
|
984
1216
|
}
|
|
985
|
-
if (d.
|
|
986
|
-
a.
|
|
1217
|
+
if (d.v != null) {
|
|
1218
|
+
a.q = d.v;
|
|
987
1219
|
}
|
|
988
|
-
if (d.
|
|
989
|
-
a.
|
|
1220
|
+
if (d.t != null) {
|
|
1221
|
+
a.o = d.t;
|
|
990
1222
|
}
|
|
991
|
-
if (d.
|
|
992
|
-
a.
|
|
1223
|
+
if (d.r != null) {
|
|
1224
|
+
a.n = d.t;
|
|
993
1225
|
}
|
|
994
1226
|
}
|
|
995
1227
|
return a;
|
|
996
1228
|
};
|
|
997
1229
|
XIcon.prototype.provideContainer = function (a) {
|
|
998
|
-
this.view.
|
|
1230
|
+
this.view.ah(a);
|
|
999
1231
|
};
|
|
1000
1232
|
XIcon.$t = markType(XIcon, 'XIcon', Base.$, [INotifyPropertyChanged_$type, IIcon_$type]);
|
|
1001
|
-
XIcon.
|
|
1002
|
-
XIcon.
|
|
1003
|
-
XIcon.
|
|
1004
|
-
XIcon.
|
|
1005
|
-
XIcon.
|
|
1006
|
-
XIcon.
|
|
1007
|
-
XIcon.
|
|
1008
|
-
XIcon.
|
|
1009
|
-
XIcon.
|
|
1233
|
+
XIcon.cz = null;
|
|
1234
|
+
XIcon.c4 = null;
|
|
1235
|
+
XIcon.c3 = null;
|
|
1236
|
+
XIcon.c0 = null;
|
|
1237
|
+
XIcon.c1 = null;
|
|
1238
|
+
XIcon.c2 = null;
|
|
1239
|
+
XIcon.ah = NaN;
|
|
1240
|
+
XIcon.ag = NaN;
|
|
1241
|
+
XIcon.at = 0;
|
|
1010
1242
|
return XIcon;
|
|
1011
1243
|
}(Base));
|
|
1012
1244
|
export { XIcon };
|