igniteui-angular-inputs 17.3.0 → 18.0.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 +1017 -697
- package/bundles/igniteui-angular-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonView_combined.js +22 -22
- package/esm2015/lib/CalendarView_combined.js +16 -14
- package/esm2015/lib/CheckboxView_combined.js +73 -67
- package/esm2015/lib/DatePickerView_combined.js +14 -14
- package/esm2015/lib/IconView_combined.js +663 -467
- 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 +58 -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 +16 -14
- package/esm5/lib/CheckboxView_combined.js +77 -67
- package/esm5/lib/DatePickerView_combined.js +14 -14
- package/esm5/lib/IconView_combined.js +685 -444
- 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 +58 -31
- package/esm5/lib/XIconButtonBridge.js +1 -1
- package/esm5/lib/igx-x-icon-component.js +98 -64
- package/fesm2015/igniteui-angular-inputs.js +983 -720
- package/fesm5/igniteui-angular-inputs.js +1018 -698
- package/lib/CheckboxView_combined.d.ts +17 -16
- package/lib/IconView_combined.d.ts +150 -134
- 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 +5 -5
|
@@ -1804,7 +1804,6 @@
|
|
|
1804
1804
|
case "DisabledTextColor":
|
|
1805
1805
|
case "DisabledElevation":
|
|
1806
1806
|
case "HoverBackgroundColor":
|
|
1807
|
-
case "TextStyle":
|
|
1808
1807
|
case "FocusTextColor":
|
|
1809
1808
|
case "TextColor":
|
|
1810
1809
|
case "HoverTextColor":
|
|
@@ -1910,6 +1909,7 @@
|
|
|
1910
1909
|
this.ap = this.disabled || this.at;
|
|
1911
1910
|
this.ki();
|
|
1912
1911
|
break;
|
|
1912
|
+
case "TextStyle":
|
|
1913
1913
|
case "DisableHover":
|
|
1914
1914
|
this.kh();
|
|
1915
1915
|
break;
|
|
@@ -4600,30 +4600,30 @@
|
|
|
4600
4600
|
c.l = this.disabled;
|
|
4601
4601
|
if (this.aa != null) {
|
|
4602
4602
|
var g = this.aa;
|
|
4603
|
-
if (this.view != null && g.
|
|
4603
|
+
if (this.view != null && g.q == null) {
|
|
4604
4604
|
var h = this.view.k;
|
|
4605
4605
|
var i = igniteuiAngularCore.FontUtil.getFontInfoFromString(h, g.fontString);
|
|
4606
|
-
g.p = i.p;
|
|
4607
|
-
g.e = i.e;
|
|
4608
4606
|
g.q = i.q;
|
|
4609
|
-
g.
|
|
4607
|
+
g.f = i.f;
|
|
4608
|
+
g.r = i.r;
|
|
4610
4609
|
g.t = i.t;
|
|
4611
4610
|
g.u = i.u;
|
|
4611
|
+
g.v = i.v;
|
|
4612
4612
|
}
|
|
4613
|
-
if (g.
|
|
4614
|
-
c.ac = g.
|
|
4613
|
+
if (g.q != null) {
|
|
4614
|
+
c.ac = g.q;
|
|
4615
4615
|
}
|
|
4616
|
-
if (!igniteuiAngularCore.isNaN_(g.
|
|
4617
|
-
c.r = g.
|
|
4616
|
+
if (!igniteuiAngularCore.isNaN_(g.f)) {
|
|
4617
|
+
c.r = g.f;
|
|
4618
4618
|
}
|
|
4619
|
-
if (g.
|
|
4620
|
-
c.ag = g.
|
|
4619
|
+
if (g.v != null) {
|
|
4620
|
+
c.ag = g.v;
|
|
4621
4621
|
}
|
|
4622
|
-
if (g.
|
|
4623
|
-
c.ae = g.
|
|
4622
|
+
if (g.t != null) {
|
|
4623
|
+
c.ae = g.t;
|
|
4624
4624
|
}
|
|
4625
|
-
if (g.
|
|
4626
|
-
c.ad = g.
|
|
4625
|
+
if (g.r != null) {
|
|
4626
|
+
c.ad = g.t;
|
|
4627
4627
|
}
|
|
4628
4628
|
}
|
|
4629
4629
|
return c;
|
|
@@ -4654,7 +4654,7 @@
|
|
|
4654
4654
|
$ret.addItem("HoverElevation", 4);
|
|
4655
4655
|
$ret.addItem("FocusElevation", 8);
|
|
4656
4656
|
$ret.addItem("BorderColor", igniteuiAngularCore.BrushUtil.h(138, 0, 0, 0));
|
|
4657
|
-
$ret.addItem("RippleColor", igniteuiAngularCore.BrushUtil.h(
|
|
4657
|
+
$ret.addItem("RippleColor", igniteuiAngularCore.BrushUtil.h(138, 0, 0, 0));
|
|
4658
4658
|
$ret.addItem("CornerRadius", new igniteuiAngularCore.CornerRadius(0, 4));
|
|
4659
4659
|
$ret.addItem("BorderWidth", NaN);
|
|
4660
4660
|
$ret.addItem("BackgroundColor", igniteuiAngularCore.BrushUtil.h(255, 228, 28, 119));
|
|
@@ -4675,11 +4675,11 @@
|
|
|
4675
4675
|
$ret.addItem("HoverElevation", 0);
|
|
4676
4676
|
$ret.addItem("FocusElevation", 0);
|
|
4677
4677
|
$ret.addItem("BorderColor", igniteuiAngularCore.BrushUtil.h(138, 0, 0, 0));
|
|
4678
|
-
$ret.addItem("RippleColor",
|
|
4678
|
+
$ret.addItem("RippleColor", igniteuiAngularCore.BrushUtil.h(138, 0, 0, 0));
|
|
4679
4679
|
$ret.addItem("CornerRadius", new igniteuiAngularCore.CornerRadius(0, 4));
|
|
4680
4680
|
$ret.addItem("BorderWidth", NaN);
|
|
4681
4681
|
$ret.addItem("BackgroundColor", igniteuiAngularCore.BrushUtil.h(0, 0, 0, 0));
|
|
4682
|
-
$ret.addItem("TextColor", igniteuiAngularCore.BrushUtil.h(255,
|
|
4682
|
+
$ret.addItem("TextColor", igniteuiAngularCore.BrushUtil.h(255, 228, 28, 119));
|
|
4683
4683
|
$ret.addItem("HoverTextColor", igniteuiAngularCore.BrushUtil.h(255, 228, 28, 119));
|
|
4684
4684
|
$ret.addItem("HoverBackgroundColor", igniteuiAngularCore.BrushUtil.h(13, 228, 28, 119));
|
|
4685
4685
|
$ret.addItem("FocusBackgroundColor", igniteuiAngularCore.BrushUtil.h(30, 228, 28, 119));
|
|
@@ -4695,8 +4695,8 @@
|
|
|
4695
4695
|
$ret.addItem("RestingElevation", 0);
|
|
4696
4696
|
$ret.addItem("HoverElevation", 0);
|
|
4697
4697
|
$ret.addItem("FocusElevation", 0);
|
|
4698
|
-
$ret.addItem("BorderColor", igniteuiAngularCore.BrushUtil.h(
|
|
4699
|
-
$ret.addItem("RippleColor", igniteuiAngularCore.BrushUtil.h(
|
|
4698
|
+
$ret.addItem("BorderColor", igniteuiAngularCore.BrushUtil.h(255, 228, 28, 119));
|
|
4699
|
+
$ret.addItem("RippleColor", igniteuiAngularCore.BrushUtil.h(138, 0, 0, 0));
|
|
4700
4700
|
$ret.addItem("CornerRadius", new igniteuiAngularCore.CornerRadius(0, 4));
|
|
4701
4701
|
$ret.addItem("BorderWidth", 1);
|
|
4702
4702
|
$ret.addItem("BackgroundColor", igniteuiAngularCore.BrushUtil.h(0, 0, 0, 0));
|
|
@@ -4717,7 +4717,7 @@
|
|
|
4717
4717
|
$ret.addItem("HoverElevation", 0);
|
|
4718
4718
|
$ret.addItem("FocusElevation", 0);
|
|
4719
4719
|
$ret.addItem("BorderColor", igniteuiAngularCore.BrushUtil.h(138, 0, 0, 0));
|
|
4720
|
-
$ret.addItem("RippleColor",
|
|
4720
|
+
$ret.addItem("RippleColor", igniteuiAngularCore.BrushUtil.h(138, 0, 0, 0));
|
|
4721
4721
|
$ret.addItem("CornerRadius", new igniteuiAngularCore.CornerRadius(0, 28));
|
|
4722
4722
|
$ret.addItem("BorderWidth", NaN);
|
|
4723
4723
|
$ret.addItem("BackgroundColor", igniteuiAngularCore.BrushUtil.h(0, 0, 0, 0));
|
|
@@ -4738,7 +4738,7 @@
|
|
|
4738
4738
|
$ret.addItem("HoverElevation", 12);
|
|
4739
4739
|
$ret.addItem("FocusElevation", 12);
|
|
4740
4740
|
$ret.addItem("BorderColor", igniteuiAngularCore.BrushUtil.h(138, 0, 0, 0));
|
|
4741
|
-
$ret.addItem("RippleColor", igniteuiAngularCore.BrushUtil.h(
|
|
4741
|
+
$ret.addItem("RippleColor", igniteuiAngularCore.BrushUtil.h(138, 0, 0, 0));
|
|
4742
4742
|
$ret.addItem("CornerRadius", new igniteuiAngularCore.CornerRadius(0, 28));
|
|
4743
4743
|
$ret.addItem("BorderWidth", NaN);
|
|
4744
4744
|
$ret.addItem("BackgroundColor", igniteuiAngularCore.BrushUtil.h(255, 228, 28, 119));
|
|
@@ -5040,12 +5040,13 @@
|
|
|
5040
5040
|
_this.b = null;
|
|
5041
5041
|
_this.d = 0;
|
|
5042
5042
|
_this._svgPath = null;
|
|
5043
|
-
_this.
|
|
5043
|
+
_this.j = null;
|
|
5044
5044
|
_this.o = null;
|
|
5045
5045
|
_this.p = null;
|
|
5046
|
+
_this.q = null;
|
|
5046
5047
|
_this.g = 0;
|
|
5047
|
-
_this.l = null;
|
|
5048
5048
|
_this.m = null;
|
|
5049
|
+
_this.n = null;
|
|
5049
5050
|
return _this;
|
|
5050
5051
|
}
|
|
5051
5052
|
Object.defineProperty(IconVisualModelExport.prototype, "svgPath", {
|
|
@@ -5058,7 +5059,7 @@
|
|
|
5058
5059
|
enumerable: false,
|
|
5059
5060
|
configurable: true
|
|
5060
5061
|
});
|
|
5061
|
-
IconVisualModelExport.prototype.
|
|
5062
|
+
IconVisualModelExport.prototype.k = function () {
|
|
5062
5063
|
var a = new igniteuiAngularCore.StringBuilder(0);
|
|
5063
5064
|
a.l("{");
|
|
5064
5065
|
a.l("actualFill : " + this.a.serialize() + ", ");
|
|
@@ -5070,20 +5071,21 @@
|
|
|
5070
5071
|
a.l("height : " + this.e + ", ");
|
|
5071
5072
|
a.l("width : " + this.i + ", ");
|
|
5072
5073
|
a.l("svgPath : '" + this.svgPath + "', ");
|
|
5073
|
-
|
|
5074
|
-
a.l("textStyleFontStyle : \"" + this.n + "\", ");
|
|
5075
|
-
}
|
|
5074
|
+
a.l("dataURL : '" + this.j + "', ");
|
|
5076
5075
|
if (!igniteuiAngularCore.stringIsNullOrEmpty(this.o)) {
|
|
5077
|
-
a.l("
|
|
5076
|
+
a.l("textStyleFontStyle : \"" + this.o + "\", ");
|
|
5078
5077
|
}
|
|
5079
5078
|
if (!igniteuiAngularCore.stringIsNullOrEmpty(this.p)) {
|
|
5080
|
-
a.l("
|
|
5079
|
+
a.l("textStyleFontVariant : \"" + this.p + "\", ");
|
|
5081
5080
|
}
|
|
5082
|
-
if (!igniteuiAngularCore.stringIsNullOrEmpty(this.
|
|
5083
|
-
a.l("
|
|
5081
|
+
if (!igniteuiAngularCore.stringIsNullOrEmpty(this.q)) {
|
|
5082
|
+
a.l("textStyleFontWeight : \"" + this.q + "\", ");
|
|
5084
5083
|
}
|
|
5085
5084
|
if (!igniteuiAngularCore.stringIsNullOrEmpty(this.m)) {
|
|
5086
|
-
a.l("
|
|
5085
|
+
a.l("textStyleFontFamily : \"" + this.m + "\", ");
|
|
5086
|
+
}
|
|
5087
|
+
if (!igniteuiAngularCore.stringIsNullOrEmpty(this.n)) {
|
|
5088
|
+
a.l("textStyleFontStretch : \"" + this.n + "\", ");
|
|
5087
5089
|
}
|
|
5088
5090
|
if (!igniteuiAngularCore.isNaN_(this.g)) {
|
|
5089
5091
|
a.l("textStyleFontSize : " + this.g + ", ");
|
|
@@ -5108,62 +5110,71 @@
|
|
|
5108
5110
|
tslib.__extends(IconView, _super);
|
|
5109
5111
|
function IconView() {
|
|
5110
5112
|
var _this = _super.call(this) || this;
|
|
5111
|
-
_this.b = null;
|
|
5112
|
-
_this.o = null;
|
|
5113
|
-
_this.e = null;
|
|
5114
|
-
_this.i = new igniteuiAngularCore.List$1(igniteuiAngularCore.Delegate_$type, 0);
|
|
5115
|
-
_this.j = null;
|
|
5116
|
-
_this.k = null;
|
|
5117
|
-
_this.l = null;
|
|
5118
|
-
_this.m = null;
|
|
5119
|
-
_this.n = null;
|
|
5120
5113
|
_this.c = null;
|
|
5114
|
+
_this.s = null;
|
|
5115
|
+
_this.f = null;
|
|
5116
|
+
_this.l = new igniteuiAngularCore.List$1(igniteuiAngularCore.Delegate_$type, 0);
|
|
5117
|
+
_this.n = null;
|
|
5118
|
+
_this.o = null;
|
|
5119
|
+
_this.p = null;
|
|
5120
|
+
_this.q = null;
|
|
5121
|
+
_this.r = null;
|
|
5121
5122
|
_this.d = null;
|
|
5123
|
+
_this.e = null;
|
|
5124
|
+
_this.y = null;
|
|
5125
|
+
_this.k = new igniteuiAngularCore.Dictionary$2(igniteuiAngularCore.Brush.$, igniteuiAngularCore.String_$type, 0);
|
|
5126
|
+
_this.g = true;
|
|
5127
|
+
_this.v = null;
|
|
5122
5128
|
_this.u = null;
|
|
5123
5129
|
_this.t = null;
|
|
5124
|
-
_this.
|
|
5125
|
-
_this.p = null;
|
|
5126
|
-
_this.q = null;
|
|
5127
|
-
_this.j = new igniteuiAngularCore.List$1(igniteuiAngularCore.Tuple$2.$.specialize(igniteuiAngularCore.SVGNode.$, igniteuiAngularCore.Base.$), 0);
|
|
5128
|
-
_this.k = new igniteuiAngularCore.List$1(igniteuiAngularCore.Tuple$2.$.specialize(igniteuiAngularCore.SVGNode.$, igniteuiAngularCore.Base.$), 0);
|
|
5129
|
-
_this.l = new igniteuiAngularCore.List$1(igniteuiAngularCore.Tuple$2.$.specialize(igniteuiAngularCore.SVGNode.$, igniteuiAngularCore.Base.$), 0);
|
|
5130
|
-
_this.m = new igniteuiAngularCore.List$1(igniteuiAngularCore.Tuple$2.$.specialize(igniteuiAngularCore.SVGNode.$, igniteuiAngularCore.Base.$), 0);
|
|
5130
|
+
_this.m = new igniteuiAngularCore.List$1(igniteuiAngularCore.DomWrapper_$type, 0);
|
|
5131
5131
|
_this.n = new igniteuiAngularCore.List$1(igniteuiAngularCore.Tuple$2.$.specialize(igniteuiAngularCore.SVGNode.$, igniteuiAngularCore.Base.$), 0);
|
|
5132
|
-
_this.
|
|
5132
|
+
_this.o = new igniteuiAngularCore.List$1(igniteuiAngularCore.Tuple$2.$.specialize(igniteuiAngularCore.SVGNode.$, igniteuiAngularCore.Base.$), 0);
|
|
5133
|
+
_this.p = new igniteuiAngularCore.List$1(igniteuiAngularCore.Tuple$2.$.specialize(igniteuiAngularCore.SVGNode.$, igniteuiAngularCore.Base.$), 0);
|
|
5134
|
+
_this.q = new igniteuiAngularCore.List$1(igniteuiAngularCore.Tuple$2.$.specialize(igniteuiAngularCore.SVGNode.$, igniteuiAngularCore.Base.$), 0);
|
|
5135
|
+
_this.r = new igniteuiAngularCore.List$1(igniteuiAngularCore.Tuple$2.$.specialize(igniteuiAngularCore.SVGNode.$, igniteuiAngularCore.Base.$), 0);
|
|
5133
5136
|
_this.d = new igniteuiAngularCore.FastIterationDictionary$2(igniteuiAngularCore.String_$type, igniteuiAngularCore.List$1.$.specialize(igniteuiAngularCore.Tuple$2.$.specialize(igniteuiAngularCore.SVGNode.$, igniteuiAngularCore.Base.$)), 0);
|
|
5137
|
+
_this.e = new igniteuiAngularCore.FastIterationDictionary$2(igniteuiAngularCore.String_$type, igniteuiAngularCore.List$1.$.specialize(igniteuiAngularCore.Tuple$2.$.specialize(igniteuiAngularCore.SVGNode.$, igniteuiAngularCore.Base.$)), 0);
|
|
5134
5138
|
return _this;
|
|
5135
5139
|
}
|
|
5136
|
-
IconView.prototype.
|
|
5140
|
+
IconView.prototype.ag = function () {
|
|
5137
5141
|
};
|
|
5138
|
-
IconView.prototype.
|
|
5142
|
+
IconView.prototype.i = function () {
|
|
5139
5143
|
return true;
|
|
5140
5144
|
};
|
|
5141
|
-
Object.defineProperty(IconView.prototype, "
|
|
5145
|
+
Object.defineProperty(IconView.prototype, "w", {
|
|
5142
5146
|
get: function () {
|
|
5143
|
-
return this.
|
|
5147
|
+
return this.v;
|
|
5144
5148
|
},
|
|
5145
5149
|
enumerable: false,
|
|
5146
5150
|
configurable: true
|
|
5147
5151
|
});
|
|
5148
|
-
Object.defineProperty(IconView.prototype, "
|
|
5152
|
+
Object.defineProperty(IconView.prototype, "x", {
|
|
5149
5153
|
get: function () {
|
|
5150
5154
|
return null;
|
|
5151
5155
|
},
|
|
5152
5156
|
enumerable: false,
|
|
5153
5157
|
configurable: true
|
|
5154
5158
|
});
|
|
5155
|
-
Object.defineProperty(IconView.prototype, "
|
|
5159
|
+
Object.defineProperty(IconView.prototype, "b", {
|
|
5160
|
+
get: function () {
|
|
5161
|
+
return this.m.toArray();
|
|
5162
|
+
},
|
|
5163
|
+
enumerable: false,
|
|
5164
|
+
configurable: true
|
|
5165
|
+
});
|
|
5166
|
+
Object.defineProperty(IconView.prototype, "j", {
|
|
5156
5167
|
get: function () {
|
|
5157
5168
|
return true;
|
|
5158
5169
|
},
|
|
5159
5170
|
enumerable: false,
|
|
5160
5171
|
configurable: true
|
|
5161
5172
|
});
|
|
5162
|
-
IconView.prototype.
|
|
5173
|
+
IconView.prototype.ae = function (a) {
|
|
5163
5174
|
var e_1, _a;
|
|
5164
5175
|
if (a == null) {
|
|
5165
5176
|
try {
|
|
5166
|
-
for (var _b = tslib.__values(igniteuiAngularCore.fromEnum(this.
|
|
5177
|
+
for (var _b = tslib.__values(igniteuiAngularCore.fromEnum(this.l)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
5167
5178
|
var b = _c.value;
|
|
5168
5179
|
b();
|
|
5169
5180
|
}
|
|
@@ -5181,84 +5192,172 @@
|
|
|
5181
5192
|
throw e_1.error;
|
|
5182
5193
|
}
|
|
5183
5194
|
}
|
|
5184
|
-
this.
|
|
5185
|
-
if (this.
|
|
5186
|
-
this.
|
|
5195
|
+
this.l.clear();
|
|
5196
|
+
if (this.v != null) {
|
|
5197
|
+
this.v.unlistenAll();
|
|
5198
|
+
}
|
|
5199
|
+
if (this.u != null) {
|
|
5200
|
+
this.u.unlistenAll();
|
|
5187
5201
|
}
|
|
5188
5202
|
}
|
|
5189
|
-
this.
|
|
5203
|
+
this.s = a;
|
|
5190
5204
|
a.rootWrapper.setStyleProperty("position", "relative");
|
|
5191
|
-
this.
|
|
5192
|
-
this.
|
|
5193
|
-
this.
|
|
5194
|
-
this.
|
|
5195
|
-
this.
|
|
5196
|
-
|
|
5205
|
+
this.s.rootWrapper.setStyleProperty("display", "flex");
|
|
5206
|
+
this.s.rootWrapper.setStyleProperty("flex-direction", "row");
|
|
5207
|
+
this.s.rootWrapper.setStyleProperty("flex-wrap", "no-wrap");
|
|
5208
|
+
this.s.rootWrapper.setStyleProperty("align-items", "center");
|
|
5209
|
+
this.s.rootWrapper.setStyleProperty("justify-content", "center");
|
|
5210
|
+
this.am();
|
|
5211
|
+
var c = this.s.createElementNS("svg", "http://www.w3.org/2000/svg");
|
|
5197
5212
|
c.setStyleProperty("position", "absolute");
|
|
5198
5213
|
c.setStyleProperty("top", "0");
|
|
5199
5214
|
c.setStyleProperty("left", "0");
|
|
5200
5215
|
c.setStyleProperty("right", "0");
|
|
5201
5216
|
c.setStyleProperty("bottom", "0");
|
|
5202
|
-
this.
|
|
5203
|
-
this.
|
|
5204
|
-
|
|
5205
|
-
d.
|
|
5206
|
-
|
|
5207
|
-
|
|
5208
|
-
|
|
5217
|
+
this.v = c;
|
|
5218
|
+
var d = this.s.createElement("img");
|
|
5219
|
+
d.setStyleProperty("height", "100%");
|
|
5220
|
+
d.setStyleProperty("width", "100%");
|
|
5221
|
+
d.setStyleProperty("object-fit", "contain");
|
|
5222
|
+
this.u = d;
|
|
5223
|
+
this.ar();
|
|
5224
|
+
this.t = a.createElementNS("defs", "http://www.w3.org/2000/svg");
|
|
5225
|
+
this.v.append(this.t);
|
|
5226
|
+
this.s.append(this.v);
|
|
5227
|
+
this.l.add(c.listen("click", igniteuiAngularCore.runOn(this, this.ad)));
|
|
5228
|
+
this.c.cc();
|
|
5229
|
+
};
|
|
5230
|
+
IconView.prototype.ao = function (a) {
|
|
5231
|
+
this.k.clear();
|
|
5232
|
+
this.s.rootWrapper.removeChildren();
|
|
5233
|
+
this.s.rootWrapper.append(this.v);
|
|
5234
|
+
this.v.removeChildren();
|
|
5235
|
+
this.t.removeChildren();
|
|
5236
|
+
this.m.clear();
|
|
5237
|
+
if (a != null) {
|
|
5238
|
+
var b = this.s.createElementNS("path", "http://www.w3.org/2000/svg");
|
|
5239
|
+
b.setAttribute("d", a);
|
|
5240
|
+
this.v.append(this.t);
|
|
5241
|
+
this.v.append(b);
|
|
5242
|
+
this.m.add(b);
|
|
5243
|
+
}
|
|
5244
|
+
};
|
|
5245
|
+
IconView.prototype.ap = function (a) {
|
|
5246
|
+
this.k.clear();
|
|
5247
|
+
this.s.rootWrapper.removeChildren();
|
|
5248
|
+
this.s.rootWrapper.append(this.v);
|
|
5249
|
+
this.v.removeChildren();
|
|
5250
|
+
this.t.removeChildren();
|
|
5251
|
+
this.m.clear();
|
|
5252
|
+
if (a != null && a.length > 0) {
|
|
5253
|
+
this.v.append(this.t);
|
|
5254
|
+
for (var b = 0; b < a.length; b++) {
|
|
5255
|
+
var c = this.s.createElementNS("path", "http://www.w3.org/2000/svg");
|
|
5256
|
+
c.setAttribute("d", a[b]);
|
|
5257
|
+
this.v.append(c);
|
|
5258
|
+
this.m.add(c);
|
|
5259
|
+
}
|
|
5260
|
+
}
|
|
5261
|
+
};
|
|
5262
|
+
IconView.prototype.an = function (a) {
|
|
5263
|
+
this.s.rootWrapper.removeChildren();
|
|
5264
|
+
if (a != null) {
|
|
5265
|
+
var b = this.s.rootWrapper.getNativeElement();
|
|
5266
|
+
b.innerHTML = a;
|
|
5209
5267
|
}
|
|
5210
|
-
this.q = d;
|
|
5211
|
-
this.o.append(this.p);
|
|
5212
|
-
this.i.add(c.listen("click", igniteuiAngularCore.runOn(this, this.z)));
|
|
5213
|
-
this.b.b6();
|
|
5214
5268
|
};
|
|
5215
|
-
IconView.prototype.
|
|
5216
|
-
if (this.
|
|
5217
|
-
this.
|
|
5218
|
-
this.
|
|
5219
|
-
this.
|
|
5220
|
-
|
|
5221
|
-
|
|
5269
|
+
IconView.prototype.al = function (a) {
|
|
5270
|
+
if (this.y != a) {
|
|
5271
|
+
this.y = a;
|
|
5272
|
+
this.s.rootWrapper.removeChildren();
|
|
5273
|
+
this.s.rootWrapper.append(this.u);
|
|
5274
|
+
this.u.setAttribute("src", a);
|
|
5275
|
+
}
|
|
5276
|
+
};
|
|
5277
|
+
IconView.prototype.h = function () {
|
|
5278
|
+
return this.c.svgPath != null || this.c.svg != null || this.c.b != null;
|
|
5279
|
+
};
|
|
5280
|
+
IconView.prototype.am = function () {
|
|
5281
|
+
this.s.rootWrapper.setStyleProperty("width", igniteuiAngularCore.isNaN_(this.c.aq) ? "1.5rem" : this.c.aq + "px");
|
|
5282
|
+
this.s.rootWrapper.setStyleProperty("height", igniteuiAngularCore.isNaN_(this.c.ai) ? "1.5rem" : this.c.ai + "px");
|
|
5283
|
+
};
|
|
5284
|
+
IconView.prototype.ar = function () {
|
|
5285
|
+
var a = igniteuiAngularCore.isNaN_(this.c.an) ? 0 : this.c.an;
|
|
5286
|
+
var b = igniteuiAngularCore.isNaN_(this.c.ao) ? 0 : this.c.ao;
|
|
5287
|
+
var c = igniteuiAngularCore.isNaN_(this.c.ap) ? 24 : this.c.ap;
|
|
5288
|
+
var d = igniteuiAngularCore.isNaN_(this.c.am) ? 24 : this.c.am;
|
|
5289
|
+
this.v.setAttribute("viewBox", a + " " + b + " " + c + " " + d);
|
|
5290
|
+
};
|
|
5291
|
+
IconView.prototype.ai = function (a, b) {
|
|
5292
|
+
var c = a.color;
|
|
5293
|
+
if (!this.k.containsKey(a)) {
|
|
5294
|
+
if (a.isGradient) {
|
|
5295
|
+
var d = this.t.getChildCount();
|
|
5296
|
+
var e = a;
|
|
5297
|
+
var f = this.s.createElementNS("linearGradient", "http://www.w3.org/2000/svg");
|
|
5298
|
+
var g = "ig_gradient_" + b + "_" + d;
|
|
5299
|
+
f.setAttribute("id", g);
|
|
5300
|
+
f.setAttribute("x1", e.startX.toString());
|
|
5301
|
+
f.setAttribute("x2", e.endX.toString());
|
|
5302
|
+
f.setAttribute("y1", e.startY.toString());
|
|
5303
|
+
f.setAttribute("y2", e.endY.toString());
|
|
5304
|
+
var j = e.gradientStops;
|
|
5305
|
+
for (var i = 0; i < j.length; i++) {
|
|
5306
|
+
var h = j[i];
|
|
5307
|
+
var k = this.s.createElementNS("stop", "http://www.w3.org/2000/svg");
|
|
5308
|
+
k.setAttribute("offset", h.offset * 100 + "%");
|
|
5309
|
+
k.setAttribute("stop-color", h._fill);
|
|
5310
|
+
f.append(k);
|
|
5311
|
+
}
|
|
5312
|
+
this.t.append(f);
|
|
5313
|
+
this.k.addItem(a, g);
|
|
5314
|
+
}
|
|
5315
|
+
else if (a.isRadialGradient) {
|
|
5222
5316
|
}
|
|
5223
5317
|
}
|
|
5224
5318
|
};
|
|
5225
|
-
IconView.prototype.
|
|
5226
|
-
|
|
5227
|
-
|
|
5228
|
-
this.
|
|
5229
|
-
|
|
5230
|
-
|
|
5319
|
+
IconView.prototype.aj = function (a, b) {
|
|
5320
|
+
var c = a;
|
|
5321
|
+
if (this.k.containsKey(b)) {
|
|
5322
|
+
c.setAttribute("fill", "url(#" + this.k.item(b) + ")");
|
|
5323
|
+
this.s.rootWrapper.removeChildren();
|
|
5324
|
+
this.s.rootWrapper.append(this.v);
|
|
5325
|
+
}
|
|
5326
|
+
else {
|
|
5327
|
+
igniteuiAngularCore.NativeUI.r(a, b);
|
|
5231
5328
|
}
|
|
5232
5329
|
};
|
|
5233
|
-
IconView.prototype.
|
|
5234
|
-
|
|
5235
|
-
this.
|
|
5236
|
-
|
|
5237
|
-
|
|
5238
|
-
|
|
5330
|
+
IconView.prototype.ak = function (a, b) {
|
|
5331
|
+
var c = a;
|
|
5332
|
+
if (this.k.containsKey(b)) {
|
|
5333
|
+
c.setAttribute("stroke", "url('#" + this.k.item(b) + "')");
|
|
5334
|
+
}
|
|
5335
|
+
else {
|
|
5336
|
+
igniteuiAngularCore.NativeUI.aa(a, b);
|
|
5337
|
+
}
|
|
5239
5338
|
};
|
|
5240
|
-
IconView.prototype.
|
|
5339
|
+
IconView.prototype.z = function (a) {
|
|
5241
5340
|
};
|
|
5242
|
-
IconView.prototype.
|
|
5243
|
-
if (this.
|
|
5341
|
+
IconView.prototype.ah = function () {
|
|
5342
|
+
if (this.i()) {
|
|
5244
5343
|
}
|
|
5245
5344
|
};
|
|
5246
|
-
IconView.prototype.
|
|
5247
|
-
this.
|
|
5345
|
+
IconView.prototype.aa = function (a) {
|
|
5346
|
+
this.c.b9();
|
|
5248
5347
|
};
|
|
5249
|
-
IconView.prototype.
|
|
5250
|
-
this.
|
|
5348
|
+
IconView.prototype.ab = function (a) {
|
|
5349
|
+
this.c.ca();
|
|
5251
5350
|
};
|
|
5252
|
-
IconView.prototype.
|
|
5253
|
-
this.
|
|
5254
|
-
this.
|
|
5255
|
-
this.
|
|
5351
|
+
IconView.prototype.ac = function () {
|
|
5352
|
+
this.g = true;
|
|
5353
|
+
this.l.add(this.s.rootWrapper.listen("mouseenter", igniteuiAngularCore.runOn(this, this.aa)));
|
|
5354
|
+
this.l.add(this.s.rootWrapper.listen("mouseleave", igniteuiAngularCore.runOn(this, this.ab)));
|
|
5256
5355
|
};
|
|
5257
|
-
IconView.prototype.
|
|
5356
|
+
IconView.prototype.af = function () {
|
|
5258
5357
|
var e_2, _a;
|
|
5259
|
-
this.
|
|
5358
|
+
this.g = false;
|
|
5260
5359
|
try {
|
|
5261
|
-
for (var _b = tslib.__values(igniteuiAngularCore.fromEnum(this.
|
|
5360
|
+
for (var _b = tslib.__values(igniteuiAngularCore.fromEnum(this.l)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
5262
5361
|
var a = _c.value;
|
|
5263
5362
|
a();
|
|
5264
5363
|
}
|
|
@@ -5276,15 +5375,15 @@
|
|
|
5276
5375
|
throw e_2.error;
|
|
5277
5376
|
}
|
|
5278
5377
|
}
|
|
5279
|
-
this.
|
|
5378
|
+
this.l.clear();
|
|
5280
5379
|
};
|
|
5281
|
-
IconView.prototype.
|
|
5380
|
+
IconView.prototype.aq = function (a) {
|
|
5282
5381
|
if (a != null) {
|
|
5283
|
-
this.
|
|
5382
|
+
this.s.rootWrapper.setStyleProperty("font", a.fontString);
|
|
5284
5383
|
}
|
|
5285
5384
|
};
|
|
5286
5385
|
IconView.prototype.a = function () {
|
|
5287
|
-
var rect_ = this.
|
|
5386
|
+
var rect_ = this.s.rootWrapper.getNativeElement().getBoundingClientRect();
|
|
5288
5387
|
var a = (rect_.top);
|
|
5289
5388
|
var b = (rect_.left);
|
|
5290
5389
|
var c = new Array(2);
|
|
@@ -5292,8 +5391,8 @@
|
|
|
5292
5391
|
c[1] = b;
|
|
5293
5392
|
return c;
|
|
5294
5393
|
};
|
|
5295
|
-
IconView.prototype.
|
|
5296
|
-
this.
|
|
5394
|
+
IconView.prototype.ad = function (a) {
|
|
5395
|
+
this.c.b7();
|
|
5297
5396
|
};
|
|
5298
5397
|
IconView.$t = igniteuiAngularCore.markType(IconView, 'IconView');
|
|
5299
5398
|
return IconView;
|
|
@@ -5306,47 +5405,49 @@
|
|
|
5306
5405
|
function XIcon() {
|
|
5307
5406
|
var _this = _super.call(this) || this;
|
|
5308
5407
|
_this._view = null;
|
|
5309
|
-
_this.
|
|
5310
|
-
_this.
|
|
5311
|
-
_this.
|
|
5312
|
-
_this.
|
|
5313
|
-
_this.
|
|
5314
|
-
_this.
|
|
5315
|
-
_this.
|
|
5316
|
-
_this.
|
|
5317
|
-
_this.
|
|
5318
|
-
_this.
|
|
5319
|
-
_this.
|
|
5320
|
-
_this.
|
|
5321
|
-
_this.
|
|
5322
|
-
_this.
|
|
5323
|
-
_this.
|
|
5324
|
-
_this.
|
|
5325
|
-
_this.
|
|
5326
|
-
_this.
|
|
5327
|
-
_this.
|
|
5408
|
+
_this.j = 0;
|
|
5409
|
+
_this.cj = XIcon.cz;
|
|
5410
|
+
_this.ck = XIcon.c3;
|
|
5411
|
+
_this.cl = XIcon.c4;
|
|
5412
|
+
_this.v = XIcon.ah;
|
|
5413
|
+
_this.cm = XIcon.cz;
|
|
5414
|
+
_this.cu = XIcon.c3;
|
|
5415
|
+
_this.z = XIcon.ah;
|
|
5416
|
+
_this.cv = XIcon.c4;
|
|
5417
|
+
_this.cn = XIcon.c0;
|
|
5418
|
+
_this.co = XIcon.c1;
|
|
5419
|
+
_this.x = XIcon.ag;
|
|
5420
|
+
_this.cp = null;
|
|
5421
|
+
_this.c = null;
|
|
5422
|
+
_this.d = null;
|
|
5423
|
+
_this.cq = null;
|
|
5424
|
+
_this.cr = null;
|
|
5425
|
+
_this.cs = null;
|
|
5426
|
+
_this.ct = null;
|
|
5328
5427
|
_this.aw = null;
|
|
5329
|
-
_this.
|
|
5330
|
-
_this.
|
|
5331
|
-
_this.
|
|
5332
|
-
_this.
|
|
5333
|
-
_this.
|
|
5334
|
-
_this.
|
|
5428
|
+
_this.az = null;
|
|
5429
|
+
_this.ay = null;
|
|
5430
|
+
_this.a = null;
|
|
5431
|
+
_this.l = null;
|
|
5432
|
+
_this.ax = "ig-icon-" + XIcon.at++;
|
|
5433
|
+
_this.ar = 0;
|
|
5335
5434
|
_this.n = false;
|
|
5336
|
-
_this.
|
|
5337
|
-
_this.
|
|
5338
|
-
_this.
|
|
5339
|
-
_this.
|
|
5435
|
+
_this.av = null;
|
|
5436
|
+
_this.p = false;
|
|
5437
|
+
_this.o = false;
|
|
5438
|
+
_this.y = 1;
|
|
5340
5439
|
_this.ab = NaN;
|
|
5341
|
-
_this.y = NaN;
|
|
5342
5440
|
_this.ac = NaN;
|
|
5343
|
-
_this.
|
|
5441
|
+
_this.ad = NaN;
|
|
5442
|
+
_this.aa = NaN;
|
|
5443
|
+
_this.ae = NaN;
|
|
5444
|
+
_this.w = NaN;
|
|
5344
5445
|
_this.clicked = null;
|
|
5345
5446
|
_this.propertyChanged = null;
|
|
5346
5447
|
var a = new IconView();
|
|
5347
|
-
a.
|
|
5448
|
+
a.c = _this;
|
|
5348
5449
|
_this.view = a;
|
|
5349
|
-
_this.view.
|
|
5450
|
+
_this.view.ag();
|
|
5350
5451
|
return _this;
|
|
5351
5452
|
}
|
|
5352
5453
|
Object.defineProperty(XIcon.prototype, "view", {
|
|
@@ -5362,13 +5463,13 @@
|
|
|
5362
5463
|
XIcon.prototype.destroy = function () {
|
|
5363
5464
|
this.provideContainer(null);
|
|
5364
5465
|
};
|
|
5365
|
-
XIcon.prototype.
|
|
5466
|
+
XIcon.prototype.cb = function (a, b, c) {
|
|
5366
5467
|
if (this.propertyChanged != null) {
|
|
5367
5468
|
this.propertyChanged(this, new igniteuiAngularCore.PropertyChangedEventArgs(a));
|
|
5368
5469
|
}
|
|
5369
|
-
this.
|
|
5470
|
+
this.ce(a, b, c);
|
|
5370
5471
|
};
|
|
5371
|
-
XIcon.prototype.
|
|
5472
|
+
XIcon.prototype.ce = function (a, b, c) {
|
|
5372
5473
|
switch (a) {
|
|
5373
5474
|
case "Fill":
|
|
5374
5475
|
case "Stroke":
|
|
@@ -5377,209 +5478,319 @@
|
|
|
5377
5478
|
case "HoverStroke":
|
|
5378
5479
|
case "HoverStrokeThickness":
|
|
5379
5480
|
case "IsHover":
|
|
5380
|
-
this.
|
|
5481
|
+
this.ci();
|
|
5381
5482
|
break;
|
|
5483
|
+
case "FillColors":
|
|
5484
|
+
case "StrokeColors":
|
|
5382
5485
|
case "ActualFill":
|
|
5383
5486
|
case "ActualStroke":
|
|
5384
5487
|
case "ActualStrokeWidth":
|
|
5385
|
-
|
|
5488
|
+
this.cg();
|
|
5489
|
+
break;
|
|
5386
5490
|
case "SVG":
|
|
5387
|
-
this.
|
|
5491
|
+
this.az = null;
|
|
5492
|
+
this.a = null;
|
|
5493
|
+
this.cg();
|
|
5494
|
+
break;
|
|
5495
|
+
case "SVGPath":
|
|
5496
|
+
this.ay = null;
|
|
5497
|
+
this.a = null;
|
|
5498
|
+
this.cg();
|
|
5499
|
+
break;
|
|
5500
|
+
case "SVGPaths":
|
|
5501
|
+
this.ay = null;
|
|
5502
|
+
this.az = null;
|
|
5503
|
+
this.cg();
|
|
5504
|
+
break;
|
|
5505
|
+
case "DataURL":
|
|
5506
|
+
this.ay = null;
|
|
5507
|
+
this.az = null;
|
|
5508
|
+
this.a = null;
|
|
5509
|
+
this.cg();
|
|
5388
5510
|
break;
|
|
5389
5511
|
case "Opacity":
|
|
5390
|
-
this.
|
|
5512
|
+
this.ch();
|
|
5391
5513
|
break;
|
|
5392
5514
|
case "ViewBoxLeft":
|
|
5393
5515
|
case "ViewBoxTop":
|
|
5394
5516
|
case "ViewBoxWidth":
|
|
5395
5517
|
case "ViewBoxHeight":
|
|
5396
|
-
this.view.
|
|
5518
|
+
this.view.ar();
|
|
5397
5519
|
break;
|
|
5398
5520
|
case "Width":
|
|
5399
5521
|
case "Height":
|
|
5400
|
-
this.view.
|
|
5522
|
+
this.view.am();
|
|
5401
5523
|
break;
|
|
5402
5524
|
}
|
|
5403
5525
|
};
|
|
5404
|
-
XIcon.prototype.
|
|
5405
|
-
var a = this.fill != null ? this.fill : XIcon.
|
|
5406
|
-
var b = this.
|
|
5407
|
-
var c = !igniteuiAngularCore.isNaN_(this.
|
|
5408
|
-
var d = this.
|
|
5409
|
-
if (this.
|
|
5410
|
-
this.
|
|
5411
|
-
this.
|
|
5412
|
-
this.
|
|
5413
|
-
this.
|
|
5526
|
+
XIcon.prototype.ci = function () {
|
|
5527
|
+
var a = this.fill != null ? this.fill : XIcon.cz;
|
|
5528
|
+
var b = this.dc != null ? this.dc : XIcon.c3;
|
|
5529
|
+
var c = !igniteuiAngularCore.isNaN_(this.al) ? this.al : XIcon.ah;
|
|
5530
|
+
var d = this.dd != null ? this.dd : XIcon.c4;
|
|
5531
|
+
if (this.t) {
|
|
5532
|
+
this.cw = this.c5 != null ? this.c5 : a;
|
|
5533
|
+
this.cx = this.c6 != null ? this.c6 : b;
|
|
5534
|
+
this.af = !igniteuiAngularCore.isNaN_(this.aj) ? this.aj : c;
|
|
5535
|
+
this.cy = this.c7 != null ? this.c7 : d;
|
|
5414
5536
|
}
|
|
5415
5537
|
else {
|
|
5416
|
-
this.
|
|
5417
|
-
this.
|
|
5418
|
-
this.
|
|
5419
|
-
this.
|
|
5538
|
+
this.cw = a;
|
|
5539
|
+
this.cx = b;
|
|
5540
|
+
this.af = c;
|
|
5541
|
+
this.cy = d;
|
|
5420
5542
|
}
|
|
5421
5543
|
};
|
|
5422
|
-
Object.defineProperty(XIcon.prototype, "
|
|
5544
|
+
Object.defineProperty(XIcon.prototype, "r", {
|
|
5423
5545
|
get: function () {
|
|
5424
|
-
return this.svgPath != null && !this.view.
|
|
5546
|
+
return this.svgPath != null && !this.view.j;
|
|
5425
5547
|
},
|
|
5426
5548
|
enumerable: false,
|
|
5427
5549
|
configurable: true
|
|
5428
5550
|
});
|
|
5429
|
-
XIcon.prototype.
|
|
5430
|
-
igniteuiAngularCore.NativeUI.y(this.view.
|
|
5551
|
+
XIcon.prototype.ch = function () {
|
|
5552
|
+
igniteuiAngularCore.NativeUI.y(this.view.w, this.ak);
|
|
5431
5553
|
};
|
|
5432
|
-
XIcon.prototype.
|
|
5433
|
-
var a = this.view.
|
|
5434
|
-
if (this.
|
|
5435
|
-
var b = this.view.
|
|
5436
|
-
igniteuiAngularCore.NativeUI.r(b, this.
|
|
5437
|
-
igniteuiAngularCore.NativeUI.aa(b, this.
|
|
5438
|
-
igniteuiAngularCore.NativeUI.ad(b, this.
|
|
5554
|
+
XIcon.prototype.cg = function () {
|
|
5555
|
+
var a = this.view.w;
|
|
5556
|
+
if (this.r) {
|
|
5557
|
+
var b = this.view.x;
|
|
5558
|
+
igniteuiAngularCore.NativeUI.r(b, this.cw);
|
|
5559
|
+
igniteuiAngularCore.NativeUI.aa(b, this.cx);
|
|
5560
|
+
igniteuiAngularCore.NativeUI.ad(b, this.af);
|
|
5439
5561
|
}
|
|
5440
5562
|
else {
|
|
5441
5563
|
var c = false;
|
|
5442
5564
|
if (this.svgPath != null) {
|
|
5443
5565
|
if (igniteuiAngularCore.stringStartsWith(igniteuiAngularCore.trimStart(this.svgPath, ' ', '\n', '\r', '\t'), "<svg")) {
|
|
5444
|
-
this.view.
|
|
5566
|
+
this.view.an(this.svgPath);
|
|
5445
5567
|
c = true;
|
|
5446
5568
|
}
|
|
5447
5569
|
else {
|
|
5448
|
-
this.view.
|
|
5570
|
+
this.view.ao(this.svgPath);
|
|
5449
5571
|
}
|
|
5450
5572
|
}
|
|
5573
|
+
else if (this.b != null) {
|
|
5574
|
+
this.view.ap(this.b);
|
|
5575
|
+
var d = this.view.b;
|
|
5576
|
+
if (d != null && d.length > 0) {
|
|
5577
|
+
var e = igniteuiAngularCore.NativeUI.r;
|
|
5578
|
+
var f = igniteuiAngularCore.NativeUI.aa;
|
|
5579
|
+
this.cd();
|
|
5580
|
+
e = igniteuiAngularCore.runOn(this.view, this.view.aj);
|
|
5581
|
+
f = igniteuiAngularCore.runOn(this.view, this.view.ak);
|
|
5582
|
+
for (var g = 0; g < d.length; g++) {
|
|
5583
|
+
if (this.cw != null) {
|
|
5584
|
+
e(d[g], this.cw);
|
|
5585
|
+
}
|
|
5586
|
+
if (this.cx != null) {
|
|
5587
|
+
f(d[g], this.cx);
|
|
5588
|
+
}
|
|
5589
|
+
if (!igniteuiAngularCore.isNaN_(this.af)) {
|
|
5590
|
+
igniteuiAngularCore.NativeUI.ad(d[g], this.af);
|
|
5591
|
+
}
|
|
5592
|
+
if (this.cy != null) {
|
|
5593
|
+
igniteuiAngularCore.NativeUI.q(d[g], this.cy);
|
|
5594
|
+
}
|
|
5595
|
+
if (this.e != null && this.e.count == d.length) {
|
|
5596
|
+
e(d[g], this.e.item(g));
|
|
5597
|
+
}
|
|
5598
|
+
if (this.f != null && this.f.count == d.length) {
|
|
5599
|
+
f(d[g], this.f.item(g));
|
|
5600
|
+
}
|
|
5601
|
+
}
|
|
5602
|
+
}
|
|
5603
|
+
if (this.m != null) {
|
|
5604
|
+
this.view.aq(this.m);
|
|
5605
|
+
}
|
|
5606
|
+
return;
|
|
5607
|
+
}
|
|
5451
5608
|
else if (this.svg != null) {
|
|
5452
|
-
this.view.
|
|
5609
|
+
this.view.an(this.svg);
|
|
5453
5610
|
c = true;
|
|
5454
5611
|
}
|
|
5612
|
+
else if (this.a7 != null) {
|
|
5613
|
+
this.view.al(this.a7);
|
|
5614
|
+
}
|
|
5455
5615
|
if (c) {
|
|
5456
|
-
for (var
|
|
5457
|
-
var
|
|
5458
|
-
igniteuiAngularCore.NativeUI.r(this.view.
|
|
5616
|
+
for (var h = 0; h < this.view.o.count; h++) {
|
|
5617
|
+
var i = this.view.o._inner[h].c;
|
|
5618
|
+
igniteuiAngularCore.NativeUI.r(this.view.o._inner[h].d, i.l.f(this.c8));
|
|
5459
5619
|
}
|
|
5460
|
-
for (var
|
|
5461
|
-
var
|
|
5462
|
-
igniteuiAngularCore.NativeUI.aa(this.view.
|
|
5620
|
+
for (var j = 0; j < this.view.p.count; j++) {
|
|
5621
|
+
var k = this.view.p._inner[j].c;
|
|
5622
|
+
igniteuiAngularCore.NativeUI.aa(this.view.p._inner[j].d, k.m.f(this.c9));
|
|
5463
5623
|
}
|
|
5464
|
-
for (var
|
|
5465
|
-
var
|
|
5466
|
-
igniteuiAngularCore.NativeUI.r(this.view.
|
|
5624
|
+
for (var l = 0; l < this.view.q.count; l++) {
|
|
5625
|
+
var m = this.view.q._inner[l].c;
|
|
5626
|
+
igniteuiAngularCore.NativeUI.r(this.view.q._inner[l].d, m.l.f(this.da));
|
|
5467
5627
|
}
|
|
5468
|
-
for (var
|
|
5469
|
-
var
|
|
5470
|
-
igniteuiAngularCore.NativeUI.aa(this.view.
|
|
5628
|
+
for (var n = 0; n < this.view.r.count; n++) {
|
|
5629
|
+
var o = this.view.r._inner[n].c;
|
|
5630
|
+
igniteuiAngularCore.NativeUI.aa(this.view.r._inner[n].d, o.m.f(this.db));
|
|
5471
5631
|
}
|
|
5472
|
-
for (var
|
|
5473
|
-
var
|
|
5474
|
-
var
|
|
5475
|
-
var
|
|
5476
|
-
if (
|
|
5477
|
-
for (var
|
|
5478
|
-
var
|
|
5479
|
-
igniteuiAngularCore.NativeUI.r(this.view.
|
|
5632
|
+
for (var p = 0; p < this.view.d.o.count; p++) {
|
|
5633
|
+
var q = this.view.d.o._inner[p];
|
|
5634
|
+
var r = q.split('-');
|
|
5635
|
+
var s = parseInt(r[r.length - 1]);
|
|
5636
|
+
if (s < this.e.count) {
|
|
5637
|
+
for (var t = 0; t < this.view.d.q._inner[p].count; t++) {
|
|
5638
|
+
var u = this.view.d.q._inner[p]._inner[t].c;
|
|
5639
|
+
igniteuiAngularCore.NativeUI.r(this.view.d.q._inner[p]._inner[t].d, u.l.f(this.e.item(s)));
|
|
5480
5640
|
}
|
|
5481
5641
|
}
|
|
5482
5642
|
}
|
|
5483
|
-
for (var
|
|
5484
|
-
var
|
|
5485
|
-
var
|
|
5486
|
-
var
|
|
5487
|
-
if (
|
|
5488
|
-
for (var
|
|
5489
|
-
var
|
|
5490
|
-
igniteuiAngularCore.NativeUI.aa(this.view.
|
|
5643
|
+
for (var v = 0; v < this.view.e.o.count; v++) {
|
|
5644
|
+
var w = this.view.e.o._inner[v];
|
|
5645
|
+
var x = w.split('-');
|
|
5646
|
+
var y = parseInt(x[x.length - 1]);
|
|
5647
|
+
if (y < this.f.count) {
|
|
5648
|
+
for (var z = 0; z < this.view.e.q._inner[v].count; z++) {
|
|
5649
|
+
var aa = this.view.e.q._inner[v]._inner[z].c;
|
|
5650
|
+
igniteuiAngularCore.NativeUI.aa(this.view.e.q._inner[v]._inner[z].d, aa.m.f(this.f.item(y)));
|
|
5491
5651
|
}
|
|
5492
5652
|
}
|
|
5493
5653
|
}
|
|
5494
|
-
for (var
|
|
5495
|
-
var
|
|
5496
|
-
igniteuiAngularCore.NativeUI.r(this.view.
|
|
5497
|
-
igniteuiAngularCore.NativeUI.aa(this.view.
|
|
5654
|
+
for (var ab = 0; ab < this.view.n.count; ab++) {
|
|
5655
|
+
var ac = this.view.n._inner[ab].c;
|
|
5656
|
+
igniteuiAngularCore.NativeUI.r(this.view.n._inner[ab].d, ac.l.f(this.cw));
|
|
5657
|
+
igniteuiAngularCore.NativeUI.aa(this.view.n._inner[ab].d, ac.m.f(this.cx));
|
|
5498
5658
|
}
|
|
5499
5659
|
}
|
|
5500
|
-
var
|
|
5501
|
-
if (this.
|
|
5502
|
-
igniteuiAngularCore.NativeUI.r(
|
|
5660
|
+
var ad = this.view.w;
|
|
5661
|
+
if (this.cw != null) {
|
|
5662
|
+
igniteuiAngularCore.NativeUI.r(ad, this.cw);
|
|
5503
5663
|
}
|
|
5504
|
-
if (this.
|
|
5505
|
-
igniteuiAngularCore.NativeUI.aa(
|
|
5664
|
+
if (this.cx != null) {
|
|
5665
|
+
igniteuiAngularCore.NativeUI.aa(ad, this.cx);
|
|
5506
5666
|
}
|
|
5507
|
-
if (!igniteuiAngularCore.isNaN_(this.
|
|
5508
|
-
igniteuiAngularCore.NativeUI.ad(
|
|
5667
|
+
if (!igniteuiAngularCore.isNaN_(this.af)) {
|
|
5668
|
+
igniteuiAngularCore.NativeUI.ad(ad, this.af);
|
|
5509
5669
|
}
|
|
5510
5670
|
}
|
|
5511
|
-
if (this.
|
|
5512
|
-
this.view.
|
|
5671
|
+
if (this.m != null) {
|
|
5672
|
+
this.view.aq(this.m);
|
|
5673
|
+
}
|
|
5674
|
+
if (this.cy != null) {
|
|
5675
|
+
igniteuiAngularCore.NativeUI.q(this.view.w, this.cy);
|
|
5676
|
+
}
|
|
5677
|
+
};
|
|
5678
|
+
XIcon.prototype.cd = function () {
|
|
5679
|
+
var e_3, _a, e_4, _b;
|
|
5680
|
+
if (this.cw != null) {
|
|
5681
|
+
this.view.ai(this.cw, "fill");
|
|
5513
5682
|
}
|
|
5514
|
-
if (this.
|
|
5515
|
-
|
|
5683
|
+
if (this.cx != null) {
|
|
5684
|
+
this.view.ai(this.cx, "stroke");
|
|
5685
|
+
}
|
|
5686
|
+
if (this.e != null) {
|
|
5687
|
+
try {
|
|
5688
|
+
for (var _c = tslib.__values(igniteuiAngularCore.fromEnum(this.e)), _d = _c.next(); !_d.done; _d = _c.next()) {
|
|
5689
|
+
var a = _d.value;
|
|
5690
|
+
this.view.ai(a, "fills");
|
|
5691
|
+
}
|
|
5692
|
+
}
|
|
5693
|
+
catch (e_3_1) {
|
|
5694
|
+
e_3 = { error: e_3_1 };
|
|
5695
|
+
}
|
|
5696
|
+
finally {
|
|
5697
|
+
try {
|
|
5698
|
+
if (_d && !_d.done && (_a = _c.return))
|
|
5699
|
+
_a.call(_c);
|
|
5700
|
+
}
|
|
5701
|
+
finally {
|
|
5702
|
+
if (e_3)
|
|
5703
|
+
throw e_3.error;
|
|
5704
|
+
}
|
|
5705
|
+
}
|
|
5706
|
+
}
|
|
5707
|
+
if (this.f != null) {
|
|
5708
|
+
try {
|
|
5709
|
+
for (var _e = tslib.__values(igniteuiAngularCore.fromEnum(this.f)), _f = _e.next(); !_f.done; _f = _e.next()) {
|
|
5710
|
+
var b = _f.value;
|
|
5711
|
+
this.view.ai(b, "strokes");
|
|
5712
|
+
}
|
|
5713
|
+
}
|
|
5714
|
+
catch (e_4_1) {
|
|
5715
|
+
e_4 = { error: e_4_1 };
|
|
5716
|
+
}
|
|
5717
|
+
finally {
|
|
5718
|
+
try {
|
|
5719
|
+
if (_f && !_f.done && (_b = _e.return))
|
|
5720
|
+
_b.call(_e);
|
|
5721
|
+
}
|
|
5722
|
+
finally {
|
|
5723
|
+
if (e_4)
|
|
5724
|
+
throw e_4.error;
|
|
5725
|
+
}
|
|
5726
|
+
}
|
|
5516
5727
|
}
|
|
5517
5728
|
};
|
|
5518
|
-
Object.defineProperty(XIcon.prototype, "
|
|
5729
|
+
Object.defineProperty(XIcon.prototype, "k", {
|
|
5519
5730
|
get: function () {
|
|
5520
|
-
return this.
|
|
5731
|
+
return this.j;
|
|
5521
5732
|
},
|
|
5522
5733
|
set: function (a) {
|
|
5523
|
-
var b = this.
|
|
5524
|
-
this.
|
|
5525
|
-
if (b != this.
|
|
5526
|
-
this.
|
|
5734
|
+
var b = this.j;
|
|
5735
|
+
this.j = a;
|
|
5736
|
+
if (b != this.j) {
|
|
5737
|
+
this.cb("BaseTheme", igniteuiAngularCore.enumGetBox(igniteuiAngularCore.BaseControlTheme_$type, b), igniteuiAngularCore.enumGetBox(igniteuiAngularCore.BaseControlTheme_$type, a));
|
|
5527
5738
|
}
|
|
5528
5739
|
},
|
|
5529
5740
|
enumerable: false,
|
|
5530
5741
|
configurable: true
|
|
5531
5742
|
});
|
|
5532
|
-
Object.defineProperty(XIcon.prototype, "
|
|
5743
|
+
Object.defineProperty(XIcon.prototype, "cw", {
|
|
5533
5744
|
get: function () {
|
|
5534
|
-
return this.
|
|
5745
|
+
return this.cj;
|
|
5535
5746
|
},
|
|
5536
5747
|
set: function (a) {
|
|
5537
|
-
var b = this.
|
|
5538
|
-
this.
|
|
5539
|
-
if (b != this.
|
|
5540
|
-
this.
|
|
5748
|
+
var b = this.cj;
|
|
5749
|
+
this.cj = a;
|
|
5750
|
+
if (b != this.cj) {
|
|
5751
|
+
this.cb("ActualFill", b, a);
|
|
5541
5752
|
}
|
|
5542
5753
|
},
|
|
5543
5754
|
enumerable: false,
|
|
5544
5755
|
configurable: true
|
|
5545
5756
|
});
|
|
5546
|
-
Object.defineProperty(XIcon.prototype, "
|
|
5757
|
+
Object.defineProperty(XIcon.prototype, "cx", {
|
|
5547
5758
|
get: function () {
|
|
5548
|
-
return this.
|
|
5759
|
+
return this.ck;
|
|
5549
5760
|
},
|
|
5550
5761
|
set: function (a) {
|
|
5551
|
-
var b = this.
|
|
5552
|
-
this.
|
|
5553
|
-
if (b != this.
|
|
5554
|
-
this.
|
|
5762
|
+
var b = this.ck;
|
|
5763
|
+
this.ck = a;
|
|
5764
|
+
if (b != this.ck) {
|
|
5765
|
+
this.cb("ActualStroke", b, a);
|
|
5555
5766
|
}
|
|
5556
5767
|
},
|
|
5557
5768
|
enumerable: false,
|
|
5558
5769
|
configurable: true
|
|
5559
5770
|
});
|
|
5560
|
-
Object.defineProperty(XIcon.prototype, "
|
|
5771
|
+
Object.defineProperty(XIcon.prototype, "cy", {
|
|
5561
5772
|
get: function () {
|
|
5562
|
-
return this.
|
|
5773
|
+
return this.cl;
|
|
5563
5774
|
},
|
|
5564
5775
|
set: function (a) {
|
|
5565
|
-
var b = this.
|
|
5566
|
-
this.
|
|
5567
|
-
if (b != this.
|
|
5568
|
-
this.
|
|
5776
|
+
var b = this.cl;
|
|
5777
|
+
this.cl = a;
|
|
5778
|
+
if (b != this.cl) {
|
|
5779
|
+
this.cb("ActualTextColor", b, a);
|
|
5569
5780
|
}
|
|
5570
5781
|
},
|
|
5571
5782
|
enumerable: false,
|
|
5572
5783
|
configurable: true
|
|
5573
5784
|
});
|
|
5574
|
-
Object.defineProperty(XIcon.prototype, "
|
|
5785
|
+
Object.defineProperty(XIcon.prototype, "af", {
|
|
5575
5786
|
get: function () {
|
|
5576
|
-
return this.
|
|
5787
|
+
return this.v;
|
|
5577
5788
|
},
|
|
5578
5789
|
set: function (a) {
|
|
5579
|
-
var b = this.
|
|
5580
|
-
this.
|
|
5581
|
-
if (b != this.
|
|
5582
|
-
this.
|
|
5790
|
+
var b = this.v;
|
|
5791
|
+
this.v = a;
|
|
5792
|
+
if (b != this.v) {
|
|
5793
|
+
this.cb("ActualStrokeWidth", b, a);
|
|
5583
5794
|
}
|
|
5584
5795
|
},
|
|
5585
5796
|
enumerable: false,
|
|
@@ -5587,201 +5798,201 @@
|
|
|
5587
5798
|
});
|
|
5588
5799
|
Object.defineProperty(XIcon.prototype, "fill", {
|
|
5589
5800
|
get: function () {
|
|
5590
|
-
return this.
|
|
5801
|
+
return this.cm;
|
|
5591
5802
|
},
|
|
5592
5803
|
set: function (a) {
|
|
5593
|
-
var b = this.
|
|
5594
|
-
this.
|
|
5595
|
-
if (b != this.
|
|
5596
|
-
this.
|
|
5804
|
+
var b = this.cm;
|
|
5805
|
+
this.cm = a;
|
|
5806
|
+
if (b != this.cm) {
|
|
5807
|
+
this.cb("Fill", b, a);
|
|
5597
5808
|
}
|
|
5598
5809
|
},
|
|
5599
5810
|
enumerable: false,
|
|
5600
5811
|
configurable: true
|
|
5601
5812
|
});
|
|
5602
|
-
Object.defineProperty(XIcon.prototype, "
|
|
5813
|
+
Object.defineProperty(XIcon.prototype, "dc", {
|
|
5603
5814
|
get: function () {
|
|
5604
|
-
return this.
|
|
5815
|
+
return this.cu;
|
|
5605
5816
|
},
|
|
5606
5817
|
set: function (a) {
|
|
5607
|
-
var b = this.
|
|
5608
|
-
this.
|
|
5609
|
-
if (b != this.
|
|
5610
|
-
this.
|
|
5818
|
+
var b = this.cu;
|
|
5819
|
+
this.cu = a;
|
|
5820
|
+
if (b != this.cu) {
|
|
5821
|
+
this.cb("Stroke", b, a);
|
|
5611
5822
|
}
|
|
5612
5823
|
},
|
|
5613
5824
|
enumerable: false,
|
|
5614
5825
|
configurable: true
|
|
5615
5826
|
});
|
|
5616
|
-
Object.defineProperty(XIcon.prototype, "
|
|
5827
|
+
Object.defineProperty(XIcon.prototype, "al", {
|
|
5617
5828
|
get: function () {
|
|
5618
|
-
return this.
|
|
5829
|
+
return this.z;
|
|
5619
5830
|
},
|
|
5620
5831
|
set: function (a) {
|
|
5621
|
-
var b = this.
|
|
5622
|
-
this.
|
|
5623
|
-
if (b != this.
|
|
5624
|
-
this.
|
|
5832
|
+
var b = this.z;
|
|
5833
|
+
this.z = a;
|
|
5834
|
+
if (b != this.z) {
|
|
5835
|
+
this.cb("StrokeWidth", b, a);
|
|
5625
5836
|
}
|
|
5626
5837
|
},
|
|
5627
5838
|
enumerable: false,
|
|
5628
5839
|
configurable: true
|
|
5629
5840
|
});
|
|
5630
|
-
Object.defineProperty(XIcon.prototype, "
|
|
5841
|
+
Object.defineProperty(XIcon.prototype, "dd", {
|
|
5631
5842
|
get: function () {
|
|
5632
|
-
return this.
|
|
5843
|
+
return this.cv;
|
|
5633
5844
|
},
|
|
5634
5845
|
set: function (a) {
|
|
5635
|
-
var b = this.
|
|
5636
|
-
this.
|
|
5637
|
-
if (b != this.
|
|
5638
|
-
this.
|
|
5846
|
+
var b = this.cv;
|
|
5847
|
+
this.cv = a;
|
|
5848
|
+
if (b != this.cv) {
|
|
5849
|
+
this.cb("TextColor", b, a);
|
|
5639
5850
|
}
|
|
5640
5851
|
},
|
|
5641
5852
|
enumerable: false,
|
|
5642
5853
|
configurable: true
|
|
5643
5854
|
});
|
|
5644
|
-
Object.defineProperty(XIcon.prototype, "
|
|
5855
|
+
Object.defineProperty(XIcon.prototype, "c5", {
|
|
5645
5856
|
get: function () {
|
|
5646
|
-
return this.
|
|
5857
|
+
return this.cn;
|
|
5647
5858
|
},
|
|
5648
5859
|
set: function (a) {
|
|
5649
|
-
var b = this.
|
|
5650
|
-
this.
|
|
5651
|
-
if (b != this.
|
|
5652
|
-
this.
|
|
5860
|
+
var b = this.cn;
|
|
5861
|
+
this.cn = a;
|
|
5862
|
+
if (b != this.cn) {
|
|
5863
|
+
this.cb("HoverFill", b, a);
|
|
5653
5864
|
}
|
|
5654
5865
|
},
|
|
5655
5866
|
enumerable: false,
|
|
5656
5867
|
configurable: true
|
|
5657
5868
|
});
|
|
5658
|
-
Object.defineProperty(XIcon.prototype, "
|
|
5869
|
+
Object.defineProperty(XIcon.prototype, "c6", {
|
|
5659
5870
|
get: function () {
|
|
5660
|
-
return this.
|
|
5871
|
+
return this.co;
|
|
5661
5872
|
},
|
|
5662
5873
|
set: function (a) {
|
|
5663
|
-
var b = this.
|
|
5664
|
-
this.
|
|
5665
|
-
if (b != this.
|
|
5666
|
-
this.
|
|
5874
|
+
var b = this.co;
|
|
5875
|
+
this.co = a;
|
|
5876
|
+
if (b != this.co) {
|
|
5877
|
+
this.cb("HoverStroke", b, a);
|
|
5667
5878
|
}
|
|
5668
5879
|
},
|
|
5669
5880
|
enumerable: false,
|
|
5670
5881
|
configurable: true
|
|
5671
5882
|
});
|
|
5672
|
-
Object.defineProperty(XIcon.prototype, "
|
|
5883
|
+
Object.defineProperty(XIcon.prototype, "aj", {
|
|
5673
5884
|
get: function () {
|
|
5674
|
-
return this.
|
|
5885
|
+
return this.x;
|
|
5675
5886
|
},
|
|
5676
5887
|
set: function (a) {
|
|
5677
|
-
var b = this.
|
|
5678
|
-
this.
|
|
5679
|
-
if (b != this.
|
|
5680
|
-
this.
|
|
5888
|
+
var b = this.x;
|
|
5889
|
+
this.x = a;
|
|
5890
|
+
if (b != this.x) {
|
|
5891
|
+
this.cb("HoverStrokeThickness", b, a);
|
|
5681
5892
|
}
|
|
5682
5893
|
},
|
|
5683
5894
|
enumerable: false,
|
|
5684
5895
|
configurable: true
|
|
5685
5896
|
});
|
|
5686
|
-
Object.defineProperty(XIcon.prototype, "
|
|
5897
|
+
Object.defineProperty(XIcon.prototype, "c7", {
|
|
5687
5898
|
get: function () {
|
|
5688
|
-
return this.
|
|
5899
|
+
return this.cp;
|
|
5689
5900
|
},
|
|
5690
5901
|
set: function (a) {
|
|
5691
|
-
var b = this.
|
|
5692
|
-
this.
|
|
5693
|
-
if (b != this.
|
|
5694
|
-
this.
|
|
5902
|
+
var b = this.cp;
|
|
5903
|
+
this.cp = a;
|
|
5904
|
+
if (b != this.cp) {
|
|
5905
|
+
this.cb("HoverTextColor", b, a);
|
|
5695
5906
|
}
|
|
5696
5907
|
},
|
|
5697
5908
|
enumerable: false,
|
|
5698
5909
|
configurable: true
|
|
5699
5910
|
});
|
|
5700
|
-
Object.defineProperty(XIcon.prototype, "
|
|
5911
|
+
Object.defineProperty(XIcon.prototype, "e", {
|
|
5701
5912
|
get: function () {
|
|
5702
|
-
return this.
|
|
5913
|
+
return this.c;
|
|
5703
5914
|
},
|
|
5704
5915
|
set: function (a) {
|
|
5705
|
-
var b = this.
|
|
5706
|
-
this.
|
|
5707
|
-
if (b != this.
|
|
5708
|
-
this.
|
|
5916
|
+
var b = this.c;
|
|
5917
|
+
this.c = a;
|
|
5918
|
+
if (b != this.c) {
|
|
5919
|
+
this.cb("FillColors", b, this.c);
|
|
5709
5920
|
}
|
|
5710
5921
|
},
|
|
5711
5922
|
enumerable: false,
|
|
5712
5923
|
configurable: true
|
|
5713
5924
|
});
|
|
5714
|
-
Object.defineProperty(XIcon.prototype, "
|
|
5925
|
+
Object.defineProperty(XIcon.prototype, "f", {
|
|
5715
5926
|
get: function () {
|
|
5716
|
-
return this.
|
|
5927
|
+
return this.d;
|
|
5717
5928
|
},
|
|
5718
5929
|
set: function (a) {
|
|
5719
|
-
var b = this.
|
|
5720
|
-
this.
|
|
5721
|
-
if (b != this.
|
|
5722
|
-
this.
|
|
5930
|
+
var b = this.d;
|
|
5931
|
+
this.d = a;
|
|
5932
|
+
if (b != this.d) {
|
|
5933
|
+
this.cb("StrokeColors", b, this.d);
|
|
5723
5934
|
}
|
|
5724
5935
|
},
|
|
5725
5936
|
enumerable: false,
|
|
5726
5937
|
configurable: true
|
|
5727
5938
|
});
|
|
5728
|
-
Object.defineProperty(XIcon.prototype, "
|
|
5939
|
+
Object.defineProperty(XIcon.prototype, "c8", {
|
|
5729
5940
|
get: function () {
|
|
5730
|
-
return this.
|
|
5941
|
+
return this.cq;
|
|
5731
5942
|
},
|
|
5732
5943
|
set: function (a) {
|
|
5733
|
-
var b = this.
|
|
5734
|
-
this.
|
|
5735
|
-
if (b != this.
|
|
5736
|
-
this.
|
|
5944
|
+
var b = this.cq;
|
|
5945
|
+
this.cq = a;
|
|
5946
|
+
if (b != this.cq) {
|
|
5947
|
+
this.cb("PrimaryFillColor", b, this.cq);
|
|
5737
5948
|
}
|
|
5738
5949
|
},
|
|
5739
5950
|
enumerable: false,
|
|
5740
5951
|
configurable: true
|
|
5741
5952
|
});
|
|
5742
|
-
Object.defineProperty(XIcon.prototype, "
|
|
5953
|
+
Object.defineProperty(XIcon.prototype, "c9", {
|
|
5743
5954
|
get: function () {
|
|
5744
|
-
return this.
|
|
5955
|
+
return this.cr;
|
|
5745
5956
|
},
|
|
5746
5957
|
set: function (a) {
|
|
5747
|
-
var b = this.
|
|
5748
|
-
this.
|
|
5749
|
-
if (b != this.
|
|
5750
|
-
this.
|
|
5958
|
+
var b = this.cr;
|
|
5959
|
+
this.cr = a;
|
|
5960
|
+
if (b != this.cr) {
|
|
5961
|
+
this.cb("PrimaryStrokeColor", b, this.cr);
|
|
5751
5962
|
}
|
|
5752
5963
|
},
|
|
5753
5964
|
enumerable: false,
|
|
5754
5965
|
configurable: true
|
|
5755
5966
|
});
|
|
5756
|
-
Object.defineProperty(XIcon.prototype, "
|
|
5967
|
+
Object.defineProperty(XIcon.prototype, "da", {
|
|
5757
5968
|
get: function () {
|
|
5758
|
-
return this.
|
|
5969
|
+
return this.cs;
|
|
5759
5970
|
},
|
|
5760
5971
|
set: function (a) {
|
|
5761
|
-
var b = this.
|
|
5762
|
-
this.
|
|
5763
|
-
if (b != this.
|
|
5764
|
-
this.
|
|
5972
|
+
var b = this.cs;
|
|
5973
|
+
this.cs = a;
|
|
5974
|
+
if (b != this.cs) {
|
|
5975
|
+
this.cb("SecondaryFillColor", b, this.cs);
|
|
5765
5976
|
}
|
|
5766
5977
|
},
|
|
5767
5978
|
enumerable: false,
|
|
5768
5979
|
configurable: true
|
|
5769
5980
|
});
|
|
5770
|
-
Object.defineProperty(XIcon.prototype, "
|
|
5981
|
+
Object.defineProperty(XIcon.prototype, "db", {
|
|
5771
5982
|
get: function () {
|
|
5772
|
-
return this.
|
|
5983
|
+
return this.ct;
|
|
5773
5984
|
},
|
|
5774
5985
|
set: function (a) {
|
|
5775
|
-
var b = this.
|
|
5776
|
-
this.
|
|
5777
|
-
if (b != this.
|
|
5778
|
-
this.
|
|
5986
|
+
var b = this.ct;
|
|
5987
|
+
this.ct = a;
|
|
5988
|
+
if (b != this.ct) {
|
|
5989
|
+
this.cb("SecondaryStrokeColor", b, this.ct);
|
|
5779
5990
|
}
|
|
5780
5991
|
},
|
|
5781
5992
|
enumerable: false,
|
|
5782
5993
|
configurable: true
|
|
5783
5994
|
});
|
|
5784
|
-
Object.defineProperty(XIcon.prototype, "
|
|
5995
|
+
Object.defineProperty(XIcon.prototype, "a7", {
|
|
5785
5996
|
get: function () {
|
|
5786
5997
|
return this.aw;
|
|
5787
5998
|
},
|
|
@@ -5789,7 +6000,21 @@
|
|
|
5789
6000
|
var b = this.aw;
|
|
5790
6001
|
this.aw = a;
|
|
5791
6002
|
if (b != this.aw) {
|
|
5792
|
-
this.
|
|
6003
|
+
this.cb("DataURL", b, a);
|
|
6004
|
+
}
|
|
6005
|
+
},
|
|
6006
|
+
enumerable: false,
|
|
6007
|
+
configurable: true
|
|
6008
|
+
});
|
|
6009
|
+
Object.defineProperty(XIcon.prototype, "svgPath", {
|
|
6010
|
+
get: function () {
|
|
6011
|
+
return this.az;
|
|
6012
|
+
},
|
|
6013
|
+
set: function (a) {
|
|
6014
|
+
var b = this.az;
|
|
6015
|
+
this.az = a;
|
|
6016
|
+
if (b != this.az) {
|
|
6017
|
+
this.cb("SVGPath", b, a);
|
|
5793
6018
|
}
|
|
5794
6019
|
},
|
|
5795
6020
|
enumerable: false,
|
|
@@ -5797,97 +6022,111 @@
|
|
|
5797
6022
|
});
|
|
5798
6023
|
Object.defineProperty(XIcon.prototype, "svg", {
|
|
5799
6024
|
get: function () {
|
|
5800
|
-
return this.
|
|
6025
|
+
return this.ay;
|
|
5801
6026
|
},
|
|
5802
6027
|
set: function (a) {
|
|
5803
|
-
var b = this.
|
|
5804
|
-
this.
|
|
5805
|
-
if (b != this.
|
|
5806
|
-
this.
|
|
6028
|
+
var b = this.ay;
|
|
6029
|
+
this.ay = a;
|
|
6030
|
+
if (b != this.ay) {
|
|
6031
|
+
this.cb("SVG", b, this.ay);
|
|
6032
|
+
}
|
|
6033
|
+
},
|
|
6034
|
+
enumerable: false,
|
|
6035
|
+
configurable: true
|
|
6036
|
+
});
|
|
6037
|
+
Object.defineProperty(XIcon.prototype, "b", {
|
|
6038
|
+
get: function () {
|
|
6039
|
+
return this.a;
|
|
6040
|
+
},
|
|
6041
|
+
set: function (a) {
|
|
6042
|
+
var b = this.a;
|
|
6043
|
+
this.a = a;
|
|
6044
|
+
if (b != this.a) {
|
|
6045
|
+
this.cb("SVGPaths", b, this.a);
|
|
5807
6046
|
}
|
|
5808
6047
|
},
|
|
5809
6048
|
enumerable: false,
|
|
5810
6049
|
configurable: true
|
|
5811
6050
|
});
|
|
5812
|
-
XIcon.prototype.
|
|
5813
|
-
this.
|
|
6051
|
+
XIcon.prototype.b9 = function () {
|
|
6052
|
+
this.t = true;
|
|
5814
6053
|
};
|
|
5815
|
-
XIcon.prototype.
|
|
5816
|
-
this.
|
|
6054
|
+
XIcon.prototype.ca = function () {
|
|
6055
|
+
this.t = false;
|
|
5817
6056
|
};
|
|
5818
|
-
Object.defineProperty(XIcon.prototype, "
|
|
6057
|
+
Object.defineProperty(XIcon.prototype, "m", {
|
|
5819
6058
|
get: function () {
|
|
5820
|
-
return this.
|
|
6059
|
+
return this.l;
|
|
5821
6060
|
},
|
|
5822
6061
|
set: function (a) {
|
|
5823
|
-
var b = this.
|
|
5824
|
-
this.
|
|
5825
|
-
if (b != this.
|
|
5826
|
-
this.
|
|
6062
|
+
var b = this.l;
|
|
6063
|
+
this.l = a;
|
|
6064
|
+
if (b != this.l) {
|
|
6065
|
+
this.cb("TextStyle", b, a);
|
|
5827
6066
|
}
|
|
5828
6067
|
},
|
|
5829
6068
|
enumerable: false,
|
|
5830
6069
|
configurable: true
|
|
5831
6070
|
});
|
|
5832
|
-
Object.defineProperty(XIcon.prototype, "
|
|
6071
|
+
Object.defineProperty(XIcon.prototype, "bh", {
|
|
5833
6072
|
get: function () {
|
|
5834
|
-
return this.
|
|
6073
|
+
return this.ax;
|
|
5835
6074
|
},
|
|
5836
6075
|
set: function (a) {
|
|
5837
|
-
var b = this.
|
|
5838
|
-
this.
|
|
5839
|
-
if (b != this.
|
|
5840
|
-
this.
|
|
6076
|
+
var b = this.ax;
|
|
6077
|
+
this.ax = a;
|
|
6078
|
+
if (b != this.ax) {
|
|
6079
|
+
this.cb("Id", b, a);
|
|
5841
6080
|
}
|
|
5842
6081
|
},
|
|
5843
6082
|
enumerable: false,
|
|
5844
6083
|
configurable: true
|
|
5845
6084
|
});
|
|
5846
|
-
Object.defineProperty(XIcon.prototype, "
|
|
6085
|
+
Object.defineProperty(XIcon.prototype, "q", {
|
|
5847
6086
|
get: function () {
|
|
5848
|
-
return this.
|
|
6087
|
+
return this.n;
|
|
5849
6088
|
},
|
|
5850
6089
|
enumerable: false,
|
|
5851
6090
|
configurable: true
|
|
5852
6091
|
});
|
|
5853
|
-
Object.defineProperty(XIcon.prototype, "
|
|
6092
|
+
Object.defineProperty(XIcon.prototype, "as", {
|
|
5854
6093
|
get: function () {
|
|
5855
|
-
return this.
|
|
6094
|
+
return this.ar;
|
|
5856
6095
|
},
|
|
5857
6096
|
set: function (a) {
|
|
5858
|
-
var b = this.
|
|
5859
|
-
this.
|
|
5860
|
-
this.
|
|
5861
|
-
if (b != this.
|
|
5862
|
-
this.
|
|
6097
|
+
var b = this.ar;
|
|
6098
|
+
this.ar = a;
|
|
6099
|
+
this.n = true;
|
|
6100
|
+
if (b != this.ar) {
|
|
6101
|
+
this.cb("TabIndex", b, a);
|
|
5863
6102
|
}
|
|
5864
6103
|
},
|
|
5865
6104
|
enumerable: false,
|
|
5866
6105
|
configurable: true
|
|
5867
6106
|
});
|
|
5868
|
-
Object.defineProperty(XIcon.prototype, "
|
|
6107
|
+
Object.defineProperty(XIcon.prototype, "a4", {
|
|
5869
6108
|
get: function () {
|
|
5870
|
-
return this.
|
|
6109
|
+
return this.av;
|
|
5871
6110
|
},
|
|
5872
6111
|
set: function (a) {
|
|
5873
|
-
var b = this.
|
|
5874
|
-
this.
|
|
5875
|
-
if (b != this.
|
|
5876
|
-
this.
|
|
6112
|
+
var b = this.av;
|
|
6113
|
+
this.av = a;
|
|
6114
|
+
if (b != this.av) {
|
|
6115
|
+
this.cb("AriaLabel", b, a);
|
|
5877
6116
|
}
|
|
5878
6117
|
},
|
|
5879
6118
|
enumerable: false,
|
|
5880
6119
|
configurable: true
|
|
5881
6120
|
});
|
|
5882
|
-
Object.defineProperty(XIcon.prototype, "
|
|
6121
|
+
Object.defineProperty(XIcon.prototype, "t", {
|
|
5883
6122
|
get: function () {
|
|
5884
|
-
return this.
|
|
6123
|
+
return this.p;
|
|
5885
6124
|
},
|
|
5886
6125
|
set: function (a) {
|
|
5887
|
-
var b = this.
|
|
5888
|
-
this.
|
|
5889
|
-
if (b != this.
|
|
5890
|
-
this.
|
|
6126
|
+
var b = this.p;
|
|
6127
|
+
this.p = a;
|
|
6128
|
+
if (b != this.p) {
|
|
6129
|
+
this.cb("IsHover", b, a);
|
|
5891
6130
|
}
|
|
5892
6131
|
},
|
|
5893
6132
|
enumerable: false,
|
|
@@ -5895,125 +6134,125 @@
|
|
|
5895
6134
|
});
|
|
5896
6135
|
Object.defineProperty(XIcon.prototype, "disabled", {
|
|
5897
6136
|
get: function () {
|
|
5898
|
-
return this.
|
|
6137
|
+
return this.o;
|
|
5899
6138
|
},
|
|
5900
6139
|
set: function (a) {
|
|
5901
|
-
var b = this.
|
|
5902
|
-
this.
|
|
5903
|
-
if (b != this.
|
|
5904
|
-
this.
|
|
6140
|
+
var b = this.o;
|
|
6141
|
+
this.o = a;
|
|
6142
|
+
if (b != this.o) {
|
|
6143
|
+
this.cb("IsDisabled", b, a);
|
|
5905
6144
|
}
|
|
5906
6145
|
},
|
|
5907
6146
|
enumerable: false,
|
|
5908
6147
|
configurable: true
|
|
5909
6148
|
});
|
|
5910
|
-
Object.defineProperty(XIcon.prototype, "
|
|
6149
|
+
Object.defineProperty(XIcon.prototype, "ak", {
|
|
5911
6150
|
get: function () {
|
|
5912
|
-
return this.
|
|
6151
|
+
return this.y;
|
|
5913
6152
|
},
|
|
5914
6153
|
set: function (a) {
|
|
5915
|
-
var b = this.
|
|
5916
|
-
this.
|
|
5917
|
-
if (b != this.
|
|
5918
|
-
this.
|
|
6154
|
+
var b = this.y;
|
|
6155
|
+
this.y = a;
|
|
6156
|
+
if (b != this.y) {
|
|
6157
|
+
this.cb("Opacity", b, this.y);
|
|
5919
6158
|
}
|
|
5920
6159
|
},
|
|
5921
6160
|
enumerable: false,
|
|
5922
6161
|
configurable: true
|
|
5923
6162
|
});
|
|
5924
|
-
Object.defineProperty(XIcon.prototype, "
|
|
6163
|
+
Object.defineProperty(XIcon.prototype, "an", {
|
|
5925
6164
|
get: function () {
|
|
5926
|
-
return this.
|
|
6165
|
+
return this.ab;
|
|
5927
6166
|
},
|
|
5928
6167
|
set: function (a) {
|
|
5929
|
-
var b = this.
|
|
5930
|
-
this.
|
|
5931
|
-
if (b != this.
|
|
5932
|
-
this.
|
|
6168
|
+
var b = this.ab;
|
|
6169
|
+
this.ab = a;
|
|
6170
|
+
if (b != this.ab) {
|
|
6171
|
+
this.cb("ViewBoxLeft", b, this.ab);
|
|
5933
6172
|
}
|
|
5934
6173
|
},
|
|
5935
6174
|
enumerable: false,
|
|
5936
6175
|
configurable: true
|
|
5937
6176
|
});
|
|
5938
|
-
Object.defineProperty(XIcon.prototype, "
|
|
6177
|
+
Object.defineProperty(XIcon.prototype, "ao", {
|
|
5939
6178
|
get: function () {
|
|
5940
|
-
return this.
|
|
6179
|
+
return this.ac;
|
|
5941
6180
|
},
|
|
5942
6181
|
set: function (a) {
|
|
5943
|
-
var b = this.
|
|
5944
|
-
this.
|
|
5945
|
-
if (b != this.
|
|
5946
|
-
this.
|
|
6182
|
+
var b = this.ac;
|
|
6183
|
+
this.ac = a;
|
|
6184
|
+
if (b != this.ac) {
|
|
6185
|
+
this.cb("ViewBoxTop", b, this.ac);
|
|
5947
6186
|
}
|
|
5948
6187
|
},
|
|
5949
6188
|
enumerable: false,
|
|
5950
6189
|
configurable: true
|
|
5951
6190
|
});
|
|
5952
|
-
Object.defineProperty(XIcon.prototype, "
|
|
6191
|
+
Object.defineProperty(XIcon.prototype, "ap", {
|
|
5953
6192
|
get: function () {
|
|
5954
|
-
return this.
|
|
6193
|
+
return this.ad;
|
|
5955
6194
|
},
|
|
5956
6195
|
set: function (a) {
|
|
5957
|
-
var b = this.
|
|
5958
|
-
this.
|
|
5959
|
-
if (b != this.
|
|
5960
|
-
this.
|
|
6196
|
+
var b = this.ad;
|
|
6197
|
+
this.ad = a;
|
|
6198
|
+
if (b != this.ad) {
|
|
6199
|
+
this.cb("ViewBoxWidth", b, this.ad);
|
|
5961
6200
|
}
|
|
5962
6201
|
},
|
|
5963
6202
|
enumerable: false,
|
|
5964
6203
|
configurable: true
|
|
5965
6204
|
});
|
|
5966
|
-
Object.defineProperty(XIcon.prototype, "
|
|
6205
|
+
Object.defineProperty(XIcon.prototype, "am", {
|
|
5967
6206
|
get: function () {
|
|
5968
|
-
return this.
|
|
6207
|
+
return this.aa;
|
|
5969
6208
|
},
|
|
5970
6209
|
set: function (a) {
|
|
5971
|
-
var b = this.
|
|
5972
|
-
this.
|
|
5973
|
-
if (b != this.
|
|
5974
|
-
this.
|
|
6210
|
+
var b = this.aa;
|
|
6211
|
+
this.aa = a;
|
|
6212
|
+
if (b != this.aa) {
|
|
6213
|
+
this.cb("ViewBoxHeight", b, this.aa);
|
|
5975
6214
|
}
|
|
5976
6215
|
},
|
|
5977
6216
|
enumerable: false,
|
|
5978
6217
|
configurable: true
|
|
5979
6218
|
});
|
|
5980
|
-
Object.defineProperty(XIcon.prototype, "
|
|
6219
|
+
Object.defineProperty(XIcon.prototype, "aq", {
|
|
5981
6220
|
get: function () {
|
|
5982
|
-
return this.
|
|
6221
|
+
return this.ae;
|
|
5983
6222
|
},
|
|
5984
6223
|
set: function (a) {
|
|
5985
|
-
var b = this.
|
|
5986
|
-
this.
|
|
5987
|
-
if (b != this.
|
|
5988
|
-
this.
|
|
6224
|
+
var b = this.ae;
|
|
6225
|
+
this.ae = a;
|
|
6226
|
+
if (b != this.ae) {
|
|
6227
|
+
this.cb("Width", b, this.ae);
|
|
5989
6228
|
}
|
|
5990
6229
|
},
|
|
5991
6230
|
enumerable: false,
|
|
5992
6231
|
configurable: true
|
|
5993
6232
|
});
|
|
5994
|
-
Object.defineProperty(XIcon.prototype, "
|
|
6233
|
+
Object.defineProperty(XIcon.prototype, "ai", {
|
|
5995
6234
|
get: function () {
|
|
5996
|
-
return this.
|
|
6235
|
+
return this.w;
|
|
5997
6236
|
},
|
|
5998
6237
|
set: function (a) {
|
|
5999
|
-
var b = this.
|
|
6000
|
-
this.
|
|
6001
|
-
if (b != this.
|
|
6002
|
-
this.
|
|
6238
|
+
var b = this.w;
|
|
6239
|
+
this.w = a;
|
|
6240
|
+
if (b != this.w) {
|
|
6241
|
+
this.cb("Height", b, this.w);
|
|
6003
6242
|
}
|
|
6004
6243
|
},
|
|
6005
6244
|
enumerable: false,
|
|
6006
6245
|
configurable: true
|
|
6007
6246
|
});
|
|
6008
|
-
XIcon.prototype.
|
|
6247
|
+
XIcon.prototype.cc = function () {
|
|
6009
6248
|
};
|
|
6010
6249
|
XIcon.prototype.onDetachedFromUI = function () {
|
|
6011
|
-
this.view.
|
|
6250
|
+
this.view.af();
|
|
6012
6251
|
};
|
|
6013
6252
|
XIcon.prototype.onAttachedToUI = function () {
|
|
6014
|
-
this.view.
|
|
6253
|
+
this.view.ac();
|
|
6015
6254
|
};
|
|
6016
|
-
XIcon.prototype.
|
|
6255
|
+
XIcon.prototype.b7 = function () {
|
|
6017
6256
|
if (this.disabled) {
|
|
6018
6257
|
return;
|
|
6019
6258
|
}
|
|
@@ -6021,72 +6260,73 @@
|
|
|
6021
6260
|
this.clicked(this, new IconClickedEventArgs());
|
|
6022
6261
|
}
|
|
6023
6262
|
};
|
|
6024
|
-
XIcon.prototype.
|
|
6025
|
-
return this.view.
|
|
6263
|
+
XIcon.prototype.u = function () {
|
|
6264
|
+
return this.view.i();
|
|
6026
6265
|
};
|
|
6027
|
-
XIcon.prototype.
|
|
6028
|
-
return this.
|
|
6266
|
+
XIcon.prototype.au = function () {
|
|
6267
|
+
return this.g();
|
|
6029
6268
|
};
|
|
6030
|
-
XIcon.prototype.
|
|
6031
|
-
var a = this.
|
|
6032
|
-
return a.
|
|
6269
|
+
XIcon.prototype.a9 = function () {
|
|
6270
|
+
var a = this.g();
|
|
6271
|
+
return a.k();
|
|
6033
6272
|
};
|
|
6034
|
-
XIcon.prototype.
|
|
6273
|
+
XIcon.prototype.g = function () {
|
|
6035
6274
|
var a = new IconVisualModelExport();
|
|
6036
|
-
var b = this.view.
|
|
6275
|
+
var b = this.view.w;
|
|
6037
6276
|
a.a = igniteuiAngularCore.AppearanceHelper.a(igniteuiAngularCore.NativeUI.al(b));
|
|
6038
6277
|
a.c = igniteuiAngularCore.AppearanceHelper.a(igniteuiAngularCore.NativeUI.al(b));
|
|
6039
6278
|
a.b = igniteuiAngularCore.AppearanceHelper.a(igniteuiAngularCore.NativeUI.am(b));
|
|
6040
|
-
a.d = this.
|
|
6279
|
+
a.d = this.af;
|
|
6041
6280
|
var c = this.view.a();
|
|
6042
6281
|
a.h = c[0];
|
|
6043
6282
|
a.f = c[1];
|
|
6044
6283
|
a.e = igniteuiAngularCore.NativeUI.d(b);
|
|
6045
6284
|
a.i = igniteuiAngularCore.NativeUI.k(b);
|
|
6046
6285
|
a.svgPath = this.svgPath;
|
|
6047
|
-
|
|
6048
|
-
|
|
6049
|
-
|
|
6050
|
-
|
|
6286
|
+
a.j = this.a7;
|
|
6287
|
+
if (this.m != null) {
|
|
6288
|
+
var d = this.m;
|
|
6289
|
+
if (this.view != null && d.q == null) {
|
|
6290
|
+
var e = this.view.s;
|
|
6051
6291
|
var f = igniteuiAngularCore.FontUtil.getFontInfoFromString(e, d.fontString);
|
|
6052
|
-
d.p = f.p;
|
|
6053
|
-
d.e = f.e;
|
|
6054
6292
|
d.q = f.q;
|
|
6055
|
-
d.
|
|
6293
|
+
d.f = f.f;
|
|
6294
|
+
d.r = f.r;
|
|
6056
6295
|
d.t = f.t;
|
|
6057
6296
|
d.u = f.u;
|
|
6297
|
+
d.v = f.v;
|
|
6058
6298
|
}
|
|
6059
|
-
if (d.
|
|
6060
|
-
a.
|
|
6299
|
+
if (d.q != null) {
|
|
6300
|
+
a.m = d.q;
|
|
6061
6301
|
}
|
|
6062
|
-
if (!igniteuiAngularCore.isNaN_(d.
|
|
6063
|
-
a.g = d.
|
|
6302
|
+
if (!igniteuiAngularCore.isNaN_(d.f)) {
|
|
6303
|
+
a.g = d.f;
|
|
6064
6304
|
}
|
|
6065
|
-
if (d.
|
|
6066
|
-
a.
|
|
6305
|
+
if (d.v != null) {
|
|
6306
|
+
a.q = d.v;
|
|
6067
6307
|
}
|
|
6068
|
-
if (d.
|
|
6069
|
-
a.
|
|
6308
|
+
if (d.t != null) {
|
|
6309
|
+
a.o = d.t;
|
|
6070
6310
|
}
|
|
6071
|
-
if (d.
|
|
6072
|
-
a.
|
|
6311
|
+
if (d.r != null) {
|
|
6312
|
+
a.n = d.t;
|
|
6073
6313
|
}
|
|
6074
6314
|
}
|
|
6075
6315
|
return a;
|
|
6076
6316
|
};
|
|
6077
6317
|
XIcon.prototype.provideContainer = function (a) {
|
|
6078
|
-
this.view.
|
|
6318
|
+
this.view.ae(a);
|
|
6079
6319
|
};
|
|
6080
6320
|
XIcon.$t = igniteuiAngularCore.markType(XIcon, 'XIcon', igniteuiAngularCore.Base.$, [igniteuiAngularCore.INotifyPropertyChanged_$type, igniteuiAngularCore.IIcon_$type]);
|
|
6081
|
-
XIcon.
|
|
6082
|
-
XIcon.
|
|
6083
|
-
XIcon.
|
|
6084
|
-
XIcon.
|
|
6085
|
-
XIcon.
|
|
6086
|
-
XIcon.
|
|
6087
|
-
XIcon.
|
|
6088
|
-
XIcon.
|
|
6089
|
-
XIcon.
|
|
6321
|
+
XIcon.cz = null;
|
|
6322
|
+
XIcon.c4 = null;
|
|
6323
|
+
XIcon.c3 = null;
|
|
6324
|
+
XIcon.c0 = null;
|
|
6325
|
+
XIcon.c1 = null;
|
|
6326
|
+
XIcon.c2 = null;
|
|
6327
|
+
XIcon.ah = NaN;
|
|
6328
|
+
XIcon.ag = NaN;
|
|
6329
|
+
XIcon.at = 0;
|
|
6090
6330
|
return XIcon;
|
|
6091
6331
|
}(igniteuiAngularCore.Base));
|
|
6092
6332
|
|
|
@@ -8691,7 +8931,9 @@
|
|
|
8691
8931
|
}
|
|
8692
8932
|
}
|
|
8693
8933
|
else {
|
|
8934
|
+
this.aj._inner[0].disabled = false;
|
|
8694
8935
|
this.aj._inner[2].disabled = false;
|
|
8936
|
+
this.aj._inner[3].disabled = false;
|
|
8695
8937
|
if (b == this.au.getFullYear()) {
|
|
8696
8938
|
if (c == igniteuiAngularCore.dateGetMonth(this.au)) {
|
|
8697
8939
|
this.aj._inner[0].disabled = true;
|
|
@@ -9158,30 +9400,30 @@
|
|
|
9158
9400
|
}
|
|
9159
9401
|
if (this.v != null) {
|
|
9160
9402
|
var w = this.v;
|
|
9161
|
-
if (this.h != null && w.
|
|
9403
|
+
if (this.h != null && w.q == null) {
|
|
9162
9404
|
var x = this.h.m;
|
|
9163
9405
|
var y = igniteuiAngularCore.FontUtil.getFontInfoFromString(x, w.fontString);
|
|
9164
|
-
w.p = y.p;
|
|
9165
|
-
w.e = y.e;
|
|
9166
9406
|
w.q = y.q;
|
|
9167
|
-
w.
|
|
9407
|
+
w.f = y.f;
|
|
9408
|
+
w.r = y.r;
|
|
9168
9409
|
w.t = y.t;
|
|
9169
9410
|
w.u = y.u;
|
|
9411
|
+
w.v = y.v;
|
|
9170
9412
|
}
|
|
9171
|
-
if (w.
|
|
9172
|
-
a.p = w.
|
|
9413
|
+
if (w.q != null) {
|
|
9414
|
+
a.p = w.q;
|
|
9173
9415
|
}
|
|
9174
|
-
if (!igniteuiAngularCore.isNaN_(w.
|
|
9175
|
-
a.m = w.
|
|
9416
|
+
if (!igniteuiAngularCore.isNaN_(w.f)) {
|
|
9417
|
+
a.m = w.f;
|
|
9176
9418
|
}
|
|
9177
|
-
if (w.
|
|
9178
|
-
a.t = w.
|
|
9419
|
+
if (w.v != null) {
|
|
9420
|
+
a.t = w.v;
|
|
9179
9421
|
}
|
|
9180
|
-
if (w.
|
|
9181
|
-
a.r = w.
|
|
9422
|
+
if (w.t != null) {
|
|
9423
|
+
a.r = w.t;
|
|
9182
9424
|
}
|
|
9183
|
-
if (w.
|
|
9184
|
-
a.q = w.
|
|
9425
|
+
if (w.r != null) {
|
|
9426
|
+
a.q = w.t;
|
|
9185
9427
|
}
|
|
9186
9428
|
}
|
|
9187
9429
|
return a;
|
|
@@ -13434,10 +13676,10 @@
|
|
|
13434
13676
|
* Gets or sets the base built in theme to use for the button.
|
|
13435
13677
|
*/
|
|
13436
13678
|
get: function () {
|
|
13437
|
-
return this.i.
|
|
13679
|
+
return this.i.k;
|
|
13438
13680
|
},
|
|
13439
13681
|
set: function (v) {
|
|
13440
|
-
this.i.
|
|
13682
|
+
this.i.k = igniteuiAngularCore.ensureEnum(igniteuiAngularCore.BaseControlTheme_$type, v);
|
|
13441
13683
|
},
|
|
13442
13684
|
enumerable: false,
|
|
13443
13685
|
configurable: true
|
|
@@ -13447,10 +13689,10 @@
|
|
|
13447
13689
|
* Gets the fill color currently used by the icon.
|
|
13448
13690
|
*/
|
|
13449
13691
|
get: function () {
|
|
13450
|
-
return igniteuiAngularCore.brushToString(this.i.
|
|
13692
|
+
return igniteuiAngularCore.brushToString(this.i.cw);
|
|
13451
13693
|
},
|
|
13452
13694
|
set: function (v) {
|
|
13453
|
-
this.i.
|
|
13695
|
+
this.i.cw = igniteuiAngularCore.stringToBrush(v);
|
|
13454
13696
|
},
|
|
13455
13697
|
enumerable: false,
|
|
13456
13698
|
configurable: true
|
|
@@ -13460,10 +13702,10 @@
|
|
|
13460
13702
|
* Gets the stroke color currently used by the icon.
|
|
13461
13703
|
*/
|
|
13462
13704
|
get: function () {
|
|
13463
|
-
return igniteuiAngularCore.brushToString(this.i.
|
|
13705
|
+
return igniteuiAngularCore.brushToString(this.i.cx);
|
|
13464
13706
|
},
|
|
13465
13707
|
set: function (v) {
|
|
13466
|
-
this.i.
|
|
13708
|
+
this.i.cx = igniteuiAngularCore.stringToBrush(v);
|
|
13467
13709
|
},
|
|
13468
13710
|
enumerable: false,
|
|
13469
13711
|
configurable: true
|
|
@@ -13473,10 +13715,10 @@
|
|
|
13473
13715
|
* Gets the text color currently used by the icon.
|
|
13474
13716
|
*/
|
|
13475
13717
|
get: function () {
|
|
13476
|
-
return igniteuiAngularCore.brushToString(this.i.
|
|
13718
|
+
return igniteuiAngularCore.brushToString(this.i.cy);
|
|
13477
13719
|
},
|
|
13478
13720
|
set: function (v) {
|
|
13479
|
-
this.i.
|
|
13721
|
+
this.i.cy = igniteuiAngularCore.stringToBrush(v);
|
|
13480
13722
|
},
|
|
13481
13723
|
enumerable: false,
|
|
13482
13724
|
configurable: true
|
|
@@ -13486,10 +13728,10 @@
|
|
|
13486
13728
|
* Gets the stroke width currently used by the icon.
|
|
13487
13729
|
*/
|
|
13488
13730
|
get: function () {
|
|
13489
|
-
return this.i.
|
|
13731
|
+
return this.i.af;
|
|
13490
13732
|
},
|
|
13491
13733
|
set: function (v) {
|
|
13492
|
-
this.i.
|
|
13734
|
+
this.i.af = +v;
|
|
13493
13735
|
},
|
|
13494
13736
|
enumerable: false,
|
|
13495
13737
|
configurable: true
|
|
@@ -13512,10 +13754,10 @@
|
|
|
13512
13754
|
* Gets or sets the stroke color to use for the icon.
|
|
13513
13755
|
*/
|
|
13514
13756
|
get: function () {
|
|
13515
|
-
return igniteuiAngularCore.brushToString(this.i.
|
|
13757
|
+
return igniteuiAngularCore.brushToString(this.i.dc);
|
|
13516
13758
|
},
|
|
13517
13759
|
set: function (v) {
|
|
13518
|
-
this.i.
|
|
13760
|
+
this.i.dc = igniteuiAngularCore.stringToBrush(v);
|
|
13519
13761
|
},
|
|
13520
13762
|
enumerable: false,
|
|
13521
13763
|
configurable: true
|
|
@@ -13525,10 +13767,10 @@
|
|
|
13525
13767
|
* Gets or sets the stroke thickness to use for the icon.
|
|
13526
13768
|
*/
|
|
13527
13769
|
get: function () {
|
|
13528
|
-
return this.i.
|
|
13770
|
+
return this.i.al;
|
|
13529
13771
|
},
|
|
13530
13772
|
set: function (v) {
|
|
13531
|
-
this.i.
|
|
13773
|
+
this.i.al = +v;
|
|
13532
13774
|
},
|
|
13533
13775
|
enumerable: false,
|
|
13534
13776
|
configurable: true
|
|
@@ -13538,10 +13780,10 @@
|
|
|
13538
13780
|
* Gets or sets the text color to use for the icon.
|
|
13539
13781
|
*/
|
|
13540
13782
|
get: function () {
|
|
13541
|
-
return igniteuiAngularCore.brushToString(this.i.
|
|
13783
|
+
return igniteuiAngularCore.brushToString(this.i.dd);
|
|
13542
13784
|
},
|
|
13543
13785
|
set: function (v) {
|
|
13544
|
-
this.i.
|
|
13786
|
+
this.i.dd = igniteuiAngularCore.stringToBrush(v);
|
|
13545
13787
|
},
|
|
13546
13788
|
enumerable: false,
|
|
13547
13789
|
configurable: true
|
|
@@ -13551,10 +13793,10 @@
|
|
|
13551
13793
|
* Gets or sets the fill color to use when the icon is hovered.
|
|
13552
13794
|
*/
|
|
13553
13795
|
get: function () {
|
|
13554
|
-
return igniteuiAngularCore.brushToString(this.i.
|
|
13796
|
+
return igniteuiAngularCore.brushToString(this.i.c5);
|
|
13555
13797
|
},
|
|
13556
13798
|
set: function (v) {
|
|
13557
|
-
this.i.
|
|
13799
|
+
this.i.c5 = igniteuiAngularCore.stringToBrush(v);
|
|
13558
13800
|
},
|
|
13559
13801
|
enumerable: false,
|
|
13560
13802
|
configurable: true
|
|
@@ -13564,10 +13806,10 @@
|
|
|
13564
13806
|
* Gets or sets the stroke color to use when the icon is hovered.
|
|
13565
13807
|
*/
|
|
13566
13808
|
get: function () {
|
|
13567
|
-
return igniteuiAngularCore.brushToString(this.i.
|
|
13809
|
+
return igniteuiAngularCore.brushToString(this.i.c6);
|
|
13568
13810
|
},
|
|
13569
13811
|
set: function (v) {
|
|
13570
|
-
this.i.
|
|
13812
|
+
this.i.c6 = igniteuiAngularCore.stringToBrush(v);
|
|
13571
13813
|
},
|
|
13572
13814
|
enumerable: false,
|
|
13573
13815
|
configurable: true
|
|
@@ -13577,10 +13819,10 @@
|
|
|
13577
13819
|
* Gets or sets the stroke thickness to use when the icon is hovered.
|
|
13578
13820
|
*/
|
|
13579
13821
|
get: function () {
|
|
13580
|
-
return this.i.
|
|
13822
|
+
return this.i.aj;
|
|
13581
13823
|
},
|
|
13582
13824
|
set: function (v) {
|
|
13583
|
-
this.i.
|
|
13825
|
+
this.i.aj = +v;
|
|
13584
13826
|
},
|
|
13585
13827
|
enumerable: false,
|
|
13586
13828
|
configurable: true
|
|
@@ -13590,10 +13832,10 @@
|
|
|
13590
13832
|
* Gets or sets the text color to use when the icon is hovered.
|
|
13591
13833
|
*/
|
|
13592
13834
|
get: function () {
|
|
13593
|
-
return igniteuiAngularCore.brushToString(this.i.
|
|
13835
|
+
return igniteuiAngularCore.brushToString(this.i.c7);
|
|
13594
13836
|
},
|
|
13595
13837
|
set: function (v) {
|
|
13596
|
-
this.i.
|
|
13838
|
+
this.i.c7 = igniteuiAngularCore.stringToBrush(v);
|
|
13597
13839
|
},
|
|
13598
13840
|
enumerable: false,
|
|
13599
13841
|
configurable: true
|
|
@@ -13606,10 +13848,10 @@
|
|
|
13606
13848
|
* class where # is a number from 0 to count - 1.
|
|
13607
13849
|
*/
|
|
13608
13850
|
get: function () {
|
|
13609
|
-
return igniteuiAngularCore.fromBrushCollection(this.i.
|
|
13851
|
+
return igniteuiAngularCore.fromBrushCollection(this.i.e);
|
|
13610
13852
|
},
|
|
13611
13853
|
set: function (v) {
|
|
13612
|
-
this.i.
|
|
13854
|
+
this.i.e = igniteuiAngularCore.toBrushCollection(v);
|
|
13613
13855
|
},
|
|
13614
13856
|
enumerable: false,
|
|
13615
13857
|
configurable: true
|
|
@@ -13622,10 +13864,10 @@
|
|
|
13622
13864
|
* class where # is a number from 0 to count - 1.
|
|
13623
13865
|
*/
|
|
13624
13866
|
get: function () {
|
|
13625
|
-
return igniteuiAngularCore.fromBrushCollection(this.i.
|
|
13867
|
+
return igniteuiAngularCore.fromBrushCollection(this.i.f);
|
|
13626
13868
|
},
|
|
13627
13869
|
set: function (v) {
|
|
13628
|
-
this.i.
|
|
13870
|
+
this.i.f = igniteuiAngularCore.toBrushCollection(v);
|
|
13629
13871
|
},
|
|
13630
13872
|
enumerable: false,
|
|
13631
13873
|
configurable: true
|
|
@@ -13639,10 +13881,10 @@
|
|
|
13639
13881
|
* class.
|
|
13640
13882
|
*/
|
|
13641
13883
|
get: function () {
|
|
13642
|
-
return igniteuiAngularCore.brushToString(this.i.
|
|
13884
|
+
return igniteuiAngularCore.brushToString(this.i.c8);
|
|
13643
13885
|
},
|
|
13644
13886
|
set: function (v) {
|
|
13645
|
-
this.i.
|
|
13887
|
+
this.i.c8 = igniteuiAngularCore.stringToBrush(v);
|
|
13646
13888
|
},
|
|
13647
13889
|
enumerable: false,
|
|
13648
13890
|
configurable: true
|
|
@@ -13656,10 +13898,10 @@
|
|
|
13656
13898
|
* class.
|
|
13657
13899
|
*/
|
|
13658
13900
|
get: function () {
|
|
13659
|
-
return igniteuiAngularCore.brushToString(this.i.
|
|
13901
|
+
return igniteuiAngularCore.brushToString(this.i.c9);
|
|
13660
13902
|
},
|
|
13661
13903
|
set: function (v) {
|
|
13662
|
-
this.i.
|
|
13904
|
+
this.i.c9 = igniteuiAngularCore.stringToBrush(v);
|
|
13663
13905
|
},
|
|
13664
13906
|
enumerable: false,
|
|
13665
13907
|
configurable: true
|
|
@@ -13673,10 +13915,10 @@
|
|
|
13673
13915
|
* class.
|
|
13674
13916
|
*/
|
|
13675
13917
|
get: function () {
|
|
13676
|
-
return igniteuiAngularCore.brushToString(this.i.
|
|
13918
|
+
return igniteuiAngularCore.brushToString(this.i.da);
|
|
13677
13919
|
},
|
|
13678
13920
|
set: function (v) {
|
|
13679
|
-
this.i.
|
|
13921
|
+
this.i.da = igniteuiAngularCore.stringToBrush(v);
|
|
13680
13922
|
},
|
|
13681
13923
|
enumerable: false,
|
|
13682
13924
|
configurable: true
|
|
@@ -13690,10 +13932,23 @@
|
|
|
13690
13932
|
* class.
|
|
13691
13933
|
*/
|
|
13692
13934
|
get: function () {
|
|
13693
|
-
return igniteuiAngularCore.brushToString(this.i.
|
|
13935
|
+
return igniteuiAngularCore.brushToString(this.i.db);
|
|
13936
|
+
},
|
|
13937
|
+
set: function (v) {
|
|
13938
|
+
this.i.db = igniteuiAngularCore.stringToBrush(v);
|
|
13939
|
+
},
|
|
13940
|
+
enumerable: false,
|
|
13941
|
+
configurable: true
|
|
13942
|
+
});
|
|
13943
|
+
Object.defineProperty(IgxXIconComponent.prototype, "dataURL", {
|
|
13944
|
+
/**
|
|
13945
|
+
* Gets or sets data url for the icon to use.
|
|
13946
|
+
*/
|
|
13947
|
+
get: function () {
|
|
13948
|
+
return this.i.a7;
|
|
13694
13949
|
},
|
|
13695
13950
|
set: function (v) {
|
|
13696
|
-
this.i.
|
|
13951
|
+
this.i.a7 = v;
|
|
13697
13952
|
},
|
|
13698
13953
|
enumerable: false,
|
|
13699
13954
|
configurable: true
|
|
@@ -13724,20 +13979,37 @@
|
|
|
13724
13979
|
enumerable: false,
|
|
13725
13980
|
configurable: true
|
|
13726
13981
|
});
|
|
13982
|
+
Object.defineProperty(IgxXIconComponent.prototype, "sVGPaths", {
|
|
13983
|
+
/**
|
|
13984
|
+
* Gets or sets an array of path data for the icon to use.
|
|
13985
|
+
*/
|
|
13986
|
+
get: function () {
|
|
13987
|
+
return this.i.b;
|
|
13988
|
+
},
|
|
13989
|
+
set: function (v) {
|
|
13990
|
+
if (v && !Array.isArray(v) && typeof (v) == "string") {
|
|
13991
|
+
var re = /\s*(?:,|\s|$)\s*/gm;
|
|
13992
|
+
v = v.split(re);
|
|
13993
|
+
}
|
|
13994
|
+
this.i.b = v;
|
|
13995
|
+
},
|
|
13996
|
+
enumerable: false,
|
|
13997
|
+
configurable: true
|
|
13998
|
+
});
|
|
13727
13999
|
Object.defineProperty(IgxXIconComponent.prototype, "textStyle", {
|
|
13728
14000
|
/**
|
|
13729
14001
|
* Gets or sets the use for the button.
|
|
13730
14002
|
*/
|
|
13731
14003
|
get: function () {
|
|
13732
|
-
if (this.i.
|
|
14004
|
+
if (this.i.m == null) {
|
|
13733
14005
|
return null;
|
|
13734
14006
|
}
|
|
13735
|
-
return this.i.
|
|
14007
|
+
return this.i.m.fontString;
|
|
13736
14008
|
},
|
|
13737
14009
|
set: function (v) {
|
|
13738
14010
|
var fi = new igniteuiAngularCore.FontInfo();
|
|
13739
14011
|
fi.fontString = v;
|
|
13740
|
-
this.i.
|
|
14012
|
+
this.i.m = fi;
|
|
13741
14013
|
},
|
|
13742
14014
|
enumerable: false,
|
|
13743
14015
|
configurable: true
|
|
@@ -13747,10 +14019,10 @@
|
|
|
13747
14019
|
* Gets or sets the id to use for the checkbox.
|
|
13748
14020
|
*/
|
|
13749
14021
|
get: function () {
|
|
13750
|
-
return this.i.
|
|
14022
|
+
return this.i.bh;
|
|
13751
14023
|
},
|
|
13752
14024
|
set: function (v) {
|
|
13753
|
-
this.i.
|
|
14025
|
+
this.i.bh = v;
|
|
13754
14026
|
},
|
|
13755
14027
|
enumerable: false,
|
|
13756
14028
|
configurable: true
|
|
@@ -13760,10 +14032,10 @@
|
|
|
13760
14032
|
* Gets or sets TabIndex to use for the checkbox.
|
|
13761
14033
|
*/
|
|
13762
14034
|
get: function () {
|
|
13763
|
-
return this.i.
|
|
14035
|
+
return this.i.as;
|
|
13764
14036
|
},
|
|
13765
14037
|
set: function (v) {
|
|
13766
|
-
this.i.
|
|
14038
|
+
this.i.as = +v;
|
|
13767
14039
|
},
|
|
13768
14040
|
enumerable: false,
|
|
13769
14041
|
configurable: true
|
|
@@ -13773,10 +14045,10 @@
|
|
|
13773
14045
|
* Gets or sets the value of the aria-label attribute.
|
|
13774
14046
|
*/
|
|
13775
14047
|
get: function () {
|
|
13776
|
-
return this.i.
|
|
14048
|
+
return this.i.a4;
|
|
13777
14049
|
},
|
|
13778
14050
|
set: function (v) {
|
|
13779
|
-
this.i.
|
|
14051
|
+
this.i.a4 = v;
|
|
13780
14052
|
},
|
|
13781
14053
|
enumerable: false,
|
|
13782
14054
|
configurable: true
|
|
@@ -13786,10 +14058,10 @@
|
|
|
13786
14058
|
* Gets or sets whether the icon is hovered.
|
|
13787
14059
|
*/
|
|
13788
14060
|
get: function () {
|
|
13789
|
-
return this.i.
|
|
14061
|
+
return this.i.t;
|
|
13790
14062
|
},
|
|
13791
14063
|
set: function (v) {
|
|
13792
|
-
this.i.
|
|
14064
|
+
this.i.t = igniteuiAngularCore.ensureBool(v);
|
|
13793
14065
|
},
|
|
13794
14066
|
enumerable: false,
|
|
13795
14067
|
configurable: true
|
|
@@ -13809,10 +14081,10 @@
|
|
|
13809
14081
|
});
|
|
13810
14082
|
Object.defineProperty(IgxXIconComponent.prototype, "opacity", {
|
|
13811
14083
|
get: function () {
|
|
13812
|
-
return this.i.
|
|
14084
|
+
return this.i.ak;
|
|
13813
14085
|
},
|
|
13814
14086
|
set: function (v) {
|
|
13815
|
-
this.i.
|
|
14087
|
+
this.i.ak = +v;
|
|
13816
14088
|
},
|
|
13817
14089
|
enumerable: false,
|
|
13818
14090
|
configurable: true
|
|
@@ -13822,10 +14094,10 @@
|
|
|
13822
14094
|
* Gets or sets the viewbox left for the svg icon.
|
|
13823
14095
|
*/
|
|
13824
14096
|
get: function () {
|
|
13825
|
-
return this.i.
|
|
14097
|
+
return this.i.an;
|
|
13826
14098
|
},
|
|
13827
14099
|
set: function (v) {
|
|
13828
|
-
this.i.
|
|
14100
|
+
this.i.an = +v;
|
|
13829
14101
|
},
|
|
13830
14102
|
enumerable: false,
|
|
13831
14103
|
configurable: true
|
|
@@ -13835,10 +14107,10 @@
|
|
|
13835
14107
|
* Gets or sets the viewbox top for the svg icon.
|
|
13836
14108
|
*/
|
|
13837
14109
|
get: function () {
|
|
13838
|
-
return this.i.
|
|
14110
|
+
return this.i.ao;
|
|
13839
14111
|
},
|
|
13840
14112
|
set: function (v) {
|
|
13841
|
-
this.i.
|
|
14113
|
+
this.i.ao = +v;
|
|
13842
14114
|
},
|
|
13843
14115
|
enumerable: false,
|
|
13844
14116
|
configurable: true
|
|
@@ -13848,10 +14120,10 @@
|
|
|
13848
14120
|
* Gets or sets the viewbox width for the svg icon.
|
|
13849
14121
|
*/
|
|
13850
14122
|
get: function () {
|
|
13851
|
-
return this.i.
|
|
14123
|
+
return this.i.ap;
|
|
13852
14124
|
},
|
|
13853
14125
|
set: function (v) {
|
|
13854
|
-
this.i.
|
|
14126
|
+
this.i.ap = +v;
|
|
13855
14127
|
},
|
|
13856
14128
|
enumerable: false,
|
|
13857
14129
|
configurable: true
|
|
@@ -13861,10 +14133,10 @@
|
|
|
13861
14133
|
* Gets or sets the viewbox height for the svg icon.
|
|
13862
14134
|
*/
|
|
13863
14135
|
get: function () {
|
|
13864
|
-
return this.i.
|
|
14136
|
+
return this.i.am;
|
|
13865
14137
|
},
|
|
13866
14138
|
set: function (v) {
|
|
13867
|
-
this.i.
|
|
14139
|
+
this.i.am = +v;
|
|
13868
14140
|
},
|
|
13869
14141
|
enumerable: false,
|
|
13870
14142
|
configurable: true
|
|
@@ -13874,10 +14146,10 @@
|
|
|
13874
14146
|
* Gets or sets the width of the icon.
|
|
13875
14147
|
*/
|
|
13876
14148
|
get: function () {
|
|
13877
|
-
return this.i.
|
|
14149
|
+
return this.i.aq;
|
|
13878
14150
|
},
|
|
13879
14151
|
set: function (v) {
|
|
13880
|
-
this.i.
|
|
14152
|
+
this.i.aq = +v;
|
|
13881
14153
|
},
|
|
13882
14154
|
enumerable: false,
|
|
13883
14155
|
configurable: true
|
|
@@ -13887,10 +14159,10 @@
|
|
|
13887
14159
|
* Gets or sets the height of the icon.
|
|
13888
14160
|
*/
|
|
13889
14161
|
get: function () {
|
|
13890
|
-
return this.i.
|
|
14162
|
+
return this.i.ai;
|
|
13891
14163
|
},
|
|
13892
14164
|
set: function (v) {
|
|
13893
|
-
this.i.
|
|
14165
|
+
this.i.ai = +v;
|
|
13894
14166
|
},
|
|
13895
14167
|
enumerable: false,
|
|
13896
14168
|
configurable: true
|
|
@@ -13971,7 +14243,7 @@
|
|
|
13971
14243
|
|
|
13972
14244
|
*/
|
|
13973
14245
|
IgxXIconComponent.prototype.exportVisualModel = function () {
|
|
13974
|
-
var iv = this.i.
|
|
14246
|
+
var iv = this.i.au();
|
|
13975
14247
|
return (iv);
|
|
13976
14248
|
};
|
|
13977
14249
|
/**
|
|
@@ -13979,7 +14251,7 @@
|
|
|
13979
14251
|
|
|
13980
14252
|
*/
|
|
13981
14253
|
IgxXIconComponent.prototype.exportSerializedVisualModel = function () {
|
|
13982
|
-
var iv = this.i.
|
|
14254
|
+
var iv = this.i.a9();
|
|
13983
14255
|
return (iv);
|
|
13984
14256
|
};
|
|
13985
14257
|
IgxXIconComponent.prototype._runInZone = function (act) {
|
|
@@ -13991,7 +14263,7 @@
|
|
|
13991
14263
|
}
|
|
13992
14264
|
};
|
|
13993
14265
|
IgxXIconComponent.ɵfac = i0["ɵɵngDeclareFactory"]({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxXIconComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.NgZone }, { token: i0.Injector }, { token: i0.ComponentFactoryResolver }], target: i0["ɵɵFactoryTarget"].Component });
|
|
13994
|
-
IgxXIconComponent.ɵcmp = i0["ɵɵngDeclareComponent"]({ minVersion: "12.0.0", version: "12.2.17", type: IgxXIconComponent, selector: "igx-x-icon", inputs: { baseTheme: "baseTheme", actualFill: "actualFill", actualStroke: "actualStroke", actualTextColor: "actualTextColor", actualStrokeWidth: "actualStrokeWidth", fill: "fill", stroke: "stroke", strokeWidth: "strokeWidth", textColor: "textColor", hoverFill: "hoverFill", hoverStroke: "hoverStroke", hoverStrokeThickness: "hoverStrokeThickness", hoverTextColor: "hoverTextColor", fillColors: "fillColors", strokeColors: "strokeColors", primaryFillColor: "primaryFillColor", primaryStrokeColor: "primaryStrokeColor", secondaryFillColor: "secondaryFillColor", secondaryStrokeColor: "secondaryStrokeColor", svgPath: "svgPath", svg: "svg", textStyle: "textStyle", id: "id", tabIndex: ["tabindex", "tabIndex"], ariaLabel: ["aria-label", "ariaLabel"], isHover: "isHover", disabled: "disabled", opacity: "opacity", viewBoxLeft: "viewBoxLeft", viewBoxTop: "viewBoxTop", viewBoxWidth: "viewBoxWidth", viewBoxHeight: "viewBoxHeight", width: "width", height: "height" }, host: { properties: { "attr.id": "this.id" }, classAttribute: "ig-x-icon igx-x-icon" }, providers: [], viewQueries: [{ propertyName: "_dynamicContent", first: true, predicate: ["dynamicContent"], descendants: true, read: i0.ViewContainerRef, static: true }, { propertyName: "_childTemplateRef", first: true, predicate: ["childContent"], descendants: true, read: i0.TemplateRef }], ngImport: i0, template: "<ng-template #childContent><ng-content></ng-content></ng-template>\n<ng-container #dynamicContent></ng-container>", isInline: true, styles: ["\n\t\t:host {\n\t\t\tdisplay: inline-block; \n vertical-align: middle; \n\t\t}\n\t"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
14266
|
+
IgxXIconComponent.ɵcmp = i0["ɵɵngDeclareComponent"]({ minVersion: "12.0.0", version: "12.2.17", type: IgxXIconComponent, selector: "igx-x-icon", inputs: { baseTheme: "baseTheme", actualFill: "actualFill", actualStroke: "actualStroke", actualTextColor: "actualTextColor", actualStrokeWidth: "actualStrokeWidth", fill: "fill", stroke: "stroke", strokeWidth: "strokeWidth", textColor: "textColor", hoverFill: "hoverFill", hoverStroke: "hoverStroke", hoverStrokeThickness: "hoverStrokeThickness", hoverTextColor: "hoverTextColor", fillColors: "fillColors", strokeColors: "strokeColors", primaryFillColor: "primaryFillColor", primaryStrokeColor: "primaryStrokeColor", secondaryFillColor: "secondaryFillColor", secondaryStrokeColor: "secondaryStrokeColor", dataURL: "dataURL", svgPath: "svgPath", svg: "svg", sVGPaths: "sVGPaths", textStyle: "textStyle", id: "id", tabIndex: ["tabindex", "tabIndex"], ariaLabel: ["aria-label", "ariaLabel"], isHover: "isHover", disabled: "disabled", opacity: "opacity", viewBoxLeft: "viewBoxLeft", viewBoxTop: "viewBoxTop", viewBoxWidth: "viewBoxWidth", viewBoxHeight: "viewBoxHeight", width: "width", height: "height" }, host: { properties: { "attr.id": "this.id" }, classAttribute: "ig-x-icon igx-x-icon" }, providers: [], viewQueries: [{ propertyName: "_dynamicContent", first: true, predicate: ["dynamicContent"], descendants: true, read: i0.ViewContainerRef, static: true }, { propertyName: "_childTemplateRef", first: true, predicate: ["childContent"], descendants: true, read: i0.TemplateRef }], ngImport: i0, template: "<ng-template #childContent><ng-content></ng-content></ng-template>\n<ng-container #dynamicContent></ng-container>", isInline: true, styles: ["\n\t\t:host {\n\t\t\tdisplay: inline-block; \n vertical-align: middle; \n\t\t}\n\t"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
13995
14267
|
return IgxXIconComponent;
|
|
13996
14268
|
}());
|
|
13997
14269
|
i0["ɵɵngDeclareClassMetadata"]({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxXIconComponent, decorators: [{
|
|
@@ -14048,10 +14320,14 @@
|
|
|
14048
14320
|
type: i0.Input
|
|
14049
14321
|
}], secondaryStrokeColor: [{
|
|
14050
14322
|
type: i0.Input
|
|
14323
|
+
}], dataURL: [{
|
|
14324
|
+
type: i0.Input
|
|
14051
14325
|
}], svgPath: [{
|
|
14052
14326
|
type: i0.Input
|
|
14053
14327
|
}], svg: [{
|
|
14054
14328
|
type: i0.Input
|
|
14329
|
+
}], sVGPaths: [{
|
|
14330
|
+
type: i0.Input
|
|
14055
14331
|
}], textStyle: [{
|
|
14056
14332
|
type: i0.Input
|
|
14057
14333
|
}], id: [{
|
|
@@ -20704,30 +20980,30 @@
|
|
|
20704
20980
|
a.p = this.e;
|
|
20705
20981
|
if (this.w != null) {
|
|
20706
20982
|
var c = this.w;
|
|
20707
|
-
if (this.view != null && c.
|
|
20983
|
+
if (this.view != null && c.q == null) {
|
|
20708
20984
|
var d = this.view.k;
|
|
20709
20985
|
var e = igniteuiAngularCore.FontUtil.getFontInfoFromString(d, c.fontString);
|
|
20710
|
-
c.p = e.p;
|
|
20711
|
-
c.e = e.e;
|
|
20712
20986
|
c.q = e.q;
|
|
20713
|
-
c.
|
|
20987
|
+
c.f = e.f;
|
|
20988
|
+
c.r = e.r;
|
|
20714
20989
|
c.t = e.t;
|
|
20715
20990
|
c.u = e.u;
|
|
20991
|
+
c.v = e.v;
|
|
20716
20992
|
}
|
|
20717
|
-
if (c.
|
|
20718
|
-
a.s = c.
|
|
20993
|
+
if (c.q != null) {
|
|
20994
|
+
a.s = c.q;
|
|
20719
20995
|
}
|
|
20720
|
-
if (!igniteuiAngularCore.isNaN_(c.
|
|
20721
|
-
a.k = c.
|
|
20996
|
+
if (!igniteuiAngularCore.isNaN_(c.f)) {
|
|
20997
|
+
a.k = c.f;
|
|
20722
20998
|
}
|
|
20723
|
-
if (c.
|
|
20724
|
-
a.w = c.
|
|
20999
|
+
if (c.v != null) {
|
|
21000
|
+
a.w = c.v;
|
|
20725
21001
|
}
|
|
20726
|
-
if (c.
|
|
20727
|
-
a.u = c.
|
|
21002
|
+
if (c.t != null) {
|
|
21003
|
+
a.u = c.t;
|
|
20728
21004
|
}
|
|
20729
|
-
if (c.
|
|
20730
|
-
a.t = c.
|
|
21005
|
+
if (c.r != null) {
|
|
21006
|
+
a.t = c.t;
|
|
20731
21007
|
}
|
|
20732
21008
|
}
|
|
20733
21009
|
return a;
|
|
@@ -20819,7 +21095,7 @@
|
|
|
20819
21095
|
_this.view = a;
|
|
20820
21096
|
_this.view.as();
|
|
20821
21097
|
XInput.ae = new igniteuiAngularCore.FontInfo();
|
|
20822
|
-
XInput.ae.
|
|
21098
|
+
XInput.ae.q = "Verdana";
|
|
20823
21099
|
return _this;
|
|
20824
21100
|
}
|
|
20825
21101
|
Object.defineProperty(XInput.prototype, "view", {
|
|
@@ -21492,30 +21768,30 @@
|
|
|
21492
21768
|
a.k = this.e;
|
|
21493
21769
|
if (this.ad != null) {
|
|
21494
21770
|
var c = this.ad;
|
|
21495
|
-
if (this.view != null && c.
|
|
21771
|
+
if (this.view != null && c.q == null) {
|
|
21496
21772
|
var d = this.view.l;
|
|
21497
21773
|
var e = igniteuiAngularCore.FontUtil.getFontInfoFromString(d, c.fontString);
|
|
21498
|
-
c.p = e.p;
|
|
21499
|
-
c.e = e.e;
|
|
21500
21774
|
c.q = e.q;
|
|
21501
|
-
c.
|
|
21775
|
+
c.f = e.f;
|
|
21776
|
+
c.r = e.r;
|
|
21502
21777
|
c.t = e.t;
|
|
21503
21778
|
c.u = e.u;
|
|
21779
|
+
c.v = e.v;
|
|
21504
21780
|
}
|
|
21505
|
-
if (c.
|
|
21506
|
-
a.o = c.
|
|
21781
|
+
if (c.q != null) {
|
|
21782
|
+
a.o = c.q;
|
|
21507
21783
|
}
|
|
21508
|
-
if (!igniteuiAngularCore.isNaN_(c.
|
|
21509
|
-
a.g = c.
|
|
21784
|
+
if (!igniteuiAngularCore.isNaN_(c.f)) {
|
|
21785
|
+
a.g = c.f;
|
|
21510
21786
|
}
|
|
21511
|
-
if (c.
|
|
21512
|
-
a.s = c.
|
|
21787
|
+
if (c.v != null) {
|
|
21788
|
+
a.s = c.v;
|
|
21513
21789
|
}
|
|
21514
|
-
if (c.
|
|
21515
|
-
a.q = c.
|
|
21790
|
+
if (c.t != null) {
|
|
21791
|
+
a.q = c.t;
|
|
21516
21792
|
}
|
|
21517
|
-
if (c.
|
|
21518
|
-
a.p = c.
|
|
21793
|
+
if (c.r != null) {
|
|
21794
|
+
a.p = c.t;
|
|
21519
21795
|
}
|
|
21520
21796
|
}
|
|
21521
21797
|
return a;
|
|
@@ -23699,30 +23975,30 @@
|
|
|
23699
23975
|
a.a = this.c.bj();
|
|
23700
23976
|
if (this.ad != null) {
|
|
23701
23977
|
var b = this.ad;
|
|
23702
|
-
if (this.h != null && b.
|
|
23978
|
+
if (this.h != null && b.q == null) {
|
|
23703
23979
|
var c = this.h.d;
|
|
23704
23980
|
var d = igniteuiAngularCore.FontUtil.getFontInfoFromString(c, b.fontString);
|
|
23705
|
-
b.p = d.p;
|
|
23706
|
-
b.e = d.e;
|
|
23707
23981
|
b.q = d.q;
|
|
23708
|
-
b.
|
|
23982
|
+
b.f = d.f;
|
|
23983
|
+
b.r = d.r;
|
|
23709
23984
|
b.t = d.t;
|
|
23710
23985
|
b.u = d.u;
|
|
23986
|
+
b.v = d.v;
|
|
23711
23987
|
}
|
|
23712
|
-
if (b.
|
|
23713
|
-
a.h = b.
|
|
23988
|
+
if (b.q != null) {
|
|
23989
|
+
a.h = b.q;
|
|
23714
23990
|
}
|
|
23715
|
-
if (!igniteuiAngularCore.isNaN_(b.
|
|
23716
|
-
a.f = b.
|
|
23991
|
+
if (!igniteuiAngularCore.isNaN_(b.f)) {
|
|
23992
|
+
a.f = b.f;
|
|
23717
23993
|
}
|
|
23718
|
-
if (b.
|
|
23719
|
-
a.l = b.
|
|
23994
|
+
if (b.v != null) {
|
|
23995
|
+
a.l = b.v;
|
|
23720
23996
|
}
|
|
23721
|
-
if (b.
|
|
23722
|
-
a.j = b.
|
|
23997
|
+
if (b.t != null) {
|
|
23998
|
+
a.j = b.t;
|
|
23723
23999
|
}
|
|
23724
|
-
if (b.
|
|
23725
|
-
a.i = b.
|
|
24000
|
+
if (b.r != null) {
|
|
24001
|
+
a.i = b.t;
|
|
23726
24002
|
}
|
|
23727
24003
|
}
|
|
23728
24004
|
return a;
|
|
@@ -29173,12 +29449,12 @@
|
|
|
29173
29449
|
_this.p = null;
|
|
29174
29450
|
return _this;
|
|
29175
29451
|
}
|
|
29176
|
-
CheckboxView.prototype.
|
|
29452
|
+
CheckboxView.prototype.af = function () {
|
|
29177
29453
|
};
|
|
29178
29454
|
CheckboxView.prototype.i = function () {
|
|
29179
29455
|
return true;
|
|
29180
29456
|
};
|
|
29181
|
-
CheckboxView.prototype.
|
|
29457
|
+
CheckboxView.prototype.ad = function (a) {
|
|
29182
29458
|
var e_1, _a;
|
|
29183
29459
|
if (a == null) {
|
|
29184
29460
|
try {
|
|
@@ -29225,11 +29501,11 @@
|
|
|
29225
29501
|
this.r.setStyleProperty("appearance", "none");
|
|
29226
29502
|
this.r.setAttribute("type", "checkbox");
|
|
29227
29503
|
this.r.setAttribute("id", this.c.b1);
|
|
29228
|
-
this.
|
|
29229
|
-
this.j.add(c.listen("change", igniteuiAngularCore.runOn(this, this.
|
|
29230
|
-
this.j.add(c.listen("click", igniteuiAngularCore.runOn(this, this.
|
|
29231
|
-
this.j.add(c.listen("focus", igniteuiAngularCore.runOn(this, this.
|
|
29232
|
-
this.j.add(c.listen("blur", igniteuiAngularCore.runOn(this, this.
|
|
29504
|
+
this.aj();
|
|
29505
|
+
this.j.add(c.listen("change", igniteuiAngularCore.runOn(this, this.x)));
|
|
29506
|
+
this.j.add(c.listen("click", igniteuiAngularCore.runOn(this, this.y)));
|
|
29507
|
+
this.j.add(c.listen("focus", igniteuiAngularCore.runOn(this, this.z)));
|
|
29508
|
+
this.j.add(c.listen("blur", igniteuiAngularCore.runOn(this, this.w)));
|
|
29233
29509
|
this.l.append(c);
|
|
29234
29510
|
var d = this.l.createElement("div");
|
|
29235
29511
|
d.addClass("ig-checkbox-box");
|
|
@@ -29313,16 +29589,16 @@
|
|
|
29313
29589
|
l.setStyleProperty("cursor", "pointer");
|
|
29314
29590
|
l.setStyleProperty("role", "label");
|
|
29315
29591
|
this.p = l;
|
|
29316
|
-
this.j.add(l.listen("click", igniteuiAngularCore.runOn(this, this.
|
|
29592
|
+
this.j.add(l.listen("click", igniteuiAngularCore.runOn(this, this.v)));
|
|
29317
29593
|
this.l.append(l);
|
|
29318
29594
|
this.l.getPortal(l, "ChildContent", function (m) {
|
|
29319
29595
|
}, true);
|
|
29320
29596
|
this.c.cp();
|
|
29321
29597
|
};
|
|
29322
|
-
CheckboxView.prototype.
|
|
29598
|
+
CheckboxView.prototype.v = function (a) {
|
|
29323
29599
|
this.c.toggle();
|
|
29324
29600
|
};
|
|
29325
|
-
CheckboxView.prototype.
|
|
29601
|
+
CheckboxView.prototype.aj = function () {
|
|
29326
29602
|
if (this.i()) {
|
|
29327
29603
|
var a = this.c.b1;
|
|
29328
29604
|
this.r.setAttribute("name", this.c.ca);
|
|
@@ -29344,26 +29620,26 @@
|
|
|
29344
29620
|
this.r.setAttribute("aria-label", this.c.bm);
|
|
29345
29621
|
}
|
|
29346
29622
|
};
|
|
29347
|
-
CheckboxView.prototype.
|
|
29623
|
+
CheckboxView.prototype.al = function () {
|
|
29348
29624
|
return new igniteuiAngularCore.Size(1, this.q.width(), this.q.height());
|
|
29349
29625
|
};
|
|
29350
|
-
CheckboxView.prototype.
|
|
29626
|
+
CheckboxView.prototype.ai = function () {
|
|
29351
29627
|
this.n.setAttribute("d", this.c.bf);
|
|
29352
29628
|
};
|
|
29353
|
-
CheckboxView.prototype.
|
|
29629
|
+
CheckboxView.prototype.ag = function () {
|
|
29354
29630
|
if (this.i()) {
|
|
29355
29631
|
var a = this.c.b1;
|
|
29356
29632
|
this.r.setAttribute("id", a);
|
|
29357
29633
|
this.q.setAttribute("for", a);
|
|
29358
29634
|
}
|
|
29359
29635
|
};
|
|
29360
|
-
CheckboxView.prototype.
|
|
29636
|
+
CheckboxView.prototype.w = function (a) {
|
|
29361
29637
|
this.c.focused = false;
|
|
29362
29638
|
};
|
|
29363
|
-
CheckboxView.prototype.
|
|
29639
|
+
CheckboxView.prototype.z = function (a) {
|
|
29364
29640
|
this.c.focused = true;
|
|
29365
29641
|
};
|
|
29366
|
-
CheckboxView.prototype.
|
|
29642
|
+
CheckboxView.prototype.y = function (a) {
|
|
29367
29643
|
a.stopPropagation();
|
|
29368
29644
|
if (this.h()) {
|
|
29369
29645
|
var native_ = this.r.getNativeElement();
|
|
@@ -29374,10 +29650,10 @@
|
|
|
29374
29650
|
CheckboxView.prototype.h = function () {
|
|
29375
29651
|
return false;
|
|
29376
29652
|
};
|
|
29377
|
-
CheckboxView.prototype.
|
|
29653
|
+
CheckboxView.prototype.x = function (a) {
|
|
29378
29654
|
a.stopPropagation();
|
|
29379
29655
|
};
|
|
29380
|
-
CheckboxView.prototype.
|
|
29656
|
+
CheckboxView.prototype.aa = function () {
|
|
29381
29657
|
if (igniteuiAngularCore.KeyFrameAnimationFactory.h == null) {
|
|
29382
29658
|
igniteuiAngularCore.KeyFrameAnimationFactory.h = this.l;
|
|
29383
29659
|
}
|
|
@@ -29388,8 +29664,15 @@
|
|
|
29388
29664
|
CheckboxView.prototype.b = function (a) {
|
|
29389
29665
|
return new igniteuiAngularCore.AnimationKeyFrameEffect(0, this.o, 0, null, a);
|
|
29390
29666
|
};
|
|
29391
|
-
CheckboxView.prototype.
|
|
29667
|
+
CheckboxView.prototype.ab = function (a) {
|
|
29392
29668
|
};
|
|
29669
|
+
Object.defineProperty(CheckboxView.prototype, "t", {
|
|
29670
|
+
get: function () {
|
|
29671
|
+
return this.q;
|
|
29672
|
+
},
|
|
29673
|
+
enumerable: false,
|
|
29674
|
+
configurable: true
|
|
29675
|
+
});
|
|
29393
29676
|
Object.defineProperty(CheckboxView.prototype, "s", {
|
|
29394
29677
|
get: function () {
|
|
29395
29678
|
return this.q;
|
|
@@ -29404,22 +29687,22 @@
|
|
|
29404
29687
|
enumerable: false,
|
|
29405
29688
|
configurable: true
|
|
29406
29689
|
});
|
|
29407
|
-
Object.defineProperty(CheckboxView.prototype, "
|
|
29690
|
+
Object.defineProperty(CheckboxView.prototype, "u", {
|
|
29408
29691
|
get: function () {
|
|
29409
29692
|
return this.o;
|
|
29410
29693
|
},
|
|
29411
29694
|
enumerable: false,
|
|
29412
29695
|
configurable: true
|
|
29413
29696
|
});
|
|
29414
|
-
CheckboxView.prototype.
|
|
29697
|
+
CheckboxView.prototype.ac = function () {
|
|
29415
29698
|
this.g = true;
|
|
29416
|
-
this.j.add(this.r.listen("change", igniteuiAngularCore.runOn(this, this.
|
|
29417
|
-
this.j.add(this.r.listen("click", igniteuiAngularCore.runOn(this, this.
|
|
29418
|
-
this.j.add(this.r.listen("focus", igniteuiAngularCore.runOn(this, this.
|
|
29419
|
-
this.j.add(this.r.listen("blur", igniteuiAngularCore.runOn(this, this.
|
|
29420
|
-
this.j.add(this.p.listen("click", igniteuiAngularCore.runOn(this, this.
|
|
29699
|
+
this.j.add(this.r.listen("change", igniteuiAngularCore.runOn(this, this.x)));
|
|
29700
|
+
this.j.add(this.r.listen("click", igniteuiAngularCore.runOn(this, this.y)));
|
|
29701
|
+
this.j.add(this.r.listen("focus", igniteuiAngularCore.runOn(this, this.z)));
|
|
29702
|
+
this.j.add(this.r.listen("blur", igniteuiAngularCore.runOn(this, this.w)));
|
|
29703
|
+
this.j.add(this.p.listen("click", igniteuiAngularCore.runOn(this, this.v)));
|
|
29421
29704
|
};
|
|
29422
|
-
CheckboxView.prototype.
|
|
29705
|
+
CheckboxView.prototype.ae = function () {
|
|
29423
29706
|
var e_2, _a;
|
|
29424
29707
|
this.g = false;
|
|
29425
29708
|
try {
|
|
@@ -29443,14 +29726,14 @@
|
|
|
29443
29726
|
}
|
|
29444
29727
|
this.j.clear();
|
|
29445
29728
|
};
|
|
29446
|
-
CheckboxView.prototype.
|
|
29729
|
+
CheckboxView.prototype.ah = function () {
|
|
29447
29730
|
var model_ = this.c;
|
|
29448
29731
|
if (model_.externalObject && model_.externalObject.refreshDefaults) {
|
|
29449
29732
|
model_.externalObject.refreshDefaults();
|
|
29450
29733
|
}
|
|
29451
29734
|
;
|
|
29452
29735
|
};
|
|
29453
|
-
CheckboxView.prototype.
|
|
29736
|
+
CheckboxView.prototype.ak = function (a, b) {
|
|
29454
29737
|
this.d.ax = a;
|
|
29455
29738
|
this.d.aw = b;
|
|
29456
29739
|
};
|
|
@@ -29525,7 +29808,7 @@
|
|
|
29525
29808
|
var a = new CheckboxView();
|
|
29526
29809
|
a.c = _this;
|
|
29527
29810
|
_this.view = a;
|
|
29528
|
-
_this.view.
|
|
29811
|
+
_this.view.af();
|
|
29529
29812
|
return _this;
|
|
29530
29813
|
}
|
|
29531
29814
|
Object.defineProperty(XCheckbox.prototype, "view", {
|
|
@@ -29629,7 +29912,7 @@
|
|
|
29629
29912
|
this.ct();
|
|
29630
29913
|
break;
|
|
29631
29914
|
case "ActualCheckPath":
|
|
29632
|
-
this.view.
|
|
29915
|
+
this.view.ai();
|
|
29633
29916
|
break;
|
|
29634
29917
|
case "IsChecked":
|
|
29635
29918
|
if (!this.s) {
|
|
@@ -29652,30 +29935,32 @@
|
|
|
29652
29935
|
this.view.e.i = this.y;
|
|
29653
29936
|
break;
|
|
29654
29937
|
case "InputId":
|
|
29655
|
-
this.view.
|
|
29938
|
+
this.view.ag();
|
|
29656
29939
|
break;
|
|
29657
29940
|
}
|
|
29658
29941
|
};
|
|
29659
29942
|
XCheckbox.prototype.ct = function () {
|
|
29660
|
-
var a = this.view.
|
|
29661
|
-
|
|
29943
|
+
var a = this.view.t;
|
|
29944
|
+
var b = this.view.s;
|
|
29945
|
+
if (a == null || b == null) {
|
|
29662
29946
|
return;
|
|
29663
29947
|
}
|
|
29664
29948
|
igniteuiAngularCore.NativeUI.o(a, new igniteuiAngularCore.CornerRadius(0, this.ao));
|
|
29949
|
+
igniteuiAngularCore.NativeUI.o(b, new igniteuiAngularCore.CornerRadius(0, this.ao));
|
|
29665
29950
|
if (!igniteuiAngularCore.isNaN_(this.an)) {
|
|
29666
|
-
igniteuiAngularCore.NativeUI.p(
|
|
29951
|
+
igniteuiAngularCore.NativeUI.p(b, new igniteuiAngularCore.Thickness(0, this.an));
|
|
29667
29952
|
}
|
|
29668
29953
|
if (this.checked) {
|
|
29669
29954
|
igniteuiAngularCore.NativeUI.m(a, this.c8);
|
|
29670
|
-
igniteuiAngularCore.NativeUI.n(
|
|
29955
|
+
igniteuiAngularCore.NativeUI.n(b, this.c9);
|
|
29671
29956
|
}
|
|
29672
29957
|
else {
|
|
29673
29958
|
igniteuiAngularCore.NativeUI.m(a, this.db);
|
|
29674
|
-
igniteuiAngularCore.NativeUI.n(
|
|
29959
|
+
igniteuiAngularCore.NativeUI.n(b, this.dc);
|
|
29675
29960
|
}
|
|
29676
29961
|
};
|
|
29677
29962
|
XCheckbox.prototype.cw = function () {
|
|
29678
|
-
var a = this.view.
|
|
29963
|
+
var a = this.view.u;
|
|
29679
29964
|
if (a == null) {
|
|
29680
29965
|
return;
|
|
29681
29966
|
}
|
|
@@ -30166,10 +30451,10 @@
|
|
|
30166
30451
|
XCheckbox.prototype.cp = function () {
|
|
30167
30452
|
this.ck();
|
|
30168
30453
|
if (this.checked) {
|
|
30169
|
-
this.view.
|
|
30454
|
+
this.view.ak(igniteuiAngularCore.BrushUtil.q(this.c8, 0.6), igniteuiAngularCore.BrushUtil.q(this.c8, 0.1));
|
|
30170
30455
|
}
|
|
30171
30456
|
else {
|
|
30172
|
-
this.view.
|
|
30457
|
+
this.view.ak(igniteuiAngularCore.BrushUtil.q(this.c8, 0.6), igniteuiAngularCore.BrushUtil.q(this.dc, 0.1));
|
|
30173
30458
|
}
|
|
30174
30459
|
};
|
|
30175
30460
|
Object.defineProperty(XCheckbox.prototype, "a", {
|
|
@@ -30183,12 +30468,12 @@
|
|
|
30183
30468
|
configurable: true
|
|
30184
30469
|
});
|
|
30185
30470
|
XCheckbox.prototype.ck = function () {
|
|
30186
|
-
this.view.
|
|
30471
|
+
this.view.aa();
|
|
30187
30472
|
var a = false;
|
|
30188
30473
|
if (this.o == null) {
|
|
30189
30474
|
if (!a) {
|
|
30190
30475
|
a = true;
|
|
30191
|
-
this.view.
|
|
30476
|
+
this.view.ah();
|
|
30192
30477
|
}
|
|
30193
30478
|
this.o = igniteuiAngularCore.KeyFrameAnimationFactory.f.c(this.view.a(this.a).m(new igniteuiAngularCore.AnimationKeyFrameProperty(2, this.db), new igniteuiAngularCore.AnimationKeyFrameProperty(3, this.dc)).m(new igniteuiAngularCore.AnimationKeyFrameProperty(2, this.c8), new igniteuiAngularCore.AnimationKeyFrameProperty(3, this.c9)));
|
|
30194
30479
|
this.p = igniteuiAngularCore.KeyFrameAnimationFactory.f.c(this.view.b(this.a).m(new igniteuiAngularCore.AnimationKeyFrameProperty(19, 24), new igniteuiAngularCore.AnimationKeyFrameProperty(1, 0)).m(new igniteuiAngularCore.AnimationKeyFrameProperty(19, 0), new igniteuiAngularCore.AnimationKeyFrameProperty(1, 1)));
|
|
@@ -30229,46 +30514,47 @@
|
|
|
30229
30514
|
c = -1;
|
|
30230
30515
|
}
|
|
30231
30516
|
if (b) {
|
|
30232
|
-
this.view.
|
|
30517
|
+
this.view.ak(igniteuiAngularCore.BrushUtil.q(this.c8, 0.6), igniteuiAngularCore.BrushUtil.q(this.c8, 0.1));
|
|
30233
30518
|
}
|
|
30234
30519
|
else {
|
|
30235
|
-
this.view.
|
|
30520
|
+
this.view.ak(igniteuiAngularCore.BrushUtil.q(this.c8, 0.6), igniteuiAngularCore.BrushUtil.q(this.dc, 0.1));
|
|
30236
30521
|
}
|
|
30237
30522
|
if (!this.indeterminate) {
|
|
30238
|
-
igniteuiAngularCore.NativeUI.af(this.view.
|
|
30523
|
+
igniteuiAngularCore.NativeUI.af(this.view.u, null);
|
|
30239
30524
|
}
|
|
30240
30525
|
if (this.z || this.indeterminate || a) {
|
|
30241
|
-
var d = this.view.
|
|
30242
|
-
var e = this.view.
|
|
30526
|
+
var d = this.view.t;
|
|
30527
|
+
var e = this.view.s;
|
|
30528
|
+
var f = this.view.u;
|
|
30243
30529
|
if (this.indeterminate) {
|
|
30244
|
-
var
|
|
30245
|
-
|
|
30530
|
+
var g = new igniteuiAngularCore.TransformGroup();
|
|
30531
|
+
g.j.add(((function () {
|
|
30246
30532
|
var $ret = new igniteuiAngularCore.RotateTransform();
|
|
30247
30533
|
$ret.j = 45;
|
|
30248
30534
|
return $ret;
|
|
30249
30535
|
})()));
|
|
30250
|
-
|
|
30536
|
+
g.j.add(((function () {
|
|
30251
30537
|
var $ret = new igniteuiAngularCore.TranslateTransform();
|
|
30252
30538
|
$ret.j = -_this.view.k();
|
|
30253
30539
|
return $ret;
|
|
30254
30540
|
})()));
|
|
30255
30541
|
igniteuiAngularCore.NativeUI.m(d, this.c8);
|
|
30256
|
-
igniteuiAngularCore.NativeUI.n(
|
|
30257
|
-
igniteuiAngularCore.NativeUI.y(
|
|
30258
|
-
igniteuiAngularCore.NativeUI.ac(
|
|
30259
|
-
igniteuiAngularCore.NativeUI.af(
|
|
30542
|
+
igniteuiAngularCore.NativeUI.n(e, this.c9);
|
|
30543
|
+
igniteuiAngularCore.NativeUI.y(f, 1);
|
|
30544
|
+
igniteuiAngularCore.NativeUI.ac(f, 41);
|
|
30545
|
+
igniteuiAngularCore.NativeUI.af(f, g);
|
|
30260
30546
|
}
|
|
30261
30547
|
else if (b) {
|
|
30262
30548
|
igniteuiAngularCore.NativeUI.m(d, this.c8);
|
|
30263
|
-
igniteuiAngularCore.NativeUI.n(
|
|
30264
|
-
igniteuiAngularCore.NativeUI.y(
|
|
30265
|
-
igniteuiAngularCore.NativeUI.ac(
|
|
30549
|
+
igniteuiAngularCore.NativeUI.n(e, this.c9);
|
|
30550
|
+
igniteuiAngularCore.NativeUI.y(f, 1);
|
|
30551
|
+
igniteuiAngularCore.NativeUI.ac(f, 0);
|
|
30266
30552
|
}
|
|
30267
30553
|
else {
|
|
30268
30554
|
igniteuiAngularCore.NativeUI.m(d, this.db);
|
|
30269
|
-
igniteuiAngularCore.NativeUI.n(
|
|
30270
|
-
igniteuiAngularCore.NativeUI.y(
|
|
30271
|
-
igniteuiAngularCore.NativeUI.ac(
|
|
30555
|
+
igniteuiAngularCore.NativeUI.n(e, this.dc);
|
|
30556
|
+
igniteuiAngularCore.NativeUI.y(f, 0);
|
|
30557
|
+
igniteuiAngularCore.NativeUI.ac(f, 24);
|
|
30272
30558
|
}
|
|
30273
30559
|
if (this.o.playState == 1) {
|
|
30274
30560
|
this.o.cancel();
|
|
@@ -30280,13 +30566,13 @@
|
|
|
30280
30566
|
}
|
|
30281
30567
|
if ((c > 0 && this.o.playbackRate < 0) || (c < 0 && this.o.playbackRate > 0)) {
|
|
30282
30568
|
this.o.reverse();
|
|
30283
|
-
this.o.finished.f(function (
|
|
30569
|
+
this.o.finished.f(function (h) {
|
|
30284
30570
|
if (_this.o != null) {
|
|
30285
30571
|
_this.o.commitStyles();
|
|
30286
30572
|
}
|
|
30287
30573
|
});
|
|
30288
30574
|
this.p.reverse();
|
|
30289
|
-
this.p.finished.f(function (
|
|
30575
|
+
this.p.finished.f(function (h) {
|
|
30290
30576
|
if (_this.p != null) {
|
|
30291
30577
|
_this.p.commitStyles();
|
|
30292
30578
|
}
|
|
@@ -30294,13 +30580,13 @@
|
|
|
30294
30580
|
}
|
|
30295
30581
|
else {
|
|
30296
30582
|
this.o.play();
|
|
30297
|
-
this.o.finished.f(function (
|
|
30583
|
+
this.o.finished.f(function (h) {
|
|
30298
30584
|
if (_this.o != null) {
|
|
30299
30585
|
_this.o.commitStyles();
|
|
30300
30586
|
}
|
|
30301
30587
|
});
|
|
30302
30588
|
this.p.play();
|
|
30303
|
-
this.p.finished.f(function (
|
|
30589
|
+
this.p.finished.f(function (h) {
|
|
30304
30590
|
if (_this.p != null) {
|
|
30305
30591
|
_this.p.commitStyles();
|
|
30306
30592
|
}
|
|
@@ -30308,10 +30594,10 @@
|
|
|
30308
30594
|
}
|
|
30309
30595
|
};
|
|
30310
30596
|
XCheckbox.prototype.onDetachedFromUI = function () {
|
|
30311
|
-
this.view.
|
|
30597
|
+
this.view.ae();
|
|
30312
30598
|
};
|
|
30313
30599
|
XCheckbox.prototype.onAttachedToUI = function () {
|
|
30314
|
-
this.view.
|
|
30600
|
+
this.view.ac();
|
|
30315
30601
|
};
|
|
30316
30602
|
XCheckbox.prototype.onContentReady = function () {
|
|
30317
30603
|
if (this.indeterminate) {
|
|
@@ -30351,7 +30637,7 @@
|
|
|
30351
30637
|
return a;
|
|
30352
30638
|
};
|
|
30353
30639
|
XCheckbox.prototype.provideContainer = function (a) {
|
|
30354
|
-
this.view.
|
|
30640
|
+
this.view.ad(a);
|
|
30355
30641
|
};
|
|
30356
30642
|
XCheckbox.$t = igniteuiAngularCore.markType(XCheckbox, 'XCheckbox', igniteuiAngularCore.Base.$, [igniteuiAngularCore.INotifyPropertyChanged_$type]);
|
|
30357
30643
|
XCheckbox.g = ThemeResolver.a(((function () {
|
|
@@ -35386,6 +35672,12 @@
|
|
|
35386
35672
|
case 58:
|
|
35387
35673
|
d.aq = c;
|
|
35388
35674
|
break;
|
|
35675
|
+
case 17:
|
|
35676
|
+
d.kt = c;
|
|
35677
|
+
break;
|
|
35678
|
+
case 11:
|
|
35679
|
+
d.aa = c;
|
|
35680
|
+
break;
|
|
35389
35681
|
}
|
|
35390
35682
|
};
|
|
35391
35683
|
XButtonBridge.prototype.getValue = function (a, b) {
|
|
@@ -35420,6 +35712,7 @@
|
|
|
35420
35712
|
case 57: return c.av;
|
|
35421
35713
|
case 56: return c.as;
|
|
35422
35714
|
case 58: return c.aq;
|
|
35715
|
+
case 17: return c.kt;
|
|
35423
35716
|
}
|
|
35424
35717
|
return null;
|
|
35425
35718
|
};
|
|
@@ -35572,13 +35865,16 @@
|
|
|
35572
35865
|
switch (b) {
|
|
35573
35866
|
case 16: return this.v;
|
|
35574
35867
|
case 15: return this.u;
|
|
35575
|
-
case 18: return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.BaseControlTheme_$type, c.
|
|
35576
|
-
case 44: return c.
|
|
35577
|
-
case 45: return c.
|
|
35578
|
-
case 46: return c.
|
|
35579
|
-
case 47: return c.
|
|
35580
|
-
case 48: return c.
|
|
35581
|
-
case 49: return c.
|
|
35868
|
+
case 18: return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.BaseControlTheme_$type, c.k);
|
|
35869
|
+
case 44: return c.an;
|
|
35870
|
+
case 45: return c.ao;
|
|
35871
|
+
case 46: return c.ap;
|
|
35872
|
+
case 47: return c.am;
|
|
35873
|
+
case 48: return c.aq;
|
|
35874
|
+
case 49: return c.ai;
|
|
35875
|
+
case 62: return c.e;
|
|
35876
|
+
case 63: return c.f;
|
|
35877
|
+
case 64: return c.al;
|
|
35582
35878
|
}
|
|
35583
35879
|
return _super.prototype.getValue.call(this, a, b);
|
|
35584
35880
|
};
|
|
@@ -35589,49 +35885,73 @@
|
|
|
35589
35885
|
case 15:
|
|
35590
35886
|
{
|
|
35591
35887
|
this.u = c;
|
|
35592
|
-
|
|
35593
|
-
if (e != null) {
|
|
35594
|
-
if (igniteuiAngularCore.stringStartsWith(igniteuiAngularCore.trimStart(e, ' ', '\n', '\r', '\t'), "<svg")) {
|
|
35595
|
-
d.svg = e;
|
|
35596
|
-
}
|
|
35597
|
-
else {
|
|
35598
|
-
d.svgPath = e;
|
|
35599
|
-
}
|
|
35600
|
-
}
|
|
35888
|
+
this.w(d);
|
|
35601
35889
|
}
|
|
35602
35890
|
break;
|
|
35603
35891
|
case 16:
|
|
35604
35892
|
{
|
|
35605
35893
|
this.v = c;
|
|
35606
|
-
|
|
35607
|
-
if (f != null) {
|
|
35608
|
-
if (igniteuiAngularCore.stringStartsWith(igniteuiAngularCore.trimStart(f, ' ', '\n', '\r', '\t'), "<svg")) {
|
|
35609
|
-
d.svg = f;
|
|
35610
|
-
}
|
|
35611
|
-
else {
|
|
35612
|
-
d.svgPath = f;
|
|
35613
|
-
}
|
|
35614
|
-
}
|
|
35894
|
+
this.w(d);
|
|
35615
35895
|
}
|
|
35616
35896
|
break;
|
|
35617
35897
|
case 44:
|
|
35618
|
-
d.
|
|
35898
|
+
d.an = c;
|
|
35619
35899
|
break;
|
|
35620
35900
|
case 45:
|
|
35621
|
-
d.
|
|
35901
|
+
d.ao = c;
|
|
35622
35902
|
break;
|
|
35623
35903
|
case 46:
|
|
35624
|
-
d.
|
|
35904
|
+
d.ap = c;
|
|
35625
35905
|
break;
|
|
35626
35906
|
case 47:
|
|
35627
|
-
d.
|
|
35907
|
+
d.am = c;
|
|
35628
35908
|
break;
|
|
35629
35909
|
case 48:
|
|
35630
|
-
d.
|
|
35910
|
+
d.aq = c;
|
|
35631
35911
|
break;
|
|
35632
35912
|
case 49:
|
|
35633
|
-
d.
|
|
35913
|
+
d.ai = c;
|
|
35914
|
+
break;
|
|
35915
|
+
case 62:
|
|
35916
|
+
d.e = c;
|
|
35917
|
+
break;
|
|
35918
|
+
case 63:
|
|
35919
|
+
d.f = c;
|
|
35634
35920
|
break;
|
|
35921
|
+
case 64:
|
|
35922
|
+
d.al = c;
|
|
35923
|
+
break;
|
|
35924
|
+
}
|
|
35925
|
+
};
|
|
35926
|
+
XIconBridge.prototype.getTargetForProperty = function (a, b) {
|
|
35927
|
+
switch (a) {
|
|
35928
|
+
case 24: return b;
|
|
35929
|
+
}
|
|
35930
|
+
return _super.prototype.getTargetForProperty.call(this, a, b);
|
|
35931
|
+
};
|
|
35932
|
+
XIconBridge.prototype.w = function (a) {
|
|
35933
|
+
a.svg = null;
|
|
35934
|
+
a.svgPath = null;
|
|
35935
|
+
a.b = null;
|
|
35936
|
+
var b = igniteuiAngularCore.SvgIconRegistry.instance.getSvgPathString(this.u, this.v);
|
|
35937
|
+
if (b != null) {
|
|
35938
|
+
if (igniteuiAngularCore.stringStartsWith(igniteuiAngularCore.trimStart(b, ' ', '\n', '\r', '\t'), "<svg")) {
|
|
35939
|
+
a.svg = b;
|
|
35940
|
+
}
|
|
35941
|
+
else {
|
|
35942
|
+
a.svgPath = b;
|
|
35943
|
+
}
|
|
35944
|
+
return;
|
|
35945
|
+
}
|
|
35946
|
+
var c = igniteuiAngularCore.SvgIconRegistry.instance.getSvgPathsString(this.u, this.v);
|
|
35947
|
+
if (c != null) {
|
|
35948
|
+
a.b = c;
|
|
35949
|
+
return;
|
|
35950
|
+
}
|
|
35951
|
+
var d = igniteuiAngularCore.SvgIconRegistry.instance.getDataURLString(this.u, this.v);
|
|
35952
|
+
if (d != null) {
|
|
35953
|
+
a.a7 = d;
|
|
35954
|
+
return;
|
|
35635
35955
|
}
|
|
35636
35956
|
};
|
|
35637
35957
|
XIconBridge.$t = igniteuiAngularCore.markType(XIconBridge, 'XIconBridge', XComponentBridge.$);
|
|
@@ -36063,7 +36383,7 @@
|
|
|
36063
36383
|
var o = new igniteuiAngularCore.NativeUIButton();
|
|
36064
36384
|
o.al = j;
|
|
36065
36385
|
o.d = n;
|
|
36066
|
-
o.
|
|
36386
|
+
o.bk = i;
|
|
36067
36387
|
b(o);
|
|
36068
36388
|
};
|
|
36069
36389
|
NativeUIXInputsFactory.prototype.f = function (a, b) {
|
|
@@ -36130,7 +36450,7 @@
|
|
|
36130
36450
|
switch (a) {
|
|
36131
36451
|
case 16:
|
|
36132
36452
|
case 15:
|
|
36133
|
-
case 17: return this.al.t.view.
|
|
36453
|
+
case 17: return this.al.t.view.s;
|
|
36134
36454
|
}
|
|
36135
36455
|
return _super.prototype.getTargetForProperty.call(this, a, b);
|
|
36136
36456
|
};
|