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.
Files changed (51) hide show
  1. package/bundles/igniteui-webcomponents-inputs.umd.js +2781 -2143
  2. package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
  3. package/esm2015/lib/ButtonGroupView_combined.js +17 -17
  4. package/esm2015/lib/ButtonView_combined.js +945 -939
  5. package/esm2015/lib/CalendarView_combined.js +80 -80
  6. package/esm2015/lib/DatePickerView_combined.js +82 -64
  7. package/esm2015/lib/IconView_combined.js +250 -238
  8. package/esm2015/lib/InputGroupView_combined.js +368 -357
  9. package/esm2015/lib/NativeUIXInputsFactory.js +143 -0
  10. package/esm2015/lib/XButtonBridge.js +101 -0
  11. package/esm2015/lib/XCheckboxBridge.js +69 -0
  12. package/esm2015/lib/XComponentBridge.js +34 -0
  13. package/esm2015/lib/XIconButtonBridge.js +65 -0
  14. package/esm2015/lib/XInputBridge.js +162 -0
  15. package/esm2015/lib/igc-x-button-component.js +366 -366
  16. package/esm2015/lib/igc-x-icon-component.js +74 -63
  17. package/esm2015/lib/igc-x-input-component.js +65 -54
  18. package/esm2015/public_api.js +6 -0
  19. package/esm5/lib/ButtonGroupView_combined.js +17 -17
  20. package/esm5/lib/ButtonView_combined.js +941 -935
  21. package/esm5/lib/CalendarView_combined.js +80 -80
  22. package/esm5/lib/DatePickerView_combined.js +82 -64
  23. package/esm5/lib/IconView_combined.js +240 -224
  24. package/esm5/lib/InputGroupView_combined.js +353 -338
  25. package/esm5/lib/NativeUIXInputsFactory.js +153 -0
  26. package/esm5/lib/XButtonBridge.js +103 -0
  27. package/esm5/lib/XCheckboxBridge.js +71 -0
  28. package/esm5/lib/XComponentBridge.js +36 -0
  29. package/esm5/lib/XIconButtonBridge.js +67 -0
  30. package/esm5/lib/XInputBridge.js +164 -0
  31. package/esm5/lib/igc-x-button-component.js +366 -366
  32. package/esm5/lib/igc-x-icon-component.js +79 -64
  33. package/esm5/lib/igc-x-input-component.js +70 -55
  34. package/esm5/public_api.js +6 -0
  35. package/fesm2015/igniteui-webcomponents-inputs.js +2785 -2178
  36. package/fesm5/igniteui-webcomponents-inputs.js +2772 -2141
  37. package/lib/ButtonView_combined.d.ts +262 -260
  38. package/lib/DatePickerView_combined.d.ts +22 -21
  39. package/lib/DatePickerVisualModelExport.d.ts +1 -1
  40. package/lib/IconView_combined.d.ts +59 -56
  41. package/lib/InputGroupView_combined.d.ts +91 -89
  42. package/lib/NativeUIXInputsFactory.d.ts +22 -0
  43. package/lib/XButtonBridge.d.ts +21 -0
  44. package/lib/XCheckboxBridge.d.ts +19 -0
  45. package/lib/XComponentBridge.d.ts +17 -0
  46. package/lib/XIconButtonBridge.d.ts +16 -0
  47. package/lib/XInputBridge.d.ts +24 -0
  48. package/lib/igc-x-icon-component.d.ts +6 -1
  49. package/lib/igc-x-input-component.d.ts +6 -1
  50. package/package.json +2 -2
  51. 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.bd();
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.ba();
133
+ this.b.bd();
133
134
  };
