igniteui-webcomponents-inputs 4.0.3 → 4.2.2
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-webcomponents-inputs.umd.js +2781 -2143
- package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonGroupView_combined.js +17 -17
- package/esm2015/lib/ButtonView_combined.js +945 -939
- package/esm2015/lib/CalendarView_combined.js +80 -80
- package/esm2015/lib/DatePickerView_combined.js +82 -64
- package/esm2015/lib/IconView_combined.js +250 -238
- package/esm2015/lib/InputGroupView_combined.js +368 -357
- package/esm2015/lib/NativeUIXInputsFactory.js +143 -0
- package/esm2015/lib/XButtonBridge.js +101 -0
- package/esm2015/lib/XCheckboxBridge.js +69 -0
- package/esm2015/lib/XComponentBridge.js +34 -0
- package/esm2015/lib/XIconButtonBridge.js +65 -0
- package/esm2015/lib/XInputBridge.js +162 -0
- package/esm2015/lib/igc-x-button-component.js +366 -366
- package/esm2015/lib/igc-x-icon-component.js +74 -63
- package/esm2015/lib/igc-x-input-component.js +65 -54
- package/esm2015/public_api.js +6 -0
- package/esm5/lib/ButtonGroupView_combined.js +17 -17
- package/esm5/lib/ButtonView_combined.js +941 -935
- package/esm5/lib/CalendarView_combined.js +80 -80
- package/esm5/lib/DatePickerView_combined.js +82 -64
- package/esm5/lib/IconView_combined.js +240 -224
- package/esm5/lib/InputGroupView_combined.js +353 -338
- package/esm5/lib/NativeUIXInputsFactory.js +153 -0
- package/esm5/lib/XButtonBridge.js +103 -0
- package/esm5/lib/XCheckboxBridge.js +71 -0
- package/esm5/lib/XComponentBridge.js +36 -0
- package/esm5/lib/XIconButtonBridge.js +67 -0
- package/esm5/lib/XInputBridge.js +164 -0
- package/esm5/lib/igc-x-button-component.js +366 -366
- package/esm5/lib/igc-x-icon-component.js +79 -64
- package/esm5/lib/igc-x-input-component.js +70 -55
- package/esm5/public_api.js +6 -0
- package/fesm2015/igniteui-webcomponents-inputs.js +2785 -2178
- package/fesm5/igniteui-webcomponents-inputs.js +2772 -2141
- package/lib/ButtonView_combined.d.ts +262 -260
- package/lib/DatePickerView_combined.d.ts +22 -21
- package/lib/DatePickerVisualModelExport.d.ts +1 -1
- package/lib/IconView_combined.d.ts +59 -56
- package/lib/InputGroupView_combined.d.ts +91 -89
- package/lib/NativeUIXInputsFactory.d.ts +22 -0
- package/lib/XButtonBridge.d.ts +21 -0
- package/lib/XCheckboxBridge.d.ts +19 -0
- package/lib/XComponentBridge.d.ts +17 -0
- package/lib/XIconButtonBridge.d.ts +16 -0
- package/lib/XInputBridge.d.ts +24 -0
- package/lib/igc-x-icon-component.d.ts +6 -1
- package/lib/igc-x-input-component.d.ts +6 -1
- package/package.json +2 -2
- package/public_api.d.ts +6 -0
|
@@ -5,9 +5,10 @@ https://www.infragistics.com/legal/license/igultimate-eula
|
|
|
5
5
|
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
6
|
*/
|
|
7
7
|
import * as tslib_1 from "tslib";
|
|
8
|
-
import { Base, Delegate_$type, fromEnum, runOn, markType, INotifyPropertyChanged_$type, PropertyChangedEventArgs } from "igniteui-webcomponents-core";
|
|
8
|
+
import { Base, Delegate_$type, fromEnum, runOn, markType, INotifyPropertyChanged_$type, PropertyChangedEventArgs, enumGetBox } from "igniteui-webcomponents-core";
|
|
9
9
|
import { List$1 } from "igniteui-webcomponents-core";
|
|
10
10
|
import { IIcon_$type } from "igniteui-webcomponents-core";
|
|
11
|
+
import { BaseControlTheme_$type } from "igniteui-webcomponents-core";
|
|
11
12
|
import { NativeUI } from "igniteui-webcomponents-core";
|
|
12
13
|
import { IconClickedEventArgs } from "./IconClickedEventArgs";
|
|
13
14
|
import { IconVisualModelExport } from "./IconVisualModelExport";
|
|
@@ -108,7 +109,7 @@ var IconView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
108
109
|
this.j = d;
|
|
109
110
|
this.h.append(this.i);
|
|
110
111
|
this.g.add(c.listen("click", runOn(this, this.r)));
|
|
111
|
-
this.b.
|
|
112
|
+
this.b.bg();
|
|
112
113
|
};
|
|
113
114
|
IconView.prototype.x = function (a) {
|
|
114
115
|
if (this.m != a) {
|
|
@@ -129,10 +130,10 @@ var IconView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
129
130
|
}
|
|
130
131
|
};
|
|
131
132
|
IconView.prototype.o = function (a) {
|
|
132
|
-
this.b.
|
|
133
|
+
this.b.bd();
|
|
133
134
|
};
|
|
134
135
|
IconView.prototype.p = function (a) {
|
|
135
|
-
this.b.
|
|
136
|
+
this.b.be();
|
|
136
137
|
};
|
|
137
138
|
IconView.prototype.q = function () {
|
|
138
139
|
this.d = true;
|
|
@@ -178,7 +179,7 @@ var IconView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
178
179
|
return c;
|
|
179
180
|
};
|
|
180
181
|
IconView.prototype.r = function (a) {
|
|
181
|
-
this.b.
|
|
182
|
+
this.b.bb();
|
|
182
183
|
};
|
|
183
184
|
IconView.$t = markType(IconView, 'IconView');
|
|
184
185
|
return IconView;
|
|
@@ -192,30 +193,31 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
192
193
|
function XIcon() {
|
|
193
194
|
var _this = _super.call(this) || this;
|
|
194
195
|
_this._view = null;
|
|
195
|
-
_this.
|
|
196
|
-
_this.bn = XIcon.b3;
|
|
197
|
-
_this.bk = XIcon.b0;
|
|
198
|
-
_this.bl = XIcon.b1;
|
|
196
|
+
_this.d = 0;
|
|
199
197
|
_this.bm = XIcon.b2;
|
|
200
|
-
_this.
|
|
201
|
-
_this.
|
|
202
|
-
_this.bo = XIcon.
|
|
203
|
-
_this.
|
|
204
|
-
_this.
|
|
205
|
-
_this.
|
|
206
|
-
_this.
|
|
207
|
-
_this.
|
|
208
|
-
_this.
|
|
209
|
-
_this.
|
|
210
|
-
_this.
|
|
211
|
-
_this.
|
|
212
|
-
_this.
|
|
213
|
-
_this.
|
|
214
|
-
_this.f =
|
|
215
|
-
_this.
|
|
198
|
+
_this.bq = XIcon.b6;
|
|
199
|
+
_this.bn = XIcon.b3;
|
|
200
|
+
_this.bo = XIcon.b4;
|
|
201
|
+
_this.bp = XIcon.b5;
|
|
202
|
+
_this.p = XIcon.w;
|
|
203
|
+
_this.q = XIcon.x;
|
|
204
|
+
_this.br = XIcon.b2;
|
|
205
|
+
_this.bw = XIcon.b6;
|
|
206
|
+
_this.ah = null;
|
|
207
|
+
_this.bs = XIcon.b3;
|
|
208
|
+
_this.bt = XIcon.b4;
|
|
209
|
+
_this.bv = XIcon.b5;
|
|
210
|
+
_this.r = XIcon.w;
|
|
211
|
+
_this.t = XIcon.x;
|
|
212
|
+
_this.f = null;
|
|
213
|
+
_this.bu = null;
|
|
214
|
+
_this.ag = "ig-icon-" + XIcon.ad++;
|
|
215
|
+
_this.ab = 0;
|
|
216
216
|
_this.h = false;
|
|
217
|
-
_this.
|
|
218
|
-
_this.
|
|
217
|
+
_this.af = null;
|
|
218
|
+
_this.j = false;
|
|
219
|
+
_this.i = false;
|
|
220
|
+
_this.s = 1;
|
|
219
221
|
_this.clicked = null;
|
|
220
222
|
_this.propertyChanged = null;
|
|
221
223
|
var a = new IconView();
|
|
@@ -237,13 +239,13 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
237
239
|
XIcon.prototype.destroy = function () {
|
|
238
240
|
this.provideContainer(null);
|
|
239
241
|
};
|
|
240
|
-
XIcon.prototype.
|
|
242
|
+
XIcon.prototype.bf = function (a, b, c) {
|
|
241
243
|
if (this.propertyChanged != null) {
|
|
242
244
|
this.propertyChanged(this, new PropertyChangedEventArgs(a));
|
|
243
245
|
}
|
|
244
|
-
this.
|
|
246
|
+
this.bh(a, b, c);
|
|
245
247
|
};
|
|
246
|
-
XIcon.prototype.
|
|
248
|
+
XIcon.prototype.bh = function (a, b, c) {
|
|
247
249
|
switch (a) {
|
|
248
250
|
case "Fill":
|
|
249
251
|
case "Stroke":
|
|
@@ -251,7 +253,7 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
251
253
|
case "HoverFill":
|
|
252
254
|
case "HoverStroke":
|
|
253
255
|
case "HoverStrokeThickness":
|
|
254
|
-
this.
|
|
256
|
+
this.bl();
|
|
255
257
|
break;
|
|
256
258
|
case "ActualFill":
|
|
257
259
|
case "ActualStroke":
|
|
@@ -260,45 +262,45 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
260
262
|
case "ActualStrokeThickness":
|
|
261
263
|
case "ActualHoverStrokeThickness":
|
|
262
264
|
case "SVGPath":
|
|
263
|
-
this.
|
|
265
|
+
this.bj();
|
|
264
266
|
break;
|
|
265
267
|
case "Opacity":
|
|
266
|
-
this.
|
|
268
|
+
this.bk();
|
|
267
269
|
break;
|
|
268
270
|
}
|
|
269
271
|
};
|
|
270
|
-
XIcon.prototype.
|
|
271
|
-
this.
|
|
272
|
-
this.
|
|
273
|
-
this.
|
|
274
|
-
this.
|
|
275
|
-
this.
|
|
276
|
-
this.
|
|
277
|
-
this.
|
|
272
|
+
XIcon.prototype.bl = function () {
|
|
273
|
+
this.bx = this.fill != null ? this.fill : XIcon.b2;
|
|
274
|
+
this.by = this.b7 != null ? this.b7 : XIcon.b3;
|
|
275
|
+
this.b0 = this.ca != null ? this.ca : XIcon.b5;
|
|
276
|
+
this.bz = this.b8 != null ? this.b8 : XIcon.b4;
|
|
277
|
+
this.v = !isNaN_(this.aa) ? this.aa : XIcon.x;
|
|
278
|
+
this.u = !isNaN_(this.y) ? this.y : XIcon.w;
|
|
279
|
+
this.b1 = this.cb != null ? this.cb : XIcon.b6;
|
|
278
280
|
};
|
|
279
|
-
Object.defineProperty(XIcon.prototype, "
|
|
281
|
+
Object.defineProperty(XIcon.prototype, "l", {
|
|
280
282
|
get: function () {
|
|
281
283
|
return this.svgPath != null && !this.view.f;
|
|
282
284
|
},
|
|
283
285
|
enumerable: true,
|
|
284
286
|
configurable: true
|
|
285
287
|
});
|
|
286
|
-
XIcon.prototype.
|
|
287
|
-
NativeUI.u(this.view.k, this.
|
|
288
|
+
XIcon.prototype.bk = function () {
|
|
289
|
+
NativeUI.u(this.view.k, this.z);
|
|
288
290
|
};
|
|
289
|
-
XIcon.prototype.
|
|
291
|
+
XIcon.prototype.bj = function () {
|
|
290
292
|
var a = this.view.k;
|
|
291
|
-
if (this.
|
|
293
|
+
if (this.l) {
|
|
292
294
|
var b = this.view.l;
|
|
293
|
-
if (this.
|
|
294
|
-
NativeUI.p(b, this.
|
|
295
|
-
NativeUI.w(b, this.
|
|
296
|
-
NativeUI.z(b, this.
|
|
295
|
+
if (this.n) {
|
|
296
|
+
NativeUI.p(b, this.by);
|
|
297
|
+
NativeUI.w(b, this.bz);
|
|
298
|
+
NativeUI.z(b, this.u);
|
|
297
299
|
}
|
|
298
300
|
else {
|
|
299
|
-
NativeUI.p(b, this.
|
|
300
|
-
NativeUI.w(b, this.
|
|
301
|
-
NativeUI.z(b, this.
|
|
301
|
+
NativeUI.p(b, this.bx);
|
|
302
|
+
NativeUI.w(b, this.b0);
|
|
303
|
+
NativeUI.z(b, this.v);
|
|
302
304
|
}
|
|
303
305
|
}
|
|
304
306
|
else {
|
|
@@ -306,227 +308,227 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
306
308
|
this.view.x(this.svgPath);
|
|
307
309
|
}
|
|
308
310
|
var c = this.view.k;
|
|
309
|
-
if (this.
|
|
310
|
-
if (this.
|
|
311
|
-
NativeUI.p(c, this.
|
|
311
|
+
if (this.n) {
|
|
312
|
+
if (this.by != null) {
|
|
313
|
+
NativeUI.p(c, this.by);
|
|
312
314
|
}
|
|
313
|
-
if (this.
|
|
314
|
-
NativeUI.w(c, this.
|
|
315
|
+
if (this.bz != null) {
|
|
316
|
+
NativeUI.w(c, this.bz);
|
|
315
317
|
}
|
|
316
|
-
if (!isNaN_(this.
|
|
317
|
-
NativeUI.z(c, this.
|
|
318
|
+
if (!isNaN_(this.u)) {
|
|
319
|
+
NativeUI.z(c, this.u);
|
|
318
320
|
}
|
|
319
321
|
}
|
|
320
322
|
else {
|
|
321
|
-
if (this.bu != null) {
|
|
322
|
-
NativeUI.p(c, this.bu);
|
|
323
|
-
}
|
|
324
323
|
if (this.bx != null) {
|
|
325
|
-
NativeUI.
|
|
324
|
+
NativeUI.p(c, this.bx);
|
|
325
|
+
}
|
|
326
|
+
if (this.b0 != null) {
|
|
327
|
+
NativeUI.w(c, this.b0);
|
|
326
328
|
}
|
|
327
|
-
if (!isNaN_(this.
|
|
328
|
-
NativeUI.z(c, this.
|
|
329
|
+
if (!isNaN_(this.v)) {
|
|
330
|
+
NativeUI.z(c, this.v);
|
|
329
331
|
}
|
|
330
332
|
}
|
|
331
333
|
}
|
|
332
|
-
if (this.
|
|
333
|
-
this.view.y(this.
|
|
334
|
+
if (this.g != null) {
|
|
335
|
+
this.view.y(this.g);
|
|
334
336
|
}
|
|
335
|
-
if (this.
|
|
336
|
-
NativeUI.o(this.view.k, this.
|
|
337
|
+
if (this.b1 != null) {
|
|
338
|
+
NativeUI.o(this.view.k, this.b1);
|
|
337
339
|
}
|
|
338
340
|
};
|
|
339
|
-
Object.defineProperty(XIcon.prototype, "
|
|
341
|
+
Object.defineProperty(XIcon.prototype, "e", {
|
|
340
342
|
get: function () {
|
|
341
|
-
return this.
|
|
343
|
+
return this.d;
|
|
342
344
|
},
|
|
343
345
|
set: function (a) {
|
|
344
|
-
var b = this.
|
|
345
|
-
this.
|
|
346
|
-
if (b != this.
|
|
347
|
-
this.
|
|
346
|
+
var b = this.d;
|
|
347
|
+
this.d = a;
|
|
348
|
+
if (b != this.d) {
|
|
349
|
+
this.bf("BaseTheme", enumGetBox(BaseControlTheme_$type, b), enumGetBox(BaseControlTheme_$type, a));
|
|
348
350
|
}
|
|
349
351
|
},
|
|
350
352
|
enumerable: true,
|
|
351
353
|
configurable: true
|
|
352
354
|
});
|
|
353
|
-
Object.defineProperty(XIcon.prototype, "
|
|
355
|
+
Object.defineProperty(XIcon.prototype, "bx", {
|
|
354
356
|
get: function () {
|
|
355
|
-
return this.
|
|
357
|
+
return this.bm;
|
|
356
358
|
},
|
|
357
359
|
set: function (a) {
|
|
358
|
-
var b = this.
|
|
359
|
-
this.
|
|
360
|
-
if (b != this.
|
|
361
|
-
this.
|
|
360
|
+
var b = this.bm;
|
|
361
|
+
this.bm = a;
|
|
362
|
+
if (b != this.bm) {
|
|
363
|
+
this.bf("ActualFill", b, a);
|
|
362
364
|
}
|
|
363
365
|
},
|
|
364
366
|
enumerable: true,
|
|
365
367
|
configurable: true
|
|
366
368
|
});
|
|
367
|
-
Object.defineProperty(XIcon.prototype, "
|
|
369
|
+
Object.defineProperty(XIcon.prototype, "b1", {
|
|
368
370
|
get: function () {
|
|
369
|
-
return this.
|
|
371
|
+
return this.bq;
|
|
370
372
|
},
|
|
371
373
|
set: function (a) {
|
|
372
|
-
var b = this.
|
|
373
|
-
this.
|
|
374
|
-
if (b != this.
|
|
375
|
-
this.
|
|
374
|
+
var b = this.bq;
|
|
375
|
+
this.bq = a;
|
|
376
|
+
if (b != this.bq) {
|
|
377
|
+
this.bf("ActualTextColor", b, a);
|
|
376
378
|
}
|
|
377
379
|
},
|
|
378
380
|
enumerable: true,
|
|
379
381
|
configurable: true
|
|
380
382
|
});
|
|
381
|
-
Object.defineProperty(XIcon.prototype, "
|
|
383
|
+
Object.defineProperty(XIcon.prototype, "by", {
|
|
382
384
|
get: function () {
|
|
383
|
-
return this.
|
|
385
|
+
return this.bn;
|
|
384
386
|
},
|
|
385
387
|
set: function (a) {
|
|
386
|
-
var b = this.
|
|
387
|
-
this.
|
|
388
|
-
if (b != this.
|
|
389
|
-
this.
|
|
388
|
+
var b = this.bn;
|
|
389
|
+
this.bn = a;
|
|
390
|
+
if (b != this.bn) {
|
|
391
|
+
this.bf("ActualHoverFill", b, a);
|
|
390
392
|
}
|
|
391
393
|
},
|
|
392
394
|
enumerable: true,
|
|
393
395
|
configurable: true
|
|
394
396
|
});
|
|
395
|
-
Object.defineProperty(XIcon.prototype, "
|
|
397
|
+
Object.defineProperty(XIcon.prototype, "bz", {
|
|
396
398
|
get: function () {
|
|
397
|
-
return this.
|
|
399
|
+
return this.bo;
|
|
398
400
|
},
|
|
399
401
|
set: function (a) {
|
|
400
|
-
var b = this.
|
|
401
|
-
this.
|
|
402
|
-
if (b != this.
|
|
403
|
-
this.
|
|
402
|
+
var b = this.bo;
|
|
403
|
+
this.bo = a;
|
|
404
|
+
if (b != this.bo) {
|
|
405
|
+
this.bf("ActualHoverStroke", b, a);
|
|
404
406
|
}
|
|
405
407
|
},
|
|
406
408
|
enumerable: true,
|
|
407
409
|
configurable: true
|
|
408
410
|
});
|
|
409
|
-
Object.defineProperty(XIcon.prototype, "
|
|
411
|
+
Object.defineProperty(XIcon.prototype, "b0", {
|
|
410
412
|
get: function () {
|
|
411
|
-
return this.
|
|
413
|
+
return this.bp;
|
|
412
414
|
},
|
|
413
415
|
set: function (a) {
|
|
414
|
-
var b = this.
|
|
415
|
-
this.
|
|
416
|
-
if (b != this.
|
|
417
|
-
this.
|
|
416
|
+
var b = this.bp;
|
|
417
|
+
this.bp = a;
|
|
418
|
+
if (b != this.bp) {
|
|
419
|
+
this.bf("ActualStroke", b, a);
|
|
418
420
|
}
|
|
419
421
|
},
|
|
420
422
|
enumerable: true,
|
|
421
423
|
configurable: true
|
|
422
424
|
});
|
|
423
|
-
Object.defineProperty(XIcon.prototype, "
|
|
425
|
+
Object.defineProperty(XIcon.prototype, "u", {
|
|
424
426
|
get: function () {
|
|
425
|
-
return this.
|
|
427
|
+
return this.p;
|
|
426
428
|
},
|
|
427
429
|
set: function (a) {
|
|
428
|
-
var b = this.
|
|
429
|
-
this.
|
|
430
|
-
if (b != this.
|
|
431
|
-
this.
|
|
430
|
+
var b = this.p;
|
|
431
|
+
this.p = a;
|
|
432
|
+
if (b != this.p) {
|
|
433
|
+
this.bf("ActualHoverStrokeThickness", b, a);
|
|
432
434
|
}
|
|
433
435
|
},
|
|
434
436
|
enumerable: true,
|
|
435
437
|
configurable: true
|
|
436
438
|
});
|
|
437
|
-
Object.defineProperty(XIcon.prototype, "
|
|
439
|
+
Object.defineProperty(XIcon.prototype, "v", {
|
|
438
440
|
get: function () {
|
|
439
|
-
return this.
|
|
441
|
+
return this.q;
|
|
440
442
|
},
|
|
441
443
|
set: function (a) {
|
|
442
|
-
var b = this.
|
|
443
|
-
this.
|
|
444
|
-
if (b != this.
|
|
445
|
-
this.
|
|
444
|
+
var b = this.q;
|
|
445
|
+
this.q = a;
|
|
446
|
+
if (b != this.q) {
|
|
447
|
+
this.bf("ActualStrokeThickness", b, a);
|
|
446
448
|
}
|
|
447
449
|
},
|
|
448
450
|
enumerable: true,
|
|
449
451
|
configurable: true
|
|
450
452
|
});
|
|
451
|
-
Object.defineProperty(XIcon.prototype, "
|
|
453
|
+
Object.defineProperty(XIcon.prototype, "fill", {
|
|
452
454
|
get: function () {
|
|
453
|
-
return this.
|
|
455
|
+
return this.br;
|
|
454
456
|
},
|
|
455
457
|
set: function (a) {
|
|
456
|
-
var b = this.
|
|
457
|
-
this.
|
|
458
|
-
if (b != this.
|
|
459
|
-
this.
|
|
458
|
+
var b = this.br;
|
|
459
|
+
this.br = a;
|
|
460
|
+
if (b != this.br) {
|
|
461
|
+
this.bf("Fill", b, a);
|
|
460
462
|
}
|
|
461
463
|
},
|
|
462
464
|
enumerable: true,
|
|
463
465
|
configurable: true
|
|
464
466
|
});
|
|
465
|
-
Object.defineProperty(XIcon.prototype, "
|
|
467
|
+
Object.defineProperty(XIcon.prototype, "cb", {
|
|
466
468
|
get: function () {
|
|
467
|
-
return this.
|
|
469
|
+
return this.bw;
|
|
468
470
|
},
|
|
469
471
|
set: function (a) {
|
|
470
|
-
var b = this.
|
|
471
|
-
this.
|
|
472
|
-
if (b != this.
|
|
473
|
-
this.
|
|
472
|
+
var b = this.bw;
|
|
473
|
+
this.bw = a;
|
|
474
|
+
if (b != this.bw) {
|
|
475
|
+
this.bf("TextColor", b, a);
|
|
474
476
|
}
|
|
475
477
|
},
|
|
476
478
|
enumerable: true,
|
|
477
479
|
configurable: true
|
|
478
480
|
});
|
|
479
|
-
Object.defineProperty(XIcon.prototype, "
|
|
481
|
+
Object.defineProperty(XIcon.prototype, "svgPath", {
|
|
480
482
|
get: function () {
|
|
481
|
-
return this.
|
|
483
|
+
return this.ah;
|
|
482
484
|
},
|
|
483
485
|
set: function (a) {
|
|
484
|
-
var b = this.
|
|
485
|
-
this.
|
|
486
|
-
if (b != this.
|
|
487
|
-
this.
|
|
486
|
+
var b = this.ah;
|
|
487
|
+
this.ah = a;
|
|
488
|
+
if (b != this.ah) {
|
|
489
|
+
this.bf("SVGPath", b, a);
|
|
488
490
|
}
|
|
489
491
|
},
|
|
490
492
|
enumerable: true,
|
|
491
493
|
configurable: true
|
|
492
494
|
});
|
|
493
|
-
Object.defineProperty(XIcon.prototype, "
|
|
495
|
+
Object.defineProperty(XIcon.prototype, "b7", {
|
|
494
496
|
get: function () {
|
|
495
|
-
return this.
|
|
497
|
+
return this.bs;
|
|
496
498
|
},
|
|
497
499
|
set: function (a) {
|
|
498
|
-
var b = this.
|
|
499
|
-
this.
|
|
500
|
-
if (b != this.
|
|
501
|
-
this.
|
|
500
|
+
var b = this.bs;
|
|
501
|
+
this.bs = a;
|
|
502
|
+
if (b != this.bs) {
|
|
503
|
+
this.bf("HoverFill", b, a);
|
|
502
504
|
}
|
|
503
505
|
},
|
|
504
506
|
enumerable: true,
|
|
505
507
|
configurable: true
|
|
506
508
|
});
|
|
507
|
-
Object.defineProperty(XIcon.prototype, "
|
|
509
|
+
Object.defineProperty(XIcon.prototype, "b8", {
|
|
508
510
|
get: function () {
|
|
509
|
-
return this.
|
|
511
|
+
return this.bt;
|
|
510
512
|
},
|
|
511
513
|
set: function (a) {
|
|
512
|
-
var b = this.
|
|
513
|
-
this.
|
|
514
|
-
if (b != this.
|
|
515
|
-
this.
|
|
514
|
+
var b = this.bt;
|
|
515
|
+
this.bt = a;
|
|
516
|
+
if (b != this.bt) {
|
|
517
|
+
this.bf("HoverStroke", b, a);
|
|
516
518
|
}
|
|
517
519
|
},
|
|
518
520
|
enumerable: true,
|
|
519
521
|
configurable: true
|
|
520
522
|
});
|
|
521
|
-
Object.defineProperty(XIcon.prototype, "
|
|
523
|
+
Object.defineProperty(XIcon.prototype, "ca", {
|
|
522
524
|
get: function () {
|
|
523
|
-
return this.
|
|
525
|
+
return this.bv;
|
|
524
526
|
},
|
|
525
527
|
set: function (a) {
|
|
526
|
-
var b = this.
|
|
527
|
-
this.
|
|
528
|
-
if (b != this.
|
|
529
|
-
this.
|
|
528
|
+
var b = this.bv;
|
|
529
|
+
this.bv = a;
|
|
530
|
+
if (b != this.bv) {
|
|
531
|
+
this.bf("Stroke", b, a);
|
|
530
532
|
}
|
|
531
533
|
},
|
|
532
534
|
enumerable: true,
|
|
@@ -540,105 +542,119 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
540
542
|
var b = this.r;
|
|
541
543
|
this.r = a;
|
|
542
544
|
if (b != this.r) {
|
|
543
|
-
this.
|
|
545
|
+
this.bf("HoverStrokeThickness", b, a);
|
|
546
|
+
}
|
|
547
|
+
},
|
|
548
|
+
enumerable: true,
|
|
549
|
+
configurable: true
|
|
550
|
+
});
|
|
551
|
+
Object.defineProperty(XIcon.prototype, "aa", {
|
|
552
|
+
get: function () {
|
|
553
|
+
return this.t;
|
|
554
|
+
},
|
|
555
|
+
set: function (a) {
|
|
556
|
+
var b = this.t;
|
|
557
|
+
this.t = a;
|
|
558
|
+
if (b != this.t) {
|
|
559
|
+
this.bf("StrokeThickness", b, a);
|
|
544
560
|
}
|
|
545
561
|
},
|
|
546
562
|
enumerable: true,
|
|
547
563
|
configurable: true
|
|
548
564
|
});
|
|
549
|
-
XIcon.prototype.
|
|
550
|
-
this.
|
|
565
|
+
XIcon.prototype.bd = function () {
|
|
566
|
+
this.n = true;
|
|
551
567
|
};
|
|
552
|
-
XIcon.prototype.
|
|
553
|
-
this.
|
|
568
|
+
XIcon.prototype.be = function () {
|
|
569
|
+
this.n = false;
|
|
554
570
|
};
|
|
555
|
-
Object.defineProperty(XIcon.prototype, "
|
|
571
|
+
Object.defineProperty(XIcon.prototype, "g", {
|
|
556
572
|
get: function () {
|
|
557
|
-
return this.
|
|
573
|
+
return this.f;
|
|
558
574
|
},
|
|
559
575
|
set: function (a) {
|
|
560
|
-
var b = this.
|
|
561
|
-
this.
|
|
562
|
-
if (b != this.
|
|
563
|
-
this.
|
|
576
|
+
var b = this.f;
|
|
577
|
+
this.f = a;
|
|
578
|
+
if (b != this.f) {
|
|
579
|
+
this.bf("TextStyle", b, a);
|
|
564
580
|
}
|
|
565
581
|
},
|
|
566
582
|
enumerable: true,
|
|
567
583
|
configurable: true
|
|
568
584
|
});
|
|
569
|
-
Object.defineProperty(XIcon.prototype, "
|
|
585
|
+
Object.defineProperty(XIcon.prototype, "b9", {
|
|
570
586
|
get: function () {
|
|
571
|
-
return this.
|
|
587
|
+
return this.bu;
|
|
572
588
|
},
|
|
573
589
|
set: function (a) {
|
|
574
|
-
var b = this.
|
|
575
|
-
this.
|
|
576
|
-
if (b != this.
|
|
577
|
-
this.
|
|
590
|
+
var b = this.bu;
|
|
591
|
+
this.bu = a;
|
|
592
|
+
if (b != this.bu) {
|
|
593
|
+
this.bf("HoverTextColor", b, a);
|
|
578
594
|
}
|
|
579
595
|
},
|
|
580
596
|
enumerable: true,
|
|
581
597
|
configurable: true
|
|
582
598
|
});
|
|
583
|
-
Object.defineProperty(XIcon.prototype, "
|
|
599
|
+
Object.defineProperty(XIcon.prototype, "ay", {
|
|
584
600
|
get: function () {
|
|
585
|
-
return this.
|
|
601
|
+
return this.ag;
|
|
586
602
|
},
|
|
587
603
|
set: function (a) {
|
|
588
|
-
var b = this.
|
|
589
|
-
this.
|
|
590
|
-
if (b != this.
|
|
591
|
-
this.
|
|
604
|
+
var b = this.ag;
|
|
605
|
+
this.ag = a;
|
|
606
|
+
if (b != this.ag) {
|
|
607
|
+
this.bf("Id", b, a);
|
|
592
608
|
}
|
|
593
609
|
},
|
|
594
610
|
enumerable: true,
|
|
595
611
|
configurable: true
|
|
596
612
|
});
|
|
597
|
-
Object.defineProperty(XIcon.prototype, "
|
|
613
|
+
Object.defineProperty(XIcon.prototype, "k", {
|
|
598
614
|
get: function () {
|
|
599
|
-
return this.
|
|
615
|
+
return this.h;
|
|
600
616
|
},
|
|
601
617
|
enumerable: true,
|
|
602
618
|
configurable: true
|
|
603
619
|
});
|
|
604
|
-
Object.defineProperty(XIcon.prototype, "
|
|
620
|
+
Object.defineProperty(XIcon.prototype, "ac", {
|
|
605
621
|
get: function () {
|
|
606
|
-
return this.
|
|
622
|
+
return this.ab;
|
|
607
623
|
},
|
|
608
624
|
set: function (a) {
|
|
609
|
-
var b = this.
|
|
610
|
-
this.
|
|
611
|
-
this.
|
|
612
|
-
if (b != this.
|
|
613
|
-
this.
|
|
625
|
+
var b = this.ab;
|
|
626
|
+
this.ab = a;
|
|
627
|
+
this.h = true;
|
|
628
|
+
if (b != this.ab) {
|
|
629
|
+
this.bf("TabIndex", b, a);
|
|
614
630
|
}
|
|
615
631
|
},
|
|
616
632
|
enumerable: true,
|
|
617
633
|
configurable: true
|
|
618
634
|
});
|
|
619
|
-
Object.defineProperty(XIcon.prototype, "
|
|
635
|
+
Object.defineProperty(XIcon.prototype, "ap", {
|
|
620
636
|
get: function () {
|
|
621
|
-
return this.
|
|
637
|
+
return this.af;
|
|
622
638
|
},
|
|
623
639
|
set: function (a) {
|
|
624
|
-
var b = this.
|
|
625
|
-
this.
|
|
626
|
-
if (b != this.
|
|
627
|
-
this.
|
|
640
|
+
var b = this.af;
|
|
641
|
+
this.af = a;
|
|
642
|
+
if (b != this.af) {
|
|
643
|
+
this.bf("AriaLabel", b, a);
|
|
628
644
|
}
|
|
629
645
|
},
|
|
630
646
|
enumerable: true,
|
|
631
647
|
configurable: true
|
|
632
648
|
});
|
|
633
|
-
Object.defineProperty(XIcon.prototype, "
|
|
649
|
+
Object.defineProperty(XIcon.prototype, "n", {
|
|
634
650
|
get: function () {
|
|
635
|
-
return this.
|
|
651
|
+
return this.j;
|
|
636
652
|
},
|
|
637
653
|
set: function (a) {
|
|
638
|
-
var b = this.
|
|
639
|
-
this.
|
|
640
|
-
if (b != this.
|
|
641
|
-
this.
|
|
654
|
+
var b = this.j;
|
|
655
|
+
this.j = a;
|
|
656
|
+
if (b != this.j) {
|
|
657
|
+
this.bf("IsHover", b, a);
|
|
642
658
|
}
|
|
643
659
|
},
|
|
644
660
|
enumerable: true,
|
|
@@ -646,33 +662,33 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
646
662
|
});
|
|
647
663
|
Object.defineProperty(XIcon.prototype, "disabled", {
|
|
648
664
|
get: function () {
|
|
649
|
-
return this.
|
|
665
|
+
return this.i;
|
|
650
666
|
},
|
|
651
667
|
set: function (a) {
|
|
652
|
-
var b = this.
|
|
653
|
-
this.
|
|
654
|
-
if (b != this.
|
|
655
|
-
this.
|
|
668
|
+
var b = this.i;
|
|
669
|
+
this.i = a;
|
|
670
|
+
if (b != this.i) {
|
|
671
|
+
this.bf("IsDisabled", b, a);
|
|
656
672
|
}
|
|
657
673
|
},
|
|
658
674
|
enumerable: true,
|
|
659
675
|
configurable: true
|
|
660
676
|
});
|
|
661
|
-
Object.defineProperty(XIcon.prototype, "
|
|
677
|
+
Object.defineProperty(XIcon.prototype, "z", {
|
|
662
678
|
get: function () {
|
|
663
|
-
return this.
|
|
679
|
+
return this.s;
|
|
664
680
|
},
|
|
665
681
|
set: function (a) {
|
|
666
|
-
var b = this.
|
|
667
|
-
this.
|
|
668
|
-
if (b != this.
|
|
669
|
-
this.
|
|
682
|
+
var b = this.s;
|
|
683
|
+
this.s = a;
|
|
684
|
+
if (b != this.s) {
|
|
685
|
+
this.bf("Opacity", b, this.s);
|
|
670
686
|
}
|
|
671
687
|
},
|
|
672
688
|
enumerable: true,
|
|
673
689
|
configurable: true
|
|
674
690
|
});
|
|
675
|
-
XIcon.prototype.
|
|
691
|
+
XIcon.prototype.bg = function () {
|
|
676
692
|
};
|
|
677
693
|
XIcon.prototype.onDetachedFromUI = function () {
|
|
678
694
|
this.view.t();
|
|
@@ -680,7 +696,7 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
680
696
|
XIcon.prototype.onAttachedToUI = function () {
|
|
681
697
|
this.view.q();
|
|
682
698
|
};
|
|
683
|
-
XIcon.prototype.
|
|
699
|
+
XIcon.prototype.bb = function () {
|
|
684
700
|
if (this.disabled) {
|
|
685
701
|
return;
|
|
686
702
|
}
|
|
@@ -688,13 +704,13 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
688
704
|
this.clicked(this, new IconClickedEventArgs());
|
|
689
705
|
}
|
|
690
706
|
};
|
|
691
|
-
XIcon.prototype.
|
|
707
|
+
XIcon.prototype.o = function () {
|
|
692
708
|
return this.view.e();
|
|
693
709
|
};
|
|
694
|
-
XIcon.prototype.
|
|
710
|
+
XIcon.prototype.ae = function () {
|
|
695
711
|
return this.a();
|
|
696
712
|
};
|
|
697
|
-
XIcon.prototype.
|
|
713
|
+
XIcon.prototype.as = function () {
|
|
698
714
|
var a = this.a();
|
|
699
715
|
return a.j();
|
|
700
716
|
};
|
|
@@ -704,15 +720,15 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
704
720
|
a.a = AppearanceHelper.a(NativeUI.ah(b));
|
|
705
721
|
a.c = AppearanceHelper.a(NativeUI.ah(b));
|
|
706
722
|
a.b = AppearanceHelper.a(NativeUI.ai(b));
|
|
707
|
-
a.d = this.
|
|
723
|
+
a.d = this.v;
|
|
708
724
|
var c = this.view.a();
|
|
709
725
|
a.h = c[0];
|
|
710
726
|
a.f = c[1];
|
|
711
727
|
a.e = NativeUI.c(b);
|
|
712
728
|
a.i = NativeUI.i(b);
|
|
713
729
|
a.svgPath = this.svgPath;
|
|
714
|
-
if (this.
|
|
715
|
-
var d = this.
|
|
730
|
+
if (this.g != null) {
|
|
731
|
+
var d = this.g;
|
|
716
732
|
if (this.view != null && d.n == null) {
|
|
717
733
|
var e = this.view.h;
|
|
718
734
|
var f = FontUtil.getFontInfoFromString(e, d.fontString);
|
|
@@ -745,14 +761,14 @@ var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
745
761
|
this.view.s(a);
|
|
746
762
|
};
|
|
747
763
|
XIcon.$t = markType(XIcon, 'XIcon', Base.$, [INotifyPropertyChanged_$type, IIcon_$type]);
|
|
748
|
-
XIcon.bz = null;
|
|
749
|
-
XIcon.b3 = null;
|
|
750
764
|
XIcon.b2 = null;
|
|
751
|
-
XIcon.
|
|
752
|
-
XIcon.
|
|
753
|
-
XIcon.
|
|
754
|
-
XIcon.
|
|
755
|
-
XIcon.
|
|
765
|
+
XIcon.b6 = null;
|
|
766
|
+
XIcon.b5 = null;
|
|
767
|
+
XIcon.b3 = null;
|
|
768
|
+
XIcon.b4 = null;
|
|
769
|
+
XIcon.x = 0;
|
|
770
|
+
XIcon.w = 0;
|
|
771
|
+
XIcon.ad = 0;
|
|
756
772
|
return XIcon;
|
|
757
773
|
}(Base));
|
|
758
774
|
export { XIcon };
|