igniteui-angular-inputs 21.0.1 → 21.1.0-beta.1
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 +933 -765
- package/bundles/igniteui-angular-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonView_combined.js +21 -21
- package/esm2015/lib/CalendarView_combined.js +3 -3
- package/esm2015/lib/CheckboxView_combined.js +23 -23
- package/esm2015/lib/IconView_combined.js +163 -163
- package/esm2015/lib/InputGroupView_combined.js +33 -31
- package/esm2015/lib/MultiSliderBridge.js +14 -14
- package/esm2015/lib/MultiSliderView_combined.js +17 -17
- package/esm2015/lib/NativeUIXInputsFactory_combined.js +241 -222
- package/esm2015/lib/RippleView_combined.js +1 -1
- package/esm2015/lib/XButtonBridge.js +20 -20
- package/esm2015/lib/XButtonGroupBridge.js +8 -8
- package/esm2015/lib/XCheckboxBridge.js +8 -8
- package/esm2015/lib/XComponentBridge.js +4 -2
- package/esm2015/lib/XIconBridge.js +23 -23
- package/esm2015/lib/XIconButtonBridge.js +5 -5
- package/esm2015/lib/XInputBridge.js +18 -18
- package/esm2015/lib/XPopupBridge.js +28 -28
- package/esm2015/lib/igx-color-editor-component.js +3 -0
- package/esm2015/lib/igx-multi-slider-thumb-collection.js +7 -7
- package/esm2015/lib/igx-multi-slider-thumb-component.js +209 -0
- package/esm2015/lib/igx-multi-slider-thumb-dynamic-module.js +34 -0
- package/esm2015/lib/igx-multi-slider-thumb-module.js +27 -0
- package/esm2015/lib/igx-multi-slider-thumb-value-changing-event-args.js +3 -8
- package/esm2015/lib/igx-multi-slider-track-thumb-range.js +5 -15
- package/esm2015/lib/igx-x-icon-component.js +10 -10
- package/esm2015/public_api.js +3 -1
- package/esm5/lib/ButtonView_combined.js +21 -21
- package/esm5/lib/CalendarView_combined.js +3 -3
- package/esm5/lib/CheckboxView_combined.js +23 -23
- package/esm5/lib/IconView_combined.js +158 -158
- package/esm5/lib/InputGroupView_combined.js +33 -31
- package/esm5/lib/MultiSliderBridge.js +14 -14
- package/esm5/lib/MultiSliderView_combined.js +17 -17
- package/esm5/lib/NativeUIXInputsFactory_combined.js +251 -224
- package/esm5/lib/RippleView_combined.js +1 -1
- package/esm5/lib/XButtonBridge.js +20 -20
- package/esm5/lib/XButtonGroupBridge.js +8 -8
- package/esm5/lib/XCheckboxBridge.js +8 -8
- package/esm5/lib/XComponentBridge.js +4 -2
- package/esm5/lib/XIconBridge.js +23 -23
- package/esm5/lib/XIconButtonBridge.js +5 -5
- package/esm5/lib/XInputBridge.js +18 -18
- package/esm5/lib/XPopupBridge.js +28 -28
- package/esm5/lib/igx-color-editor-component.js +3 -0
- package/esm5/lib/igx-multi-slider-thumb-collection.js +7 -7
- package/esm5/lib/igx-multi-slider-thumb-component.js +233 -0
- package/esm5/lib/igx-multi-slider-thumb-dynamic-module.js +33 -0
- package/esm5/lib/igx-multi-slider-thumb-module.js +28 -0
- package/esm5/lib/igx-multi-slider-thumb-value-changing-event-args.js +3 -8
- package/esm5/lib/igx-multi-slider-track-thumb-range.js +5 -15
- package/esm5/lib/igx-x-icon-component.js +10 -10
- package/esm5/public_api.js +3 -1
- package/fesm2015/igniteui-angular-inputs.js +908 -749
- package/fesm5/igniteui-angular-inputs.js +931 -765
- package/lib/IconView_combined.d.ts +33 -34
- package/lib/MultiSliderView_combined.d.ts +1 -1
- package/lib/NativeUIXInputsFactory_combined.d.ts +18 -13
- package/lib/igx-multi-slider-thumb-collection.d.ts +4 -4
- package/lib/igx-multi-slider-thumb-component.d.ts +47 -0
- package/lib/igx-multi-slider-thumb-dynamic-module.d.ts +9 -0
- package/lib/igx-multi-slider-thumb-module.d.ts +8 -0
- package/lib/igx-multi-slider-thumb-value-changing-event-args.d.ts +3 -3
- package/lib/igx-multi-slider-track-thumb-range.d.ts +5 -5
- package/package.json +2 -2
- package/public_api.d.ts +3 -1
- package/esm2015/lib/igx-multi-slider-thumb.js +0 -111
- package/esm5/lib/igx-multi-slider-thumb.js +0 -134
- package/lib/igx-multi-slider-thumb.d.ts +0 -33
|
@@ -244,7 +244,7 @@
|
|
|
244
244
|
d.setStyleProperty("pointer-events", "none");
|
|
245
245
|
d.setStyleProperty("border-radius", c + "px");
|
|
246
246
|
d.setStyleProperty("opacity", ".5");
|
|
247
|
-
igniteuiAngularCore.NativeUI.
|
|
247
|
+
igniteuiAngularCore.NativeUI.ai(d, ((function () {
|
|
248
248
|
var $ret = new igniteuiAngularCore.ScaleTransform();
|
|
249
249
|
$ret.l = 0.3;
|
|
250
250
|
$ret.m = 0.3;
|
|
@@ -1145,7 +1145,7 @@
|
|
|
1145
1145
|
this.o.setStyleProperty("white-space", "no-wrap");
|
|
1146
1146
|
this.o.setStyleProperty("color", "#000");
|
|
1147
1147
|
this.o.setStyleProperty("background", this.c.nt._fill);
|
|
1148
|
-
igniteuiAngularCore.NativeUI.
|
|
1148
|
+
igniteuiAngularCore.NativeUI.p(this.o, this.c.k4);
|
|
1149
1149
|
this.o.setAttribute("id", this.c.hz);
|
|
1150
1150
|
this.ay();
|
|
1151
1151
|
this.i.add(c.listen("change", igniteuiAngularCore.runOn(this, this.aa)));
|
|
@@ -2236,10 +2236,10 @@
|
|
|
2236
2236
|
if (a == null) {
|
|
2237
2237
|
return;
|
|
2238
2238
|
}
|
|
2239
|
-
igniteuiAngularCore.NativeUI.
|
|
2240
|
-
igniteuiAngularCore.NativeUI.
|
|
2239
|
+
igniteuiAngularCore.NativeUI.p(a, this.k4);
|
|
2240
|
+
igniteuiAngularCore.NativeUI.o(a, this.nu);
|
|
2241
2241
|
if (!igniteuiAngularCore.isNaN_(this.bk)) {
|
|
2242
|
-
igniteuiAngularCore.NativeUI.
|
|
2242
|
+
igniteuiAngularCore.NativeUI.q(a, new igniteuiAngularCore.Thickness(0, this.bk));
|
|
2243
2243
|
}
|
|
2244
2244
|
if (this.disabled) {
|
|
2245
2245
|
this.view.a0(this.cv, this.v);
|
|
@@ -2256,17 +2256,17 @@
|
|
|
2256
2256
|
}
|
|
2257
2257
|
}
|
|
2258
2258
|
if (this.disabled) {
|
|
2259
|
-
igniteuiAngularCore.NativeUI.
|
|
2259
|
+
igniteuiAngularCore.NativeUI.n(a, this.nv);
|
|
2260
2260
|
}
|
|
2261
2261
|
else if (this.focused && this.a3) {
|
|
2262
|
-
igniteuiAngularCore.NativeUI.
|
|
2262
|
+
igniteuiAngularCore.NativeUI.n(a, this.ny);
|
|
2263
2263
|
}
|
|
2264
2264
|
else {
|
|
2265
2265
|
if (this.a4 && !this.av) {
|
|
2266
|
-
igniteuiAngularCore.NativeUI.
|
|
2266
|
+
igniteuiAngularCore.NativeUI.n(a, this.n0);
|
|
2267
2267
|
}
|
|
2268
2268
|
else {
|
|
2269
|
-
igniteuiAngularCore.NativeUI.
|
|
2269
|
+
igniteuiAngularCore.NativeUI.n(a, this.nt);
|
|
2270
2270
|
}
|
|
2271
2271
|
}
|
|
2272
2272
|
this.view.az(this.n3, igniteuiAngularCore.BrushUtil.l(0, 0, 0, 0));
|
|
@@ -2274,21 +2274,21 @@
|
|
|
2274
2274
|
this.view.a2(this.ab);
|
|
2275
2275
|
}
|
|
2276
2276
|
if (this.disabled) {
|
|
2277
|
-
igniteuiAngularCore.NativeUI.q(this.view.t, this.nx);
|
|
2278
2277
|
igniteuiAngularCore.NativeUI.r(this.view.t, this.nx);
|
|
2278
|
+
igniteuiAngularCore.NativeUI.t(this.view.t, this.nx);
|
|
2279
2279
|
}
|
|
2280
2280
|
else if (this.focused && this.a3) {
|
|
2281
|
-
igniteuiAngularCore.NativeUI.q(this.view.t, this.nz);
|
|
2282
2281
|
igniteuiAngularCore.NativeUI.r(this.view.t, this.nz);
|
|
2282
|
+
igniteuiAngularCore.NativeUI.t(this.view.t, this.nz);
|
|
2283
2283
|
}
|
|
2284
2284
|
else {
|
|
2285
2285
|
if (this.a4 && !this.av) {
|
|
2286
|
-
igniteuiAngularCore.NativeUI.q(this.view.t, this.n1);
|
|
2287
2286
|
igniteuiAngularCore.NativeUI.r(this.view.t, this.n1);
|
|
2287
|
+
igniteuiAngularCore.NativeUI.t(this.view.t, this.n1);
|
|
2288
2288
|
}
|
|
2289
2289
|
else {
|
|
2290
|
-
igniteuiAngularCore.NativeUI.q(this.view.t, this.n4);
|
|
2291
2290
|
igniteuiAngularCore.NativeUI.r(this.view.t, this.n4);
|
|
2291
|
+
igniteuiAngularCore.NativeUI.t(this.view.t, this.n4);
|
|
2292
2292
|
}
|
|
2293
2293
|
}
|
|
2294
2294
|
};
|
|
@@ -4686,16 +4686,16 @@
|
|
|
4686
4686
|
c.p = e[1];
|
|
4687
4687
|
c.h = this.o;
|
|
4688
4688
|
c.i = this.r;
|
|
4689
|
-
c.c = igniteuiAngularCore.AppearanceHelper.a(igniteuiAngularCore.NativeUI.
|
|
4689
|
+
c.c = igniteuiAngularCore.AppearanceHelper.a(igniteuiAngularCore.NativeUI.an(a));
|
|
4690
4690
|
c.g = igniteuiAngularCore.AppearanceHelper.a(this.n5);
|
|
4691
4691
|
c.d = igniteuiAngularCore.AppearanceHelper.a(this.n2);
|
|
4692
4692
|
c.a = igniteuiAngularCore.AppearanceHelper.a(this.ns);
|
|
4693
4693
|
c.u = this.cy;
|
|
4694
4694
|
c.e = igniteuiAngularCore.AppearanceHelper.a(this.n3);
|
|
4695
4695
|
c.ag = this.k4;
|
|
4696
|
-
c.b = igniteuiAngularCore.AppearanceHelper.a(igniteuiAngularCore.NativeUI.
|
|
4696
|
+
c.b = igniteuiAngularCore.AppearanceHelper.a(igniteuiAngularCore.NativeUI.am(a));
|
|
4697
4697
|
c.j = this.v;
|
|
4698
|
-
c.f = igniteuiAngularCore.AppearanceHelper.a(igniteuiAngularCore.NativeUI.
|
|
4698
|
+
c.f = igniteuiAngularCore.AppearanceHelper.a(igniteuiAngularCore.NativeUI.ao(b));
|
|
4699
4699
|
c.o = this.bk;
|
|
4700
4700
|
c.x = this.f1;
|
|
4701
4701
|
c.y = this.g5;
|
|
@@ -5064,9 +5064,9 @@
|
|
|
5064
5064
|
})()));
|
|
5065
5065
|
XButton.k = new Theme(1, ((function () {
|
|
5066
5066
|
var $ret = new igniteuiAngularCore.Dictionary$2(igniteuiAngularCore.String_$type, igniteuiAngularCore.Base.$, 0);
|
|
5067
|
-
$ret.addItem("UmbraShadowColor", igniteuiAngularCore.BrushUtil.l(
|
|
5068
|
-
$ret.addItem("PenumbraShadowColor", igniteuiAngularCore.BrushUtil.l(
|
|
5069
|
-
$ret.addItem("AmbientShadowColor", igniteuiAngularCore.BrushUtil.l(
|
|
5067
|
+
$ret.addItem("UmbraShadowColor", igniteuiAngularCore.BrushUtil.l(0, 0, 0, 0));
|
|
5068
|
+
$ret.addItem("PenumbraShadowColor", igniteuiAngularCore.BrushUtil.l(0, 0, 0, 0));
|
|
5069
|
+
$ret.addItem("AmbientShadowColor", igniteuiAngularCore.BrushUtil.l(0, 0, 0, 0));
|
|
5070
5070
|
$ret.addItem("ElevationMode", igniteuiAngularCore.enumGetBox(igniteuiAngularCore.ElevationMode_$type, 2));
|
|
5071
5071
|
return $ret;
|
|
5072
5072
|
})()), ((function () {
|
|
@@ -5223,9 +5223,9 @@
|
|
|
5223
5223
|
})()));
|
|
5224
5224
|
XButton.j = new Theme(1, ((function () {
|
|
5225
5225
|
var $ret = new igniteuiAngularCore.Dictionary$2(igniteuiAngularCore.String_$type, igniteuiAngularCore.Base.$, 0);
|
|
5226
|
-
$ret.addItem("UmbraShadowColor", igniteuiAngularCore.BrushUtil.l(
|
|
5227
|
-
$ret.addItem("PenumbraShadowColor", igniteuiAngularCore.BrushUtil.l(
|
|
5228
|
-
$ret.addItem("AmbientShadowColor", igniteuiAngularCore.BrushUtil.l(
|
|
5226
|
+
$ret.addItem("UmbraShadowColor", igniteuiAngularCore.BrushUtil.l(0, 0, 0, 0));
|
|
5227
|
+
$ret.addItem("PenumbraShadowColor", igniteuiAngularCore.BrushUtil.l(0, 0, 0, 0));
|
|
5228
|
+
$ret.addItem("AmbientShadowColor", igniteuiAngularCore.BrushUtil.l(0, 0, 0, 0));
|
|
5229
5229
|
$ret.addItem("ElevationMode", igniteuiAngularCore.enumGetBox(igniteuiAngularCore.ElevationMode_$type, 2));
|
|
5230
5230
|
return $ret;
|
|
5231
5231
|
})()), ((function () {
|
|
@@ -5655,7 +5655,7 @@
|
|
|
5655
5655
|
this.y.append(this.w);
|
|
5656
5656
|
this.v.append(this.y);
|
|
5657
5657
|
this.o.add(c.listen("click", igniteuiAngularCore.runOn(this, this.ak)));
|
|
5658
|
-
this.d.
|
|
5658
|
+
this.d.c8();
|
|
5659
5659
|
};
|
|
5660
5660
|
IconView.prototype.ay = function (a) {
|
|
5661
5661
|
this.z = null;
|
|
@@ -5698,7 +5698,7 @@
|
|
|
5698
5698
|
var b = this.v.rootWrapper.getNativeElement();
|
|
5699
5699
|
b.innerHTML = a;
|
|
5700
5700
|
this.z = this.v.rootWrapper.getChildAt(0);
|
|
5701
|
-
var c = this.z.getAttribute("
|
|
5701
|
+
var c = this.z.getAttribute("viewBox");
|
|
5702
5702
|
if (c != null) {
|
|
5703
5703
|
var d = c.split(' ');
|
|
5704
5704
|
if (d.length == 1) {
|
|
@@ -5709,11 +5709,11 @@
|
|
|
5709
5709
|
var f = parseFloat(d[1].trim());
|
|
5710
5710
|
var g = parseFloat(d[2].trim());
|
|
5711
5711
|
var h = parseFloat(d[3].trim());
|
|
5712
|
-
this.d.
|
|
5712
|
+
this.d.df(e, f, g, h);
|
|
5713
5713
|
}
|
|
5714
5714
|
}
|
|
5715
5715
|
else {
|
|
5716
|
-
this.d.
|
|
5716
|
+
this.d.df(NaN, NaN, NaN, NaN);
|
|
5717
5717
|
}
|
|
5718
5718
|
}
|
|
5719
5719
|
};
|
|
@@ -5789,7 +5789,7 @@
|
|
|
5789
5789
|
this.v.rootWrapper.append(this.y);
|
|
5790
5790
|
}
|
|
5791
5791
|
else {
|
|
5792
|
-
igniteuiAngularCore.NativeUI.
|
|
5792
|
+
igniteuiAngularCore.NativeUI.t(a, b);
|
|
5793
5793
|
}
|
|
5794
5794
|
};
|
|
5795
5795
|
IconView.prototype.ar = function (a, b) {
|
|
@@ -5798,7 +5798,7 @@
|
|
|
5798
5798
|
c.setAttribute("stroke", "url('#" + this.n.item(b) + "')");
|
|
5799
5799
|
}
|
|
5800
5800
|
else {
|
|
5801
|
-
igniteuiAngularCore.NativeUI.
|
|
5801
|
+
igniteuiAngularCore.NativeUI.ad(a, b);
|
|
5802
5802
|
}
|
|
5803
5803
|
};
|
|
5804
5804
|
IconView.prototype.ad = function (a) {
|
|
@@ -5808,10 +5808,10 @@
|
|
|
5808
5808
|
}
|
|
5809
5809
|
};
|
|
5810
5810
|
IconView.prototype.ae = function (a) {
|
|
5811
|
-
this.d.
|
|
5811
|
+
this.d.c5();
|
|
5812
5812
|
};
|
|
5813
5813
|
IconView.prototype.af = function (a) {
|
|
5814
|
-
this.d.
|
|
5814
|
+
this.d.c6();
|
|
5815
5815
|
};
|
|
5816
5816
|
IconView.prototype.aj = function () {
|
|
5817
5817
|
this.j = true;
|
|
@@ -6000,18 +6000,18 @@
|
|
|
6000
6000
|
_this.dp = null;
|
|
6001
6001
|
_this.dq = null;
|
|
6002
6002
|
_this.dr = null;
|
|
6003
|
-
_this.
|
|
6004
|
-
_this.bj = null;
|
|
6005
|
-
_this.bm = null;
|
|
6003
|
+
_this.bf = null;
|
|
6006
6004
|
_this.bl = null;
|
|
6005
|
+
_this.bo = null;
|
|
6006
|
+
_this.bn = null;
|
|
6007
6007
|
_this.a = null;
|
|
6008
|
-
_this.de = null;
|
|
6009
6008
|
_this.bd = null;
|
|
6009
|
+
_this.be = null;
|
|
6010
6010
|
_this.n = null;
|
|
6011
|
-
_this.
|
|
6011
|
+
_this.bm = "ig-icon-" + XIcon.bc++;
|
|
6012
6012
|
_this.ba = 0;
|
|
6013
6013
|
_this.p = false;
|
|
6014
|
-
_this.
|
|
6014
|
+
_this.bk = null;
|
|
6015
6015
|
_this.r = false;
|
|
6016
6016
|
_this.q = false;
|
|
6017
6017
|
_this.af = 1;
|
|
@@ -6050,13 +6050,13 @@
|
|
|
6050
6050
|
XIcon.prototype.destroy = function () {
|
|
6051
6051
|
this.provideContainer(null);
|
|
6052
6052
|
};
|
|
6053
|
-
XIcon.prototype.
|
|
6053
|
+
XIcon.prototype.c7 = function (a, b, c) {
|
|
6054
6054
|
if (this.propertyChanged != null) {
|
|
6055
6055
|
this.propertyChanged(this, new igniteuiAngularCore.PropertyChangedEventArgs(a));
|
|
6056
6056
|
}
|
|
6057
|
-
this.
|
|
6057
|
+
this.da(a, b, c);
|
|
6058
6058
|
};
|
|
6059
|
-
XIcon.prototype.
|
|
6059
|
+
XIcon.prototype.da = function (a, b, c) {
|
|
6060
6060
|
switch (a) {
|
|
6061
6061
|
case "Fill":
|
|
6062
6062
|
case "Stroke":
|
|
@@ -6065,51 +6065,51 @@
|
|
|
6065
6065
|
case "HoverStroke":
|
|
6066
6066
|
case "HoverStrokeThickness":
|
|
6067
6067
|
case "IsHover":
|
|
6068
|
-
this.
|
|
6068
|
+
this.de();
|
|
6069
6069
|
break;
|
|
6070
6070
|
case "FillColors":
|
|
6071
6071
|
case "StrokeColors":
|
|
6072
6072
|
case "ActualFill":
|
|
6073
6073
|
case "ActualStroke":
|
|
6074
6074
|
case "ActualStrokeWidth":
|
|
6075
|
-
this.
|
|
6075
|
+
this.dc();
|
|
6076
6076
|
break;
|
|
6077
6077
|
case "SVG":
|
|
6078
|
-
this.
|
|
6078
|
+
this.bo = null;
|
|
6079
6079
|
this.a = null;
|
|
6080
|
-
this.
|
|
6080
|
+
this.dc();
|
|
6081
6081
|
break;
|
|
6082
6082
|
case "SVGPath":
|
|
6083
|
-
this.
|
|
6083
|
+
this.bn = null;
|
|
6084
6084
|
this.a = null;
|
|
6085
|
-
this.
|
|
6085
|
+
this.dc();
|
|
6086
6086
|
break;
|
|
6087
6087
|
case "SVGPaths":
|
|
6088
|
-
this.
|
|
6089
|
-
this.
|
|
6090
|
-
this.
|
|
6088
|
+
this.bn = null;
|
|
6089
|
+
this.bo = null;
|
|
6090
|
+
this.dc();
|
|
6091
6091
|
break;
|
|
6092
6092
|
case "DataURL":
|
|
6093
|
-
this.
|
|
6094
|
-
this.
|
|
6093
|
+
this.bn = null;
|
|
6094
|
+
this.bo = null;
|
|
6095
6095
|
this.a = null;
|
|
6096
|
-
this.
|
|
6096
|
+
this.dc();
|
|
6097
6097
|
break;
|
|
6098
6098
|
case "Source":
|
|
6099
|
-
this.
|
|
6100
|
-
this.
|
|
6099
|
+
this.bn = null;
|
|
6100
|
+
this.bo = null;
|
|
6101
6101
|
this.a = null;
|
|
6102
|
-
this.
|
|
6102
|
+
this.dc();
|
|
6103
6103
|
break;
|
|
6104
6104
|
case "DataTemplate":
|
|
6105
6105
|
case "DataTemplateContext":
|
|
6106
|
-
this.
|
|
6107
|
-
this.
|
|
6106
|
+
this.bn = null;
|
|
6107
|
+
this.bo = null;
|
|
6108
6108
|
this.a = null;
|
|
6109
|
-
this.
|
|
6109
|
+
this.dc();
|
|
6110
6110
|
break;
|
|
6111
6111
|
case "Opacity":
|
|
6112
|
-
this.
|
|
6112
|
+
this.dd();
|
|
6113
6113
|
break;
|
|
6114
6114
|
case "ViewBoxLeft":
|
|
6115
6115
|
this.as = !igniteuiAngularCore.isNaN_(this.a6) ? this.a6 : !igniteuiAngularCore.isNaN_(this.ah) ? this.ah : 0;
|
|
@@ -6135,7 +6135,7 @@
|
|
|
6135
6135
|
break;
|
|
6136
6136
|
}
|
|
6137
6137
|
};
|
|
6138
|
-
XIcon.prototype.
|
|
6138
|
+
XIcon.prototype.de = function () {
|
|
6139
6139
|
var a = this.fill != null ? this.fill : XIcon.dx;
|
|
6140
6140
|
var b = this.ea != null ? this.ea : XIcon.d1;
|
|
6141
6141
|
var c = !igniteuiAngularCore.isNaN_(this.a4) ? this.a4 : XIcon.aw;
|
|
@@ -6160,19 +6160,19 @@
|
|
|
6160
6160
|
enumerable: false,
|
|
6161
6161
|
configurable: true
|
|
6162
6162
|
});
|
|
6163
|
-
XIcon.prototype.
|
|
6164
|
-
igniteuiAngularCore.NativeUI.
|
|
6163
|
+
XIcon.prototype.dd = function () {
|
|
6164
|
+
igniteuiAngularCore.NativeUI.ab(this.view.aa, this.a3);
|
|
6165
6165
|
};
|
|
6166
|
-
XIcon.prototype.
|
|
6166
|
+
XIcon.prototype.c1 = function () {
|
|
6167
6167
|
this.view.ag();
|
|
6168
6168
|
};
|
|
6169
|
-
XIcon.prototype.
|
|
6169
|
+
XIcon.prototype.dc = function () {
|
|
6170
6170
|
var a = this.view.aa;
|
|
6171
6171
|
if (this.t) {
|
|
6172
6172
|
var b = this.view.ab;
|
|
6173
|
-
igniteuiAngularCore.NativeUI.
|
|
6174
|
-
igniteuiAngularCore.NativeUI.
|
|
6175
|
-
igniteuiAngularCore.NativeUI.
|
|
6173
|
+
igniteuiAngularCore.NativeUI.t(b, this.du);
|
|
6174
|
+
igniteuiAngularCore.NativeUI.ad(b, this.dv);
|
|
6175
|
+
igniteuiAngularCore.NativeUI.ag(b, this.aq);
|
|
6176
6176
|
}
|
|
6177
6177
|
else {
|
|
6178
6178
|
var c = this.j();
|
|
@@ -6181,8 +6181,8 @@
|
|
|
6181
6181
|
this.view.ai();
|
|
6182
6182
|
}
|
|
6183
6183
|
var d = false;
|
|
6184
|
-
if (this.
|
|
6185
|
-
this.view.as(this.
|
|
6184
|
+
if (this.bg != null) {
|
|
6185
|
+
this.view.as(this.bg, this.bh);
|
|
6186
6186
|
}
|
|
6187
6187
|
else if (this.svgPath != null) {
|
|
6188
6188
|
if (igniteuiAngularCore.stringStartsWith(igniteuiAngularCore.trimStart(this.svgPath, ' ', '\n', '\r', '\t'), "<svg")) {
|
|
@@ -6197,9 +6197,9 @@
|
|
|
6197
6197
|
this.view.az(this.b);
|
|
6198
6198
|
var e = this.view.c;
|
|
6199
6199
|
if (e != null && e.length > 0) {
|
|
6200
|
-
var f = igniteuiAngularCore.NativeUI.
|
|
6201
|
-
var g = igniteuiAngularCore.NativeUI.
|
|
6202
|
-
this.
|
|
6200
|
+
var f = igniteuiAngularCore.NativeUI.t;
|
|
6201
|
+
var g = igniteuiAngularCore.NativeUI.ad;
|
|
6202
|
+
this.c9();
|
|
6203
6203
|
f = igniteuiAngularCore.runOn(this.view, this.view.aq);
|
|
6204
6204
|
g = igniteuiAngularCore.runOn(this.view, this.view.ar);
|
|
6205
6205
|
for (var h = 0; h < e.length; h++) {
|
|
@@ -6210,10 +6210,10 @@
|
|
|
6210
6210
|
g(e[h], this.dv);
|
|
6211
6211
|
}
|
|
6212
6212
|
if (!igniteuiAngularCore.isNaN_(this.aq)) {
|
|
6213
|
-
igniteuiAngularCore.NativeUI.
|
|
6213
|
+
igniteuiAngularCore.NativeUI.ag(e[h], this.aq);
|
|
6214
6214
|
}
|
|
6215
6215
|
if (this.dw != null) {
|
|
6216
|
-
igniteuiAngularCore.NativeUI.
|
|
6216
|
+
igniteuiAngularCore.NativeUI.r(e[h], this.dw);
|
|
6217
6217
|
}
|
|
6218
6218
|
if (this.e != null && this.e.count == e.length) {
|
|
6219
6219
|
f(e[h], this.e.item(h));
|
|
@@ -6232,30 +6232,30 @@
|
|
|
6232
6232
|
this.view.ax(this.svg);
|
|
6233
6233
|
d = true;
|
|
6234
6234
|
}
|
|
6235
|
-
else if (this.
|
|
6236
|
-
this.view.at(this.
|
|
6235
|
+
else if (this.b2 != null) {
|
|
6236
|
+
this.view.at(this.b2);
|
|
6237
6237
|
}
|
|
6238
|
-
else if (this.
|
|
6239
|
-
this.view.aw(this.
|
|
6238
|
+
else if (this.bj != null) {
|
|
6239
|
+
this.view.aw(this.bj);
|
|
6240
6240
|
}
|
|
6241
6241
|
else {
|
|
6242
6242
|
}
|
|
6243
6243
|
if (d) {
|
|
6244
6244
|
for (var i = 0; i < this.view.r.count; i++) {
|
|
6245
6245
|
var j = this.view.r._inner[i].c;
|
|
6246
|
-
igniteuiAngularCore.NativeUI.
|
|
6246
|
+
igniteuiAngularCore.NativeUI.t(this.view.r._inner[i].d, j.l.f(this.d6));
|
|
6247
6247
|
}
|
|
6248
6248
|
for (var k = 0; k < this.view.s.count; k++) {
|
|
6249
6249
|
var l = this.view.s._inner[k].c;
|
|
6250
|
-
igniteuiAngularCore.NativeUI.
|
|
6250
|
+
igniteuiAngularCore.NativeUI.ad(this.view.s._inner[k].d, l.m.f(this.d7));
|
|
6251
6251
|
}
|
|
6252
6252
|
for (var m = 0; m < this.view.t.count; m++) {
|
|
6253
6253
|
var n = this.view.t._inner[m].c;
|
|
6254
|
-
igniteuiAngularCore.NativeUI.
|
|
6254
|
+
igniteuiAngularCore.NativeUI.t(this.view.t._inner[m].d, n.l.f(this.d8));
|
|
6255
6255
|
}
|
|
6256
6256
|
for (var o = 0; o < this.view.u.count; o++) {
|
|
6257
6257
|
var p = this.view.u._inner[o].c;
|
|
6258
|
-
igniteuiAngularCore.NativeUI.
|
|
6258
|
+
igniteuiAngularCore.NativeUI.ad(this.view.u._inner[o].d, p.m.f(this.d9));
|
|
6259
6259
|
}
|
|
6260
6260
|
for (var q = 0; q < this.view.e.o.count; q++) {
|
|
6261
6261
|
var r = this.view.e.o._inner[q];
|
|
@@ -6264,7 +6264,7 @@
|
|
|
6264
6264
|
if (t < this.e.count) {
|
|
6265
6265
|
for (var u = 0; u < this.view.e.q._inner[q].count; u++) {
|
|
6266
6266
|
var v = this.view.e.q._inner[q]._inner[u].c;
|
|
6267
|
-
igniteuiAngularCore.NativeUI.
|
|
6267
|
+
igniteuiAngularCore.NativeUI.t(this.view.e.q._inner[q]._inner[u].d, v.l.f(this.e.item(t)));
|
|
6268
6268
|
}
|
|
6269
6269
|
}
|
|
6270
6270
|
}
|
|
@@ -6275,35 +6275,35 @@
|
|
|
6275
6275
|
if (z < this.f.count) {
|
|
6276
6276
|
for (var aa = 0; aa < this.view.f.q._inner[w].count; aa++) {
|
|
6277
6277
|
var ab = this.view.f.q._inner[w]._inner[aa].c;
|
|
6278
|
-
igniteuiAngularCore.NativeUI.
|
|
6278
|
+
igniteuiAngularCore.NativeUI.ad(this.view.f.q._inner[w]._inner[aa].d, ab.m.f(this.f.item(z)));
|
|
6279
6279
|
}
|
|
6280
6280
|
}
|
|
6281
6281
|
}
|
|
6282
6282
|
for (var ac = 0; ac < this.view.q.count; ac++) {
|
|
6283
6283
|
var ad = this.view.q._inner[ac].c;
|
|
6284
|
-
igniteuiAngularCore.NativeUI.
|
|
6285
|
-
igniteuiAngularCore.NativeUI.
|
|
6284
|
+
igniteuiAngularCore.NativeUI.t(this.view.q._inner[ac].d, ad.l.f(this.du));
|
|
6285
|
+
igniteuiAngularCore.NativeUI.ad(this.view.q._inner[ac].d, ad.m.f(this.dv));
|
|
6286
6286
|
}
|
|
6287
6287
|
}
|
|
6288
6288
|
var ae = this.view.aa;
|
|
6289
6289
|
if (this.du != null) {
|
|
6290
|
-
igniteuiAngularCore.NativeUI.
|
|
6290
|
+
igniteuiAngularCore.NativeUI.t(ae, this.du);
|
|
6291
6291
|
}
|
|
6292
6292
|
if (this.dv != null) {
|
|
6293
|
-
igniteuiAngularCore.NativeUI.
|
|
6293
|
+
igniteuiAngularCore.NativeUI.ad(ae, this.dv);
|
|
6294
6294
|
}
|
|
6295
6295
|
if (!igniteuiAngularCore.isNaN_(this.aq)) {
|
|
6296
|
-
igniteuiAngularCore.NativeUI.
|
|
6296
|
+
igniteuiAngularCore.NativeUI.ag(ae, this.aq);
|
|
6297
6297
|
}
|
|
6298
6298
|
}
|
|
6299
6299
|
if (this.o != null) {
|
|
6300
6300
|
this.view.a0(this.o);
|
|
6301
6301
|
}
|
|
6302
6302
|
if (this.dw != null) {
|
|
6303
|
-
igniteuiAngularCore.NativeUI.
|
|
6303
|
+
igniteuiAngularCore.NativeUI.r(this.view.aa, this.dw);
|
|
6304
6304
|
}
|
|
6305
6305
|
};
|
|
6306
|
-
XIcon.prototype.
|
|
6306
|
+
XIcon.prototype.c9 = function () {
|
|
6307
6307
|
var e_3, _a, e_4, _b;
|
|
6308
6308
|
if (this.du != null) {
|
|
6309
6309
|
this.view.ap(this.du, "fill");
|
|
@@ -6365,10 +6365,10 @@
|
|
|
6365
6365
|
else if (this.svg != null) {
|
|
6366
6366
|
a = 0;
|
|
6367
6367
|
}
|
|
6368
|
-
else if (this.
|
|
6368
|
+
else if (this.b2 != null) {
|
|
6369
6369
|
a = 3;
|
|
6370
6370
|
}
|
|
6371
|
-
else if (this.
|
|
6371
|
+
else if (this.bj != null) {
|
|
6372
6372
|
a = 4;
|
|
6373
6373
|
}
|
|
6374
6374
|
return a;
|
|
@@ -6381,7 +6381,7 @@
|
|
|
6381
6381
|
var b = this.l;
|
|
6382
6382
|
this.l = a;
|
|
6383
6383
|
if (b != this.l) {
|
|
6384
|
-
this.
|
|
6384
|
+
this.c7("BaseTheme", igniteuiAngularCore.enumGetBox(igniteuiAngularCore.BaseControlTheme_$type, b), igniteuiAngularCore.enumGetBox(igniteuiAngularCore.BaseControlTheme_$type, a));
|
|
6385
6385
|
}
|
|
6386
6386
|
},
|
|
6387
6387
|
enumerable: false,
|
|
@@ -6395,7 +6395,7 @@
|
|
|
6395
6395
|
var b = this.dg;
|
|
6396
6396
|
this.dg = a;
|
|
6397
6397
|
if (b != this.dg) {
|
|
6398
|
-
this.
|
|
6398
|
+
this.c7("ActualFill", b, a);
|
|
6399
6399
|
}
|
|
6400
6400
|
},
|
|
6401
6401
|
enumerable: false,
|
|
@@ -6409,7 +6409,7 @@
|
|
|
6409
6409
|
var b = this.dh;
|
|
6410
6410
|
this.dh = a;
|
|
6411
6411
|
if (b != this.dh) {
|
|
6412
|
-
this.
|
|
6412
|
+
this.c7("ActualStroke", b, a);
|
|
6413
6413
|
}
|
|
6414
6414
|
},
|
|
6415
6415
|
enumerable: false,
|
|
@@ -6423,7 +6423,7 @@
|
|
|
6423
6423
|
var b = this.di;
|
|
6424
6424
|
this.di = a;
|
|
6425
6425
|
if (b != this.di) {
|
|
6426
|
-
this.
|
|
6426
|
+
this.c7("ActualTextColor", b, a);
|
|
6427
6427
|
}
|
|
6428
6428
|
},
|
|
6429
6429
|
enumerable: false,
|
|
@@ -6437,7 +6437,7 @@
|
|
|
6437
6437
|
var b = this.y;
|
|
6438
6438
|
this.y = a;
|
|
6439
6439
|
if (b != this.y) {
|
|
6440
|
-
this.
|
|
6440
|
+
this.c7("ActualStrokeWidth", b, a);
|
|
6441
6441
|
}
|
|
6442
6442
|
},
|
|
6443
6443
|
enumerable: false,
|
|
@@ -6451,7 +6451,7 @@
|
|
|
6451
6451
|
var b = this.dj;
|
|
6452
6452
|
this.dj = a;
|
|
6453
6453
|
if (b != this.dj) {
|
|
6454
|
-
this.
|
|
6454
|
+
this.c7("Fill", b, a);
|
|
6455
6455
|
}
|
|
6456
6456
|
},
|
|
6457
6457
|
enumerable: false,
|
|
@@ -6465,7 +6465,7 @@
|
|
|
6465
6465
|
var b = this.ds;
|
|
6466
6466
|
this.ds = a;
|
|
6467
6467
|
if (b != this.ds) {
|
|
6468
|
-
this.
|
|
6468
|
+
this.c7("Stroke", b, a);
|
|
6469
6469
|
}
|
|
6470
6470
|
},
|
|
6471
6471
|
enumerable: false,
|
|
@@ -6479,7 +6479,7 @@
|
|
|
6479
6479
|
var b = this.ak;
|
|
6480
6480
|
this.ak = a;
|
|
6481
6481
|
if (b != this.ak) {
|
|
6482
|
-
this.
|
|
6482
|
+
this.c7("StrokeWidth", b, a);
|
|
6483
6483
|
}
|
|
6484
6484
|
},
|
|
6485
6485
|
enumerable: false,
|
|
@@ -6493,7 +6493,7 @@
|
|
|
6493
6493
|
var b = this.dt;
|
|
6494
6494
|
this.dt = a;
|
|
6495
6495
|
if (b != this.dt) {
|
|
6496
|
-
this.
|
|
6496
|
+
this.c7("TextColor", b, a);
|
|
6497
6497
|
}
|
|
6498
6498
|
},
|
|
6499
6499
|
enumerable: false,
|
|
@@ -6507,7 +6507,7 @@
|
|
|
6507
6507
|
var b = this.dk;
|
|
6508
6508
|
this.dk = a;
|
|
6509
6509
|
if (b != this.dk) {
|
|
6510
|
-
this.
|
|
6510
|
+
this.c7("HoverFill", b, a);
|
|
6511
6511
|
}
|
|
6512
6512
|
},
|
|
6513
6513
|
enumerable: false,
|
|
@@ -6521,7 +6521,7 @@
|
|
|
6521
6521
|
var b = this.dl;
|
|
6522
6522
|
this.dl = a;
|
|
6523
6523
|
if (b != this.dl) {
|
|
6524
|
-
this.
|
|
6524
|
+
this.c7("HoverStroke", b, a);
|
|
6525
6525
|
}
|
|
6526
6526
|
},
|
|
6527
6527
|
enumerable: false,
|
|
@@ -6535,7 +6535,7 @@
|
|
|
6535
6535
|
var b = this.ae;
|
|
6536
6536
|
this.ae = a;
|
|
6537
6537
|
if (b != this.ae) {
|
|
6538
|
-
this.
|
|
6538
|
+
this.c7("HoverStrokeThickness", b, a);
|
|
6539
6539
|
}
|
|
6540
6540
|
},
|
|
6541
6541
|
enumerable: false,
|
|
@@ -6549,7 +6549,7 @@
|
|
|
6549
6549
|
var b = this.dm;
|
|
6550
6550
|
this.dm = a;
|
|
6551
6551
|
if (b != this.dm) {
|
|
6552
|
-
this.
|
|
6552
|
+
this.c7("HoverTextColor", b, a);
|
|
6553
6553
|
}
|
|
6554
6554
|
},
|
|
6555
6555
|
enumerable: false,
|
|
@@ -6563,7 +6563,7 @@
|
|
|
6563
6563
|
var b = this.c;
|
|
6564
6564
|
this.c = a;
|
|
6565
6565
|
if (b != this.c) {
|
|
6566
|
-
this.
|
|
6566
|
+
this.c7("FillColors", b, this.c);
|
|
6567
6567
|
}
|
|
6568
6568
|
},
|
|
6569
6569
|
enumerable: false,
|
|
@@ -6577,7 +6577,7 @@
|
|
|
6577
6577
|
var b = this.d;
|
|
6578
6578
|
this.d = a;
|
|
6579
6579
|
if (b != this.d) {
|
|
6580
|
-
this.
|
|
6580
|
+
this.c7("StrokeColors", b, this.d);
|
|
6581
6581
|
}
|
|
6582
6582
|
},
|
|
6583
6583
|
enumerable: false,
|
|
@@ -6591,7 +6591,7 @@
|
|
|
6591
6591
|
var b = this.dn;
|
|
6592
6592
|
this.dn = a;
|
|
6593
6593
|
if (b != this.dn) {
|
|
6594
|
-
this.
|
|
6594
|
+
this.c7("PrimaryFillColor", b, this.dn);
|
|
6595
6595
|
}
|
|
6596
6596
|
},
|
|
6597
6597
|
enumerable: false,
|
|
@@ -6605,7 +6605,7 @@
|
|
|
6605
6605
|
var b = this.dp;
|
|
6606
6606
|
this.dp = a;
|
|
6607
6607
|
if (b != this.dp) {
|
|
6608
|
-
this.
|
|
6608
|
+
this.c7("PrimaryStrokeColor", b, this.dp);
|
|
6609
6609
|
}
|
|
6610
6610
|
},
|
|
6611
6611
|
enumerable: false,
|
|
@@ -6619,7 +6619,7 @@
|
|
|
6619
6619
|
var b = this.dq;
|
|
6620
6620
|
this.dq = a;
|
|
6621
6621
|
if (b != this.dq) {
|
|
6622
|
-
this.
|
|
6622
|
+
this.c7("SecondaryFillColor", b, this.dq);
|
|
6623
6623
|
}
|
|
6624
6624
|
},
|
|
6625
6625
|
enumerable: false,
|
|
@@ -6633,35 +6633,35 @@
|
|
|
6633
6633
|
var b = this.dr;
|
|
6634
6634
|
this.dr = a;
|
|
6635
6635
|
if (b != this.dr) {
|
|
6636
|
-
this.
|
|
6636
|
+
this.c7("SecondaryStrokeColor", b, this.dr);
|
|
6637
6637
|
}
|
|
6638
6638
|
},
|
|
6639
6639
|
enumerable: false,
|
|
6640
6640
|
configurable: true
|
|
6641
6641
|
});
|
|
6642
|
-
Object.defineProperty(XIcon.prototype, "
|
|
6642
|
+
Object.defineProperty(XIcon.prototype, "bj", {
|
|
6643
6643
|
get: function () {
|
|
6644
|
-
return this.
|
|
6644
|
+
return this.bf;
|
|
6645
6645
|
},
|
|
6646
6646
|
set: function (a) {
|
|
6647
|
-
var b = this.
|
|
6648
|
-
this.
|
|
6649
|
-
if (b != this.
|
|
6650
|
-
this.
|
|
6647
|
+
var b = this.bf;
|
|
6648
|
+
this.bf = a;
|
|
6649
|
+
if (b != this.bf) {
|
|
6650
|
+
this.c7("Source", b, a);
|
|
6651
6651
|
}
|
|
6652
6652
|
},
|
|
6653
6653
|
enumerable: false,
|
|
6654
6654
|
configurable: true
|
|
6655
6655
|
});
|
|
6656
|
-
Object.defineProperty(XIcon.prototype, "
|
|
6656
|
+
Object.defineProperty(XIcon.prototype, "b2", {
|
|
6657
6657
|
get: function () {
|
|
6658
|
-
return this.
|
|
6658
|
+
return this.bl;
|
|
6659
6659
|
},
|
|
6660
6660
|
set: function (a) {
|
|
6661
|
-
var b = this.
|
|
6662
|
-
this.
|
|
6663
|
-
if (b != this.
|
|
6664
|
-
this.
|
|
6661
|
+
var b = this.bl;
|
|
6662
|
+
this.bl = a;
|
|
6663
|
+
if (b != this.bl) {
|
|
6664
|
+
this.c7("DataURL", b, a);
|
|
6665
6665
|
}
|
|
6666
6666
|
},
|
|
6667
6667
|
enumerable: false,
|
|
@@ -6669,13 +6669,13 @@
|
|
|
6669
6669
|
});
|
|
6670
6670
|
Object.defineProperty(XIcon.prototype, "svgPath", {
|
|
6671
6671
|
get: function () {
|
|
6672
|
-
return this.
|
|
6672
|
+
return this.bo;
|
|
6673
6673
|
},
|
|
6674
6674
|
set: function (a) {
|
|
6675
|
-
var b = this.
|
|
6676
|
-
this.
|
|
6677
|
-
if (b != this.
|
|
6678
|
-
this.
|
|
6675
|
+
var b = this.bo;
|
|
6676
|
+
this.bo = a;
|
|
6677
|
+
if (b != this.bo) {
|
|
6678
|
+
this.c7("SVGPath", b, a);
|
|
6679
6679
|
}
|
|
6680
6680
|
},
|
|
6681
6681
|
enumerable: false,
|
|
@@ -6683,13 +6683,13 @@
|
|
|
6683
6683
|
});
|
|
6684
6684
|
Object.defineProperty(XIcon.prototype, "svg", {
|
|
6685
6685
|
get: function () {
|
|
6686
|
-
return this.
|
|
6686
|
+
return this.bn;
|
|
6687
6687
|
},
|
|
6688
6688
|
set: function (a) {
|
|
6689
|
-
var b = this.
|
|
6690
|
-
this.
|
|
6691
|
-
if (b != this.
|
|
6692
|
-
this.
|
|
6689
|
+
var b = this.bn;
|
|
6690
|
+
this.bn = a;
|
|
6691
|
+
if (b != this.bn) {
|
|
6692
|
+
this.c7("SVG", b, this.bn);
|
|
6693
6693
|
}
|
|
6694
6694
|
},
|
|
6695
6695
|
enumerable: false,
|
|
@@ -6703,44 +6703,44 @@
|
|
|
6703
6703
|
var b = this.a;
|
|
6704
6704
|
this.a = a;
|
|
6705
6705
|
if (b != this.a) {
|
|
6706
|
-
this.
|
|
6706
|
+
this.c7("SVGPaths", b, this.a);
|
|
6707
6707
|
}
|
|
6708
6708
|
},
|
|
6709
6709
|
enumerable: false,
|
|
6710
6710
|
configurable: true
|
|
6711
6711
|
});
|
|
6712
|
-
Object.defineProperty(XIcon.prototype, "
|
|
6712
|
+
Object.defineProperty(XIcon.prototype, "bg", {
|
|
6713
6713
|
get: function () {
|
|
6714
|
-
return this.
|
|
6714
|
+
return this.bd;
|
|
6715
6715
|
},
|
|
6716
6716
|
set: function (a) {
|
|
6717
|
-
var b = this.
|
|
6718
|
-
this.
|
|
6719
|
-
if (b != this.
|
|
6720
|
-
this.
|
|
6717
|
+
var b = this.bd;
|
|
6718
|
+
this.bd = a;
|
|
6719
|
+
if (b != this.bd) {
|
|
6720
|
+
this.c7("DataTemplate", b, this.bd);
|
|
6721
6721
|
}
|
|
6722
6722
|
},
|
|
6723
6723
|
enumerable: false,
|
|
6724
6724
|
configurable: true
|
|
6725
6725
|
});
|
|
6726
|
-
Object.defineProperty(XIcon.prototype, "
|
|
6726
|
+
Object.defineProperty(XIcon.prototype, "bh", {
|
|
6727
6727
|
get: function () {
|
|
6728
|
-
return this.
|
|
6728
|
+
return this.be;
|
|
6729
6729
|
},
|
|
6730
6730
|
set: function (a) {
|
|
6731
|
-
var b = this.
|
|
6732
|
-
this.
|
|
6733
|
-
if (b != this.
|
|
6734
|
-
this.
|
|
6731
|
+
var b = this.be;
|
|
6732
|
+
this.be = a;
|
|
6733
|
+
if (b != this.be) {
|
|
6734
|
+
this.c7("DataTemplateContext", b, this.be);
|
|
6735
6735
|
}
|
|
6736
6736
|
},
|
|
6737
6737
|
enumerable: false,
|
|
6738
6738
|
configurable: true
|
|
6739
6739
|
});
|
|
6740
|
-
XIcon.prototype.
|
|
6740
|
+
XIcon.prototype.c5 = function () {
|
|
6741
6741
|
this.v = true;
|
|
6742
6742
|
};
|
|
6743
|
-
XIcon.prototype.
|
|
6743
|
+
XIcon.prototype.c6 = function () {
|
|
6744
6744
|
this.v = false;
|
|
6745
6745
|
};
|
|
6746
6746
|
Object.defineProperty(XIcon.prototype, "o", {
|
|
@@ -6751,21 +6751,21 @@
|
|
|
6751
6751
|
var b = this.n;
|
|
6752
6752
|
this.n = a;
|
|
6753
6753
|
if (b != this.n) {
|
|
6754
|
-
this.
|
|
6754
|
+
this.c7("TextStyle", b, a);
|
|
6755
6755
|
}
|
|
6756
6756
|
},
|
|
6757
6757
|
enumerable: false,
|
|
6758
6758
|
configurable: true
|
|
6759
6759
|
});
|
|
6760
|
-
Object.defineProperty(XIcon.prototype, "
|
|
6760
|
+
Object.defineProperty(XIcon.prototype, "cc", {
|
|
6761
6761
|
get: function () {
|
|
6762
|
-
return this.
|
|
6762
|
+
return this.bm;
|
|
6763
6763
|
},
|
|
6764
6764
|
set: function (a) {
|
|
6765
|
-
var b = this.
|
|
6766
|
-
this.
|
|
6767
|
-
if (b != this.
|
|
6768
|
-
this.
|
|
6765
|
+
var b = this.bm;
|
|
6766
|
+
this.bm = a;
|
|
6767
|
+
if (b != this.bm) {
|
|
6768
|
+
this.c7("Id", b, a);
|
|
6769
6769
|
}
|
|
6770
6770
|
},
|
|
6771
6771
|
enumerable: false,
|
|
@@ -6787,21 +6787,21 @@
|
|
|
6787
6787
|
this.ba = a;
|
|
6788
6788
|
this.p = true;
|
|
6789
6789
|
if (b != this.ba) {
|
|
6790
|
-
this.
|
|
6790
|
+
this.c7("TabIndex", b, a);
|
|
6791
6791
|
}
|
|
6792
6792
|
},
|
|
6793
6793
|
enumerable: false,
|
|
6794
6794
|
configurable: true
|
|
6795
6795
|
});
|
|
6796
|
-
Object.defineProperty(XIcon.prototype, "
|
|
6796
|
+
Object.defineProperty(XIcon.prototype, "bx", {
|
|
6797
6797
|
get: function () {
|
|
6798
|
-
return this.
|
|
6798
|
+
return this.bk;
|
|
6799
6799
|
},
|
|
6800
6800
|
set: function (a) {
|
|
6801
|
-
var b = this.
|
|
6802
|
-
this.
|
|
6803
|
-
if (b != this.
|
|
6804
|
-
this.
|
|
6801
|
+
var b = this.bk;
|
|
6802
|
+
this.bk = a;
|
|
6803
|
+
if (b != this.bk) {
|
|
6804
|
+
this.c7("AriaLabel", b, a);
|
|
6805
6805
|
}
|
|
6806
6806
|
},
|
|
6807
6807
|
enumerable: false,
|
|
@@ -6815,7 +6815,7 @@
|
|
|
6815
6815
|
var b = this.r;
|
|
6816
6816
|
this.r = a;
|
|
6817
6817
|
if (b != this.r) {
|
|
6818
|
-
this.
|
|
6818
|
+
this.c7("IsHover", b, a);
|
|
6819
6819
|
}
|
|
6820
6820
|
},
|
|
6821
6821
|
enumerable: false,
|
|
@@ -6829,7 +6829,7 @@
|
|
|
6829
6829
|
var b = this.q;
|
|
6830
6830
|
this.q = a;
|
|
6831
6831
|
if (b != this.q) {
|
|
6832
|
-
this.
|
|
6832
|
+
this.c7("IsDisabled", b, a);
|
|
6833
6833
|
}
|
|
6834
6834
|
},
|
|
6835
6835
|
enumerable: false,
|
|
@@ -6843,7 +6843,7 @@
|
|
|
6843
6843
|
var b = this.af;
|
|
6844
6844
|
this.af = a;
|
|
6845
6845
|
if (b != this.af) {
|
|
6846
|
-
this.
|
|
6846
|
+
this.c7("Opacity", b, this.af);
|
|
6847
6847
|
}
|
|
6848
6848
|
},
|
|
6849
6849
|
enumerable: false,
|
|
@@ -6857,7 +6857,7 @@
|
|
|
6857
6857
|
var b = this.aa;
|
|
6858
6858
|
this.aa = a;
|
|
6859
6859
|
if (b != this.aa) {
|
|
6860
|
-
this.
|
|
6860
|
+
this.c7("ActualViewBoxLeft", b, this.aa);
|
|
6861
6861
|
}
|
|
6862
6862
|
},
|
|
6863
6863
|
enumerable: false,
|
|
@@ -6871,7 +6871,7 @@
|
|
|
6871
6871
|
var b = this.am;
|
|
6872
6872
|
this.am = a;
|
|
6873
6873
|
if (b != this.am) {
|
|
6874
|
-
this.
|
|
6874
|
+
this.c7("ViewBoxLeft", b, this.am);
|
|
6875
6875
|
}
|
|
6876
6876
|
},
|
|
6877
6877
|
enumerable: false,
|
|
@@ -6885,7 +6885,7 @@
|
|
|
6885
6885
|
var b = this.ab;
|
|
6886
6886
|
this.ab = a;
|
|
6887
6887
|
if (b != this.ab) {
|
|
6888
|
-
this.
|
|
6888
|
+
this.c7("ActualViewBoxTop", b, this.ab);
|
|
6889
6889
|
}
|
|
6890
6890
|
},
|
|
6891
6891
|
enumerable: false,
|
|
@@ -6899,7 +6899,7 @@
|
|
|
6899
6899
|
var b = this.an;
|
|
6900
6900
|
this.an = a;
|
|
6901
6901
|
if (b != this.an) {
|
|
6902
|
-
this.
|
|
6902
|
+
this.c7("ViewBoxTop", b, this.an);
|
|
6903
6903
|
}
|
|
6904
6904
|
},
|
|
6905
6905
|
enumerable: false,
|
|
@@ -6913,7 +6913,7 @@
|
|
|
6913
6913
|
var b = this.ac;
|
|
6914
6914
|
this.ac = a;
|
|
6915
6915
|
if (b != this.ac) {
|
|
6916
|
-
this.
|
|
6916
|
+
this.c7("ActualViewBoxWidth", b, this.ac);
|
|
6917
6917
|
}
|
|
6918
6918
|
},
|
|
6919
6919
|
enumerable: false,
|
|
@@ -6927,7 +6927,7 @@
|
|
|
6927
6927
|
var b = this.ao;
|
|
6928
6928
|
this.ao = a;
|
|
6929
6929
|
if (b != this.ao) {
|
|
6930
|
-
this.
|
|
6930
|
+
this.c7("ViewBoxWidth", b, this.ao);
|
|
6931
6931
|
}
|
|
6932
6932
|
},
|
|
6933
6933
|
enumerable: false,
|
|
@@ -6941,7 +6941,7 @@
|
|
|
6941
6941
|
var b = this.z;
|
|
6942
6942
|
this.z = a;
|
|
6943
6943
|
if (b != this.z) {
|
|
6944
|
-
this.
|
|
6944
|
+
this.c7("ActualViewBoxHeight", b, this.z);
|
|
6945
6945
|
}
|
|
6946
6946
|
},
|
|
6947
6947
|
enumerable: false,
|
|
@@ -6955,7 +6955,7 @@
|
|
|
6955
6955
|
var b = this.al;
|
|
6956
6956
|
this.al = a;
|
|
6957
6957
|
if (b != this.al) {
|
|
6958
|
-
this.
|
|
6958
|
+
this.c7("ViewBoxHeight", b, this.al);
|
|
6959
6959
|
}
|
|
6960
6960
|
},
|
|
6961
6961
|
enumerable: false,
|
|
@@ -6969,7 +6969,7 @@
|
|
|
6969
6969
|
var b = this.ap;
|
|
6970
6970
|
this.ap = a;
|
|
6971
6971
|
if (b != this.ap) {
|
|
6972
|
-
this.
|
|
6972
|
+
this.c7("Width", b, this.ap);
|
|
6973
6973
|
}
|
|
6974
6974
|
},
|
|
6975
6975
|
enumerable: false,
|
|
@@ -6983,13 +6983,13 @@
|
|
|
6983
6983
|
var b = this.ad;
|
|
6984
6984
|
this.ad = a;
|
|
6985
6985
|
if (b != this.ad) {
|
|
6986
|
-
this.
|
|
6986
|
+
this.c7("Height", b, this.ad);
|
|
6987
6987
|
}
|
|
6988
6988
|
},
|
|
6989
6989
|
enumerable: false,
|
|
6990
6990
|
configurable: true
|
|
6991
6991
|
});
|
|
6992
|
-
XIcon.prototype.
|
|
6992
|
+
XIcon.prototype.c8 = function () {
|
|
6993
6993
|
};
|
|
6994
6994
|
XIcon.prototype.onDetachedFromUI = function () {
|
|
6995
6995
|
this.view.am();
|
|
@@ -7011,10 +7011,10 @@
|
|
|
7011
7011
|
XIcon.prototype.w = function () {
|
|
7012
7012
|
return this.view.l();
|
|
7013
7013
|
};
|
|
7014
|
-
XIcon.prototype.
|
|
7014
|
+
XIcon.prototype.bi = function () {
|
|
7015
7015
|
return this.g();
|
|
7016
7016
|
};
|
|
7017
|
-
XIcon.prototype.
|
|
7017
|
+
XIcon.prototype.b4 = function () {
|
|
7018
7018
|
var a = this.g();
|
|
7019
7019
|
return a.l();
|
|
7020
7020
|
};
|
|
@@ -7029,7 +7029,7 @@
|
|
|
7029
7029
|
a.a = this.view.a();
|
|
7030
7030
|
a.svg = this.svg;
|
|
7031
7031
|
a.svgPath = this.svgPath;
|
|
7032
|
-
a.k = this.
|
|
7032
|
+
a.k = this.b2;
|
|
7033
7033
|
if (this.o != null) {
|
|
7034
7034
|
var d = this.o;
|
|
7035
7035
|
if (this.view != null && d.q == null) {
|
|
@@ -7063,7 +7063,7 @@
|
|
|
7063
7063
|
XIcon.prototype.provideContainer = function (a) {
|
|
7064
7064
|
this.view.al(a);
|
|
7065
7065
|
};
|
|
7066
|
-
XIcon.prototype.
|
|
7066
|
+
XIcon.prototype.df = function (a, b, c, d) {
|
|
7067
7067
|
this.ah = a;
|
|
7068
7068
|
this.ai = b;
|
|
7069
7069
|
this.aj = c;
|
|
@@ -10127,7 +10127,7 @@
|
|
|
10127
10127
|
m.d = n[1] - e;
|
|
10128
10128
|
m.c = igniteuiAngularCore.NativeUI.d(k._inner[l].parent());
|
|
10129
10129
|
m.f = igniteuiAngularCore.NativeUI.k(k._inner[l].parent());
|
|
10130
|
-
m.b = igniteuiAngularCore.AppearanceHelper.a(igniteuiAngularCore.NativeUI.
|
|
10130
|
+
m.b = igniteuiAngularCore.AppearanceHelper.a(igniteuiAngularCore.NativeUI.ao(k._inner[l]));
|
|
10131
10131
|
m.g = k._inner[l].getText();
|
|
10132
10132
|
a.k.add(m);
|
|
10133
10133
|
}
|
|
@@ -10140,8 +10140,8 @@
|
|
|
10140
10140
|
q.d = r[1] - e;
|
|
10141
10141
|
q.c = igniteuiAngularCore.NativeUI.d(o._inner[p].parent());
|
|
10142
10142
|
q.f = igniteuiAngularCore.NativeUI.k(o._inner[p].parent());
|
|
10143
|
-
q.b = igniteuiAngularCore.AppearanceHelper.a(igniteuiAngularCore.NativeUI.
|
|
10144
|
-
q.a = igniteuiAngularCore.AppearanceHelper.a(igniteuiAngularCore.NativeUI.
|
|
10143
|
+
q.b = igniteuiAngularCore.AppearanceHelper.a(igniteuiAngularCore.NativeUI.ao(o._inner[p]));
|
|
10144
|
+
q.a = igniteuiAngularCore.AppearanceHelper.a(igniteuiAngularCore.NativeUI.an(o._inner[p]));
|
|
10145
10145
|
q.g = o._inner[p].getText();
|
|
10146
10146
|
a.l.add(q);
|
|
10147
10147
|
}
|
|
@@ -14731,10 +14731,10 @@
|
|
|
14731
14731
|
* Gets or sets the image source for the icon. Used if none of the other icon types are not used.
|
|
14732
14732
|
*/
|
|
14733
14733
|
get: function () {
|
|
14734
|
-
return this.i.
|
|
14734
|
+
return this.i.bj;
|
|
14735
14735
|
},
|
|
14736
14736
|
set: function (v) {
|
|
14737
|
-
this.i.
|
|
14737
|
+
this.i.bj = v;
|
|
14738
14738
|
},
|
|
14739
14739
|
enumerable: false,
|
|
14740
14740
|
configurable: true
|
|
@@ -14744,10 +14744,10 @@
|
|
|
14744
14744
|
* Gets or sets data url for the icon to use.
|
|
14745
14745
|
*/
|
|
14746
14746
|
get: function () {
|
|
14747
|
-
return this.i.
|
|
14747
|
+
return this.i.b2;
|
|
14748
14748
|
},
|
|
14749
14749
|
set: function (v) {
|
|
14750
|
-
this.i.
|
|
14750
|
+
this.i.b2 = v;
|
|
14751
14751
|
},
|
|
14752
14752
|
enumerable: false,
|
|
14753
14753
|
configurable: true
|
|
@@ -14818,10 +14818,10 @@
|
|
|
14818
14818
|
* Gets or sets the id to use for the checkbox.
|
|
14819
14819
|
*/
|
|
14820
14820
|
get: function () {
|
|
14821
|
-
return this.i.
|
|
14821
|
+
return this.i.cc;
|
|
14822
14822
|
},
|
|
14823
14823
|
set: function (v) {
|
|
14824
|
-
this.i.
|
|
14824
|
+
this.i.cc = v;
|
|
14825
14825
|
},
|
|
14826
14826
|
enumerable: false,
|
|
14827
14827
|
configurable: true
|
|
@@ -14844,10 +14844,10 @@
|
|
|
14844
14844
|
* Gets or sets the value of the aria-label attribute.
|
|
14845
14845
|
*/
|
|
14846
14846
|
get: function () {
|
|
14847
|
-
return this.i.
|
|
14847
|
+
return this.i.bx;
|
|
14848
14848
|
},
|
|
14849
14849
|
set: function (v) {
|
|
14850
|
-
this.i.
|
|
14850
|
+
this.i.bx = v;
|
|
14851
14851
|
},
|
|
14852
14852
|
enumerable: false,
|
|
14853
14853
|
configurable: true
|
|
@@ -15094,7 +15094,7 @@
|
|
|
15094
15094
|
|
|
15095
15095
|
*/
|
|
15096
15096
|
IgxXIconComponent.prototype.exportVisualModel = function () {
|
|
15097
|
-
var iv = this.i.
|
|
15097
|
+
var iv = this.i.bi();
|
|
15098
15098
|
return (iv);
|
|
15099
15099
|
};
|
|
15100
15100
|
/**
|
|
@@ -15102,7 +15102,7 @@
|
|
|
15102
15102
|
|
|
15103
15103
|
*/
|
|
15104
15104
|
IgxXIconComponent.prototype.exportSerializedVisualModel = function () {
|
|
15105
|
-
var iv = this.i.
|
|
15105
|
+
var iv = this.i.b4();
|
|
15106
15106
|
return (iv);
|
|
15107
15107
|
};
|
|
15108
15108
|
IgxXIconComponent.prototype._runInZone = function (act) {
|
|
@@ -16358,7 +16358,7 @@
|
|
|
16358
16358
|
g.setStyleProperty("height", "2px");
|
|
16359
16359
|
g.setStyleProperty("display", "block");
|
|
16360
16360
|
g.setStyleProperty("pointer-events", "none");
|
|
16361
|
-
igniteuiAngularCore.NativeUI.
|
|
16361
|
+
igniteuiAngularCore.NativeUI.ai(g, ((function () {
|
|
16362
16362
|
var $ret = new igniteuiAngularCore.ScaleTransform();
|
|
16363
16363
|
$ret.l = 0.5;
|
|
16364
16364
|
$ret.m = 1;
|
|
@@ -16593,7 +16593,7 @@
|
|
|
16593
16593
|
$ret.m = 1;
|
|
16594
16594
|
return $ret;
|
|
16595
16595
|
})()));
|
|
16596
|
-
igniteuiAngularCore.NativeUI.
|
|
16596
|
+
igniteuiAngularCore.NativeUI.ai(this.h.rootWrapper, b);
|
|
16597
16597
|
this.h.rootWrapper.setStyleProperty("transform-origin", "0px 0px");
|
|
16598
16598
|
};
|
|
16599
16599
|
SuffixView.prototype.g = function () {
|
|
@@ -16732,7 +16732,7 @@
|
|
|
16732
16732
|
$ret.m = 1;
|
|
16733
16733
|
return $ret;
|
|
16734
16734
|
})()));
|
|
16735
|
-
igniteuiAngularCore.NativeUI.
|
|
16735
|
+
igniteuiAngularCore.NativeUI.ai(this.h.rootWrapper, b);
|
|
16736
16736
|
this.h.rootWrapper.setStyleProperty("transform-origin", "0px 0px");
|
|
16737
16737
|
};
|
|
16738
16738
|
PrefixView.prototype.g = function () {
|
|
@@ -16875,7 +16875,7 @@
|
|
|
16875
16875
|
c.setStyleProperty("overflow", "hidden");
|
|
16876
16876
|
c.setStyleProperty("height", "1.125rem");
|
|
16877
16877
|
c.setStyleProperty("backface-visibility", "hidden");
|
|
16878
|
-
igniteuiAngularCore.NativeUI.
|
|
16878
|
+
igniteuiAngularCore.NativeUI.r(this.m.rootWrapper, this.c.c3);
|
|
16879
16879
|
c.setStyleProperty("outline-style", "none");
|
|
16880
16880
|
c.setStyleProperty("box-shadow", "none");
|
|
16881
16881
|
c.setStyleProperty("font-family", "Verdana");
|
|
@@ -16902,7 +16902,7 @@
|
|
|
16902
16902
|
$ret.m = 1;
|
|
16903
16903
|
return $ret;
|
|
16904
16904
|
})()));
|
|
16905
|
-
igniteuiAngularCore.NativeUI.
|
|
16905
|
+
igniteuiAngularCore.NativeUI.ai(this.m.rootWrapper, a);
|
|
16906
16906
|
this.n.setStyleProperty("height", "1.125rem");
|
|
16907
16907
|
this.m.rootWrapper.setStyleProperty("position", "absolute");
|
|
16908
16908
|
this.m.rootWrapper.setStyleProperty("transform-origin", "0px 0px");
|
|
@@ -17090,7 +17090,7 @@
|
|
|
17090
17090
|
}
|
|
17091
17091
|
};
|
|
17092
17092
|
LabelView.prototype.ah = function (a) {
|
|
17093
|
-
igniteuiAngularCore.NativeUI.
|
|
17093
|
+
igniteuiAngularCore.NativeUI.r(this.n, a);
|
|
17094
17094
|
};
|
|
17095
17095
|
LabelView.prototype.e = function () {
|
|
17096
17096
|
return ((function () {
|
|
@@ -17197,7 +17197,7 @@
|
|
|
17197
17197
|
c.setStyleProperty("background-attachment", "initial");
|
|
17198
17198
|
c.setStyleProperty("background-origin", "initial");
|
|
17199
17199
|
c.setStyleProperty("background-color", "transparent");
|
|
17200
|
-
igniteuiAngularCore.NativeUI.
|
|
17200
|
+
igniteuiAngularCore.NativeUI.r(c, this.c.d4);
|
|
17201
17201
|
c.setStyleProperty("outline-style", "none");
|
|
17202
17202
|
c.setStyleProperty("box-shadow", "none");
|
|
17203
17203
|
c.setStyleProperty("border-top", "0.1875rem solid transparent");
|
|
@@ -17329,7 +17329,7 @@
|
|
|
17329
17329
|
$ret.m = 1;
|
|
17330
17330
|
return $ret;
|
|
17331
17331
|
})()));
|
|
17332
|
-
igniteuiAngularCore.NativeUI.
|
|
17332
|
+
igniteuiAngularCore.NativeUI.ai(this.m.rootWrapper, b);
|
|
17333
17333
|
this.m.rootWrapper.setStyleProperty("transform-origin", "0px 0px");
|
|
17334
17334
|
};
|
|
17335
17335
|
InputView.prototype.l = function () {
|
|
@@ -18474,7 +18474,7 @@
|
|
|
18474
18474
|
this.jv();
|
|
18475
18475
|
break;
|
|
18476
18476
|
case "IsDisabled":
|
|
18477
|
-
igniteuiAngularCore.NativeUI.
|
|
18477
|
+
igniteuiAngularCore.NativeUI.w(this.view.v, !this.disabled);
|
|
18478
18478
|
break;
|
|
18479
18479
|
}
|
|
18480
18480
|
};
|
|
@@ -18661,44 +18661,44 @@
|
|
|
18661
18661
|
var e = this.v != null && this.v.playState == 1;
|
|
18662
18662
|
var f = this.w != null && this.w.playState == 1;
|
|
18663
18663
|
var g = this.u != null && this.u.playState == 1;
|
|
18664
|
-
igniteuiAngularCore.NativeUI.
|
|
18665
|
-
igniteuiAngularCore.NativeUI.
|
|
18666
|
-
igniteuiAngularCore.NativeUI.
|
|
18667
|
-
igniteuiAngularCore.NativeUI.
|
|
18664
|
+
igniteuiAngularCore.NativeUI.p(a, this.ko);
|
|
18665
|
+
igniteuiAngularCore.NativeUI.p(b, this.ko);
|
|
18666
|
+
igniteuiAngularCore.NativeUI.n(a, this.l5);
|
|
18667
|
+
igniteuiAngularCore.NativeUI.ac(a, this.oe);
|
|
18668
18668
|
if (this.ao) {
|
|
18669
18669
|
if (!g) {
|
|
18670
|
-
igniteuiAngularCore.NativeUI.
|
|
18671
|
-
igniteuiAngularCore.NativeUI.
|
|
18670
|
+
igniteuiAngularCore.NativeUI.o(b, this.l7);
|
|
18671
|
+
igniteuiAngularCore.NativeUI.q(b, new igniteuiAngularCore.Thickness(0, this.ch));
|
|
18672
18672
|
}
|
|
18673
18673
|
if (!f) {
|
|
18674
|
-
igniteuiAngularCore.NativeUI.
|
|
18674
|
+
igniteuiAngularCore.NativeUI.n(c, this.l8);
|
|
18675
18675
|
}
|
|
18676
18676
|
}
|
|
18677
18677
|
else {
|
|
18678
18678
|
if (!f) {
|
|
18679
18679
|
if (this.ap) {
|
|
18680
|
-
igniteuiAngularCore.NativeUI.
|
|
18681
|
-
igniteuiAngularCore.NativeUI.
|
|
18682
|
-
igniteuiAngularCore.NativeUI.
|
|
18680
|
+
igniteuiAngularCore.NativeUI.n(c, this.l9);
|
|
18681
|
+
igniteuiAngularCore.NativeUI.ab(c, this.ck);
|
|
18682
|
+
igniteuiAngularCore.NativeUI.v(c, this.cl);
|
|
18683
18683
|
}
|
|
18684
18684
|
else {
|
|
18685
|
-
igniteuiAngularCore.NativeUI.
|
|
18686
|
-
igniteuiAngularCore.NativeUI.
|
|
18687
|
-
igniteuiAngularCore.NativeUI.
|
|
18685
|
+
igniteuiAngularCore.NativeUI.n(c, this.ma);
|
|
18686
|
+
igniteuiAngularCore.NativeUI.ab(c, this.cm);
|
|
18687
|
+
igniteuiAngularCore.NativeUI.v(c, this.cp);
|
|
18688
18688
|
}
|
|
18689
18689
|
}
|
|
18690
18690
|
if (!g) {
|
|
18691
|
-
igniteuiAngularCore.NativeUI.
|
|
18692
|
-
igniteuiAngularCore.NativeUI.
|
|
18691
|
+
igniteuiAngularCore.NativeUI.o(b, this.l6);
|
|
18692
|
+
igniteuiAngularCore.NativeUI.q(b, new igniteuiAngularCore.Thickness(0, this.cg));
|
|
18693
18693
|
}
|
|
18694
18694
|
if (!f) {
|
|
18695
|
-
igniteuiAngularCore.NativeUI.
|
|
18695
|
+
igniteuiAngularCore.NativeUI.n(a, this.l5);
|
|
18696
18696
|
}
|
|
18697
18697
|
}
|
|
18698
18698
|
if (!e) {
|
|
18699
|
-
igniteuiAngularCore.NativeUI.
|
|
18700
|
-
igniteuiAngularCore.NativeUI.
|
|
18701
|
-
igniteuiAngularCore.NativeUI.
|
|
18699
|
+
igniteuiAngularCore.NativeUI.n(d, this.mb);
|
|
18700
|
+
igniteuiAngularCore.NativeUI.v(d, this.co);
|
|
18701
|
+
igniteuiAngularCore.NativeUI.ab(d, this.cn);
|
|
18702
18702
|
}
|
|
18703
18703
|
};
|
|
18704
18704
|
Object.defineProperty(XInputGroup.prototype, "a", {
|
|
@@ -21178,6 +21178,8 @@
|
|
|
21178
21178
|
$ret.addItem(1, XInputGroup.i);
|
|
21179
21179
|
$ret.addItem(3, XInputGroup.l);
|
|
21180
21180
|
$ret.addItem(4, XInputGroup.k);
|
|
21181
|
+
$ret.addItem(5, XInputGroup.l);
|
|
21182
|
+
$ret.addItem(6, XInputGroup.k);
|
|
21181
21183
|
return $ret;
|
|
21182
21184
|
})()), 2);
|
|
21183
21185
|
return XInputGroup;
|
|
@@ -21967,7 +21969,7 @@
|
|
|
21967
21969
|
a.c = this.p;
|
|
21968
21970
|
a.e = this.t;
|
|
21969
21971
|
a.d = this.s;
|
|
21970
|
-
a.a = igniteuiAngularCore.AppearanceHelper.a(igniteuiAngularCore.NativeUI.
|
|
21972
|
+
a.a = igniteuiAngularCore.AppearanceHelper.a(igniteuiAngularCore.NativeUI.ao(b));
|
|
21971
21973
|
a.b = this.l;
|
|
21972
21974
|
a.i = this.ap;
|
|
21973
21975
|
a.g = this.an;
|
|
@@ -22317,7 +22319,7 @@
|
|
|
22317
22319
|
if (this.ad != null) {
|
|
22318
22320
|
this.view.bc(this.ad);
|
|
22319
22321
|
}
|
|
22320
|
-
igniteuiAngularCore.NativeUI.
|
|
22322
|
+
igniteuiAngularCore.NativeUI.r(this.view.r, this.d4);
|
|
22321
22323
|
this.view.a7();
|
|
22322
22324
|
};
|
|
22323
22325
|
Object.defineProperty(XInput.prototype, "d4", {
|
|
@@ -22765,7 +22767,7 @@
|
|
|
22765
22767
|
a.l = this.ce;
|
|
22766
22768
|
a.o = this.ci;
|
|
22767
22769
|
a.d = this.au;
|
|
22768
|
-
a.a = igniteuiAngularCore.AppearanceHelper.a(igniteuiAngularCore.NativeUI.
|
|
22770
|
+
a.a = igniteuiAngularCore.AppearanceHelper.a(igniteuiAngularCore.NativeUI.ao(b));
|
|
22769
22771
|
a.k = this.b8;
|
|
22770
22772
|
a.n = this.cg;
|
|
22771
22773
|
a.e = this.aw;
|
|
@@ -30352,7 +30354,8 @@
|
|
|
30352
30354
|
case 15:
|
|
30353
30355
|
case 17:
|
|
30354
30356
|
case 7:
|
|
30355
|
-
case 21:
|
|
30357
|
+
case 21:
|
|
30358
|
+
case 1: return b;
|
|
30356
30359
|
}
|
|
30357
30360
|
return this.s != null ? this.s : b;
|
|
30358
30361
|
};
|
|
@@ -30364,7 +30367,8 @@
|
|
|
30364
30367
|
};
|
|
30365
30368
|
XComponentBridge.prototype.getTargetForBuildInProperty = function (a, b) {
|
|
30366
30369
|
switch (b) {
|
|
30367
|
-
case
|
|
30370
|
+
case 109:
|
|
30371
|
+
case 122: return a;
|
|
30368
30372
|
}
|
|
30369
30373
|
return this.s != null ? this.s : a;
|
|
30370
30374
|
};
|
|
@@ -30623,18 +30627,18 @@
|
|
|
30623
30627
|
var c = a;
|
|
30624
30628
|
var d = igniteuiAngularCore.typeCast(XInput.$, c.inputs._inner[0]);
|
|
30625
30629
|
switch (b) {
|
|
30626
|
-
case
|
|
30630
|
+
case 104: return a.mc;
|
|
30627
30631
|
case 3:
|
|
30628
30632
|
this.an(a);
|
|
30629
30633
|
var e = this.v(a);
|
|
30630
30634
|
return e.text;
|
|
30631
|
-
case
|
|
30635
|
+
case 101:
|
|
30632
30636
|
this.ao(a);
|
|
30633
30637
|
return this.u.svgPath;
|
|
30634
|
-
case
|
|
30638
|
+
case 102:
|
|
30635
30639
|
this.ao(a);
|
|
30636
30640
|
return this.u.fill;
|
|
30637
|
-
case
|
|
30641
|
+
case 103:
|
|
30638
30642
|
this.ao(a);
|
|
30639
30643
|
return this.u.ea;
|
|
30640
30644
|
case 2: return d.cq;
|
|
@@ -30670,11 +30674,11 @@
|
|
|
30670
30674
|
}
|
|
30671
30675
|
break;
|
|
30672
30676
|
case 21: return d.a1;
|
|
30673
|
-
case
|
|
30674
|
-
case
|
|
30675
|
-
case
|
|
30676
|
-
case
|
|
30677
|
-
case
|
|
30677
|
+
case 33: return d.disabled;
|
|
30678
|
+
case 34: return d.d8;
|
|
30679
|
+
case 106: return d.selectionStart;
|
|
30680
|
+
case 107: return d.selectionEnd;
|
|
30681
|
+
case 108: return c.an;
|
|
30678
30682
|
}
|
|
30679
30683
|
return null;
|
|
30680
30684
|
};
|
|
@@ -30682,7 +30686,7 @@
|
|
|
30682
30686
|
var d = a;
|
|
30683
30687
|
var e = igniteuiAngularCore.typeCast(XInput.$, d.inputs._inner[0]);
|
|
30684
30688
|
switch (b) {
|
|
30685
|
-
case
|
|
30689
|
+
case 104:
|
|
30686
30690
|
a.mc = c;
|
|
30687
30691
|
break;
|
|
30688
30692
|
case 3:
|
|
@@ -30690,15 +30694,15 @@
|
|
|
30690
30694
|
var f = this.v(a);
|
|
30691
30695
|
f.text = c;
|
|
30692
30696
|
break;
|
|
30693
|
-
case
|
|
30697
|
+
case 101:
|
|
30694
30698
|
this.ao(a);
|
|
30695
30699
|
this.u.svgPath = c;
|
|
30696
30700
|
break;
|
|
30697
|
-
case
|
|
30701
|
+
case 102:
|
|
30698
30702
|
this.ao(a);
|
|
30699
30703
|
this.u.fill = c;
|
|
30700
30704
|
break;
|
|
30701
|
-
case
|
|
30705
|
+
case 103:
|
|
30702
30706
|
this.ao(a);
|
|
30703
30707
|
this.u.ea = c;
|
|
30704
30708
|
break;
|
|
@@ -30769,19 +30773,19 @@
|
|
|
30769
30773
|
case 21:
|
|
30770
30774
|
e.a1 = c;
|
|
30771
30775
|
break;
|
|
30772
|
-
case
|
|
30776
|
+
case 33:
|
|
30773
30777
|
e.disabled = c;
|
|
30774
30778
|
break;
|
|
30775
|
-
case
|
|
30779
|
+
case 34:
|
|
30776
30780
|
e.d8 = c;
|
|
30777
30781
|
break;
|
|
30778
|
-
case
|
|
30782
|
+
case 106:
|
|
30779
30783
|
e.selectionStart = igniteuiAngularCore.typeGetValue(c);
|
|
30780
30784
|
break;
|
|
30781
|
-
case
|
|
30785
|
+
case 107:
|
|
30782
30786
|
e.selectionEnd = igniteuiAngularCore.typeGetValue(c);
|
|
30783
30787
|
break;
|
|
30784
|
-
case
|
|
30788
|
+
case 108:
|
|
30785
30789
|
d.an = c;
|
|
30786
30790
|
break;
|
|
30787
30791
|
}
|
|
@@ -30948,7 +30952,7 @@
|
|
|
30948
30952
|
d.clearButtonContent();
|
|
30949
30953
|
if (igniteuiAngularCore.typeCast(igniteuiAngularCore.NativeUIComponent.$, c) !== null) {
|
|
30950
30954
|
this.ac = c;
|
|
30951
|
-
d.appendButtonContent(this.ac.
|
|
30955
|
+
d.appendButtonContent(this.ac.ao);
|
|
30952
30956
|
}
|
|
30953
30957
|
else {
|
|
30954
30958
|
this.ac = c;
|
|
@@ -30979,10 +30983,10 @@
|
|
|
30979
30983
|
case 18:
|
|
30980
30984
|
d.o = igniteuiAngularCore.EnumUtil.getEnumValue(igniteuiAngularCore.BaseControlTheme_$type, c);
|
|
30981
30985
|
break;
|
|
30982
|
-
case
|
|
30986
|
+
case 55:
|
|
30983
30987
|
if (igniteuiAngularCore.typeCast(igniteuiAngularCore.NativeUIComponent.$, c) !== null) {
|
|
30984
30988
|
this.aa = c;
|
|
30985
|
-
d.appendButtonContent(this.aa.
|
|
30989
|
+
d.appendButtonContent(this.aa.ao);
|
|
30986
30990
|
}
|
|
30987
30991
|
break;
|
|
30988
30992
|
case 0:
|
|
@@ -31007,7 +31011,7 @@
|
|
|
31007
31011
|
case 4:
|
|
31008
31012
|
d.ax = c;
|
|
31009
31013
|
break;
|
|
31010
|
-
case
|
|
31014
|
+
case 33:
|
|
31011
31015
|
d.disabled = c;
|
|
31012
31016
|
break;
|
|
31013
31017
|
case 5:
|
|
@@ -31019,19 +31023,19 @@
|
|
|
31019
31023
|
case 24:
|
|
31020
31024
|
d.ql = c;
|
|
31021
31025
|
break;
|
|
31022
|
-
case
|
|
31026
|
+
case 56:
|
|
31023
31027
|
d.bn = c.left;
|
|
31024
31028
|
d.bp = c.top;
|
|
31025
31029
|
d.bo = c.right;
|
|
31026
31030
|
d.bm = c.bottom;
|
|
31027
31031
|
break;
|
|
31028
|
-
case
|
|
31032
|
+
case 58:
|
|
31029
31033
|
d.az = c;
|
|
31030
31034
|
break;
|
|
31031
|
-
case
|
|
31035
|
+
case 57:
|
|
31032
31036
|
d.aw = c;
|
|
31033
31037
|
break;
|
|
31034
|
-
case
|
|
31038
|
+
case 59:
|
|
31035
31039
|
d.au = c;
|
|
31036
31040
|
break;
|
|
31037
31041
|
case 17:
|
|
@@ -31040,13 +31044,13 @@
|
|
|
31040
31044
|
case 11:
|
|
31041
31045
|
d.ab = c;
|
|
31042
31046
|
break;
|
|
31043
|
-
case
|
|
31047
|
+
case 89:
|
|
31044
31048
|
d.bz = c;
|
|
31045
31049
|
break;
|
|
31046
|
-
case
|
|
31050
|
+
case 60:
|
|
31047
31051
|
d.a6 = c;
|
|
31048
31052
|
break;
|
|
31049
|
-
case
|
|
31053
|
+
case 119:
|
|
31050
31054
|
d.n7 = c;
|
|
31051
31055
|
break;
|
|
31052
31056
|
case 23:
|
|
@@ -31058,7 +31062,7 @@
|
|
|
31058
31062
|
var c = a;
|
|
31059
31063
|
switch (b) {
|
|
31060
31064
|
case 3: return this.ac;
|
|
31061
|
-
case
|
|
31065
|
+
case 55: return this.aa;
|
|
31062
31066
|
case 1:
|
|
31063
31067
|
switch (c.s) {
|
|
31064
31068
|
case 0: return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.NativeUIDisplayDensity_$type, 0);
|
|
@@ -31079,18 +31083,18 @@
|
|
|
31079
31083
|
}
|
|
31080
31084
|
return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.NativeUIButtonDisplayType_$type, 0);
|
|
31081
31085
|
case 4: return c.ax;
|
|
31082
|
-
case
|
|
31086
|
+
case 33: return c.disabled;
|
|
31083
31087
|
case 5: return c.av;
|
|
31084
31088
|
case 6: return !c.a3;
|
|
31085
31089
|
case 24: return c.ql;
|
|
31086
|
-
case
|
|
31087
|
-
case
|
|
31088
|
-
case
|
|
31089
|
-
case
|
|
31090
|
+
case 56: return new igniteuiAngularCore.Thickness(1, c.bn, c.bp, c.bo, c.bm);
|
|
31091
|
+
case 58: return c.az;
|
|
31092
|
+
case 57: return c.aw;
|
|
31093
|
+
case 59: return c.au;
|
|
31090
31094
|
case 17: return c.k6;
|
|
31091
|
-
case
|
|
31092
|
-
case
|
|
31093
|
-
case
|
|
31095
|
+
case 89: return c.bz;
|
|
31096
|
+
case 60: return c.a6;
|
|
31097
|
+
case 119: return c.n7;
|
|
31094
31098
|
case 23: return c.n6;
|
|
31095
31099
|
}
|
|
31096
31100
|
return null;
|
|
@@ -32314,7 +32318,7 @@
|
|
|
32314
32318
|
this.m = true;
|
|
32315
32319
|
this.ap();
|
|
32316
32320
|
if (this.a != null) {
|
|
32317
|
-
this.a.
|
|
32321
|
+
this.a.av(this.u.rootWrapper, "");
|
|
32318
32322
|
}
|
|
32319
32323
|
if (this.z == -1) {
|
|
32320
32324
|
this.z = this.u.setTimeout(igniteuiAngularCore.runOn(this, this.an), 200);
|
|
@@ -32323,7 +32327,7 @@
|
|
|
32323
32327
|
MultiSliderView.prototype.au = function () {
|
|
32324
32328
|
this.m = false;
|
|
32325
32329
|
if (this.a != null && this.u != null) {
|
|
32326
|
-
this.a.
|
|
32330
|
+
this.a.bk(this.u.rootWrapper, "");
|
|
32327
32331
|
}
|
|
32328
32332
|
if (this.z != -1) {
|
|
32329
32333
|
window.clearTimeout(this.z);
|
|
@@ -32366,8 +32370,8 @@
|
|
|
32366
32370
|
this.w = igniteuiAngularCore.truncate(Math.round(d));
|
|
32367
32371
|
}
|
|
32368
32372
|
if (this.l.d && this.t != 1) {
|
|
32369
|
-
this.l.
|
|
32370
|
-
this.l.
|
|
32373
|
+
this.l.ac();
|
|
32374
|
+
this.l.ad(this.t, this.t);
|
|
32371
32375
|
}
|
|
32372
32376
|
this.l.l(this.g.e0.left, this.g.e0.top, this.g.e0.width, this.g.e0.height);
|
|
32373
32377
|
for (var e = 0; e < this.r.count; e++) {
|
|
@@ -32389,29 +32393,29 @@
|
|
|
32389
32393
|
this.a1(this.r._inner[i].allPaths);
|
|
32390
32394
|
}
|
|
32391
32395
|
if (this.l.d && this.t != 1) {
|
|
32392
|
-
this.l.
|
|
32396
|
+
this.l.ab();
|
|
32393
32397
|
}
|
|
32394
32398
|
};
|
|
32395
32399
|
MultiSliderView.prototype.a2 = function (a) {
|
|
32396
32400
|
if (a.j != null) {
|
|
32397
|
-
this.l.
|
|
32401
|
+
this.l.ac();
|
|
32398
32402
|
}
|
|
32399
32403
|
this.l.k(a.j);
|
|
32400
|
-
this.l.
|
|
32404
|
+
this.l.y(a);
|
|
32401
32405
|
if (a.j != null) {
|
|
32402
|
-
this.l.
|
|
32406
|
+
this.l.ab();
|
|
32403
32407
|
}
|
|
32404
32408
|
};
|
|
32405
32409
|
MultiSliderView.prototype.a1 = function (a) {
|
|
32406
32410
|
for (var b = 0; b < a.count; b++) {
|
|
32407
32411
|
var c = a.item(b);
|
|
32408
32412
|
if (c.j != null) {
|
|
32409
|
-
this.l.
|
|
32413
|
+
this.l.ac();
|
|
32410
32414
|
}
|
|
32411
32415
|
this.l.k(c.j);
|
|
32412
32416
|
this.l.t(c);
|
|
32413
32417
|
if (c.j != null) {
|
|
32414
|
-
this.l.
|
|
32418
|
+
this.l.ab();
|
|
32415
32419
|
}
|
|
32416
32420
|
}
|
|
32417
32421
|
};
|
|
@@ -32484,17 +32488,17 @@
|
|
|
32484
32488
|
this.v = i;
|
|
32485
32489
|
var j = this.u.get2DCanvasContext(this.v);
|
|
32486
32490
|
this.l = new igniteuiAngularCore.RenderingContext(new igniteuiAngularCore.CanvasViewRenderer(), j);
|
|
32487
|
-
this.l.
|
|
32491
|
+
this.l.ah(this.j);
|
|
32488
32492
|
this.ab();
|
|
32489
32493
|
this.a = new igniteuiAngularCore.CanvasGestureDOMEventProxy(this.u.rootWrapper, this.u, false);
|
|
32490
|
-
this.a.
|
|
32494
|
+
this.a.bo = this.g.e0;
|
|
32491
32495
|
var k = this.a;
|
|
32492
32496
|
k.onContactStarted = igniteuiAngularCore.delegateCombine(k.onContactStarted, igniteuiAngularCore.runOn(this, this.aj));
|
|
32493
32497
|
var l = this.a;
|
|
32494
32498
|
l.onContactMoved = igniteuiAngularCore.delegateCombine(l.onContactMoved, igniteuiAngularCore.runOn(this, this.ai));
|
|
32495
32499
|
var m = this.a;
|
|
32496
32500
|
m.onContactCompleted = igniteuiAngularCore.delegateCombine(m.onContactCompleted, igniteuiAngularCore.runOn(this, this.ah));
|
|
32497
|
-
this.a.
|
|
32501
|
+
this.a.aq = function (n) { return _this.g.ey.containsPoint(n); };
|
|
32498
32502
|
this.g.ds(0, 0, e, f);
|
|
32499
32503
|
this.s = igniteuiAngularCore.FontUtil.getCurrentFontHeight(this.u, this.j);
|
|
32500
32504
|
this.g.trackDirty();
|
|
@@ -32517,8 +32521,8 @@
|
|
|
32517
32521
|
b.onContactMoved = igniteuiAngularCore.delegateRemove(b.onContactMoved, igniteuiAngularCore.runOn(this, this.ai));
|
|
32518
32522
|
var c = this.a;
|
|
32519
32523
|
c.onContactCompleted = igniteuiAngularCore.delegateRemove(c.onContactCompleted, igniteuiAngularCore.runOn(this, this.ah));
|
|
32520
|
-
this.a.
|
|
32521
|
-
this.a.
|
|
32524
|
+
this.a.aq = null;
|
|
32525
|
+
this.a.ax();
|
|
32522
32526
|
}
|
|
32523
32527
|
};
|
|
32524
32528
|
MultiSliderView.prototype.ay = function () {
|
|
@@ -32537,7 +32541,7 @@
|
|
|
32537
32541
|
if (a || d) {
|
|
32538
32542
|
this.g.ds(0, 0, b, c);
|
|
32539
32543
|
if (this.a != null) {
|
|
32540
|
-
this.a.
|
|
32544
|
+
this.a.bo = this.g.e0;
|
|
32541
32545
|
}
|
|
32542
32546
|
}
|
|
32543
32547
|
};
|
|
@@ -32559,7 +32563,7 @@
|
|
|
32559
32563
|
this.i = c;
|
|
32560
32564
|
this.j = this.i;
|
|
32561
32565
|
this.s = igniteuiAngularCore.FontUtil.getCurrentFontHeight(this.u, this.j);
|
|
32562
|
-
this.l.
|
|
32566
|
+
this.l.ah(this.i);
|
|
32563
32567
|
this.g.trackDirty();
|
|
32564
32568
|
}
|
|
32565
32569
|
};
|
|
@@ -34315,15 +34319,15 @@
|
|
|
34315
34319
|
switch (b) {
|
|
34316
34320
|
case 12: return a.bg;
|
|
34317
34321
|
case 13: return a.bf;
|
|
34318
|
-
case
|
|
34319
|
-
case
|
|
34322
|
+
case 98: return a.bv;
|
|
34323
|
+
case 99: return a.bf;
|
|
34320
34324
|
case 14: return a.bl;
|
|
34321
34325
|
case 2: return a.thumbs._inner[0].s;
|
|
34322
|
-
case
|
|
34323
|
-
case
|
|
34324
|
-
case
|
|
34325
|
-
case
|
|
34326
|
-
case
|
|
34326
|
+
case 93: return a.b0;
|
|
34327
|
+
case 94: return a.ek;
|
|
34328
|
+
case 95: return a.es;
|
|
34329
|
+
case 97: return a.eu;
|
|
34330
|
+
case 96: return a.et;
|
|
34327
34331
|
case 30:
|
|
34328
34332
|
var c = a.e;
|
|
34329
34333
|
switch (c) {
|
|
@@ -34363,10 +34367,10 @@
|
|
|
34363
34367
|
case 13:
|
|
34364
34368
|
a.bf = c;
|
|
34365
34369
|
break;
|
|
34366
|
-
case
|
|
34370
|
+
case 98:
|
|
34367
34371
|
a.bv = c;
|
|
34368
34372
|
break;
|
|
34369
|
-
case
|
|
34373
|
+
case 99:
|
|
34370
34374
|
a.bu = c;
|
|
34371
34375
|
break;
|
|
34372
34376
|
case 14:
|
|
@@ -34375,19 +34379,19 @@
|
|
|
34375
34379
|
case 2:
|
|
34376
34380
|
a.thumbs._inner[0].s = c;
|
|
34377
34381
|
break;
|
|
34378
|
-
case
|
|
34382
|
+
case 93:
|
|
34379
34383
|
a.b0 = c;
|
|
34380
34384
|
break;
|
|
34381
|
-
case
|
|
34385
|
+
case 94:
|
|
34382
34386
|
a.ek = c;
|
|
34383
34387
|
break;
|
|
34384
|
-
case
|
|
34388
|
+
case 95:
|
|
34385
34389
|
a.es = c;
|
|
34386
34390
|
break;
|
|
34387
|
-
case
|
|
34391
|
+
case 97:
|
|
34388
34392
|
a.eu = c;
|
|
34389
34393
|
break;
|
|
34390
|
-
case
|
|
34394
|
+
case 96:
|
|
34391
34395
|
a.et = c;
|
|
34392
34396
|
break;
|
|
34393
34397
|
case 30:
|
|
@@ -36316,17 +36320,17 @@
|
|
|
36316
36320
|
}
|
|
36317
36321
|
return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.NativeUIDisplayDensity_$type, e);
|
|
36318
36322
|
case 18: return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.BaseControlTheme_$type, c.q);
|
|
36319
|
-
case
|
|
36323
|
+
case 88: return c.d;
|
|
36320
36324
|
case 0:
|
|
36321
36325
|
switch (c.i) {
|
|
36322
36326
|
case 0: return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.NativeUIButtonGroupDisplayType_$type, 0);
|
|
36323
36327
|
case 1: return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.NativeUIButtonGroupDisplayType_$type, 1);
|
|
36324
36328
|
}
|
|
36325
36329
|
return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.NativeUIButtonDisplayType_$type, 0);
|
|
36326
|
-
case
|
|
36330
|
+
case 33: return c.disabled;
|
|
36327
36331
|
case 24: return c.ht;
|
|
36328
36332
|
case 17: return c.a2;
|
|
36329
|
-
case
|
|
36333
|
+
case 120: return c.hp;
|
|
36330
36334
|
}
|
|
36331
36335
|
return null;
|
|
36332
36336
|
};
|
|
@@ -36357,7 +36361,7 @@
|
|
|
36357
36361
|
case 18:
|
|
36358
36362
|
d.q = igniteuiAngularCore.EnumUtil.getEnumValue(igniteuiAngularCore.BaseControlTheme_$type, c);
|
|
36359
36363
|
break;
|
|
36360
|
-
case
|
|
36364
|
+
case 88:
|
|
36361
36365
|
d.d = c;
|
|
36362
36366
|
break;
|
|
36363
36367
|
case 0:
|
|
@@ -36370,7 +36374,7 @@
|
|
|
36370
36374
|
break;
|
|
36371
36375
|
}
|
|
36372
36376
|
break;
|
|
36373
|
-
case
|
|
36377
|
+
case 33:
|
|
36374
36378
|
d.disabled = c;
|
|
36375
36379
|
break;
|
|
36376
36380
|
case 24:
|
|
@@ -36379,7 +36383,7 @@
|
|
|
36379
36383
|
case 17:
|
|
36380
36384
|
d.a2 = c.e;
|
|
36381
36385
|
break;
|
|
36382
|
-
case
|
|
36386
|
+
case 120:
|
|
36383
36387
|
d.hp = c;
|
|
36384
36388
|
break;
|
|
36385
36389
|
}
|
|
@@ -36396,7 +36400,7 @@
|
|
|
36396
36400
|
XButtonGroupBridge.prototype.addButton = function (a, b) {
|
|
36397
36401
|
this.v.add(b);
|
|
36398
36402
|
a.buttons.add(b.d.getMethodTarget(null));
|
|
36399
|
-
a.appendContentChild(b.
|
|
36403
|
+
a.appendContentChild(b.ao);
|
|
36400
36404
|
};
|
|
36401
36405
|
XButtonGroupBridge.prototype.updateButton = function (a, b, c) {
|
|
36402
36406
|
this.v._inner[b] = c;
|
|
@@ -36405,7 +36409,7 @@
|
|
|
36405
36409
|
XButtonGroupBridge.prototype.insertButton = function (a, b, c) {
|
|
36406
36410
|
this.v.insert(b, c);
|
|
36407
36411
|
a.buttons.insert(b, c.d.getMethodTarget(null));
|
|
36408
|
-
a.appendContentChild(c.
|
|
36412
|
+
a.appendContentChild(c.ao);
|
|
36409
36413
|
};
|
|
36410
36414
|
XButtonGroupBridge.prototype.removeButton = function (a, b) {
|
|
36411
36415
|
this.v.removeAt(b);
|
|
@@ -37074,18 +37078,18 @@
|
|
|
37074
37078
|
if (a == null || b == null) {
|
|
37075
37079
|
return;
|
|
37076
37080
|
}
|
|
37077
|
-
igniteuiAngularCore.NativeUI.
|
|
37078
|
-
igniteuiAngularCore.NativeUI.
|
|
37081
|
+
igniteuiAngularCore.NativeUI.p(a, new igniteuiAngularCore.CornerRadius(0, this.ao));
|
|
37082
|
+
igniteuiAngularCore.NativeUI.p(b, new igniteuiAngularCore.CornerRadius(0, this.ao));
|
|
37079
37083
|
if (!igniteuiAngularCore.isNaN_(this.an)) {
|
|
37080
|
-
igniteuiAngularCore.NativeUI.
|
|
37084
|
+
igniteuiAngularCore.NativeUI.q(b, new igniteuiAngularCore.Thickness(0, this.an));
|
|
37081
37085
|
}
|
|
37082
37086
|
if (this.checked) {
|
|
37083
|
-
igniteuiAngularCore.NativeUI.
|
|
37084
|
-
igniteuiAngularCore.NativeUI.
|
|
37087
|
+
igniteuiAngularCore.NativeUI.n(a, this.c8);
|
|
37088
|
+
igniteuiAngularCore.NativeUI.o(b, this.c9);
|
|
37085
37089
|
}
|
|
37086
37090
|
else {
|
|
37087
|
-
igniteuiAngularCore.NativeUI.
|
|
37088
|
-
igniteuiAngularCore.NativeUI.
|
|
37091
|
+
igniteuiAngularCore.NativeUI.n(a, this.db);
|
|
37092
|
+
igniteuiAngularCore.NativeUI.o(b, this.dc);
|
|
37089
37093
|
}
|
|
37090
37094
|
};
|
|
37091
37095
|
XCheckbox.prototype.cw = function () {
|
|
@@ -37093,8 +37097,8 @@
|
|
|
37093
37097
|
if (a == null) {
|
|
37094
37098
|
return;
|
|
37095
37099
|
}
|
|
37096
|
-
igniteuiAngularCore.NativeUI.
|
|
37097
|
-
igniteuiAngularCore.NativeUI.
|
|
37100
|
+
igniteuiAngularCore.NativeUI.ad(a, this.da);
|
|
37101
|
+
igniteuiAngularCore.NativeUI.ag(a, this.ap);
|
|
37098
37102
|
};
|
|
37099
37103
|
Object.defineProperty(XCheckbox.prototype, "dl", {
|
|
37100
37104
|
get: function () {
|
|
@@ -37649,7 +37653,7 @@
|
|
|
37649
37653
|
this.view.al(igniteuiAngularCore.BrushUtil.u(this.c8, 0.6), igniteuiAngularCore.BrushUtil.u(this.dc, 0.1));
|
|
37650
37654
|
}
|
|
37651
37655
|
if (!this.indeterminate) {
|
|
37652
|
-
igniteuiAngularCore.NativeUI.
|
|
37656
|
+
igniteuiAngularCore.NativeUI.ai(this.view.v, null);
|
|
37653
37657
|
}
|
|
37654
37658
|
if (this.z || this.indeterminate || a) {
|
|
37655
37659
|
var d = this.view.u;
|
|
@@ -37668,23 +37672,23 @@
|
|
|
37668
37672
|
$ret.j = -_this.view.l();
|
|
37669
37673
|
return $ret;
|
|
37670
37674
|
})()));
|
|
37671
|
-
igniteuiAngularCore.NativeUI.
|
|
37672
|
-
igniteuiAngularCore.NativeUI.
|
|
37673
|
-
igniteuiAngularCore.NativeUI.
|
|
37674
|
-
igniteuiAngularCore.NativeUI.
|
|
37675
|
-
igniteuiAngularCore.NativeUI.
|
|
37675
|
+
igniteuiAngularCore.NativeUI.n(d, this.c8);
|
|
37676
|
+
igniteuiAngularCore.NativeUI.o(e, this.c9);
|
|
37677
|
+
igniteuiAngularCore.NativeUI.ab(f, 1);
|
|
37678
|
+
igniteuiAngularCore.NativeUI.af(f, 41);
|
|
37679
|
+
igniteuiAngularCore.NativeUI.ai(f, g);
|
|
37676
37680
|
}
|
|
37677
37681
|
else if (b) {
|
|
37678
|
-
igniteuiAngularCore.NativeUI.
|
|
37679
|
-
igniteuiAngularCore.NativeUI.
|
|
37680
|
-
igniteuiAngularCore.NativeUI.
|
|
37681
|
-
igniteuiAngularCore.NativeUI.
|
|
37682
|
+
igniteuiAngularCore.NativeUI.n(d, this.c8);
|
|
37683
|
+
igniteuiAngularCore.NativeUI.o(e, this.c9);
|
|
37684
|
+
igniteuiAngularCore.NativeUI.ab(f, 1);
|
|
37685
|
+
igniteuiAngularCore.NativeUI.af(f, 0);
|
|
37682
37686
|
}
|
|
37683
37687
|
else {
|
|
37684
|
-
igniteuiAngularCore.NativeUI.
|
|
37685
|
-
igniteuiAngularCore.NativeUI.
|
|
37686
|
-
igniteuiAngularCore.NativeUI.
|
|
37687
|
-
igniteuiAngularCore.NativeUI.
|
|
37688
|
+
igniteuiAngularCore.NativeUI.n(d, this.db);
|
|
37689
|
+
igniteuiAngularCore.NativeUI.o(e, this.dc);
|
|
37690
|
+
igniteuiAngularCore.NativeUI.ab(f, 0);
|
|
37691
|
+
igniteuiAngularCore.NativeUI.af(f, 24);
|
|
37688
37692
|
}
|
|
37689
37693
|
if (this.o.playState == 1) {
|
|
37690
37694
|
this.o.cancel();
|
|
@@ -37902,10 +37906,10 @@
|
|
|
37902
37906
|
case 7: return c.checked;
|
|
37903
37907
|
case 18: return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.BaseControlTheme_$type, c.n);
|
|
37904
37908
|
case 17: return c.ar;
|
|
37905
|
-
case
|
|
37906
|
-
case
|
|
37907
|
-
case
|
|
37908
|
-
case
|
|
37909
|
+
case 67: return c.dl;
|
|
37910
|
+
case 69: return c.dm;
|
|
37911
|
+
case 68: return c.dd;
|
|
37912
|
+
case 70: return c.de;
|
|
37909
37913
|
}
|
|
37910
37914
|
return null;
|
|
37911
37915
|
};
|
|
@@ -37924,16 +37928,16 @@
|
|
|
37924
37928
|
case 17:
|
|
37925
37929
|
d.ar = c;
|
|
37926
37930
|
break;
|
|
37927
|
-
case
|
|
37931
|
+
case 67:
|
|
37928
37932
|
d.dl = c;
|
|
37929
37933
|
break;
|
|
37930
|
-
case
|
|
37934
|
+
case 69:
|
|
37931
37935
|
d.dm = c;
|
|
37932
37936
|
break;
|
|
37933
|
-
case
|
|
37937
|
+
case 68:
|
|
37934
37938
|
d.dd = c;
|
|
37935
37939
|
break;
|
|
37936
|
-
case
|
|
37940
|
+
case 70:
|
|
37937
37941
|
d.de = c;
|
|
37938
37942
|
break;
|
|
37939
37943
|
}
|
|
@@ -37969,15 +37973,15 @@
|
|
|
37969
37973
|
case 16: return this.v;
|
|
37970
37974
|
case 15: return this.u;
|
|
37971
37975
|
case 18: return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.BaseControlTheme_$type, c.m);
|
|
37972
|
-
case
|
|
37973
|
-
case
|
|
37974
|
-
case
|
|
37975
|
-
case
|
|
37976
|
-
case
|
|
37977
|
-
case
|
|
37978
|
-
case
|
|
37979
|
-
case
|
|
37980
|
-
case
|
|
37976
|
+
case 45: return c.a6;
|
|
37977
|
+
case 46: return c.a7;
|
|
37978
|
+
case 47: return c.a8;
|
|
37979
|
+
case 48: return c.a5;
|
|
37980
|
+
case 49: return c.a9;
|
|
37981
|
+
case 50: return c.a1;
|
|
37982
|
+
case 64: return c.e;
|
|
37983
|
+
case 65: return c.f;
|
|
37984
|
+
case 66: return c.a4;
|
|
37981
37985
|
}
|
|
37982
37986
|
return _super.prototype.getValue.call(this, a, b);
|
|
37983
37987
|
};
|
|
@@ -37997,31 +38001,31 @@
|
|
|
37997
38001
|
this.w(d);
|
|
37998
38002
|
}
|
|
37999
38003
|
break;
|
|
38000
|
-
case
|
|
38004
|
+
case 45:
|
|
38001
38005
|
d.a6 = c;
|
|
38002
38006
|
break;
|
|
38003
|
-
case
|
|
38007
|
+
case 46:
|
|
38004
38008
|
d.a7 = c;
|
|
38005
38009
|
break;
|
|
38006
|
-
case
|
|
38010
|
+
case 47:
|
|
38007
38011
|
d.a8 = c;
|
|
38008
38012
|
break;
|
|
38009
|
-
case
|
|
38013
|
+
case 48:
|
|
38010
38014
|
d.a5 = c;
|
|
38011
38015
|
break;
|
|
38012
|
-
case
|
|
38016
|
+
case 49:
|
|
38013
38017
|
d.a9 = c;
|
|
38014
38018
|
break;
|
|
38015
|
-
case
|
|
38019
|
+
case 50:
|
|
38016
38020
|
d.a1 = c;
|
|
38017
38021
|
break;
|
|
38018
|
-
case
|
|
38022
|
+
case 64:
|
|
38019
38023
|
d.e = c;
|
|
38020
38024
|
break;
|
|
38021
|
-
case
|
|
38025
|
+
case 65:
|
|
38022
38026
|
d.f = c;
|
|
38023
38027
|
break;
|
|
38024
|
-
case
|
|
38028
|
+
case 66:
|
|
38025
38029
|
d.a4 = c;
|
|
38026
38030
|
break;
|
|
38027
38031
|
}
|
|
@@ -38036,8 +38040,8 @@
|
|
|
38036
38040
|
a.svg = null;
|
|
38037
38041
|
a.svgPath = null;
|
|
38038
38042
|
a.b = null;
|
|
38039
|
-
a.
|
|
38040
|
-
a.
|
|
38043
|
+
a.b2 = null;
|
|
38044
|
+
a.bj = null;
|
|
38041
38045
|
var b = igniteuiAngularCore.SvgIconRegistry.instance.getSvgPathString(this.u, this.v);
|
|
38042
38046
|
if (b != null) {
|
|
38043
38047
|
if (igniteuiAngularCore.stringStartsWith(igniteuiAngularCore.trimStart(b, ' ', '\n', '\r', '\t'), "<svg")) {
|
|
@@ -38055,16 +38059,16 @@
|
|
|
38055
38059
|
}
|
|
38056
38060
|
var d = igniteuiAngularCore.SvgIconRegistry.instance.getDataURLString(this.u, this.v);
|
|
38057
38061
|
if (d != null) {
|
|
38058
|
-
a.
|
|
38062
|
+
a.b2 = d;
|
|
38059
38063
|
return;
|
|
38060
38064
|
}
|
|
38061
38065
|
var e = igniteuiAngularCore.SvgIconRegistry.instance.getIconSource(this.u, this.v);
|
|
38062
38066
|
if (e != null) {
|
|
38063
|
-
a.
|
|
38067
|
+
a.bj = e;
|
|
38064
38068
|
}
|
|
38065
38069
|
};
|
|
38066
38070
|
XIconBridge.prototype.exportVisualData = function (a) {
|
|
38067
|
-
var b = a.
|
|
38071
|
+
var b = a.bi();
|
|
38068
38072
|
return b;
|
|
38069
38073
|
};
|
|
38070
38074
|
XIconBridge.$t = igniteuiAngularCore.markType(XIconBridge, 'XIconBridge', XComponentBridge.$);
|
|
@@ -38230,28 +38234,28 @@
|
|
|
38230
38234
|
var c = a;
|
|
38231
38235
|
switch (b) {
|
|
38232
38236
|
case 22: return c.ax;
|
|
38233
|
-
case
|
|
38234
|
-
case
|
|
38237
|
+
case 61: return c.av;
|
|
38238
|
+
case 62: return c.aq;
|
|
38235
38239
|
case 25: return c.am;
|
|
38236
38240
|
case 26: return c.a9;
|
|
38237
38241
|
case 17: return c.a1;
|
|
38238
38242
|
case 23: return c.c0;
|
|
38239
|
-
case
|
|
38243
|
+
case 36: switch (c.p) {
|
|
38240
38244
|
case 1: return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.NativeUIPopupAnimationType_$type, 1);
|
|
38241
38245
|
default: return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.NativeUIPopupAnimationType_$type, 0);
|
|
38242
38246
|
}
|
|
38243
|
-
case
|
|
38244
|
-
case
|
|
38245
|
-
case
|
|
38246
|
-
case
|
|
38247
|
-
case
|
|
38247
|
+
case 37: return c.at;
|
|
38248
|
+
case 38: return c.as;
|
|
38249
|
+
case 41: return c.bb;
|
|
38250
|
+
case 42: return c.au;
|
|
38251
|
+
case 44: switch (c.v) {
|
|
38248
38252
|
case 1: return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.NativeUIPopupPointerPosition_$type, 1);
|
|
38249
38253
|
default: return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.NativeUIPopupPointerPosition_$type, 2);
|
|
38250
38254
|
}
|
|
38251
|
-
case
|
|
38252
|
-
case
|
|
38253
|
-
case
|
|
38254
|
-
case
|
|
38255
|
+
case 43: return c.c4;
|
|
38256
|
+
case 40: return c.ao;
|
|
38257
|
+
case 63: return c.a4;
|
|
38258
|
+
case 111: return c.ay;
|
|
38255
38259
|
}
|
|
38256
38260
|
return _super.prototype.getValue.call(this, a, b);
|
|
38257
38261
|
};
|
|
@@ -38270,7 +38274,7 @@
|
|
|
38270
38274
|
case 23:
|
|
38271
38275
|
d.c0 = c;
|
|
38272
38276
|
break;
|
|
38273
|
-
case
|
|
38277
|
+
case 36:
|
|
38274
38278
|
switch (igniteuiAngularCore.EnumUtil.getEnumValue(igniteuiAngularCore.NativeUIPopupAnimationType_$type, c)) {
|
|
38275
38279
|
case 1:
|
|
38276
38280
|
d.p = 1;
|
|
@@ -38280,22 +38284,22 @@
|
|
|
38280
38284
|
break;
|
|
38281
38285
|
}
|
|
38282
38286
|
break;
|
|
38283
|
-
case
|
|
38287
|
+
case 37:
|
|
38284
38288
|
d.at = c;
|
|
38285
38289
|
break;
|
|
38286
|
-
case
|
|
38290
|
+
case 38:
|
|
38287
38291
|
d.as = c;
|
|
38288
38292
|
break;
|
|
38289
|
-
case
|
|
38293
|
+
case 41:
|
|
38290
38294
|
d.bb = igniteuiAngularCore.typeGetValue(c);
|
|
38291
38295
|
break;
|
|
38292
|
-
case
|
|
38296
|
+
case 42:
|
|
38293
38297
|
d.au = c;
|
|
38294
38298
|
break;
|
|
38295
|
-
case
|
|
38299
|
+
case 43:
|
|
38296
38300
|
d.c4 = c;
|
|
38297
38301
|
break;
|
|
38298
|
-
case
|
|
38302
|
+
case 44:
|
|
38299
38303
|
switch (igniteuiAngularCore.EnumUtil.getEnumValue(igniteuiAngularCore.NativeUIPopupPointerPosition_$type, c)) {
|
|
38300
38304
|
case 1:
|
|
38301
38305
|
d.v = 1;
|
|
@@ -38305,13 +38309,13 @@
|
|
|
38305
38309
|
break;
|
|
38306
38310
|
}
|
|
38307
38311
|
break;
|
|
38308
|
-
case
|
|
38312
|
+
case 40:
|
|
38309
38313
|
d.ao = c;
|
|
38310
38314
|
break;
|
|
38311
|
-
case
|
|
38315
|
+
case 63:
|
|
38312
38316
|
d.a4 = c;
|
|
38313
38317
|
break;
|
|
38314
|
-
case
|
|
38318
|
+
case 111:
|
|
38315
38319
|
d.ay = c;
|
|
38316
38320
|
break;
|
|
38317
38321
|
}
|
|
@@ -38321,7 +38325,7 @@
|
|
|
38321
38325
|
a.showRelativeToExclusionRect(b, this.v(c), this.u(d));
|
|
38322
38326
|
};
|
|
38323
38327
|
XPopupBridge.prototype.showRelativeToTarget = function (a, b, c, d) {
|
|
38324
|
-
var e = b.
|
|
38328
|
+
var e = b.ao.getNativeElement();
|
|
38325
38329
|
a.cr(e, this.v(c), this.u(d));
|
|
38326
38330
|
};
|
|
38327
38331
|
XPopupBridge.prototype.close = function (a) {
|
|
@@ -38353,17 +38357,17 @@
|
|
|
38353
38357
|
}
|
|
38354
38358
|
};
|
|
38355
38359
|
XPopupBridge.prototype.exportVisualData = function (a) {
|
|
38356
|
-
return a.
|
|
38360
|
+
return a.bi();
|
|
38357
38361
|
};
|
|
38358
38362
|
XPopupBridge.prototype.addChild = function (a, b) {
|
|
38359
38363
|
this.ae.add(b);
|
|
38360
38364
|
var c = a;
|
|
38361
|
-
c.appendPopupContent(b.
|
|
38365
|
+
c.appendPopupContent(b.ao);
|
|
38362
38366
|
};
|
|
38363
38367
|
XPopupBridge.prototype.insertChild = function (a, b, c) {
|
|
38364
38368
|
this.ae.add(c);
|
|
38365
38369
|
var d = a;
|
|
38366
|
-
d.appendPopupContent(c.
|
|
38370
|
+
d.appendPopupContent(c.ao);
|
|
38367
38371
|
};
|
|
38368
38372
|
XPopupBridge.prototype.getChildAt = function (a, b) {
|
|
38369
38373
|
return this.ae._inner[b];
|
|
@@ -38373,12 +38377,12 @@
|
|
|
38373
38377
|
};
|
|
38374
38378
|
XPopupBridge.prototype.removeChild = function (a, b) {
|
|
38375
38379
|
var c = a;
|
|
38376
|
-
c.removePopupContent(b.
|
|
38380
|
+
c.removePopupContent(b.ao);
|
|
38377
38381
|
this.ae.remove(b);
|
|
38378
38382
|
};
|
|
38379
38383
|
XPopupBridge.prototype.removeChildAt = function (a, b) {
|
|
38380
38384
|
var c = a;
|
|
38381
|
-
c.removePopupContent(this.ae._inner[b].
|
|
38385
|
+
c.removePopupContent(this.ae._inner[b].ao);
|
|
38382
38386
|
this.ae.removeAt(b);
|
|
38383
38387
|
};
|
|
38384
38388
|
XPopupBridge.$t = igniteuiAngularCore.markType(XPopupBridge, 'XPopupBridge', XComponentBridge.$, [igniteuiAngularCore.INativeUIPopupBridge_$type]);
|
|
@@ -38546,7 +38550,7 @@
|
|
|
38546
38550
|
configurable: true
|
|
38547
38551
|
});
|
|
38548
38552
|
NativeUIXInputsFactory.m = function () {
|
|
38549
|
-
igniteuiAngularCore.NativeUIComponent.
|
|
38553
|
+
igniteuiAngularCore.NativeUIComponent.at(NativeUIXInputsFactory.b);
|
|
38550
38554
|
};
|
|
38551
38555
|
Object.defineProperty(NativeUIXInputsFactory.prototype, "flavor", {
|
|
38552
38556
|
get: function () {
|
|
@@ -38620,7 +38624,7 @@
|
|
|
38620
38624
|
f.inputs.add(j);
|
|
38621
38625
|
var l = new XInputBridge(f);
|
|
38622
38626
|
var m = new igniteuiAngularCore.NativeUIInput();
|
|
38623
|
-
m.
|
|
38627
|
+
m.ao = d;
|
|
38624
38628
|
m.d = l;
|
|
38625
38629
|
b(m);
|
|
38626
38630
|
};
|
|
@@ -38634,7 +38638,7 @@
|
|
|
38634
38638
|
var g = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
|
|
38635
38639
|
var h = new XButtonBridge(f);
|
|
38636
38640
|
var i = new igniteuiAngularCore.NativeUIButton();
|
|
38637
|
-
i.
|
|
38641
|
+
i.ao = d;
|
|
38638
38642
|
i.d = h;
|
|
38639
38643
|
b(i);
|
|
38640
38644
|
};
|
|
@@ -38649,7 +38653,7 @@
|
|
|
38649
38653
|
var h = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
|
|
38650
38654
|
var i = new MultiSliderBridge(f);
|
|
38651
38655
|
var j = new igniteuiAngularCore.NativeUISlider();
|
|
38652
|
-
j.
|
|
38656
|
+
j.ao = d;
|
|
38653
38657
|
j.d = i;
|
|
38654
38658
|
b(j);
|
|
38655
38659
|
};
|
|
@@ -38662,7 +38666,7 @@
|
|
|
38662
38666
|
var g = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
|
|
38663
38667
|
var h = new XButtonGroupBridge(f);
|
|
38664
38668
|
var i = new igniteuiAngularCore.NativeUIButtonGroup();
|
|
38665
|
-
i.
|
|
38669
|
+
i.ao = d;
|
|
38666
38670
|
i.d = h;
|
|
38667
38671
|
b(i);
|
|
38668
38672
|
};
|
|
@@ -38675,7 +38679,7 @@
|
|
|
38675
38679
|
var g = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
|
|
38676
38680
|
var h = new ColorEditorBridge(f);
|
|
38677
38681
|
var i = new igniteuiAngularCore.NativeUIColorEditor();
|
|
38678
|
-
i.
|
|
38682
|
+
i.ao = d;
|
|
38679
38683
|
i.d = h;
|
|
38680
38684
|
b(i);
|
|
38681
38685
|
};
|
|
@@ -38688,7 +38692,7 @@
|
|
|
38688
38692
|
var g = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
|
|
38689
38693
|
var h = new XCheckboxBridge(f);
|
|
38690
38694
|
var i = new igniteuiAngularCore.NativeUICheckbox();
|
|
38691
|
-
i.
|
|
38695
|
+
i.ao = d;
|
|
38692
38696
|
i.d = h;
|
|
38693
38697
|
b(i);
|
|
38694
38698
|
};
|
|
@@ -38701,7 +38705,7 @@
|
|
|
38701
38705
|
var g = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
|
|
38702
38706
|
var h = new XIconBridge(f);
|
|
38703
38707
|
var i = new igniteuiAngularCore.NativeUIIcon();
|
|
38704
|
-
i.
|
|
38708
|
+
i.ao = d;
|
|
38705
38709
|
i.d = h;
|
|
38706
38710
|
var j = c.createElement("div");
|
|
38707
38711
|
var k = c.getSubRenderer(j);
|
|
@@ -38712,9 +38716,9 @@
|
|
|
38712
38716
|
var m = k.getExternal(l, k.rootWrapper, k.getExternal(l, null, null));
|
|
38713
38717
|
var n = new XButtonBridge(l);
|
|
38714
38718
|
var o = new igniteuiAngularCore.NativeUIButton();
|
|
38715
|
-
o.
|
|
38719
|
+
o.ao = j;
|
|
38716
38720
|
o.d = n;
|
|
38717
|
-
o.
|
|
38721
|
+
o.bp = i;
|
|
38718
38722
|
b(o);
|
|
38719
38723
|
};
|
|
38720
38724
|
NativeUIXInputsFactory.prototype.h = function (a, b) {
|
|
@@ -38726,7 +38730,7 @@
|
|
|
38726
38730
|
var g = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
|
|
38727
38731
|
var h = new XIconBridge(f);
|
|
38728
38732
|
var i = new igniteuiAngularCore.NativeUIIcon();
|
|
38729
|
-
i.
|
|
38733
|
+
i.ao = d;
|
|
38730
38734
|
i.d = h;
|
|
38731
38735
|
b(i);
|
|
38732
38736
|
};
|
|
@@ -38738,7 +38742,7 @@
|
|
|
38738
38742
|
f.provideRenderer(e);
|
|
38739
38743
|
var g = new XPopupBridge(f);
|
|
38740
38744
|
var h = new igniteuiAngularCore.NativeUIPopup();
|
|
38741
|
-
h.
|
|
38745
|
+
h.ao = d;
|
|
38742
38746
|
h.d = g;
|
|
38743
38747
|
b(h);
|
|
38744
38748
|
};
|
|
@@ -38948,7 +38952,7 @@
|
|
|
38948
38952
|
ColorEditorPanelView.prototype.bf = function (a) {
|
|
38949
38953
|
};
|
|
38950
38954
|
ColorEditorPanelView.prototype.a8 = function (a) {
|
|
38951
|
-
this.aa.append(this.aa.getWrapper(a.
|
|
38955
|
+
this.aa.append(this.aa.getWrapper(a.ao));
|
|
38952
38956
|
};
|
|
38953
38957
|
ColorEditorPanelView.prototype.be = function (a, b, c, d, e, f, g) {
|
|
38954
38958
|
var h = igniteuiAngularCore.truncate(Math.round(f * this.a.ab));
|
|
@@ -38971,8 +38975,8 @@
|
|
|
38971
38975
|
};
|
|
38972
38976
|
};
|
|
38973
38977
|
ColorEditorPanelView.prototype.ba = function (a) {
|
|
38974
|
-
if (this.ae == null || a.
|
|
38975
|
-
a.
|
|
38978
|
+
if (this.ae == null || a.ap == null) {
|
|
38979
|
+
a.ap = "image";
|
|
38976
38980
|
var b = this.aa.createElement("canvas");
|
|
38977
38981
|
this.ae = b;
|
|
38978
38982
|
var c = this.be(this.ae, this.m, this.l, this.au, this.at, 148, 148);
|
|
@@ -38982,7 +38986,7 @@
|
|
|
38982
38986
|
this.at = c.p4;
|
|
38983
38987
|
this.ae.setStyleProperty("justify-self", "center");
|
|
38984
38988
|
this.ae.setStyleProperty("align-self", "center");
|
|
38985
|
-
var d = a.
|
|
38989
|
+
var d = a.ao;
|
|
38986
38990
|
d.append(this.ae);
|
|
38987
38991
|
this.bm(this.a.ad());
|
|
38988
38992
|
}
|
|
@@ -39016,8 +39020,8 @@
|
|
|
39016
39020
|
}
|
|
39017
39021
|
};
|
|
39018
39022
|
ColorEditorPanelView.prototype.a9 = function (a) {
|
|
39019
|
-
if (this.ad == null || a.
|
|
39020
|
-
a.
|
|
39023
|
+
if (this.ad == null || a.ap == null) {
|
|
39024
|
+
a.ap = "image";
|
|
39021
39025
|
var b = this.aa.createElement("canvas");
|
|
39022
39026
|
this.ad = b;
|
|
39023
39027
|
var c = this.be(this.ad, this.j, this.h, this.as, this.ar, 248, 19);
|
|
@@ -39027,7 +39031,7 @@
|
|
|
39027
39031
|
this.ar = c.p4;
|
|
39028
39032
|
this.ad.setStyleProperty("justify-self", "center");
|
|
39029
39033
|
this.ad.setStyleProperty("align-self", "center");
|
|
39030
|
-
var d = a.
|
|
39034
|
+
var d = a.ao;
|
|
39031
39035
|
d.append(this.ad);
|
|
39032
39036
|
this.bl(0);
|
|
39033
39037
|
}
|
|
@@ -39061,9 +39065,9 @@
|
|
|
39061
39065
|
}
|
|
39062
39066
|
};
|
|
39063
39067
|
ColorEditorPanelView.prototype.bb = function (a) {
|
|
39064
|
-
var b = a.
|
|
39068
|
+
var b = a.ao;
|
|
39065
39069
|
if (b.getChildCount() == 1) {
|
|
39066
|
-
a.
|
|
39070
|
+
a.ap = "image";
|
|
39067
39071
|
var c = this.aa.createElement("canvas");
|
|
39068
39072
|
this.ah = c;
|
|
39069
39073
|
var d = this.be(this.ah, this.t, this.p, this.aw, this.av, 85, 148);
|
|
@@ -39085,8 +39089,8 @@
|
|
|
39085
39089
|
}
|
|
39086
39090
|
};
|
|
39087
39091
|
ColorEditorPanelView.prototype.bc = function (a) {
|
|
39088
|
-
if (this.ai == null || a.
|
|
39089
|
-
a.
|
|
39092
|
+
if (this.ai == null || a.ap == null) {
|
|
39093
|
+
a.ap = "image";
|
|
39090
39094
|
var b = this.aa.createElement("canvas");
|
|
39091
39095
|
this.ai = b;
|
|
39092
39096
|
var c = this.be(this.ai, this.z, this.v, this.aw, this.av, 25, 148);
|
|
@@ -39096,7 +39100,7 @@
|
|
|
39096
39100
|
this.av = c.p4;
|
|
39097
39101
|
this.ai.setStyleProperty("justify-self", "center");
|
|
39098
39102
|
this.ai.setStyleProperty("align-self", "center");
|
|
39099
|
-
var d = a.
|
|
39103
|
+
var d = a.ao;
|
|
39100
39104
|
d.append(this.ai);
|
|
39101
39105
|
this.bo(0, 1, 0.5);
|
|
39102
39106
|
}
|
|
@@ -39178,19 +39182,20 @@
|
|
|
39178
39182
|
function ColorEditorView() {
|
|
39179
39183
|
var _this = _super.call(this) || this;
|
|
39180
39184
|
_this.a = null;
|
|
39181
|
-
_this.
|
|
39185
|
+
_this.i = null;
|
|
39182
39186
|
_this.d = null;
|
|
39183
39187
|
_this.g = new igniteuiAngularCore.List$1(igniteuiAngularCore.Delegate_$type, 0);
|
|
39184
39188
|
_this.e = true;
|
|
39189
|
+
_this._createColorEditorPanel = null;
|
|
39185
39190
|
_this.b = null;
|
|
39186
39191
|
return _this;
|
|
39187
39192
|
}
|
|
39188
|
-
ColorEditorView.prototype.
|
|
39193
|
+
ColorEditorView.prototype.r = function () {
|
|
39189
39194
|
};
|
|
39190
39195
|
ColorEditorView.prototype.f = function () {
|
|
39191
39196
|
return true;
|
|
39192
39197
|
};
|
|
39193
|
-
ColorEditorView.prototype.
|
|
39198
|
+
ColorEditorView.prototype.p = function (a) {
|
|
39194
39199
|
var e_2, _a;
|
|
39195
39200
|
if (a == null) {
|
|
39196
39201
|
try {
|
|
@@ -39218,45 +39223,61 @@
|
|
|
39218
39223
|
if (this.a.a == null) {
|
|
39219
39224
|
this.a.a = new igniteuiAngularCore.DOMExecutionContext(a);
|
|
39220
39225
|
}
|
|
39221
|
-
this.
|
|
39226
|
+
this.i = a;
|
|
39222
39227
|
this.a.bj();
|
|
39223
39228
|
};
|
|
39224
|
-
ColorEditorView.prototype.
|
|
39229
|
+
ColorEditorView.prototype.n = function () {
|
|
39225
39230
|
if (igniteuiAngularCore.KeyFrameAnimationFactory.h == null) {
|
|
39226
|
-
igniteuiAngularCore.KeyFrameAnimationFactory.h = this.
|
|
39231
|
+
igniteuiAngularCore.KeyFrameAnimationFactory.h = this.i;
|
|
39227
39232
|
}
|
|
39228
39233
|
};
|
|
39229
|
-
ColorEditorView.prototype.
|
|
39234
|
+
ColorEditorView.prototype.o = function () {
|
|
39230
39235
|
this.e = true;
|
|
39231
39236
|
};
|
|
39232
|
-
ColorEditorView.prototype.
|
|
39237
|
+
ColorEditorView.prototype.q = function () {
|
|
39233
39238
|
this.e = false;
|
|
39234
39239
|
};
|
|
39235
|
-
ColorEditorView.prototype.
|
|
39236
|
-
return this.
|
|
39240
|
+
ColorEditorView.prototype.k = function () {
|
|
39241
|
+
return this.i;
|
|
39237
39242
|
};
|
|
39238
|
-
ColorEditorView.prototype
|
|
39239
|
-
|
|
39240
|
-
|
|
39241
|
-
|
|
39242
|
-
|
|
39243
|
-
|
|
39244
|
-
|
|
39245
|
-
|
|
39243
|
+
Object.defineProperty(ColorEditorView.prototype, "createColorEditorPanel", {
|
|
39244
|
+
get: function () {
|
|
39245
|
+
return this._createColorEditorPanel;
|
|
39246
|
+
},
|
|
39247
|
+
set: function (a) {
|
|
39248
|
+
this._createColorEditorPanel = a;
|
|
39249
|
+
},
|
|
39250
|
+
enumerable: false,
|
|
39251
|
+
configurable: true
|
|
39252
|
+
});
|
|
39253
|
+
ColorEditorView.prototype.j = function () {
|
|
39254
|
+
if (this.createColorEditorPanel != null) {
|
|
39255
|
+
var a = this.createColorEditorPanel();
|
|
39256
|
+
var b = this.i.getWrapper(a);
|
|
39257
|
+
this.b = (a.i);
|
|
39258
|
+
return a;
|
|
39259
|
+
}
|
|
39260
|
+
var c = new ColorEditorPanel();
|
|
39261
|
+
this.b = c;
|
|
39262
|
+
var d = this.i.createElement("div");
|
|
39263
|
+
var e = this.i.getSubRenderer(d);
|
|
39264
|
+
c.provideContainer(e);
|
|
39265
|
+
var f = this.i.getExternal(c, null, null);
|
|
39266
|
+
return d;
|
|
39246
39267
|
};
|
|
39247
|
-
ColorEditorView.prototype.
|
|
39248
|
-
var c = a.
|
|
39249
|
-
c.append(this.
|
|
39268
|
+
ColorEditorView.prototype.l = function (a, b) {
|
|
39269
|
+
var c = a.ao;
|
|
39270
|
+
c.append(this.i.getWrapper(b));
|
|
39250
39271
|
};
|
|
39251
|
-
ColorEditorView.prototype.
|
|
39252
|
-
this.
|
|
39272
|
+
ColorEditorView.prototype.m = function (a) {
|
|
39273
|
+
this.i.append(this.i.getWrapper(a.ao));
|
|
39253
39274
|
};
|
|
39254
39275
|
ColorEditorView.prototype.c = function (a) {
|
|
39255
39276
|
return this.b;
|
|
39256
39277
|
};
|
|
39257
|
-
ColorEditorView.prototype.
|
|
39258
|
-
if (this.
|
|
39259
|
-
var b = this.
|
|
39278
|
+
ColorEditorView.prototype.s = function (a) {
|
|
39279
|
+
if (this.i != null) {
|
|
39280
|
+
var b = this.i.rootWrapper.getNativeElement();
|
|
39260
39281
|
var c = (b.getBoundingClientRect());
|
|
39261
39282
|
if (a) {
|
|
39262
39283
|
c = new igniteuiAngularCore.Rect(0, c.left + window.pageXOffset, c.top + window.pageYOffset, c.width, c.height);
|
|
@@ -39265,7 +39286,7 @@
|
|
|
39265
39286
|
}
|
|
39266
39287
|
return null;
|
|
39267
39288
|
};
|
|
39268
|
-
ColorEditorView.prototype.
|
|
39289
|
+
ColorEditorView.prototype.t = function () {
|
|
39269
39290
|
return new igniteuiAngularCore.Size(1, NaN, NaN);
|
|
39270
39291
|
};
|
|
39271
39292
|
ColorEditorView.$t = igniteuiAngularCore.markType(ColorEditorView, 'ColorEditorView');
|
|
@@ -39278,7 +39299,7 @@
|
|
|
39278
39299
|
tslib.__extends(ColorEditor, _super);
|
|
39279
39300
|
function ColorEditor() {
|
|
39280
39301
|
var _this = _super.call(this) || this;
|
|
39281
|
-
_this.
|
|
39302
|
+
_this._view = null;
|
|
39282
39303
|
_this.s = null;
|
|
39283
39304
|
_this.r = null;
|
|
39284
39305
|
_this.e = null;
|
|
@@ -39316,15 +39337,25 @@
|
|
|
39316
39337
|
NativeUIXInputsFactory.m();
|
|
39317
39338
|
var a = new ColorEditorView();
|
|
39318
39339
|
a.a = _this;
|
|
39319
|
-
_this.
|
|
39320
|
-
_this.
|
|
39340
|
+
_this.view = a;
|
|
39341
|
+
_this.view.r();
|
|
39321
39342
|
return _this;
|
|
39322
39343
|
}
|
|
39344
|
+
Object.defineProperty(ColorEditor.prototype, "view", {
|
|
39345
|
+
get: function () {
|
|
39346
|
+
return this._view;
|
|
39347
|
+
},
|
|
39348
|
+
set: function (a) {
|
|
39349
|
+
this._view = a;
|
|
39350
|
+
},
|
|
39351
|
+
enumerable: false,
|
|
39352
|
+
configurable: true
|
|
39353
|
+
});
|
|
39323
39354
|
ColorEditor.prototype.onAttachedToUI = function () {
|
|
39324
|
-
this.
|
|
39355
|
+
this.view.o();
|
|
39325
39356
|
};
|
|
39326
39357
|
ColorEditor.prototype.onDetachedFromUI = function () {
|
|
39327
|
-
this.
|
|
39358
|
+
this.view.q();
|
|
39328
39359
|
};
|
|
39329
39360
|
ColorEditor.prototype.b4 = function (a, b) {
|
|
39330
39361
|
if (this.valueChanging != null) {
|
|
@@ -39344,12 +39375,12 @@
|
|
|
39344
39375
|
this.provideContainer(null);
|
|
39345
39376
|
};
|
|
39346
39377
|
ColorEditor.prototype.provideContainer = function (a) {
|
|
39347
|
-
this.
|
|
39378
|
+
this.view.p(a);
|
|
39348
39379
|
};
|
|
39349
39380
|
Object.defineProperty(ColorEditor.prototype, "u", {
|
|
39350
39381
|
get: function () {
|
|
39351
39382
|
if (this.t == null) {
|
|
39352
|
-
this.t = new igniteuiAngularCore.SRProvider(this.
|
|
39383
|
+
this.t = new igniteuiAngularCore.SRProvider(this.view.i);
|
|
39353
39384
|
this.t.cb("ColorEditor");
|
|
39354
39385
|
}
|
|
39355
39386
|
return this.t;
|
|
@@ -39619,7 +39650,7 @@
|
|
|
39619
39650
|
break;
|
|
39620
39651
|
case "Label":
|
|
39621
39652
|
if (this.r != null) {
|
|
39622
|
-
this.r.
|
|
39653
|
+
this.r.b6 = this.a2;
|
|
39623
39654
|
}
|
|
39624
39655
|
break;
|
|
39625
39656
|
case "TextStyle":
|
|
@@ -39627,7 +39658,7 @@
|
|
|
39627
39658
|
break;
|
|
39628
39659
|
case "ShowClearButton":
|
|
39629
39660
|
if (this.r != null) {
|
|
39630
|
-
if (this.r.
|
|
39661
|
+
if (this.r.b8 != "") {
|
|
39631
39662
|
}
|
|
39632
39663
|
}
|
|
39633
39664
|
break;
|
|
@@ -39639,14 +39670,14 @@
|
|
|
39639
39670
|
break;
|
|
39640
39671
|
case "AllowTextInput":
|
|
39641
39672
|
if (this.r != null) {
|
|
39642
|
-
this.r.
|
|
39673
|
+
this.r.b1 = this.am();
|
|
39643
39674
|
}
|
|
39644
39675
|
break;
|
|
39645
39676
|
case "OpenOnFocus": break;
|
|
39646
39677
|
case "IsDisabled":
|
|
39647
39678
|
{
|
|
39648
39679
|
if (this.r != null) {
|
|
39649
|
-
this.r.
|
|
39680
|
+
this.r.b1 = this.am();
|
|
39650
39681
|
}
|
|
39651
39682
|
}
|
|
39652
39683
|
break;
|
|
@@ -39657,7 +39688,7 @@
|
|
|
39657
39688
|
};
|
|
39658
39689
|
ColorEditor.prototype.cj = function () {
|
|
39659
39690
|
if (this.r != null) {
|
|
39660
|
-
this.r.
|
|
39691
|
+
this.r.cf = this.cr;
|
|
39661
39692
|
}
|
|
39662
39693
|
};
|
|
39663
39694
|
ColorEditor.prototype.ch = function () {
|
|
@@ -39666,7 +39697,7 @@
|
|
|
39666
39697
|
};
|
|
39667
39698
|
ColorEditor.prototype.ci = function () {
|
|
39668
39699
|
if (this.n != null) {
|
|
39669
|
-
this.r.
|
|
39700
|
+
this.r.bl = this.n;
|
|
39670
39701
|
}
|
|
39671
39702
|
};
|
|
39672
39703
|
ColorEditor.prototype.bh = function () {
|
|
@@ -39674,7 +39705,7 @@
|
|
|
39674
39705
|
return;
|
|
39675
39706
|
}
|
|
39676
39707
|
if (this.r != null) {
|
|
39677
|
-
this.r.
|
|
39708
|
+
this.r.b8 = "";
|
|
39678
39709
|
}
|
|
39679
39710
|
this.value = igniteuiAngularCore.BrushUtil.l(0, 0, 0, 0);
|
|
39680
39711
|
this.e.ax();
|
|
@@ -39687,8 +39718,8 @@
|
|
|
39687
39718
|
this.aa = false;
|
|
39688
39719
|
};
|
|
39689
39720
|
ColorEditor.prototype.br = function () {
|
|
39690
|
-
igniteuiAngularCore.NativeUIWindow.h(15, igniteuiAngularCore.runOn(this, this.b7), this.
|
|
39691
|
-
igniteuiAngularCore.NativeUIWindow.h(9, igniteuiAngularCore.runOn(this, this.b6), this.
|
|
39721
|
+
igniteuiAngularCore.NativeUIWindow.h(15, igniteuiAngularCore.runOn(this, this.b7), this.view.i);
|
|
39722
|
+
igniteuiAngularCore.NativeUIWindow.h(9, igniteuiAngularCore.runOn(this, this.b6), this.view.i);
|
|
39692
39723
|
};
|
|
39693
39724
|
ColorEditor.prototype.bv = function () {
|
|
39694
39725
|
igniteuiAngularCore.NativeUIWindow.i(15, igniteuiAngularCore.runOn(this, this.b7));
|
|
@@ -39697,46 +39728,46 @@
|
|
|
39697
39728
|
ColorEditor.prototype.b6 = function (a) {
|
|
39698
39729
|
var b = a;
|
|
39699
39730
|
if (this.r != null) {
|
|
39700
|
-
if (this.s.
|
|
39731
|
+
if (this.s.b7 && !this.s.t(b.b) && !this.r.t(b.b)) {
|
|
39701
39732
|
this.bi();
|
|
39702
39733
|
}
|
|
39703
39734
|
}
|
|
39704
39735
|
};
|
|
39705
39736
|
ColorEditor.prototype.b7 = function (a) {
|
|
39706
39737
|
if (this.r != null) {
|
|
39707
|
-
var b = this.r.
|
|
39708
|
-
this.s.
|
|
39738
|
+
var b = this.r.bf();
|
|
39739
|
+
this.s.cf(b);
|
|
39709
39740
|
}
|
|
39710
39741
|
};
|
|
39711
39742
|
ColorEditor.prototype.bj = function () {
|
|
39712
39743
|
var _this = this;
|
|
39713
|
-
igniteuiAngularCore.NativeUIComponent.
|
|
39744
|
+
igniteuiAngularCore.NativeUIComponent.aw(this.view.k(), [12, 2, 7, 0], [2, 2, 2, 2], function (a) {
|
|
39714
39745
|
var b = a[0];
|
|
39715
39746
|
var c = a[1];
|
|
39716
39747
|
var d = a[2];
|
|
39717
39748
|
var e = a[3];
|
|
39718
|
-
var f = _this.
|
|
39719
|
-
_this.
|
|
39720
|
-
b.
|
|
39721
|
-
d.
|
|
39722
|
-
_this.
|
|
39723
|
-
b.
|
|
39724
|
-
b.
|
|
39725
|
-
b.
|
|
39726
|
-
b.
|
|
39727
|
-
b.
|
|
39749
|
+
var f = _this.view.j();
|
|
39750
|
+
_this.view.l(e, f);
|
|
39751
|
+
b.bo(d);
|
|
39752
|
+
d.bo(e);
|
|
39753
|
+
_this.view.m(c);
|
|
39754
|
+
b.ci = igniteuiAngularCore.BrushUtil.l(255, 255, 255, 255);
|
|
39755
|
+
b.cb = 150;
|
|
39756
|
+
b.b9 = 8;
|
|
39757
|
+
b.cc = 4;
|
|
39758
|
+
b.b2 = true;
|
|
39728
39759
|
_this.r = c;
|
|
39729
39760
|
_this.r.c = _this.j;
|
|
39730
|
-
_this.r.
|
|
39731
|
-
_this.r.
|
|
39732
|
-
_this.r.
|
|
39733
|
-
_this.r.
|
|
39734
|
-
_this.r.
|
|
39761
|
+
_this.r.bq = _this.l;
|
|
39762
|
+
_this.r.b7 = ColorEditor.a8;
|
|
39763
|
+
_this.r.cd = igniteuiAngularCore.BrushUtil.l(255, 255, 255, 255);
|
|
39764
|
+
_this.r.ce = igniteuiAngularCore.BrushUtil.l(255, 0, 0, 0);
|
|
39765
|
+
_this.r.bo = igniteuiAngularCore.runOn(_this, _this.cf);
|
|
39735
39766
|
_this.r.n = igniteuiAngularCore.runOn(_this, _this.by);
|
|
39736
39767
|
_this.r.o = igniteuiAngularCore.runOn(_this, _this.b0);
|
|
39737
|
-
_this.r.
|
|
39768
|
+
_this.r.cc = igniteuiAngularCore.BrushUtil.l(255, 0, 0, 255);
|
|
39738
39769
|
_this.s = b;
|
|
39739
|
-
_this.e = _this.
|
|
39770
|
+
_this.e = _this.view.c(f);
|
|
39740
39771
|
_this.e.value = _this.value;
|
|
39741
39772
|
var g = _this.e;
|
|
39742
39773
|
g.closed = igniteuiAngularCore.delegateCombine(g.closed, igniteuiAngularCore.runOn(_this, _this.bf));
|
|
@@ -39756,7 +39787,7 @@
|
|
|
39756
39787
|
this.bl(a);
|
|
39757
39788
|
};
|
|
39758
39789
|
ColorEditor.prototype.b0 = function (a, b) {
|
|
39759
|
-
if (!this.s.t(b.b) && !this.r.t(b.b) && !(this.r.
|
|
39790
|
+
if (!this.s.t(b.b) && !this.r.t(b.b) && !(this.r.ao == b.b)) {
|
|
39760
39791
|
this.bp();
|
|
39761
39792
|
}
|
|
39762
39793
|
};
|
|
@@ -39774,18 +39805,18 @@
|
|
|
39774
39805
|
};
|
|
39775
39806
|
ColorEditor.prototype.b5 = function (a, b) {
|
|
39776
39807
|
if (this.r != null) {
|
|
39777
|
-
this.r.
|
|
39808
|
+
this.r.cc = b;
|
|
39778
39809
|
}
|
|
39779
39810
|
};
|
|
39780
39811
|
ColorEditor.prototype.bl = function (a) {
|
|
39781
|
-
if (this.s.
|
|
39812
|
+
if (this.s.b7) {
|
|
39782
39813
|
this.w = true;
|
|
39783
39814
|
this.bi();
|
|
39784
39815
|
}
|
|
39785
39816
|
};
|
|
39786
39817
|
ColorEditor.prototype.cg = function () {
|
|
39787
39818
|
if (this.w == false) {
|
|
39788
|
-
if (this.s.
|
|
39819
|
+
if (this.s.b7) {
|
|
39789
39820
|
this.bi();
|
|
39790
39821
|
}
|
|
39791
39822
|
else {
|
|
@@ -39801,8 +39832,8 @@
|
|
|
39801
39832
|
return;
|
|
39802
39833
|
}
|
|
39803
39834
|
if (this.s != null) {
|
|
39804
|
-
var a = this.
|
|
39805
|
-
var b = this.
|
|
39835
|
+
var a = this.view.s(false);
|
|
39836
|
+
var b = this.view.t();
|
|
39806
39837
|
var c = b.height;
|
|
39807
39838
|
var d = 240;
|
|
39808
39839
|
var e = a.bottom + d;
|
|
@@ -39822,14 +39853,14 @@
|
|
|
39822
39853
|
};
|
|
39823
39854
|
ColorEditor.prototype.ce = function (a, b) {
|
|
39824
39855
|
{
|
|
39825
|
-
var c = this.
|
|
39826
|
-
this.s.
|
|
39856
|
+
var c = this.view.s(true);
|
|
39857
|
+
this.s.cg(c, a, b);
|
|
39827
39858
|
}
|
|
39828
39859
|
};
|
|
39829
39860
|
ColorEditor.prototype.bi = function () {
|
|
39830
39861
|
var _this = this;
|
|
39831
39862
|
if (this.s != null) {
|
|
39832
|
-
this.a.executeDelayed(function () { return _this.s.
|
|
39863
|
+
this.a.executeDelayed(function () { return _this.s.cd(); }, 0);
|
|
39833
39864
|
}
|
|
39834
39865
|
if (this.e != null) {
|
|
39835
39866
|
this.e.bg();
|
|
@@ -39842,9 +39873,9 @@
|
|
|
39842
39873
|
a = false;
|
|
39843
39874
|
}
|
|
39844
39875
|
if (this.r != null) {
|
|
39845
|
-
this.r.
|
|
39876
|
+
this.r.a1();
|
|
39846
39877
|
}
|
|
39847
|
-
if (!this.s.
|
|
39878
|
+
if (!this.s.b7 && this.al == true) {
|
|
39848
39879
|
if (this.w == false) {
|
|
39849
39880
|
if (this.aa) {
|
|
39850
39881
|
return;
|
|
@@ -39872,7 +39903,7 @@
|
|
|
39872
39903
|
};
|
|
39873
39904
|
ColorEditor.prototype.cb = function () {
|
|
39874
39905
|
if (this.r != null) {
|
|
39875
|
-
this.r.
|
|
39906
|
+
this.r.ca();
|
|
39876
39907
|
}
|
|
39877
39908
|
};
|
|
39878
39909
|
ColorEditor.prototype.bo = function () {
|
|
@@ -40226,7 +40257,7 @@
|
|
|
40226
40257
|
};
|
|
40227
40258
|
ColorEditorPanel.prototype.a4 = function () {
|
|
40228
40259
|
var _this = this;
|
|
40229
|
-
igniteuiAngularCore.NativeUIContent.
|
|
40260
|
+
igniteuiAngularCore.NativeUIContent.aw(this.d.a7(), [7, 7, 0, 5, 0, 5, 0, 5, 2, 7, 1, 1, 7, 2, 7], [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], function (a) {
|
|
40230
40261
|
var b = a[0];
|
|
40231
40262
|
var c = a[1];
|
|
40232
40263
|
var d = a[2];
|
|
@@ -40242,97 +40273,97 @@
|
|
|
40242
40273
|
var n = a[12];
|
|
40243
40274
|
var o = a[13];
|
|
40244
40275
|
var p = a[14];
|
|
40245
|
-
e.
|
|
40246
|
-
i.
|
|
40247
|
-
g.
|
|
40248
|
-
e.
|
|
40249
|
-
i.
|
|
40250
|
-
g.
|
|
40251
|
-
g.
|
|
40252
|
-
f.
|
|
40253
|
-
l.
|
|
40276
|
+
e.bl = 2;
|
|
40277
|
+
i.bl = 0;
|
|
40278
|
+
g.bl = 1;
|
|
40279
|
+
e.bx = igniteuiAngularCore.BrushUtil.l(0, 0, 0, 0);
|
|
40280
|
+
i.bx = igniteuiAngularCore.BrushUtil.l(0, 0, 0, 0);
|
|
40281
|
+
g.bx = igniteuiAngularCore.BrushUtil.l(0, 0, 0, 0);
|
|
40282
|
+
g.bi = new igniteuiAngularCore.Thickness(1, 0, 5, 5, 0);
|
|
40283
|
+
f.bi = new igniteuiAngularCore.Thickness(1, 0, 5, 5, 0);
|
|
40284
|
+
l.b0 = "Ok";
|
|
40254
40285
|
l.c = _this.f;
|
|
40255
|
-
m.
|
|
40286
|
+
m.b0 = "Cancel";
|
|
40256
40287
|
m.c = _this.f;
|
|
40257
|
-
i.
|
|
40258
|
-
h.
|
|
40259
|
-
e.
|
|
40260
|
-
d.
|
|
40261
|
-
p.
|
|
40262
|
-
p.
|
|
40263
|
-
c.
|
|
40264
|
-
c.
|
|
40265
|
-
c.
|
|
40266
|
-
n.
|
|
40267
|
-
n.
|
|
40268
|
-
n.
|
|
40269
|
-
n.
|
|
40270
|
-
j.
|
|
40271
|
-
j.
|
|
40272
|
-
j.
|
|
40288
|
+
i.bi = new igniteuiAngularCore.Thickness(1, 5, 0, 5, 2);
|
|
40289
|
+
h.bi = new igniteuiAngularCore.Thickness(1, 5, 0, 5, 2);
|
|
40290
|
+
e.bi = new igniteuiAngularCore.Thickness(1, 5, 5, 5, 0);
|
|
40291
|
+
d.bi = new igniteuiAngularCore.Thickness(1, 5, 5, 5, 0);
|
|
40292
|
+
p.bi = new igniteuiAngularCore.Thickness(1, 5, 16, 0, 11);
|
|
40293
|
+
p.a9 = igniteuiAngularCore.BrushUtil.l(255, 255, 0, 0);
|
|
40294
|
+
c.cf(p, 0);
|
|
40295
|
+
c.cd(p, 0);
|
|
40296
|
+
c.bo(p);
|
|
40297
|
+
n.b5(0, 2, 1);
|
|
40298
|
+
n.b5(1, 2, 1);
|
|
40299
|
+
n.bi = new igniteuiAngularCore.Thickness(1, 5, 2, 5, 2);
|
|
40300
|
+
n.cd(j, 0);
|
|
40301
|
+
j.bi = new igniteuiAngularCore.Thickness(1, 0, 0, 2, 0);
|
|
40302
|
+
j.bv = 1;
|
|
40303
|
+
j.bq = _this.h;
|
|
40273
40304
|
j.c = _this.f;
|
|
40274
|
-
j.
|
|
40275
|
-
o.
|
|
40276
|
-
o.
|
|
40277
|
-
o.
|
|
40305
|
+
j.b6 = "rgba";
|
|
40306
|
+
o.bi = new igniteuiAngularCore.Thickness(1, 0, 0, 2, 0);
|
|
40307
|
+
o.bv = 1;
|
|
40308
|
+
o.bq = _this.h;
|
|
40278
40309
|
o.c = _this.f;
|
|
40279
|
-
o.
|
|
40280
|
-
n.
|
|
40281
|
-
n.
|
|
40282
|
-
n.
|
|
40283
|
-
l.
|
|
40284
|
-
m.
|
|
40285
|
-
l.
|
|
40286
|
-
m.
|
|
40287
|
-
l.
|
|
40288
|
-
m.
|
|
40289
|
-
b.
|
|
40290
|
-
b.
|
|
40291
|
-
b.
|
|
40292
|
-
b.
|
|
40293
|
-
b.
|
|
40294
|
-
b.
|
|
40295
|
-
b.
|
|
40296
|
-
b.
|
|
40297
|
-
b.
|
|
40298
|
-
b.
|
|
40299
|
-
b.
|
|
40300
|
-
b.
|
|
40301
|
-
b.
|
|
40302
|
-
b.
|
|
40303
|
-
b.
|
|
40304
|
-
b.
|
|
40305
|
-
b.
|
|
40306
|
-
b.
|
|
40307
|
-
b.
|
|
40308
|
-
b.
|
|
40309
|
-
b.
|
|
40310
|
-
b.
|
|
40311
|
-
b.
|
|
40312
|
-
b.
|
|
40313
|
-
b.
|
|
40314
|
-
b.
|
|
40315
|
-
b.
|
|
40316
|
-
b.
|
|
40317
|
-
b.
|
|
40318
|
-
k.
|
|
40319
|
-
k.
|
|
40320
|
-
k.
|
|
40321
|
-
k.
|
|
40322
|
-
k.
|
|
40323
|
-
k.
|
|
40324
|
-
b.
|
|
40325
|
-
b.
|
|
40326
|
-
b.
|
|
40327
|
-
b.
|
|
40328
|
-
b.
|
|
40329
|
-
b.
|
|
40330
|
-
b.
|
|
40331
|
-
b.
|
|
40332
|
-
b.
|
|
40310
|
+
o.b6 = "hex";
|
|
40311
|
+
n.cd(o, 1);
|
|
40312
|
+
n.bo(j);
|
|
40313
|
+
n.bo(o);
|
|
40314
|
+
l.bi = new igniteuiAngularCore.Thickness(1, 5, 2, 5, 2);
|
|
40315
|
+
m.bi = new igniteuiAngularCore.Thickness(1, 5, 2, 5, 2);
|
|
40316
|
+
l.bq = _this.h;
|
|
40317
|
+
m.bq = _this.h;
|
|
40318
|
+
l.bn = igniteuiAngularCore.runOn(_this, _this.a6);
|
|
40319
|
+
m.bn = igniteuiAngularCore.runOn(_this, _this.bh);
|
|
40320
|
+
b.b7(0, 1, 175);
|
|
40321
|
+
b.b7(1, 0, 0);
|
|
40322
|
+
b.b7(2, 0, 0);
|
|
40323
|
+
b.b7(3, 0, 0);
|
|
40324
|
+
b.b5(0, 1, 90);
|
|
40325
|
+
b.b5(1, 1, 175);
|
|
40326
|
+
b.b5(2, 1, 25);
|
|
40327
|
+
b.cf(c, 0);
|
|
40328
|
+
b.cd(c, 0);
|
|
40329
|
+
b.cf(d, 0);
|
|
40330
|
+
b.cd(d, 1);
|
|
40331
|
+
b.cf(e, 0);
|
|
40332
|
+
b.cd(e, 1);
|
|
40333
|
+
b.cf(f, 0);
|
|
40334
|
+
b.cd(f, 3);
|
|
40335
|
+
b.cf(g, 0);
|
|
40336
|
+
b.cd(g, 3);
|
|
40337
|
+
b.cf(h, 1);
|
|
40338
|
+
b.cd(h, 0);
|
|
40339
|
+
b.ce(h, 3);
|
|
40340
|
+
b.cf(i, 1);
|
|
40341
|
+
b.cd(i, 0);
|
|
40342
|
+
b.ce(i, 3);
|
|
40343
|
+
b.cf(n, 2);
|
|
40344
|
+
b.cd(n, 0);
|
|
40345
|
+
b.ce(n, 3);
|
|
40346
|
+
b.cf(k, 3);
|
|
40347
|
+
b.cd(k, 0);
|
|
40348
|
+
b.ce(k, 3);
|
|
40349
|
+
k.b5(0, 2, 1);
|
|
40350
|
+
k.b5(1, 2, 1);
|
|
40351
|
+
k.cd(l, 0);
|
|
40352
|
+
k.cd(m, 1);
|
|
40353
|
+
k.bo(l);
|
|
40354
|
+
k.bo(m);
|
|
40355
|
+
b.bo(c);
|
|
40356
|
+
b.bo(d);
|
|
40357
|
+
b.bo(e);
|
|
40358
|
+
b.bo(f);
|
|
40359
|
+
b.bo(g);
|
|
40360
|
+
b.bo(h);
|
|
40361
|
+
b.bo(i);
|
|
40362
|
+
b.bo(n);
|
|
40363
|
+
b.bo(k);
|
|
40333
40364
|
_this.d.a8(b);
|
|
40334
40365
|
_this.n = b;
|
|
40335
|
-
_this.n.
|
|
40366
|
+
_this.n.by = true;
|
|
40336
40367
|
_this.s = i;
|
|
40337
40368
|
_this.u = g;
|
|
40338
40369
|
_this.m = f;
|
|
@@ -40340,24 +40371,24 @@
|
|
|
40340
40371
|
_this.o = p;
|
|
40341
40372
|
_this.r = j;
|
|
40342
40373
|
_this.q = o;
|
|
40343
|
-
_this.s.
|
|
40344
|
-
_this.s.
|
|
40345
|
-
_this.s.by = igniteuiAngularCore.BrushUtil.l(255, 255, 255, 255);
|
|
40374
|
+
_this.s.br = 0;
|
|
40375
|
+
_this.s.bq = 360;
|
|
40346
40376
|
_this.s.bz = igniteuiAngularCore.BrushUtil.l(255, 255, 255, 255);
|
|
40347
|
-
_this.
|
|
40348
|
-
_this.u.
|
|
40349
|
-
_this.
|
|
40350
|
-
_this.t.bz = igniteuiAngularCore.BrushUtil.l(255,
|
|
40351
|
-
_this.t.
|
|
40352
|
-
_this.t.
|
|
40353
|
-
_this.t.
|
|
40354
|
-
_this.t.
|
|
40377
|
+
_this.s.b0 = igniteuiAngularCore.BrushUtil.l(255, 255, 255, 255);
|
|
40378
|
+
_this.u.br = 0;
|
|
40379
|
+
_this.u.bq = 1;
|
|
40380
|
+
_this.t.bz = igniteuiAngularCore.BrushUtil.l(255, 155, 155, 155);
|
|
40381
|
+
_this.t.b0 = igniteuiAngularCore.BrushUtil.l(255, 255, 255, 255);
|
|
40382
|
+
_this.t.br = 0;
|
|
40383
|
+
_this.t.bq = 1;
|
|
40384
|
+
_this.t.bv = 0;
|
|
40385
|
+
_this.t.bu = 1;
|
|
40386
|
+
_this.s.bp = igniteuiAngularCore.runOn(_this, _this.au);
|
|
40355
40387
|
_this.s.bo = igniteuiAngularCore.runOn(_this, _this.au);
|
|
40356
|
-
_this.
|
|
40388
|
+
_this.u.bp = igniteuiAngularCore.runOn(_this, _this.aw);
|
|
40357
40389
|
_this.u.bo = igniteuiAngularCore.runOn(_this, _this.aw);
|
|
40358
|
-
_this.
|
|
40390
|
+
_this.t.bp = igniteuiAngularCore.runOn(_this, _this.av);
|
|
40359
40391
|
_this.t.bo = igniteuiAngularCore.runOn(_this, _this.av);
|
|
40360
|
-
_this.t.bn = igniteuiAngularCore.runOn(_this, _this.av);
|
|
40361
40392
|
_this.l = d;
|
|
40362
40393
|
_this.k = h;
|
|
40363
40394
|
_this.p = c;
|
|
@@ -40394,26 +40425,26 @@
|
|
|
40394
40425
|
var a = igniteuiAngularCore.Color.u(0, 0, 0, 0);
|
|
40395
40426
|
var b = igniteuiAngularCore.Color.u(255, 255, 0, 0);
|
|
40396
40427
|
if (this.s != null) {
|
|
40397
|
-
var c = this.s.
|
|
40398
|
-
var d = this.t.
|
|
40399
|
-
var e = 1 - this.t.
|
|
40400
|
-
var f = 1 - this.u.
|
|
40428
|
+
var c = this.s.bt;
|
|
40429
|
+
var d = this.t.bt;
|
|
40430
|
+
var e = 1 - this.t.bw;
|
|
40431
|
+
var f = 1 - this.u.bt;
|
|
40401
40432
|
b = igniteuiAngularCore.ColorUtil.r(1, c, 1, 0.5);
|
|
40402
40433
|
a = igniteuiAngularCore.ColorUtil.r(f, c, d, e);
|
|
40403
|
-
this.s.
|
|
40404
|
-
this.t.
|
|
40405
|
-
this.o.
|
|
40406
|
-
this.d.bm(this.s.
|
|
40434
|
+
this.s.by = igniteuiAngularCore.BrushUtil.l(b.l, b.o, b.n, b.m);
|
|
40435
|
+
this.t.by = igniteuiAngularCore.BrushUtil.l(a.l, a.o, a.n, a.m);
|
|
40436
|
+
this.o.a9 = igniteuiAngularCore.BrushUtil.l(a.l, a.o, a.n, a.m);
|
|
40437
|
+
this.d.bm(this.s.bt);
|
|
40407
40438
|
this.d.bn(0);
|
|
40408
|
-
this.d.bo(this.s.
|
|
40439
|
+
this.d.bo(this.s.bt, this.t.bt, 1 - this.t.bw);
|
|
40409
40440
|
}
|
|
40410
40441
|
if (this.r != null) {
|
|
40411
40442
|
var g = a.o + ", " + a.n + ", " + a.m + ", " + Math.round((a.l / 255) * 1000) / 1000;
|
|
40412
|
-
this.r.
|
|
40443
|
+
this.r.b8 = g;
|
|
40413
40444
|
}
|
|
40414
40445
|
if (this.q != null) {
|
|
40415
40446
|
var h = igniteuiAngularCore.ColorUtil.k(a, false);
|
|
40416
|
-
this.q.
|
|
40447
|
+
this.q.b8 = h;
|
|
40417
40448
|
}
|
|
40418
40449
|
this.bx = igniteuiAngularCore.BrushUtil.l(a.l, a.o, a.n, a.m);
|
|
40419
40450
|
this.bc(this.value);
|
|
@@ -40426,7 +40457,7 @@
|
|
|
40426
40457
|
ColorEditorPanel.prototype.bl = function () {
|
|
40427
40458
|
};
|
|
40428
40459
|
ColorEditorPanel.prototype.a3 = function () {
|
|
40429
|
-
this.n.
|
|
40460
|
+
this.n.a0();
|
|
40430
40461
|
};
|
|
40431
40462
|
ColorEditorPanel.prototype.onAttachedToUI = function () {
|
|
40432
40463
|
this.d.bg();
|
|
@@ -40456,10 +40487,10 @@
|
|
|
40456
40487
|
var a = this.b5;
|
|
40457
40488
|
var b = igniteuiAngularCore.ColorUtil.a(a);
|
|
40458
40489
|
this.y = true;
|
|
40459
|
-
this.s.
|
|
40460
|
-
this.u.
|
|
40461
|
-
this.t.
|
|
40462
|
-
this.t.
|
|
40490
|
+
this.s.bt = b[1] == -1 ? 0 : b[1];
|
|
40491
|
+
this.u.bt = 1 - b[0];
|
|
40492
|
+
this.t.bt = b[2];
|
|
40493
|
+
this.t.bw = 1 - b[3];
|
|
40463
40494
|
this.y = false;
|
|
40464
40495
|
if (this.x) {
|
|
40465
40496
|
this.bn();
|
|
@@ -40479,7 +40510,7 @@
|
|
|
40479
40510
|
this.bn();
|
|
40480
40511
|
};
|
|
40481
40512
|
ColorEditorPanel.prototype.a0 = function (a, b, c) {
|
|
40482
|
-
var d = this.s.
|
|
40513
|
+
var d = this.s.bt;
|
|
40483
40514
|
var e = 1;
|
|
40484
40515
|
var f = 255;
|
|
40485
40516
|
for (var g = 0; g < c; g++) {
|
|
@@ -40638,12 +40669,12 @@
|
|
|
40638
40669
|
};
|
|
40639
40670
|
ColorEditorPanel.prototype.ad = function () {
|
|
40640
40671
|
if (this.s != null) {
|
|
40641
|
-
return this.s.
|
|
40672
|
+
return this.s.bt;
|
|
40642
40673
|
}
|
|
40643
40674
|
return 0;
|
|
40644
40675
|
};
|
|
40645
40676
|
ColorEditorPanel.prototype.a1 = function (a, b, c) {
|
|
40646
|
-
var d = this.s.
|
|
40677
|
+
var d = this.s.bt;
|
|
40647
40678
|
var e = 1;
|
|
40648
40679
|
var f = 255;
|
|
40649
40680
|
for (var g = 0; g < c; g++) {
|
|
@@ -40680,11 +40711,11 @@
|
|
|
40680
40711
|
}
|
|
40681
40712
|
};
|
|
40682
40713
|
ColorEditorPanel.prototype.a2 = function (a, b, c) {
|
|
40683
|
-
var d = this.s.
|
|
40714
|
+
var d = this.s.bt;
|
|
40684
40715
|
var e = 1;
|
|
40685
40716
|
var f = 255;
|
|
40686
|
-
var g = 1 - this.t.
|
|
40687
|
-
var h = this.t.
|
|
40717
|
+
var g = 1 - this.t.bw;
|
|
40718
|
+
var h = this.t.bt;
|
|
40688
40719
|
for (var i = 0; i < c; i++) {
|
|
40689
40720
|
var j = i / c;
|
|
40690
40721
|
for (var k = 0; k < b; k++) {
|
|
@@ -40953,6 +40984,9 @@
|
|
|
40953
40984
|
this._portalManager = new igniteuiAngularCore.PortalManager("colorEditorContent", componentFactoryResolver);
|
|
40954
40985
|
var ren = new igniteuiAngularCore.AngularRenderer(root, this.renderer, window.document, this.ngZone, true, {}, this._portalManager);
|
|
40955
40986
|
this._wrapper = ren;
|
|
40987
|
+
colorEditor.view.createColorEditorPanel = function () {
|
|
40988
|
+
return window.document.createElement("igx-color-editor-panel");
|
|
40989
|
+
};
|
|
40956
40990
|
colorEditor.provideContainer(ren);
|
|
40957
40991
|
}
|
|
40958
40992
|
}
|
|
@@ -42741,15 +42775,10 @@
|
|
|
42741
42775
|
return null;
|
|
42742
42776
|
}
|
|
42743
42777
|
if (!r.externalObject) {
|
|
42744
|
-
var e =
|
|
42745
|
-
if (
|
|
42778
|
+
var e = IgxMultiSliderThumbComponent._createFromInternal(r);
|
|
42779
|
+
if (e) {
|
|
42746
42780
|
e._implementation = r;
|
|
42747
42781
|
}
|
|
42748
|
-
else {
|
|
42749
|
-
if (e.i.setNativeElement) {
|
|
42750
|
-
e.i.setNativeElement(r);
|
|
42751
|
-
}
|
|
42752
|
-
}
|
|
42753
42782
|
r.externalObject = e;
|
|
42754
42783
|
}
|
|
42755
42784
|
return r.externalObject;
|
|
@@ -42767,15 +42796,10 @@
|
|
|
42767
42796
|
return null;
|
|
42768
42797
|
}
|
|
42769
42798
|
if (!r.externalObject) {
|
|
42770
|
-
var e =
|
|
42771
|
-
if (
|
|
42799
|
+
var e = IgxMultiSliderThumbComponent._createFromInternal(r);
|
|
42800
|
+
if (e) {
|
|
42772
42801
|
e._implementation = r;
|
|
42773
42802
|
}
|
|
42774
|
-
else {
|
|
42775
|
-
if (e.i.setNativeElement) {
|
|
42776
|
-
e.i.setNativeElement(r);
|
|
42777
|
-
}
|
|
42778
|
-
}
|
|
42779
42803
|
r.externalObject = e;
|
|
42780
42804
|
}
|
|
42781
42805
|
return r.externalObject;
|
|
@@ -42811,139 +42835,236 @@
|
|
|
42811
42835
|
return IgxMultiSliderTrackThumbRange;
|
|
42812
42836
|
}());
|
|
42813
42837
|
|
|
42814
|
-
var
|
|
42815
|
-
function
|
|
42816
|
-
this.
|
|
42817
|
-
this.
|
|
42818
|
-
this.
|
|
42819
|
-
this.
|
|
42820
|
-
this.
|
|
42821
|
-
|
|
42822
|
-
|
|
42823
|
-
|
|
42824
|
-
|
|
42825
|
-
|
|
42826
|
-
|
|
42827
|
-
|
|
42828
|
-
|
|
42829
|
-
|
|
42830
|
-
|
|
42831
|
-
|
|
42832
|
-
|
|
42833
|
-
|
|
42834
|
-
|
|
42835
|
-
|
|
42836
|
-
|
|
42837
|
-
}
|
|
42838
|
-
|
|
42839
|
-
|
|
42840
|
-
|
|
42841
|
-
|
|
42842
|
-
|
|
42843
|
-
|
|
42844
|
-
|
|
42845
|
-
|
|
42846
|
-
|
|
42847
|
-
|
|
42848
|
-
|
|
42849
|
-
|
|
42850
|
-
|
|
42851
|
-
|
|
42852
|
-
|
|
42853
|
-
|
|
42854
|
-
|
|
42855
|
-
|
|
42856
|
-
|
|
42857
|
-
|
|
42858
|
-
|
|
42859
|
-
|
|
42860
|
-
|
|
42861
|
-
}
|
|
42862
|
-
|
|
42863
|
-
|
|
42864
|
-
|
|
42865
|
-
|
|
42866
|
-
|
|
42867
|
-
|
|
42868
|
-
|
|
42869
|
-
|
|
42870
|
-
|
|
42871
|
-
|
|
42872
|
-
|
|
42873
|
-
|
|
42874
|
-
|
|
42875
|
-
|
|
42876
|
-
|
|
42877
|
-
|
|
42878
|
-
|
|
42879
|
-
|
|
42880
|
-
|
|
42881
|
-
|
|
42882
|
-
|
|
42883
|
-
|
|
42884
|
-
|
|
42885
|
-
|
|
42886
|
-
|
|
42887
|
-
|
|
42888
|
-
|
|
42889
|
-
|
|
42890
|
-
|
|
42891
|
-
|
|
42892
|
-
|
|
42893
|
-
|
|
42894
|
-
|
|
42895
|
-
|
|
42896
|
-
|
|
42897
|
-
|
|
42898
|
-
|
|
42899
|
-
|
|
42900
|
-
|
|
42901
|
-
|
|
42902
|
-
|
|
42903
|
-
|
|
42904
|
-
|
|
42905
|
-
|
|
42906
|
-
|
|
42907
|
-
|
|
42908
|
-
|
|
42909
|
-
|
|
42910
|
-
|
|
42911
|
-
|
|
42912
|
-
|
|
42913
|
-
|
|
42914
|
-
|
|
42915
|
-
|
|
42916
|
-
|
|
42917
|
-
|
|
42918
|
-
|
|
42919
|
-
|
|
42920
|
-
|
|
42921
|
-
|
|
42922
|
-
|
|
42923
|
-
|
|
42924
|
-
|
|
42925
|
-
return this.
|
|
42926
|
-
},
|
|
42927
|
-
enumerable: false,
|
|
42928
|
-
configurable: true
|
|
42929
|
-
});
|
|
42930
|
-
|
|
42931
|
-
if (this.
|
|
42932
|
-
this.
|
|
42933
|
-
}
|
|
42934
|
-
|
|
42935
|
-
|
|
42936
|
-
|
|
42937
|
-
|
|
42938
|
-
|
|
42838
|
+
var IgxMultiSliderThumbComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
42839
|
+
function IgxMultiSliderThumbComponent() {
|
|
42840
|
+
this.__p = null;
|
|
42841
|
+
this._hasUserValues = new Set();
|
|
42842
|
+
this._stylingContainer = null;
|
|
42843
|
+
this._stylingParent = null;
|
|
42844
|
+
this._inStyling = false;
|
|
42845
|
+
this._propertyUpdated = null;
|
|
42846
|
+
this._zoneRunner = null;
|
|
42847
|
+
if (this._styling) {
|
|
42848
|
+
igniteuiAngularCore.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this));
|
|
42849
|
+
}
|
|
42850
|
+
this._implementation = this.createImplementation();
|
|
42851
|
+
this._implementation.externalObject = this;
|
|
42852
|
+
this.onImplementationCreated();
|
|
42853
|
+
if (this._initializeAdapters) {
|
|
42854
|
+
this._initializeAdapters();
|
|
42855
|
+
}
|
|
42856
|
+
}
|
|
42857
|
+
IgxMultiSliderThumbComponent.prototype.createImplementation = function () {
|
|
42858
|
+
return new MultiSliderThumb();
|
|
42859
|
+
};
|
|
42860
|
+
IgxMultiSliderThumbComponent.prototype.ngOnInit = function () {
|
|
42861
|
+
};
|
|
42862
|
+
Object.defineProperty(IgxMultiSliderThumbComponent.prototype, "i", {
|
|
42863
|
+
/**
|
|
42864
|
+
* @hidden
|
|
42865
|
+
*/
|
|
42866
|
+
get: function () {
|
|
42867
|
+
return this._implementation;
|
|
42868
|
+
} /**
|
|
42869
|
+
* @hidden
|
|
42870
|
+
*/,
|
|
42871
|
+
enumerable: false,
|
|
42872
|
+
configurable: true
|
|
42873
|
+
});
|
|
42874
|
+
IgxMultiSliderThumbComponent._createFromInternal = function (internal) {
|
|
42875
|
+
if (!internal) {
|
|
42876
|
+
return null;
|
|
42877
|
+
}
|
|
42878
|
+
if (!internal.$type) {
|
|
42879
|
+
return null;
|
|
42880
|
+
}
|
|
42881
|
+
var name = internal.$type.name;
|
|
42882
|
+
var externalName = "Igx" + name + "Component";
|
|
42883
|
+
if (!igniteuiAngularCore.TypeRegistrar.isRegistered(externalName)) {
|
|
42884
|
+
return null;
|
|
42885
|
+
}
|
|
42886
|
+
return igniteuiAngularCore.TypeRegistrar.create(externalName);
|
|
42887
|
+
};
|
|
42888
|
+
IgxMultiSliderThumbComponent.prototype.onImplementationCreated = function () {
|
|
42889
|
+
};
|
|
42890
|
+
Object.defineProperty(IgxMultiSliderThumbComponent.prototype, "value", {
|
|
42891
|
+
get: function () {
|
|
42892
|
+
return this.i.s;
|
|
42893
|
+
},
|
|
42894
|
+
set: function (v) {
|
|
42895
|
+
this.i.s = +v;
|
|
42896
|
+
},
|
|
42897
|
+
enumerable: false,
|
|
42898
|
+
configurable: true
|
|
42899
|
+
});
|
|
42900
|
+
Object.defineProperty(IgxMultiSliderThumbComponent.prototype, "rangePosition", {
|
|
42901
|
+
get: function () {
|
|
42902
|
+
return this.i.g;
|
|
42903
|
+
},
|
|
42904
|
+
set: function (v) {
|
|
42905
|
+
this.i.g = igniteuiAngularCore.ensureEnum(MultiSliderThumbRangePosition_$type, v);
|
|
42906
|
+
},
|
|
42907
|
+
enumerable: false,
|
|
42908
|
+
configurable: true
|
|
42909
|
+
});
|
|
42910
|
+
Object.defineProperty(IgxMultiSliderThumbComponent.prototype, "range", {
|
|
42911
|
+
get: function () {
|
|
42912
|
+
var r = this.i.i;
|
|
42913
|
+
if (r == null) {
|
|
42914
|
+
return null;
|
|
42915
|
+
}
|
|
42916
|
+
if (!r.externalObject) {
|
|
42917
|
+
var e = new IgxMultiSliderTrackThumbRange();
|
|
42918
|
+
if (r.$type) {
|
|
42919
|
+
e._implementation = r;
|
|
42920
|
+
}
|
|
42921
|
+
else {
|
|
42922
|
+
if (e.i.setNativeElement) {
|
|
42923
|
+
e.i.setNativeElement(r);
|
|
42924
|
+
}
|
|
42925
|
+
}
|
|
42926
|
+
r.externalObject = e;
|
|
42927
|
+
}
|
|
42928
|
+
return r.externalObject;
|
|
42929
|
+
},
|
|
42930
|
+
set: function (v) {
|
|
42931
|
+
v == null ? this.i.i = null : this.i.i = v.i;
|
|
42932
|
+
},
|
|
42933
|
+
enumerable: false,
|
|
42934
|
+
configurable: true
|
|
42935
|
+
});
|
|
42936
|
+
IgxMultiSliderThumbComponent.prototype.findByName = function (name) {
|
|
42937
|
+
if (this.findEphemera) {
|
|
42938
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
42939
|
+
return this.findEphemera(name);
|
|
42940
|
+
}
|
|
42941
|
+
}
|
|
42942
|
+
if (this.range && this.range.name && this.range.name == name) {
|
|
42943
|
+
return this.range;
|
|
42944
|
+
}
|
|
42945
|
+
return null;
|
|
42946
|
+
};
|
|
42947
|
+
Object.defineProperty(IgxMultiSliderThumbComponent.prototype, "hasUserValues", {
|
|
42948
|
+
get: function () {
|
|
42949
|
+
return this._hasUserValues;
|
|
42950
|
+
},
|
|
42951
|
+
enumerable: false,
|
|
42952
|
+
configurable: true
|
|
42953
|
+
});
|
|
42954
|
+
IgxMultiSliderThumbComponent.prototype.__m = function (propertyName) {
|
|
42955
|
+
if (!this._inStyling) {
|
|
42956
|
+
this._hasUserValues.add(propertyName);
|
|
42957
|
+
}
|
|
42958
|
+
};
|
|
42959
|
+
IgxMultiSliderThumbComponent.prototype._styling = function (container, component, parent) {
|
|
42960
|
+
if (this._inStyling) {
|
|
42961
|
+
return;
|
|
42962
|
+
}
|
|
42963
|
+
this._inStyling = true;
|
|
42964
|
+
this._stylingContainer = container;
|
|
42965
|
+
this._stylingParent = component;
|
|
42966
|
+
var genericPrefix = "";
|
|
42967
|
+
var typeName = this.i.$type.name;
|
|
42968
|
+
if (typeName.indexOf("Xam") === 0) {
|
|
42969
|
+
typeName = typeName.substring(3);
|
|
42970
|
+
}
|
|
42971
|
+
genericPrefix = igniteuiAngularCore.toSpinal("MultiSliderThumbComponent");
|
|
42972
|
+
var additionalPrefixes = [];
|
|
42973
|
+
var prefix = igniteuiAngularCore.toSpinal(typeName);
|
|
42974
|
+
additionalPrefixes.push(prefix + "-");
|
|
42975
|
+
var b = this.i.$type.baseType;
|
|
42976
|
+
while (b && b.name != "Object" &&
|
|
42977
|
+
b.name != "Base" &&
|
|
42978
|
+
b.name != "Control" &&
|
|
42979
|
+
b.Name != "DependencyObject" &&
|
|
42980
|
+
b.Name != "FrameworkElement") {
|
|
42981
|
+
typeName = b.name;
|
|
42982
|
+
if (typeName.indexOf("Xam") === 0) {
|
|
42983
|
+
typeName = typeName.substring(3);
|
|
42984
|
+
}
|
|
42985
|
+
var basePrefix = igniteuiAngularCore.toSpinal(typeName);
|
|
42986
|
+
additionalPrefixes.push(basePrefix + "-");
|
|
42987
|
+
b = b.baseType;
|
|
42988
|
+
}
|
|
42989
|
+
if (parent) {
|
|
42990
|
+
var parentTypeName = parent.i.$type.name;
|
|
42991
|
+
if (parentTypeName.indexOf("Xam") === 0) {
|
|
42992
|
+
parentTypeName = parentTypeName.substring(3);
|
|
42993
|
+
}
|
|
42994
|
+
var parentPrefix = igniteuiAngularCore.toSpinal(parentTypeName);
|
|
42995
|
+
additionalPrefixes.push(parentPrefix + "-" + genericPrefix + "-");
|
|
42996
|
+
additionalPrefixes.push(parentPrefix + "-" + prefix + "-");
|
|
42997
|
+
}
|
|
42998
|
+
igniteuiAngularCore.initializePropertiesFromCss(container, this, genericPrefix + "-", this.hasUserValues, false, additionalPrefixes);
|
|
42999
|
+
if (this._otherStyling) {
|
|
43000
|
+
this._otherStyling(container, component, parent);
|
|
43001
|
+
}
|
|
43002
|
+
this._inStyling = false;
|
|
43003
|
+
};
|
|
43004
|
+
IgxMultiSliderThumbComponent.prototype.push = function (amount) {
|
|
43005
|
+
var iv = this.i.r(amount);
|
|
43006
|
+
return (iv);
|
|
43007
|
+
};
|
|
43008
|
+
Object.defineProperty(IgxMultiSliderThumbComponent.prototype, "propertyUpdated", {
|
|
43009
|
+
get: function () {
|
|
43010
|
+
var _this = this;
|
|
43011
|
+
if (this._propertyUpdated == null) {
|
|
43012
|
+
this._propertyUpdated = new i0.EventEmitter();
|
|
43013
|
+
this.i.propertyUpdated = igniteuiAngularCore.delegateCombine(this.i.propertyUpdated, function (o, e) {
|
|
43014
|
+
_this._runInZone(function () {
|
|
43015
|
+
var outerArgs = new igniteuiAngularCore.IgxPropertyUpdatedEventArgs();
|
|
43016
|
+
outerArgs._provideImplementation(e);
|
|
43017
|
+
if (_this.beforePropertyUpdated) {
|
|
43018
|
+
_this.beforePropertyUpdated(_this, outerArgs);
|
|
43019
|
+
}
|
|
43020
|
+
_this._propertyUpdated.emit({
|
|
43021
|
+
sender: _this,
|
|
43022
|
+
args: outerArgs
|
|
43023
|
+
});
|
|
43024
|
+
});
|
|
43025
|
+
});
|
|
43026
|
+
}
|
|
43027
|
+
return this._propertyUpdated;
|
|
43028
|
+
},
|
|
43029
|
+
enumerable: false,
|
|
43030
|
+
configurable: true
|
|
43031
|
+
});
|
|
43032
|
+
IgxMultiSliderThumbComponent.prototype._runInZone = function (act) {
|
|
43033
|
+
if (this._zoneRunner != null) {
|
|
43034
|
+
this._zoneRunner(act);
|
|
43035
|
+
}
|
|
43036
|
+
else {
|
|
43037
|
+
act();
|
|
43038
|
+
}
|
|
43039
|
+
};
|
|
43040
|
+
IgxMultiSliderThumbComponent.ɵfac = i0["ɵɵngDeclareFactory"]({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbComponent, deps: [], target: i0["ɵɵFactoryTarget"].Component });
|
|
43041
|
+
IgxMultiSliderThumbComponent.ɵcmp = i0["ɵɵngDeclareComponent"]({ minVersion: "12.0.0", version: "12.2.17", type: IgxMultiSliderThumbComponent, selector: "igx-multi-slider-thumb", inputs: { value: "value", rangePosition: "rangePosition", range: "range" }, outputs: { propertyUpdated: "propertyUpdated" }, providers: [], ngImport: i0, template: "", isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
43042
|
+
return IgxMultiSliderThumbComponent;
|
|
42939
43043
|
}());
|
|
43044
|
+
i0["ɵɵngDeclareClassMetadata"]({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbComponent, decorators: [{
|
|
43045
|
+
type: i0.Component,
|
|
43046
|
+
args: [{
|
|
43047
|
+
selector: 'igx-multi-slider-thumb',
|
|
43048
|
+
template: "",
|
|
43049
|
+
providers: [],
|
|
43050
|
+
changeDetection: i0.ChangeDetectionStrategy.OnPush
|
|
43051
|
+
}]
|
|
43052
|
+
}], ctorParameters: function () { return []; }, propDecorators: { value: [{
|
|
43053
|
+
type: i0.Input
|
|
43054
|
+
}], rangePosition: [{
|
|
43055
|
+
type: i0.Input
|
|
43056
|
+
}], range: [{
|
|
43057
|
+
type: i0.Input
|
|
43058
|
+
}], propertyUpdated: [{
|
|
43059
|
+
type: i0.Output
|
|
43060
|
+
}] } });
|
|
42940
43061
|
|
|
42941
43062
|
var IgxMultiSliderThumbCollection = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
42942
43063
|
tslib.__extends(IgxMultiSliderThumbCollection, _super);
|
|
42943
43064
|
function IgxMultiSliderThumbCollection(list) {
|
|
42944
43065
|
var _this = _super.call(this) || this;
|
|
42945
|
-
if (!
|
|
42946
|
-
|
|
43066
|
+
if (!IgxMultiSliderThumbComponent.$type) {
|
|
43067
|
+
IgxMultiSliderThumbComponent.$type = igniteuiAngularCore.markType(IgxMultiSliderThumbComponent, "IgxMultiSliderThumbComponent");
|
|
42947
43068
|
}
|
|
42948
43069
|
if (list) {
|
|
42949
43070
|
for (var i = 0; i < list.length; i++) {
|
|
@@ -42953,10 +43074,10 @@
|
|
|
42953
43074
|
return _this;
|
|
42954
43075
|
}
|
|
42955
43076
|
IgxMultiSliderThumbCollection.prototype._createInnerColl = function () {
|
|
42956
|
-
if (!
|
|
42957
|
-
|
|
43077
|
+
if (!IgxMultiSliderThumbComponent.$type) {
|
|
43078
|
+
IgxMultiSliderThumbComponent.$type = igniteuiAngularCore.markType(IgxMultiSliderThumbComponent, "IgxMultiSliderThumbComponent");
|
|
42958
43079
|
}
|
|
42959
|
-
var coll = new igniteuiAngularCore.SyncableObservableCollection$2(
|
|
43080
|
+
var coll = new igniteuiAngularCore.SyncableObservableCollection$2(IgxMultiSliderThumbComponent.$type, MultiSliderThumb.$type, 0);
|
|
42960
43081
|
coll.compare = function (ext, int) {
|
|
42961
43082
|
var comp = ext;
|
|
42962
43083
|
if (comp._implementation) {
|
|
@@ -42973,7 +43094,7 @@
|
|
|
42973
43094
|
coll.createFrom = function (int) {
|
|
42974
43095
|
var ext = int.externalObject;
|
|
42975
43096
|
if (!ext) {
|
|
42976
|
-
ext = new
|
|
43097
|
+
ext = new IgxMultiSliderThumbComponent();
|
|
42977
43098
|
if (ext) {
|
|
42978
43099
|
if (!int.$type && ext._implementation.setNativeElement) {
|
|
42979
43100
|
ext._implementation.setNativeElement(int);
|
|
@@ -43088,15 +43209,10 @@
|
|
|
43088
43209
|
return null;
|
|
43089
43210
|
}
|
|
43090
43211
|
if (!r.externalObject) {
|
|
43091
|
-
var e =
|
|
43092
|
-
if (
|
|
43212
|
+
var e = IgxMultiSliderThumbComponent._createFromInternal(r);
|
|
43213
|
+
if (e) {
|
|
43093
43214
|
e._implementation = r;
|
|
43094
43215
|
}
|
|
43095
|
-
else {
|
|
43096
|
-
if (e.i.setNativeElement) {
|
|
43097
|
-
e.i.setNativeElement(r);
|
|
43098
|
-
}
|
|
43099
|
-
}
|
|
43100
43216
|
r.externalObject = e;
|
|
43101
43217
|
}
|
|
43102
43218
|
return r.externalObject;
|
|
@@ -46162,12 +46278,12 @@
|
|
|
46162
46278
|
switch (b) {
|
|
46163
46279
|
case 15:
|
|
46164
46280
|
case 16:
|
|
46165
|
-
case 44:
|
|
46166
46281
|
case 45:
|
|
46167
46282
|
case 46:
|
|
46168
46283
|
case 47:
|
|
46169
46284
|
case 48:
|
|
46170
|
-
case 49:
|
|
46285
|
+
case 49:
|
|
46286
|
+
case 50: return this.al.t;
|
|
46171
46287
|
}
|
|
46172
46288
|
return _super.prototype.getTargetForBuildInProperty.call(this, a, b);
|
|
46173
46289
|
};
|
|
@@ -46183,12 +46299,12 @@
|
|
|
46183
46299
|
switch (b) {
|
|
46184
46300
|
case 16:
|
|
46185
46301
|
case 15:
|
|
46186
|
-
case 44:
|
|
46187
46302
|
case 45:
|
|
46188
46303
|
case 46:
|
|
46189
46304
|
case 47:
|
|
46190
46305
|
case 48:
|
|
46191
|
-
case 49:
|
|
46306
|
+
case 49:
|
|
46307
|
+
case 50: return this.al.getValue(a, b);
|
|
46192
46308
|
case 18: return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.BaseControlTheme_$type, a.o);
|
|
46193
46309
|
}
|
|
46194
46310
|
return _super.prototype.getValue.call(this, a, b);
|
|
@@ -46198,12 +46314,12 @@
|
|
|
46198
46314
|
switch (b) {
|
|
46199
46315
|
case 16:
|
|
46200
46316
|
case 15:
|
|
46201
|
-
case 44:
|
|
46202
46317
|
case 45:
|
|
46203
46318
|
case 46:
|
|
46204
46319
|
case 47:
|
|
46205
46320
|
case 48:
|
|
46206
46321
|
case 49:
|
|
46322
|
+
case 50:
|
|
46207
46323
|
this.al.setValue(a, b, c);
|
|
46208
46324
|
break;
|
|
46209
46325
|
case 18:
|
|
@@ -46809,6 +46925,56 @@
|
|
|
46809
46925
|
return DefaultMultiTrackShadeVisual;
|
|
46810
46926
|
}(igniteuiAngularCore.Base));
|
|
46811
46927
|
|
|
46928
|
+
/*
|
|
46929
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
46930
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
46931
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
46932
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
46933
|
+
*/
|
|
46934
|
+
var IgxMultiSliderThumbModule = /** @class */ /*@__PURE__*/ (function () {
|
|
46935
|
+
function IgxMultiSliderThumbModule() {
|
|
46936
|
+
}
|
|
46937
|
+
IgxMultiSliderThumbModule.ɵfac = i0["ɵɵngDeclareFactory"]({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbModule, deps: [], target: i0["ɵɵFactoryTarget"].NgModule });
|
|
46938
|
+
IgxMultiSliderThumbModule.ɵmod = i0["ɵɵngDeclareNgModule"]({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbModule, declarations: [IgxMultiSliderThumbComponent], imports: [common.CommonModule], exports: [IgxMultiSliderThumbComponent] });
|
|
46939
|
+
IgxMultiSliderThumbModule.ɵinj = i0["ɵɵngDeclareInjector"]({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbModule, imports: [[common.CommonModule]] });
|
|
46940
|
+
return IgxMultiSliderThumbModule;
|
|
46941
|
+
}());
|
|
46942
|
+
i0["ɵɵngDeclareClassMetadata"]({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbModule, decorators: [{
|
|
46943
|
+
type: i0.NgModule,
|
|
46944
|
+
args: [{
|
|
46945
|
+
declarations: [IgxMultiSliderThumbComponent],
|
|
46946
|
+
imports: [common.CommonModule],
|
|
46947
|
+
exports: [IgxMultiSliderThumbComponent],
|
|
46948
|
+
entryComponents: []
|
|
46949
|
+
}]
|
|
46950
|
+
}] });
|
|
46951
|
+
|
|
46952
|
+
/*
|
|
46953
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
46954
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
46955
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
46956
|
+
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
46957
|
+
*/
|
|
46958
|
+
var IgxMultiSliderThumbDynamicModule = /** @class */ /*@__PURE__*/ (function () {
|
|
46959
|
+
function IgxMultiSliderThumbDynamicModule() {
|
|
46960
|
+
igniteuiAngularCore.TypeRegistrar.registerCons("IgxMultiSliderThumbComponent", IgxMultiSliderThumbComponent);
|
|
46961
|
+
igniteuiAngularCore.TypeRegistrar.register("MultiSliderThumb", MultiSliderThumb.$type);
|
|
46962
|
+
}
|
|
46963
|
+
IgxMultiSliderThumbDynamicModule.ɵfac = i0["ɵɵngDeclareFactory"]({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbDynamicModule, deps: [], target: i0["ɵɵFactoryTarget"].NgModule });
|
|
46964
|
+
IgxMultiSliderThumbDynamicModule.ɵmod = i0["ɵɵngDeclareNgModule"]({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbDynamicModule, imports: [common.CommonModule, IgxMultiSliderThumbModule], exports: [IgxMultiSliderThumbModule] });
|
|
46965
|
+
IgxMultiSliderThumbDynamicModule.ɵinj = i0["ɵɵngDeclareInjector"]({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbDynamicModule, imports: [[common.CommonModule, IgxMultiSliderThumbModule], IgxMultiSliderThumbModule] });
|
|
46966
|
+
return IgxMultiSliderThumbDynamicModule;
|
|
46967
|
+
}());
|
|
46968
|
+
i0["ɵɵngDeclareClassMetadata"]({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbDynamicModule, decorators: [{
|
|
46969
|
+
type: i0.NgModule,
|
|
46970
|
+
args: [{
|
|
46971
|
+
declarations: [],
|
|
46972
|
+
imports: [common.CommonModule, IgxMultiSliderThumbModule],
|
|
46973
|
+
exports: [IgxMultiSliderThumbModule],
|
|
46974
|
+
entryComponents: [IgxMultiSliderThumbComponent]
|
|
46975
|
+
}]
|
|
46976
|
+
}], ctorParameters: function () { return []; } });
|
|
46977
|
+
|
|
46812
46978
|
/*
|
|
46813
46979
|
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
46814
46980
|
https://www.infragistics.com/legal/license/igultimate-la
|
|
@@ -47018,8 +47184,10 @@
|
|
|
47018
47184
|
exports.IgxMultiSliderDynamicModule = IgxMultiSliderDynamicModule;
|
|
47019
47185
|
exports.IgxMultiSliderModule = IgxMultiSliderModule;
|
|
47020
47186
|
exports.IgxMultiSliderResolvingToolTipValueEventArgs = IgxMultiSliderResolvingToolTipValueEventArgs;
|
|
47021
|
-
exports.IgxMultiSliderThumb = IgxMultiSliderThumb;
|
|
47022
47187
|
exports.IgxMultiSliderThumbCollection = IgxMultiSliderThumbCollection;
|
|
47188
|
+
exports.IgxMultiSliderThumbComponent = IgxMultiSliderThumbComponent;
|
|
47189
|
+
exports.IgxMultiSliderThumbDynamicModule = IgxMultiSliderThumbDynamicModule;
|
|
47190
|
+
exports.IgxMultiSliderThumbModule = IgxMultiSliderThumbModule;
|
|
47023
47191
|
exports.IgxMultiSliderThumbValueChangingEventArgs = IgxMultiSliderThumbValueChangingEventArgs;
|
|
47024
47192
|
exports.IgxMultiSliderTrackThumbRange = IgxMultiSliderTrackThumbRange;
|
|
47025
47193
|
exports.IgxMultiSliderYValueChangingEventArgs = IgxMultiSliderYValueChangingEventArgs;
|