134
135
  IconView.prototype.p = function (a) {
135
- this.b.bb();
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.a8();
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.bj = XIcon.bz;
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.n = XIcon.u;
201
- _this.o = XIcon.v;
202
- _this.bo = XIcon.bz;
203
- _this.bt = XIcon.b3;
204
- _this.af = null;
205
- _this.bp = XIcon.b0;
206
- _this.bq = XIcon.b1;
207
- _this.bs = XIcon.b2;
208
- _this.p = XIcon.u;
209
- _this.r = XIcon.v;
210
- _this.d = null;
211
- _this.br = null;
212
- _this.ae = "ig-icon-" + XIcon.ab++;
213
- _this.z = 0;
214
- _this.f = false;
215
- _this.ad = null;
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.g = false;
218
- _this.q = 1;
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.bc = function (a, b, c) {
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.be(a, b, c);
246
+ this.bh(a, b, c);
245
247
  };
246
- XIcon.prototype.be = function (a, b, c) {
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.bi();
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.bg();
265
+ this.bj();
264
266
  break;
265
267
  case "Opacity":
266
- this.bh();
268
+ this.bk();
267
269
  break;
268
270
  }
269
271
  };
270
- XIcon.prototype.bi = function () {
271
- this.bu = this.fill != null ? this.fill : XIcon.bz;
272
- this.bv = this.b4 != null ? this.b4 : XIcon.b0;
273
- this.bx = this.b7 != null ? this.b7 : XIcon.b2;
274
- this.bw = this.b5 != null ? this.b5 : XIcon.b1;
275
- this.t = !isNaN_(this.y) ? this.y : XIcon.v;
276
- this.s = !isNaN_(this.w) ? this.w : XIcon.u;
277
- this.by = this.b8 != null ? this.b8 : XIcon.b3;
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, "j", {
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.bh = function () {
287
- NativeUI.u(this.view.k, this.x);
288
+ XIcon.prototype.bk = function () {
289
+ NativeUI.u(this.view.k, this.z);
288
290
  };
289
- XIcon.prototype.bg = function () {
291
+ XIcon.prototype.bj = function () {
290
292
  var a = this.view.k;
291
- if (this.j) {
293
+ if (this.l) {
292
294
  var b = this.view.l;
293
- if (this.l) {
294
- NativeUI.p(b, this.bv);
295
- NativeUI.w(b, this.bw);
296
- NativeUI.z(b, this.s);
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.bu);
300
- NativeUI.w(b, this.bx);
301
- NativeUI.z(b, this.t);
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.l) {
310
- if (this.bv != null) {
311
- NativeUI.p(c, this.bv);
311
+ if (this.n) {
312
+ if (this.by != null) {
313
+ NativeUI.p(c, this.by);
312
314
  }
313
- if (this.bw != null) {
314
- NativeUI.w(c, this.bw);
315
+ if (this.bz != null) {
316
+ NativeUI.w(c, this.bz);
315
317
  }
316
- if (!isNaN_(this.s)) {
317
- NativeUI.z(c, this.s);
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.w(c, this.bx);
324
+ NativeUI.p(c, this.bx);
325
+ }
326
+ if (this.b0 != null) {
327
+ NativeUI.w(c, this.b0);
326
328
  }
327
- if (!isNaN_(this.t)) {
328
- NativeUI.z(c, this.t);
329
+ if (!isNaN_(this.v)) {
330
+ NativeUI.z(c, this.v);
329
331
  }
330
332
  }
331
333
  }
332
- if (this.e != null) {
333
- this.view.y(this.e);
334
+ if (this.g != null) {
335
+ this.view.y(this.g);
334
336
  }
335
- if (this.by != null) {
336
- NativeUI.o(this.view.k, this.by);
337
+ if (this.b1 != null) {
338
+ NativeUI.o(this.view.k, this.b1);
337
339
  }
338
340
  };
339
- Object.defineProperty(XIcon.prototype, "bu", {
341
+ Object.defineProperty(XIcon.prototype, "e", {
340
342
  get: function () {
341
- return this.bj;
343
+ return this.d;
342
344
  },
343
345
  set: function (a) {
344
- var b = this.bj;
345
- this.bj = a;
346
- if (b != this.bj) {
347
- this.bc("ActualFill", b, a);
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, "by", {
355
+ Object.defineProperty(XIcon.prototype, "bx", {
354
356
  get: function () {
355
- return this.bn;
357
+ return this.bm;
356
358
  },
357
359
  set: function (a) {
358
- var b = this.bn;
359
- this.bn = a;
360
- if (b != this.bn) {
361
- this.bc("ActualTextColor", b, a);
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, "bv", {
369
+ Object.defineProperty(XIcon.prototype, "b1", {
368
370
  get: function () {
369
- return this.bk;
371
+ return this.bq;
370
372
  },
371
373
  set: function (a) {
372
- var b = this.bk;
373
- this.bk = a;
374
- if (b != this.bk) {
375
- this.bc("ActualHoverFill", b, a);
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, "bw", {
383
+ Object.defineProperty(XIcon.prototype, "by", {
382
384
  get: function () {
383
- return this.bl;
385
+ return this.bn;
384
386
  },
385
387
  set: function (a) {
386
- var b = this.bl;
387
- this.bl = a;
388
- if (b != this.bl) {
389
- this.bc("ActualHoverStroke", b, a);
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, "bx", {
397
+ Object.defineProperty(XIcon.prototype, "bz", {
396
398
  get: function () {
397
- return this.bm;
399
+ return this.bo;
398
400
  },
399
401
  set: function (a) {
400
- var b = this.bm;
401
- this.bm = a;
402
- if (b != this.bm) {
403
- this.bc("ActualStroke", b, a);
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, "s", {
411
+ Object.defineProperty(XIcon.prototype, "b0", {
410
412
  get: function () {
411
- return this.n;
413
+ return this.bp;
412
414
  },
413
415
  set: function (a) {
414
- var b = this.n;
415
- this.n = a;
416
- if (b != this.n) {
417
- this.bc("ActualHoverStrokeThickness", b, a);
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, "t", {
425
+ Object.defineProperty(XIcon.prototype, "u", {
424
426
  get: function () {
425
- return this.o;
427
+ return this.p;
426
428
  },
427
429
  set: function (a) {
428
- var b = this.o;
429
- this.o = a;
430
- if (b != this.o) {
431
- this.bc("ActualStrokeThickness", b, a);
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, "fill", {
439
+ Object.defineProperty(XIcon.prototype, "v", {
438
440
  get: function () {
439
- return this.bo;
441
+ return this.q;
440
442
  },
441
443
  set: function (a) {
442
- var b = this.bo;
443
- this.bo = a;
444
- if (b != this.bo) {
445
- this.bc("Fill", b, a);
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, "b8", {
453
+ Object.defineProperty(XIcon.prototype, "fill", {
452
454
  get: function () {
453
- return this.bt;
455
+ return this.br;
454
456
  },
455
457
  set: function (a) {
456
- var b = this.bt;
457
- this.bt = a;
458
- if (b != this.bt) {
459
- this.bc("TextColor", b, a);
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, "svgPath", {
467
+ Object.defineProperty(XIcon.prototype, "cb", {
466
468
  get: function () {
467
- return this.af;
469
+ return this.bw;
468
470
  },
469
471
  set: function (a) {
470
- var b = this.af;
471
- this.af = a;
472
- if (b != this.af) {
473
- this.bc("SVGPath", b, a);
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, "b4", {
481
+ Object.defineProperty(XIcon.prototype, "svgPath", {
480
482
  get: function () {
481
- return this.bp;
483
+ return this.ah;
482
484
  },
483
485
  set: function (a) {
484
- var b = this.bp;
485
- this.bp = a;
486
- if (b != this.bp) {
487
- this.bc("HoverFill", b, a);
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, "b5", {
495
+ Object.defineProperty(XIcon.prototype, "b7", {
494
496
  get: function () {
495
- return this.bq;
497
+ return this.bs;
496
498
  },
497
499
  set: function (a) {
498
- var b = this.bq;
499
- this.bq = a;
500
- if (b != this.bq) {
501
- this.bc("HoverStroke", b, a);
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, "b7", {
509
+ Object.defineProperty(XIcon.prototype, "b8", {
508
510
  get: function () {
509
- return this.bs;
511
+ return this.bt;
510
512
  },
511
513
  set: function (a) {
512
- var b = this.bs;
513
- this.bs = a;
514
- if (b != this.bs) {
515
- this.bc("Stroke", b, a);
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, "w", {
523
+ Object.defineProperty(XIcon.prototype, "ca", {
522
524
  get: function () {
523
- return this.p;
525
+ return this.bv;
524
526
  },
525
527
  set: function (a) {
526
- var b = this.p;
527
- this.p = a;
528
- if (b != this.p) {
529
- this.bc("HoverStrokeThickness", b, a);
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.bc("StrokeThickness", b, a);
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.ba = function () {
550
- this.l = true;
565
+ XIcon.prototype.bd = function () {
566
+ this.n = true;
551
567
  };
552
- XIcon.prototype.bb = function () {
553
- this.l = false;
568
+ XIcon.prototype.be = function () {
569
+ this.n = false;
554
570
  };
555
- Object.defineProperty(XIcon.prototype, "e", {
571
+ Object.defineProperty(XIcon.prototype, "g", {
556
572
  get: function () {
557
- return this.d;
573
+ return this.f;
558
574
  },
559
575
  set: function (a) {
560
- var b = this.d;
561
- this.d = a;
562
- if (b != this.d) {
563
- this.bc("TextStyle", b, a);
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, "b6", {
585
+ Object.defineProperty(XIcon.prototype, "b9", {
570
586
  get: function () {
571
- return this.br;
587
+ return this.bu;
572
588
  },
573
589
  set: function (a) {
574
- var b = this.br;
575
- this.br = a;
576
- if (b != this.br) {
577
- this.bc("HoverTextColor", b, a);
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, "av", {
599
+ Object.defineProperty(XIcon.prototype, "ay", {
584
600
  get: function () {
585
- return this.ae;
601
+ return this.ag;
586
602
  },
587
603
  set: function (a) {
588
- var b = this.ae;
589
- this.ae = a;
590
- if (b != this.ae) {
591
- this.bc("Id", b, a);
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, "i", {
613
+ Object.defineProperty(XIcon.prototype, "k", {
598
614
  get: function () {
599
- return this.f;
615
+ return this.h;
600
616
  },
601
617
  enumerable: true,
602
618
  configurable: true
603
619
  });
604
- Object.defineProperty(XIcon.prototype, "aa", {
620
+ Object.defineProperty(XIcon.prototype, "ac", {
605
621
  get: function () {
606
- return this.z;
622
+ return this.ab;
607
623
  },
608
624
  set: function (a) {
609
- var b = this.z;
610
- this.z = a;
611
- this.f = true;
612
- if (b != this.z) {
613
- this.bc("TabIndex", b, a);
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, "an", {
635
+ Object.defineProperty(XIcon.prototype, "ap", {
620
636
  get: function () {
621
- return this.ad;
637
+ return this.af;
622
638
  },
623
639
  set: function (a) {
624
- var b = this.ad;
625
- this.ad = a;
626
- if (b != this.ad) {
627
- this.bc("AriaLabel", b, a);
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, "l", {
649
+ Object.defineProperty(XIcon.prototype, "n", {
634
650
  get: function () {
635
- return this.h;
651
+ return this.j;
636
652
  },
637
653
  set: function (a) {
638
- var b = this.h;
639
- this.h = a;
640
- if (b != this.h) {
641
- this.bc("IsHover", b, a);
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.g;
665
+ return this.i;
650
666
  },
651
667
  set: function (a) {
652
- var b = this.g;
653
- this.g = a;
654
- if (b != this.g) {
655
- this.bc("IsDisabled", b, a);
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, "x", {
677
+ Object.defineProperty(XIcon.prototype, "z", {
662
678
  get: function () {
663
- return this.q;
679
+ return this.s;
664
680
  },
665
681
  set: function (a) {
666
- var b = this.q;
667
- this.q = a;
668
- if (b != this.q) {
669
- this.bc("Opacity", b, this.q);
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.bd = function () {
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.a8 = function () {
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.m = function () {
707
+ XIcon.prototype.o = function () {
692
708
  return this.view.e();
693
709
  };
694
- XIcon.prototype.ac = function () {
710
+ XIcon.prototype.ae = function () {
695
711
  return this.a();
696
712
  };
697
- XIcon.prototype.ap = function () {
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.t;
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.e != null) {
715
- var d = this.e;
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.b0 = null;
752
- XIcon.b1 = null;
753
- XIcon.v = 0;
754
- XIcon.u = 0;
755
- XIcon.ab = 0;
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 };