igniteui-webcomponents-inputs 7.1.0-alpha.1 → 7.1.0-alpha.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 +636 -467
- package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonView_combined.js +21 -21
- package/esm2015/lib/CalendarView_combined.js +3 -3
- package/esm2015/lib/CheckboxView_combined.js +23 -23
- package/esm2015/lib/IconView_combined.js +163 -163
- package/esm2015/lib/InputGroupView_combined.js +31 -31
- package/esm2015/lib/MultiSliderBridge.js +14 -14
- package/esm2015/lib/MultiSliderView_combined.js +10 -10
- package/esm2015/lib/NativeUIXInputsFactory_combined.js +38 -38
- package/esm2015/lib/RippleView_combined.js +1 -1
- package/esm2015/lib/XButtonBridge.js +18 -18
- package/esm2015/lib/XButtonGroupBridge.js +6 -6
- package/esm2015/lib/XCheckboxBridge.js +8 -8
- package/esm2015/lib/XComponentBridge.js +4 -3
- package/esm2015/lib/XIconBridge.js +23 -23
- package/esm2015/lib/XIconButtonBridge.js +5 -5
- package/esm2015/lib/XInputBridge.js +18 -18
- package/esm2015/lib/XPopupBridge.js +23 -23
- package/esm2015/lib/igc-multi-slider-thumb-collection.js +7 -7
- package/esm2015/lib/igc-multi-slider-thumb-component.js +271 -0
- package/esm2015/lib/igc-multi-slider-thumb-module.js +16 -0
- package/esm2015/lib/igc-multi-slider-thumb-value-changing-event-args.js +3 -8
- package/esm2015/lib/igc-multi-slider-track-thumb-range.js +5 -15
- package/esm2015/lib/igc-x-icon-component.js +10 -10
- package/esm2015/public_api.js +2 -1
- package/esm5/lib/ButtonView_combined.js +21 -21
- package/esm5/lib/CalendarView_combined.js +3 -3
- package/esm5/lib/CheckboxView_combined.js +23 -23
- package/esm5/lib/IconView_combined.js +158 -158
- package/esm5/lib/InputGroupView_combined.js +31 -31
- package/esm5/lib/MultiSliderBridge.js +14 -14
- package/esm5/lib/MultiSliderView_combined.js +10 -10
- package/esm5/lib/NativeUIXInputsFactory_combined.js +38 -38
- package/esm5/lib/RippleView_combined.js +1 -1
- package/esm5/lib/XButtonBridge.js +18 -18
- package/esm5/lib/XButtonGroupBridge.js +6 -6
- package/esm5/lib/XCheckboxBridge.js +8 -8
- package/esm5/lib/XComponentBridge.js +4 -3
- package/esm5/lib/XIconBridge.js +23 -23
- package/esm5/lib/XIconButtonBridge.js +5 -5
- package/esm5/lib/XInputBridge.js +18 -18
- package/esm5/lib/XPopupBridge.js +23 -23
- package/esm5/lib/igc-multi-slider-thumb-collection.js +7 -7
- package/esm5/lib/igc-multi-slider-thumb-component.js +300 -0
- package/esm5/lib/igc-multi-slider-thumb-module.js +20 -0
- package/esm5/lib/igc-multi-slider-thumb-value-changing-event-args.js +3 -8
- package/esm5/lib/igc-multi-slider-track-thumb-range.js +5 -15
- package/esm5/lib/igc-x-icon-component.js +10 -10
- package/esm5/public_api.js +2 -1
- package/fesm2015/igniteui-webcomponents-inputs.js +692 -534
- package/fesm5/igniteui-webcomponents-inputs.js +635 -467
- package/lib/IconView_combined.d.ts +33 -34
- package/lib/MultiSliderView_combined.d.ts +1 -1
- package/lib/igc-multi-slider-thumb-collection.d.ts +4 -4
- package/lib/igc-multi-slider-thumb-component.d.ts +53 -0
- package/lib/igc-multi-slider-thumb-module.d.ts +3 -0
- package/lib/igc-multi-slider-thumb-value-changing-event-args.d.ts +3 -3
- package/lib/igc-multi-slider-track-thumb-range.d.ts +5 -5
- package/package.json +2 -2
- package/public_api.d.ts +2 -1
- package/esm2015/lib/igc-multi-slider-thumb.js +0 -109
- package/esm5/lib/igc-multi-slider-thumb.js +0 -132
- package/lib/igc-multi-slider-thumb.d.ts +0 -27
|
@@ -157,7 +157,7 @@ export var IconView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
157
157
|
this.y.append(this.w);
|
|
158
158
|
this.v.append(this.y);
|
|
159
159
|
this.o.add(c.listen("click", runOn(this, this.ak)));
|
|
160
|
-
this.d.
|
|
160
|
+
this.d.c8();
|
|
161
161
|
};
|
|
162
162
|
IconView.prototype.ay = function (a) {
|
|
163
163
|
this.z = null;
|
|
@@ -200,7 +200,7 @@ export var IconView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
200
200
|
var b = this.v.rootWrapper.getNativeElement();
|
|
201
201
|
b.innerHTML = a;
|
|
202
202
|
this.z = this.v.rootWrapper.getChildAt(0);
|
|
203
|
-
var c = this.z.getAttribute("
|
|
203
|
+
var c = this.z.getAttribute("viewBox");
|
|
204
204
|
if (c != null) {
|
|
205
205
|
var d = c.split(' ');
|
|
206
206
|
if (d.length == 1) {
|
|
@@ -211,11 +211,11 @@ export var IconView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
211
211
|
var f = parseFloat(d[1].trim());
|
|
212
212
|
var g = parseFloat(d[2].trim());
|
|
213
213
|
var h = parseFloat(d[3].trim());
|
|
214
|
-
this.d.
|
|
214
|
+
this.d.df(e, f, g, h);
|
|
215
215
|
}
|
|
216
216
|
}
|
|
217
217
|
else {
|
|
218
|
-
this.d.
|
|
218
|
+
this.d.df(NaN, NaN, NaN, NaN);
|
|
219
219
|
}
|
|
220
220
|
}
|
|
221
221
|
};
|
|
@@ -291,7 +291,7 @@ export var IconView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
291
291
|
this.v.rootWrapper.append(this.y);
|
|
292
292
|
}
|
|
293
293
|
else {
|
|
294
|
-
NativeUI.
|
|
294
|
+
NativeUI.t(a, b);
|
|
295
295
|
}
|
|
296
296
|
};
|
|
297
297
|
IconView.prototype.ar = function (a, b) {
|
|
@@ -300,7 +300,7 @@ export var IconView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
300
300
|
c.setAttribute("stroke", "url('#" + this.n.item(b) + "')");
|
|
301
301
|
}
|
|
302
302
|
else {
|
|
303
|
-
NativeUI.
|
|
303
|
+
NativeUI.ad(a, b);
|
|
304
304
|
}
|
|
305
305
|
};
|
|
306
306
|
IconView.prototype.ad = function (a) {
|
|
@@ -310,10 +310,10 @@ export var IconView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
310
310
|
}
|
|
311
311
|
};
|
|
312
312
|
IconView.prototype.ae = function (a) {
|
|
313
|
-
this.d.
|
|
313
|
+
this.d.c5();
|
|
314
314
|
};
|
|
315
315
|
IconView.prototype.af = function (a) {
|
|
316
|
-
this.d.
|
|
316
|
+
this.d.c6();
|
|
317
317
|
};
|
|
318
318
|
IconView.prototype.aj = function () {
|
|
319
319
|
this.j = true;
|
|
@@ -502,18 +502,18 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
502
502
|
_this.dp = null;
|
|
503
503
|
_this.dq = null;
|
|
504
504
|
_this.dr = null;
|
|
505
|
-
_this.
|
|
506
|
-
_this.bj = null;
|
|
507
|
-
_this.bm = null;
|
|
505
|
+
_this.bf = null;
|
|
508
506
|
_this.bl = null;
|
|
507
|
+
_this.bo = null;
|
|
508
|
+
_this.bn = null;
|
|
509
509
|
_this.a = null;
|
|
510
|
-
_this.de = null;
|
|
511
510
|
_this.bd = null;
|
|
511
|
+
_this.be = null;
|
|
512
512
|
_this.n = null;
|
|
513
|
-
_this.
|
|
513
|
+
_this.bm = "ig-icon-" + XIcon.bc++;
|
|
514
514
|
_this.ba = 0;
|
|
515
515
|
_this.p = false;
|
|
516
|
-
_this.
|
|
516
|
+
_this.bk = null;
|
|
517
517
|
_this.r = false;
|
|
518
518
|
_this.q = false;
|
|
519
519
|
_this.af = 1;
|
|
@@ -552,13 +552,13 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
552
552
|
XIcon.prototype.destroy = function () {
|
|
553
553
|
this.provideContainer(null);
|
|
554
554
|
};
|
|
555
|
-
XIcon.prototype.
|
|
555
|
+
XIcon.prototype.c7 = function (a, b, c) {
|
|
556
556
|
if (this.propertyChanged != null) {
|
|
557
557
|
this.propertyChanged(this, new PropertyChangedEventArgs(a));
|
|
558
558
|
}
|
|
559
|
-
this.
|
|
559
|
+
this.da(a, b, c);
|
|
560
560
|
};
|
|
561
|
-
XIcon.prototype.
|
|
561
|
+
XIcon.prototype.da = function (a, b, c) {
|
|
562
562
|
switch (a) {
|
|
563
563
|
case "Fill":
|
|
564
564
|
case "Stroke":
|
|
@@ -567,51 +567,51 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
567
567
|
case "HoverStroke":
|
|
568
568
|
case "HoverStrokeThickness":
|
|
569
569
|
case "IsHover":
|
|
570
|
-
this.
|
|
570
|
+
this.de();
|
|
571
571
|
break;
|
|
572
572
|
case "FillColors":
|
|
573
573
|
case "StrokeColors":
|
|
574
574
|
case "ActualFill":
|
|
575
575
|
case "ActualStroke":
|
|
576
576
|
case "ActualStrokeWidth":
|
|
577
|
-
this.
|
|
577
|
+
this.dc();
|
|
578
578
|
break;
|
|
579
579
|
case "SVG":
|
|
580
|
-
this.
|
|
580
|
+
this.bo = null;
|
|
581
581
|
this.a = null;
|
|
582
|
-
this.
|
|
582
|
+
this.dc();
|
|
583
583
|
break;
|
|
584
584
|
case "SVGPath":
|
|
585
|
-
this.
|
|
585
|
+
this.bn = null;
|
|
586
586
|
this.a = null;
|
|
587
|
-
this.
|
|
587
|
+
this.dc();
|
|
588
588
|
break;
|
|
589
589
|
case "SVGPaths":
|
|
590
|
-
this.
|
|
591
|
-
this.
|
|
592
|
-
this.
|
|
590
|
+
this.bn = null;
|
|
591
|
+
this.bo = null;
|
|
592
|
+
this.dc();
|
|
593
593
|
break;
|
|
594
594
|
case "DataURL":
|
|
595
|
-
this.
|
|
596
|
-
this.
|
|
595
|
+
this.bn = null;
|
|
596
|
+
this.bo = null;
|
|
597
597
|
this.a = null;
|
|
598
|
-
this.
|
|
598
|
+
this.dc();
|
|
599
599
|
break;
|
|
600
600
|
case "Source":
|
|
601
|
-
this.
|
|
602
|
-
this.
|
|
601
|
+
this.bn = null;
|
|
602
|
+
this.bo = null;
|
|
603
603
|
this.a = null;
|
|
604
|
-
this.
|
|
604
|
+
this.dc();
|
|
605
605
|
break;
|
|
606
606
|
case "DataTemplate":
|
|
607
607
|
case "DataTemplateContext":
|
|
608
|
-
this.
|
|
609
|
-
this.
|
|
608
|
+
this.bn = null;
|
|
609
|
+
this.bo = null;
|
|
610
610
|
this.a = null;
|
|
611
|
-
this.
|
|
611
|
+
this.dc();
|
|
612
612
|
break;
|
|
613
613
|
case "Opacity":
|
|
614
|
-
this.
|
|
614
|
+
this.dd();
|
|
615
615
|
break;
|
|
616
616
|
case "ViewBoxLeft":
|
|
617
617
|
this.as = !isNaN_(this.a6) ? this.a6 : !isNaN_(this.ah) ? this.ah : 0;
|
|
@@ -637,7 +637,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
637
637
|
break;
|
|
638
638
|
}
|
|
639
639
|
};
|
|
640
|
-
XIcon.prototype.
|
|
640
|
+
XIcon.prototype.de = function () {
|
|
641
641
|
var a = this.fill != null ? this.fill : XIcon.dx;
|
|
642
642
|
var b = this.ea != null ? this.ea : XIcon.d1;
|
|
643
643
|
var c = !isNaN_(this.a4) ? this.a4 : XIcon.aw;
|
|
@@ -662,19 +662,19 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
662
662
|
enumerable: false,
|
|
663
663
|
configurable: true
|
|
664
664
|
});
|
|
665
|
-
XIcon.prototype.
|
|
666
|
-
NativeUI.
|
|
665
|
+
XIcon.prototype.dd = function () {
|
|
666
|
+
NativeUI.ab(this.view.aa, this.a3);
|
|
667
667
|
};
|
|
668
|
-
XIcon.prototype.
|
|
668
|
+
XIcon.prototype.c1 = function () {
|
|
669
669
|
this.view.ag();
|
|
670
670
|
};
|
|
671
|
-
XIcon.prototype.
|
|
671
|
+
XIcon.prototype.dc = function () {
|
|
672
672
|
var a = this.view.aa;
|
|
673
673
|
if (this.t) {
|
|
674
674
|
var b = this.view.ab;
|
|
675
|
-
NativeUI.
|
|
676
|
-
NativeUI.
|
|
677
|
-
NativeUI.
|
|
675
|
+
NativeUI.t(b, this.du);
|
|
676
|
+
NativeUI.ad(b, this.dv);
|
|
677
|
+
NativeUI.ag(b, this.aq);
|
|
678
678
|
}
|
|
679
679
|
else {
|
|
680
680
|
var c = this.j();
|
|
@@ -683,8 +683,8 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
683
683
|
this.view.ai();
|
|
684
684
|
}
|
|
685
685
|
var d = false;
|
|
686
|
-
if (this.
|
|
687
|
-
this.view.as(this.
|
|
686
|
+
if (this.bg != null) {
|
|
687
|
+
this.view.as(this.bg, this.bh);
|
|
688
688
|
}
|
|
689
689
|
else if (this.svgPath != null) {
|
|
690
690
|
if (stringStartsWith(trimStart(this.svgPath, ' ', '\n', '\r', '\t'), "<svg")) {
|
|
@@ -699,9 +699,9 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
699
699
|
this.view.az(this.b);
|
|
700
700
|
var e = this.view.c;
|
|
701
701
|
if (e != null && e.length > 0) {
|
|
702
|
-
var f = NativeUI.
|
|
703
|
-
var g = NativeUI.
|
|
704
|
-
this.
|
|
702
|
+
var f = NativeUI.t;
|
|
703
|
+
var g = NativeUI.ad;
|
|
704
|
+
this.c9();
|
|
705
705
|
f = runOn(this.view, this.view.aq);
|
|
706
706
|
g = runOn(this.view, this.view.ar);
|
|
707
707
|
for (var h = 0; h < e.length; h++) {
|
|
@@ -712,10 +712,10 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
712
712
|
g(e[h], this.dv);
|
|
713
713
|
}
|
|
714
714
|
if (!isNaN_(this.aq)) {
|
|
715
|
-
NativeUI.
|
|
715
|
+
NativeUI.ag(e[h], this.aq);
|
|
716
716
|
}
|
|
717
717
|
if (this.dw != null) {
|
|
718
|
-
NativeUI.
|
|
718
|
+
NativeUI.r(e[h], this.dw);
|
|
719
719
|
}
|
|
720
720
|
if (this.e != null && this.e.count == e.length) {
|
|
721
721
|
f(e[h], this.e.item(h));
|
|
@@ -734,30 +734,30 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
734
734
|
this.view.ax(this.svg);
|
|
735
735
|
d = true;
|
|
736
736
|
}
|
|
737
|
-
else if (this.
|
|
738
|
-
this.view.at(this.
|
|
737
|
+
else if (this.b2 != null) {
|
|
738
|
+
this.view.at(this.b2);
|
|
739
739
|
}
|
|
740
|
-
else if (this.
|
|
741
|
-
this.view.aw(this.
|
|
740
|
+
else if (this.bj != null) {
|
|
741
|
+
this.view.aw(this.bj);
|
|
742
742
|
}
|
|
743
743
|
else {
|
|
744
744
|
}
|
|
745
745
|
if (d) {
|
|
746
746
|
for (var i = 0; i < this.view.r.count; i++) {
|
|
747
747
|
var j = this.view.r._inner[i].c;
|
|
748
|
-
NativeUI.
|
|
748
|
+
NativeUI.t(this.view.r._inner[i].d, j.l.f(this.d6));
|
|
749
749
|
}
|
|
750
750
|
for (var k = 0; k < this.view.s.count; k++) {
|
|
751
751
|
var l = this.view.s._inner[k].c;
|
|
752
|
-
NativeUI.
|
|
752
|
+
NativeUI.ad(this.view.s._inner[k].d, l.m.f(this.d7));
|
|
753
753
|
}
|
|
754
754
|
for (var m = 0; m < this.view.t.count; m++) {
|
|
755
755
|
var n = this.view.t._inner[m].c;
|
|
756
|
-
NativeUI.
|
|
756
|
+
NativeUI.t(this.view.t._inner[m].d, n.l.f(this.d8));
|
|
757
757
|
}
|
|
758
758
|
for (var o = 0; o < this.view.u.count; o++) {
|
|
759
759
|
var p = this.view.u._inner[o].c;
|
|
760
|
-
NativeUI.
|
|
760
|
+
NativeUI.ad(this.view.u._inner[o].d, p.m.f(this.d9));
|
|
761
761
|
}
|
|
762
762
|
for (var q = 0; q < this.view.e.o.count; q++) {
|
|
763
763
|
var r = this.view.e.o._inner[q];
|
|
@@ -766,7 +766,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
766
766
|
if (t < this.e.count) {
|
|
767
767
|
for (var u = 0; u < this.view.e.q._inner[q].count; u++) {
|
|
768
768
|
var v = this.view.e.q._inner[q]._inner[u].c;
|
|
769
|
-
NativeUI.
|
|
769
|
+
NativeUI.t(this.view.e.q._inner[q]._inner[u].d, v.l.f(this.e.item(t)));
|
|
770
770
|
}
|
|
771
771
|
}
|
|
772
772
|
}
|
|
@@ -777,35 +777,35 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
777
777
|
if (z < this.f.count) {
|
|
778
778
|
for (var aa = 0; aa < this.view.f.q._inner[w].count; aa++) {
|
|
779
779
|
var ab = this.view.f.q._inner[w]._inner[aa].c;
|
|
780
|
-
NativeUI.
|
|
780
|
+
NativeUI.ad(this.view.f.q._inner[w]._inner[aa].d, ab.m.f(this.f.item(z)));
|
|
781
781
|
}
|
|
782
782
|
}
|
|
783
783
|
}
|
|
784
784
|
for (var ac = 0; ac < this.view.q.count; ac++) {
|
|
785
785
|
var ad = this.view.q._inner[ac].c;
|
|
786
|
-
NativeUI.
|
|
787
|
-
NativeUI.
|
|
786
|
+
NativeUI.t(this.view.q._inner[ac].d, ad.l.f(this.du));
|
|
787
|
+
NativeUI.ad(this.view.q._inner[ac].d, ad.m.f(this.dv));
|
|
788
788
|
}
|
|
789
789
|
}
|
|
790
790
|
var ae = this.view.aa;
|
|
791
791
|
if (this.du != null) {
|
|
792
|
-
NativeUI.
|
|
792
|
+
NativeUI.t(ae, this.du);
|
|
793
793
|
}
|
|
794
794
|
if (this.dv != null) {
|
|
795
|
-
NativeUI.
|
|
795
|
+
NativeUI.ad(ae, this.dv);
|
|
796
796
|
}
|
|
797
797
|
if (!isNaN_(this.aq)) {
|
|
798
|
-
NativeUI.
|
|
798
|
+
NativeUI.ag(ae, this.aq);
|
|
799
799
|
}
|
|
800
800
|
}
|
|
801
801
|
if (this.o != null) {
|
|
802
802
|
this.view.a0(this.o);
|
|
803
803
|
}
|
|
804
804
|
if (this.dw != null) {
|
|
805
|
-
NativeUI.
|
|
805
|
+
NativeUI.r(this.view.aa, this.dw);
|
|
806
806
|
}
|
|
807
807
|
};
|
|
808
|
-
XIcon.prototype.
|
|
808
|
+
XIcon.prototype.c9 = function () {
|
|
809
809
|
var e_3, _a, e_4, _b;
|
|
810
810
|
if (this.du != null) {
|
|
811
811
|
this.view.ap(this.du, "fill");
|
|
@@ -867,10 +867,10 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
867
867
|
else if (this.svg != null) {
|
|
868
868
|
a = 0;
|
|
869
869
|
}
|
|
870
|
-
else if (this.
|
|
870
|
+
else if (this.b2 != null) {
|
|
871
871
|
a = 3;
|
|
872
872
|
}
|
|
873
|
-
else if (this.
|
|
873
|
+
else if (this.bj != null) {
|
|
874
874
|
a = 4;
|
|
875
875
|
}
|
|
876
876
|
return a;
|
|
@@ -883,7 +883,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
883
883
|
var b = this.l;
|
|
884
884
|
this.l = a;
|
|
885
885
|
if (b != this.l) {
|
|
886
|
-
this.
|
|
886
|
+
this.c7("BaseTheme", enumGetBox(BaseControlTheme_$type, b), enumGetBox(BaseControlTheme_$type, a));
|
|
887
887
|
}
|
|
888
888
|
},
|
|
889
889
|
enumerable: false,
|
|
@@ -897,7 +897,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
897
897
|
var b = this.dg;
|
|
898
898
|
this.dg = a;
|
|
899
899
|
if (b != this.dg) {
|
|
900
|
-
this.
|
|
900
|
+
this.c7("ActualFill", b, a);
|
|
901
901
|
}
|
|
902
902
|
},
|
|
903
903
|
enumerable: false,
|
|
@@ -911,7 +911,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
911
911
|
var b = this.dh;
|
|
912
912
|
this.dh = a;
|
|
913
913
|
if (b != this.dh) {
|
|
914
|
-
this.
|
|
914
|
+
this.c7("ActualStroke", b, a);
|
|
915
915
|
}
|
|
916
916
|
},
|
|
917
917
|
enumerable: false,
|
|
@@ -925,7 +925,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
925
925
|
var b = this.di;
|
|
926
926
|
this.di = a;
|
|
927
927
|
if (b != this.di) {
|
|
928
|
-
this.
|
|
928
|
+
this.c7("ActualTextColor", b, a);
|
|
929
929
|
}
|
|
930
930
|
},
|
|
931
931
|
enumerable: false,
|
|
@@ -939,7 +939,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
939
939
|
var b = this.y;
|
|
940
940
|
this.y = a;
|
|
941
941
|
if (b != this.y) {
|
|
942
|
-
this.
|
|
942
|
+
this.c7("ActualStrokeWidth", b, a);
|
|
943
943
|
}
|
|
944
944
|
},
|
|
945
945
|
enumerable: false,
|
|
@@ -953,7 +953,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
953
953
|
var b = this.dj;
|
|
954
954
|
this.dj = a;
|
|
955
955
|
if (b != this.dj) {
|
|
956
|
-
this.
|
|
956
|
+
this.c7("Fill", b, a);
|
|
957
957
|
}
|
|
958
958
|
},
|
|
959
959
|
enumerable: false,
|
|
@@ -967,7 +967,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
967
967
|
var b = this.ds;
|
|
968
968
|
this.ds = a;
|
|
969
969
|
if (b != this.ds) {
|
|
970
|
-
this.
|
|
970
|
+
this.c7("Stroke", b, a);
|
|
971
971
|
}
|
|
972
972
|
},
|
|
973
973
|
enumerable: false,
|
|
@@ -981,7 +981,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
981
981
|
var b = this.ak;
|
|
982
982
|
this.ak = a;
|
|
983
983
|
if (b != this.ak) {
|
|
984
|
-
this.
|
|
984
|
+
this.c7("StrokeWidth", b, a);
|
|
985
985
|
}
|
|
986
986
|
},
|
|
987
987
|
enumerable: false,
|
|
@@ -995,7 +995,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
995
995
|
var b = this.dt;
|
|
996
996
|
this.dt = a;
|
|
997
997
|
if (b != this.dt) {
|
|
998
|
-
this.
|
|
998
|
+
this.c7("TextColor", b, a);
|
|
999
999
|
}
|
|
1000
1000
|
},
|
|
1001
1001
|
enumerable: false,
|
|
@@ -1009,7 +1009,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1009
1009
|
var b = this.dk;
|
|
1010
1010
|
this.dk = a;
|
|
1011
1011
|
if (b != this.dk) {
|
|
1012
|
-
this.
|
|
1012
|
+
this.c7("HoverFill", b, a);
|
|
1013
1013
|
}
|
|
1014
1014
|
},
|
|
1015
1015
|
enumerable: false,
|
|
@@ -1023,7 +1023,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1023
1023
|
var b = this.dl;
|
|
1024
1024
|
this.dl = a;
|
|
1025
1025
|
if (b != this.dl) {
|
|
1026
|
-
this.
|
|
1026
|
+
this.c7("HoverStroke", b, a);
|
|
1027
1027
|
}
|
|
1028
1028
|
},
|
|
1029
1029
|
enumerable: false,
|
|
@@ -1037,7 +1037,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1037
1037
|
var b = this.ae;
|
|
1038
1038
|
this.ae = a;
|
|
1039
1039
|
if (b != this.ae) {
|
|
1040
|
-
this.
|
|
1040
|
+
this.c7("HoverStrokeThickness", b, a);
|
|
1041
1041
|
}
|
|
1042
1042
|
},
|
|
1043
1043
|
enumerable: false,
|
|
@@ -1051,7 +1051,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1051
1051
|
var b = this.dm;
|
|
1052
1052
|
this.dm = a;
|
|
1053
1053
|
if (b != this.dm) {
|
|
1054
|
-
this.
|
|
1054
|
+
this.c7("HoverTextColor", b, a);
|
|
1055
1055
|
}
|
|
1056
1056
|
},
|
|
1057
1057
|
enumerable: false,
|
|
@@ -1065,7 +1065,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1065
1065
|
var b = this.c;
|
|
1066
1066
|
this.c = a;
|
|
1067
1067
|
if (b != this.c) {
|
|
1068
|
-
this.
|
|
1068
|
+
this.c7("FillColors", b, this.c);
|
|
1069
1069
|
}
|
|
1070
1070
|
},
|
|
1071
1071
|
enumerable: false,
|
|
@@ -1079,7 +1079,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1079
1079
|
var b = this.d;
|
|
1080
1080
|
this.d = a;
|
|
1081
1081
|
if (b != this.d) {
|
|
1082
|
-
this.
|
|
1082
|
+
this.c7("StrokeColors", b, this.d);
|
|
1083
1083
|
}
|
|
1084
1084
|
},
|
|
1085
1085
|
enumerable: false,
|
|
@@ -1093,7 +1093,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1093
1093
|
var b = this.dn;
|
|
1094
1094
|
this.dn = a;
|
|
1095
1095
|
if (b != this.dn) {
|
|
1096
|
-
this.
|
|
1096
|
+
this.c7("PrimaryFillColor", b, this.dn);
|
|
1097
1097
|
}
|
|
1098
1098
|
},
|
|
1099
1099
|
enumerable: false,
|
|
@@ -1107,7 +1107,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1107
1107
|
var b = this.dp;
|
|
1108
1108
|
this.dp = a;
|
|
1109
1109
|
if (b != this.dp) {
|
|
1110
|
-
this.
|
|
1110
|
+
this.c7("PrimaryStrokeColor", b, this.dp);
|
|
1111
1111
|
}
|
|
1112
1112
|
},
|
|
1113
1113
|
enumerable: false,
|
|
@@ -1121,7 +1121,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1121
1121
|
var b = this.dq;
|
|
1122
1122
|
this.dq = a;
|
|
1123
1123
|
if (b != this.dq) {
|
|
1124
|
-
this.
|
|
1124
|
+
this.c7("SecondaryFillColor", b, this.dq);
|
|
1125
1125
|
}
|
|
1126
1126
|
},
|
|
1127
1127
|
enumerable: false,
|
|
@@ -1135,35 +1135,35 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1135
1135
|
var b = this.dr;
|
|
1136
1136
|
this.dr = a;
|
|
1137
1137
|
if (b != this.dr) {
|
|
1138
|
-
this.
|
|
1138
|
+
this.c7("SecondaryStrokeColor", b, this.dr);
|
|
1139
1139
|
}
|
|
1140
1140
|
},
|
|
1141
1141
|
enumerable: false,
|
|
1142
1142
|
configurable: true
|
|
1143
1143
|
});
|
|
1144
|
-
Object.defineProperty(XIcon.prototype, "
|
|
1144
|
+
Object.defineProperty(XIcon.prototype, "bj", {
|
|
1145
1145
|
get: function () {
|
|
1146
|
-
return this.
|
|
1146
|
+
return this.bf;
|
|
1147
1147
|
},
|
|
1148
1148
|
set: function (a) {
|
|
1149
|
-
var b = this.
|
|
1150
|
-
this.
|
|
1151
|
-
if (b != this.
|
|
1152
|
-
this.
|
|
1149
|
+
var b = this.bf;
|
|
1150
|
+
this.bf = a;
|
|
1151
|
+
if (b != this.bf) {
|
|
1152
|
+
this.c7("Source", b, a);
|
|
1153
1153
|
}
|
|
1154
1154
|
},
|
|
1155
1155
|
enumerable: false,
|
|
1156
1156
|
configurable: true
|
|
1157
1157
|
});
|
|
1158
|
-
Object.defineProperty(XIcon.prototype, "
|
|
1158
|
+
Object.defineProperty(XIcon.prototype, "b2", {
|
|
1159
1159
|
get: function () {
|
|
1160
|
-
return this.
|
|
1160
|
+
return this.bl;
|
|
1161
1161
|
},
|
|
1162
1162
|
set: function (a) {
|
|
1163
|
-
var b = this.
|
|
1164
|
-
this.
|
|
1165
|
-
if (b != this.
|
|
1166
|
-
this.
|
|
1163
|
+
var b = this.bl;
|
|
1164
|
+
this.bl = a;
|
|
1165
|
+
if (b != this.bl) {
|
|
1166
|
+
this.c7("DataURL", b, a);
|
|
1167
1167
|
}
|
|
1168
1168
|
},
|
|
1169
1169
|
enumerable: false,
|
|
@@ -1171,13 +1171,13 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1171
1171
|
});
|
|
1172
1172
|
Object.defineProperty(XIcon.prototype, "svgPath", {
|
|
1173
1173
|
get: function () {
|
|
1174
|
-
return this.
|
|
1174
|
+
return this.bo;
|
|
1175
1175
|
},
|
|
1176
1176
|
set: function (a) {
|
|
1177
|
-
var b = this.
|
|
1178
|
-
this.
|
|
1179
|
-
if (b != this.
|
|
1180
|
-
this.
|
|
1177
|
+
var b = this.bo;
|
|
1178
|
+
this.bo = a;
|
|
1179
|
+
if (b != this.bo) {
|
|
1180
|
+
this.c7("SVGPath", b, a);
|
|
1181
1181
|
}
|
|
1182
1182
|
},
|
|
1183
1183
|
enumerable: false,
|
|
@@ -1185,13 +1185,13 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1185
1185
|
});
|
|
1186
1186
|
Object.defineProperty(XIcon.prototype, "svg", {
|
|
1187
1187
|
get: function () {
|
|
1188
|
-
return this.
|
|
1188
|
+
return this.bn;
|
|
1189
1189
|
},
|
|
1190
1190
|
set: function (a) {
|
|
1191
|
-
var b = this.
|
|
1192
|
-
this.
|
|
1193
|
-
if (b != this.
|
|
1194
|
-
this.
|
|
1191
|
+
var b = this.bn;
|
|
1192
|
+
this.bn = a;
|
|
1193
|
+
if (b != this.bn) {
|
|
1194
|
+
this.c7("SVG", b, this.bn);
|
|
1195
1195
|
}
|
|
1196
1196
|
},
|
|
1197
1197
|
enumerable: false,
|
|
@@ -1205,44 +1205,44 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1205
1205
|
var b = this.a;
|
|
1206
1206
|
this.a = a;
|
|
1207
1207
|
if (b != this.a) {
|
|
1208
|
-
this.
|
|
1208
|
+
this.c7("SVGPaths", b, this.a);
|
|
1209
1209
|
}
|
|
1210
1210
|
},
|
|
1211
1211
|
enumerable: false,
|
|
1212
1212
|
configurable: true
|
|
1213
1213
|
});
|
|
1214
|
-
Object.defineProperty(XIcon.prototype, "
|
|
1214
|
+
Object.defineProperty(XIcon.prototype, "bg", {
|
|
1215
1215
|
get: function () {
|
|
1216
|
-
return this.
|
|
1216
|
+
return this.bd;
|
|
1217
1217
|
},
|
|
1218
1218
|
set: function (a) {
|
|
1219
|
-
var b = this.
|
|
1220
|
-
this.
|
|
1221
|
-
if (b != this.
|
|
1222
|
-
this.
|
|
1219
|
+
var b = this.bd;
|
|
1220
|
+
this.bd = a;
|
|
1221
|
+
if (b != this.bd) {
|
|
1222
|
+
this.c7("DataTemplate", b, this.bd);
|
|
1223
1223
|
}
|
|
1224
1224
|
},
|
|
1225
1225
|
enumerable: false,
|
|
1226
1226
|
configurable: true
|
|
1227
1227
|
});
|
|
1228
|
-
Object.defineProperty(XIcon.prototype, "
|
|
1228
|
+
Object.defineProperty(XIcon.prototype, "bh", {
|
|
1229
1229
|
get: function () {
|
|
1230
|
-
return this.
|
|
1230
|
+
return this.be;
|
|
1231
1231
|
},
|
|
1232
1232
|
set: function (a) {
|
|
1233
|
-
var b = this.
|
|
1234
|
-
this.
|
|
1235
|
-
if (b != this.
|
|
1236
|
-
this.
|
|
1233
|
+
var b = this.be;
|
|
1234
|
+
this.be = a;
|
|
1235
|
+
if (b != this.be) {
|
|
1236
|
+
this.c7("DataTemplateContext", b, this.be);
|
|
1237
1237
|
}
|
|
1238
1238
|
},
|
|
1239
1239
|
enumerable: false,
|
|
1240
1240
|
configurable: true
|
|
1241
1241
|
});
|
|
1242
|
-
XIcon.prototype.
|
|
1242
|
+
XIcon.prototype.c5 = function () {
|
|
1243
1243
|
this.v = true;
|
|
1244
1244
|
};
|
|
1245
|
-
XIcon.prototype.
|
|
1245
|
+
XIcon.prototype.c6 = function () {
|
|
1246
1246
|
this.v = false;
|
|
1247
1247
|
};
|
|
1248
1248
|
Object.defineProperty(XIcon.prototype, "o", {
|
|
@@ -1253,21 +1253,21 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1253
1253
|
var b = this.n;
|
|
1254
1254
|
this.n = a;
|
|
1255
1255
|
if (b != this.n) {
|
|
1256
|
-
this.
|
|
1256
|
+
this.c7("TextStyle", b, a);
|
|
1257
1257
|
}
|
|
1258
1258
|
},
|
|
1259
1259
|
enumerable: false,
|
|
1260
1260
|
configurable: true
|
|
1261
1261
|
});
|
|
1262
|
-
Object.defineProperty(XIcon.prototype, "
|
|
1262
|
+
Object.defineProperty(XIcon.prototype, "cc", {
|
|
1263
1263
|
get: function () {
|
|
1264
|
-
return this.
|
|
1264
|
+
return this.bm;
|
|
1265
1265
|
},
|
|
1266
1266
|
set: function (a) {
|
|
1267
|
-
var b = this.
|
|
1268
|
-
this.
|
|
1269
|
-
if (b != this.
|
|
1270
|
-
this.
|
|
1267
|
+
var b = this.bm;
|
|
1268
|
+
this.bm = a;
|
|
1269
|
+
if (b != this.bm) {
|
|
1270
|
+
this.c7("Id", b, a);
|
|
1271
1271
|
}
|
|
1272
1272
|
},
|
|
1273
1273
|
enumerable: false,
|
|
@@ -1289,21 +1289,21 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1289
1289
|
this.ba = a;
|
|
1290
1290
|
this.p = true;
|
|
1291
1291
|
if (b != this.ba) {
|
|
1292
|
-
this.
|
|
1292
|
+
this.c7("TabIndex", b, a);
|
|
1293
1293
|
}
|
|
1294
1294
|
},
|
|
1295
1295
|
enumerable: false,
|
|
1296
1296
|
configurable: true
|
|
1297
1297
|
});
|
|
1298
|
-
Object.defineProperty(XIcon.prototype, "
|
|
1298
|
+
Object.defineProperty(XIcon.prototype, "bx", {
|
|
1299
1299
|
get: function () {
|
|
1300
|
-
return this.
|
|
1300
|
+
return this.bk;
|
|
1301
1301
|
},
|
|
1302
1302
|
set: function (a) {
|
|
1303
|
-
var b = this.
|
|
1304
|
-
this.
|
|
1305
|
-
if (b != this.
|
|
1306
|
-
this.
|
|
1303
|
+
var b = this.bk;
|
|
1304
|
+
this.bk = a;
|
|
1305
|
+
if (b != this.bk) {
|
|
1306
|
+
this.c7("AriaLabel", b, a);
|
|
1307
1307
|
}
|
|
1308
1308
|
},
|
|
1309
1309
|
enumerable: false,
|
|
@@ -1317,7 +1317,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1317
1317
|
var b = this.r;
|
|
1318
1318
|
this.r = a;
|
|
1319
1319
|
if (b != this.r) {
|
|
1320
|
-
this.
|
|
1320
|
+
this.c7("IsHover", b, a);
|
|
1321
1321
|
}
|
|
1322
1322
|
},
|
|
1323
1323
|
enumerable: false,
|
|
@@ -1331,7 +1331,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1331
1331
|
var b = this.q;
|
|
1332
1332
|
this.q = a;
|
|
1333
1333
|
if (b != this.q) {
|
|
1334
|
-
this.
|
|
1334
|
+
this.c7("IsDisabled", b, a);
|
|
1335
1335
|
}
|
|
1336
1336
|
},
|
|
1337
1337
|
enumerable: false,
|
|
@@ -1345,7 +1345,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1345
1345
|
var b = this.af;
|
|
1346
1346
|
this.af = a;
|
|
1347
1347
|
if (b != this.af) {
|
|
1348
|
-
this.
|
|
1348
|
+
this.c7("Opacity", b, this.af);
|
|
1349
1349
|
}
|
|
1350
1350
|
},
|
|
1351
1351
|
enumerable: false,
|
|
@@ -1359,7 +1359,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1359
1359
|
var b = this.aa;
|
|
1360
1360
|
this.aa = a;
|
|
1361
1361
|
if (b != this.aa) {
|
|
1362
|
-
this.
|
|
1362
|
+
this.c7("ActualViewBoxLeft", b, this.aa);
|
|
1363
1363
|
}
|
|
1364
1364
|
},
|
|
1365
1365
|
enumerable: false,
|
|
@@ -1373,7 +1373,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1373
1373
|
var b = this.am;
|
|
1374
1374
|
this.am = a;
|
|
1375
1375
|
if (b != this.am) {
|
|
1376
|
-
this.
|
|
1376
|
+
this.c7("ViewBoxLeft", b, this.am);
|
|
1377
1377
|
}
|
|
1378
1378
|
},
|
|
1379
1379
|
enumerable: false,
|
|
@@ -1387,7 +1387,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1387
1387
|
var b = this.ab;
|
|
1388
1388
|
this.ab = a;
|
|
1389
1389
|
if (b != this.ab) {
|
|
1390
|
-
this.
|
|
1390
|
+
this.c7("ActualViewBoxTop", b, this.ab);
|
|
1391
1391
|
}
|
|
1392
1392
|
},
|
|
1393
1393
|
enumerable: false,
|
|
@@ -1401,7 +1401,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1401
1401
|
var b = this.an;
|
|
1402
1402
|
this.an = a;
|
|
1403
1403
|
if (b != this.an) {
|
|
1404
|
-
this.
|
|
1404
|
+
this.c7("ViewBoxTop", b, this.an);
|
|
1405
1405
|
}
|
|
1406
1406
|
},
|
|
1407
1407
|
enumerable: false,
|
|
@@ -1415,7 +1415,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1415
1415
|
var b = this.ac;
|
|
1416
1416
|
this.ac = a;
|
|
1417
1417
|
if (b != this.ac) {
|
|
1418
|
-
this.
|
|
1418
|
+
this.c7("ActualViewBoxWidth", b, this.ac);
|
|
1419
1419
|
}
|
|
1420
1420
|
},
|
|
1421
1421
|
enumerable: false,
|
|
@@ -1429,7 +1429,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1429
1429
|
var b = this.ao;
|
|
1430
1430
|
this.ao = a;
|
|
1431
1431
|
if (b != this.ao) {
|
|
1432
|
-
this.
|
|
1432
|
+
this.c7("ViewBoxWidth", b, this.ao);
|
|
1433
1433
|
}
|
|
1434
1434
|
},
|
|
1435
1435
|
enumerable: false,
|
|
@@ -1443,7 +1443,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1443
1443
|
var b = this.z;
|
|
1444
1444
|
this.z = a;
|
|
1445
1445
|
if (b != this.z) {
|
|
1446
|
-
this.
|
|
1446
|
+
this.c7("ActualViewBoxHeight", b, this.z);
|
|
1447
1447
|
}
|
|
1448
1448
|
},
|
|
1449
1449
|
enumerable: false,
|
|
@@ -1457,7 +1457,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1457
1457
|
var b = this.al;
|
|
1458
1458
|
this.al = a;
|
|
1459
1459
|
if (b != this.al) {
|
|
1460
|
-
this.
|
|
1460
|
+
this.c7("ViewBoxHeight", b, this.al);
|
|
1461
1461
|
}
|
|
1462
1462
|
},
|
|
1463
1463
|
enumerable: false,
|
|
@@ -1471,7 +1471,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1471
1471
|
var b = this.ap;
|
|
1472
1472
|
this.ap = a;
|
|
1473
1473
|
if (b != this.ap) {
|
|
1474
|
-
this.
|
|
1474
|
+
this.c7("Width", b, this.ap);
|
|
1475
1475
|
}
|
|
1476
1476
|
},
|
|
1477
1477
|
enumerable: false,
|
|
@@ -1485,13 +1485,13 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1485
1485
|
var b = this.ad;
|
|
1486
1486
|
this.ad = a;
|
|
1487
1487
|
if (b != this.ad) {
|
|
1488
|
-
this.
|
|
1488
|
+
this.c7("Height", b, this.ad);
|
|
1489
1489
|
}
|
|
1490
1490
|
},
|
|
1491
1491
|
enumerable: false,
|
|
1492
1492
|
configurable: true
|
|
1493
1493
|
});
|
|
1494
|
-
XIcon.prototype.
|
|
1494
|
+
XIcon.prototype.c8 = function () {
|
|
1495
1495
|
};
|
|
1496
1496
|
XIcon.prototype.onDetachedFromUI = function () {
|
|
1497
1497
|
this.view.am();
|
|
@@ -1513,10 +1513,10 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1513
1513
|
XIcon.prototype.w = function () {
|
|
1514
1514
|
return this.view.l();
|
|
1515
1515
|
};
|
|
1516
|
-
XIcon.prototype.
|
|
1516
|
+
XIcon.prototype.bi = function () {
|
|
1517
1517
|
return this.g();
|
|
1518
1518
|
};
|
|
1519
|
-
XIcon.prototype.
|
|
1519
|
+
XIcon.prototype.b4 = function () {
|
|
1520
1520
|
var a = this.g();
|
|
1521
1521
|
return a.l();
|
|
1522
1522
|
};
|
|
@@ -1531,7 +1531,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1531
1531
|
a.a = this.view.a();
|
|
1532
1532
|
a.svg = this.svg;
|
|
1533
1533
|
a.svgPath = this.svgPath;
|
|
1534
|
-
a.k = this.
|
|
1534
|
+
a.k = this.b2;
|
|
1535
1535
|
if (this.o != null) {
|
|
1536
1536
|
var d = this.o;
|
|
1537
1537
|
if (this.view != null && d.q == null) {
|
|
@@ -1565,7 +1565,7 @@ export var XIcon = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1565
1565
|
XIcon.prototype.provideContainer = function (a) {
|
|
1566
1566
|
this.view.al(a);
|
|
1567
1567
|
};
|
|
1568
|
-
XIcon.prototype.
|
|
1568
|
+
XIcon.prototype.df = function (a, b, c, d) {
|
|
1569
1569
|
this.ah = a;
|
|
1570
1570
|
this.ai = b;
|
|
1571
1571
|
this.aj = c;
|