igniteui-angular-inputs 21.0.1 → 21.1.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-angular-inputs.umd.js +931 -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 +31 -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 +31 -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 +906 -749
- package/fesm5/igniteui-angular-inputs.js +929 -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", {
|
|
@@ -21967,7 +21967,7 @@
|
|
|
21967
21967
|
a.c = this.p;
|
|
21968
21968
|
a.e = this.t;
|
|
21969
21969
|
a.d = this.s;
|
|
21970
|
-
a.a = igniteuiAngularCore.AppearanceHelper.a(igniteuiAngularCore.NativeUI.
|
|
21970
|
+
a.a = igniteuiAngularCore.AppearanceHelper.a(igniteuiAngularCore.NativeUI.ao(b));
|
|
21971
21971
|
a.b = this.l;
|
|
21972
21972
|
a.i = this.ap;
|
|
21973
21973
|
a.g = this.an;
|
|
@@ -22317,7 +22317,7 @@
|
|
|
22317
22317
|
if (this.ad != null) {
|
|
22318
22318
|
this.view.bc(this.ad);
|
|
22319
22319
|
}
|
|
22320
|
-
igniteuiAngularCore.NativeUI.
|
|
22320
|
+
igniteuiAngularCore.NativeUI.r(this.view.r, this.d4);
|
|
22321
22321
|
this.view.a7();
|
|
22322
22322
|
};
|
|
22323
22323
|
Object.defineProperty(XInput.prototype, "d4", {
|
|
@@ -22765,7 +22765,7 @@
|
|
|
22765
22765
|
a.l = this.ce;
|
|
22766
22766
|
a.o = this.ci;
|
|
22767
22767
|
a.d = this.au;
|
|
22768
|
-
a.a = igniteuiAngularCore.AppearanceHelper.a(igniteuiAngularCore.NativeUI.
|
|
22768
|
+
a.a = igniteuiAngularCore.AppearanceHelper.a(igniteuiAngularCore.NativeUI.ao(b));
|
|
22769
22769
|
a.k = this.b8;
|
|
22770
22770
|
a.n = this.cg;
|
|
22771
22771
|
a.e = this.aw;
|
|
@@ -30352,7 +30352,8 @@
|
|
|
30352
30352
|
case 15:
|
|
30353
30353
|
case 17:
|
|
30354
30354
|
case 7:
|
|
30355
|
-
case 21:
|
|
30355
|
+
case 21:
|
|
30356
|
+
case 1: return b;
|
|
30356
30357
|
}
|
|
30357
30358
|
return this.s != null ? this.s : b;
|
|
30358
30359
|
};
|
|
@@ -30364,7 +30365,8 @@
|
|
|
30364
30365
|
};
|
|
30365
30366
|
XComponentBridge.prototype.getTargetForBuildInProperty = function (a, b) {
|
|
30366
30367
|
switch (b) {
|
|
30367
|
-
case
|
|
30368
|
+
case 109:
|
|
30369
|
+
case 122: return a;
|
|
30368
30370
|
}
|
|
30369
30371
|
return this.s != null ? this.s : a;
|
|
30370
30372
|
};
|
|
@@ -30623,18 +30625,18 @@
|
|
|
30623
30625
|
var c = a;
|
|
30624
30626
|
var d = igniteuiAngularCore.typeCast(XInput.$, c.inputs._inner[0]);
|
|
30625
30627
|
switch (b) {
|
|
30626
|
-
case
|
|
30628
|
+
case 104: return a.mc;
|
|
30627
30629
|
case 3:
|
|
30628
30630
|
this.an(a);
|
|
30629
30631
|
var e = this.v(a);
|
|
30630
30632
|
return e.text;
|
|
30631
|
-
case
|
|
30633
|
+
case 101:
|
|
30632
30634
|
this.ao(a);
|
|
30633
30635
|
return this.u.svgPath;
|
|
30634
|
-
case
|
|
30636
|
+
case 102:
|
|
30635
30637
|
this.ao(a);
|
|
30636
30638
|
return this.u.fill;
|
|
30637
|
-
case
|
|
30639
|
+
case 103:
|
|
30638
30640
|
this.ao(a);
|
|
30639
30641
|
return this.u.ea;
|
|
30640
30642
|
case 2: return d.cq;
|
|
@@ -30670,11 +30672,11 @@
|
|
|
30670
30672
|
}
|
|
30671
30673
|
break;
|
|
30672
30674
|
case 21: return d.a1;
|
|
30673
|
-
case
|
|
30674
|
-
case
|
|
30675
|
-
case
|
|
30676
|
-
case
|
|
30677
|
-
case
|
|
30675
|
+
case 33: return d.disabled;
|
|
30676
|
+
case 34: return d.d8;
|
|
30677
|
+
case 106: return d.selectionStart;
|
|
30678
|
+
case 107: return d.selectionEnd;
|
|
30679
|
+
case 108: return c.an;
|
|
30678
30680
|
}
|
|
30679
30681
|
return null;
|
|
30680
30682
|
};
|
|
@@ -30682,7 +30684,7 @@
|
|
|
30682
30684
|
var d = a;
|
|
30683
30685
|
var e = igniteuiAngularCore.typeCast(XInput.$, d.inputs._inner[0]);
|
|
30684
30686
|
switch (b) {
|
|
30685
|
-
case
|
|
30687
|
+
case 104:
|
|
30686
30688
|
a.mc = c;
|
|
30687
30689
|
break;
|
|
30688
30690
|
case 3:
|
|
@@ -30690,15 +30692,15 @@
|
|
|
30690
30692
|
var f = this.v(a);
|
|
30691
30693
|
f.text = c;
|
|
30692
30694
|
break;
|
|
30693
|
-
case
|
|
30695
|
+
case 101:
|
|
30694
30696
|
this.ao(a);
|
|
30695
30697
|
this.u.svgPath = c;
|
|
30696
30698
|
break;
|
|
30697
|
-
case
|
|
30699
|
+
case 102:
|
|
30698
30700
|
this.ao(a);
|
|
30699
30701
|
this.u.fill = c;
|
|
30700
30702
|
break;
|
|
30701
|
-
case
|
|
30703
|
+
case 103:
|
|
30702
30704
|
this.ao(a);
|
|
30703
30705
|
this.u.ea = c;
|
|
30704
30706
|
break;
|
|
@@ -30769,19 +30771,19 @@
|
|
|
30769
30771
|
case 21:
|
|
30770
30772
|
e.a1 = c;
|
|
30771
30773
|
break;
|
|
30772
|
-
case
|
|
30774
|
+
case 33:
|
|
30773
30775
|
e.disabled = c;
|
|
30774
30776
|
break;
|
|
30775
|
-
case
|
|
30777
|
+
case 34:
|
|
30776
30778
|
e.d8 = c;
|
|
30777
30779
|
break;
|
|
30778
|
-
case
|
|
30780
|
+
case 106:
|
|
30779
30781
|
e.selectionStart = igniteuiAngularCore.typeGetValue(c);
|
|
30780
30782
|
break;
|
|
30781
|
-
case
|
|
30783
|
+
case 107:
|
|
30782
30784
|
e.selectionEnd = igniteuiAngularCore.typeGetValue(c);
|
|
30783
30785
|
break;
|
|
30784
|
-
case
|
|
30786
|
+
case 108:
|
|
30785
30787
|
d.an = c;
|
|
30786
30788
|
break;
|
|
30787
30789
|
}
|
|
@@ -30948,7 +30950,7 @@
|
|
|
30948
30950
|
d.clearButtonContent();
|
|
30949
30951
|
if (igniteuiAngularCore.typeCast(igniteuiAngularCore.NativeUIComponent.$, c) !== null) {
|
|
30950
30952
|
this.ac = c;
|
|
30951
|
-
d.appendButtonContent(this.ac.
|
|
30953
|
+
d.appendButtonContent(this.ac.ao);
|
|
30952
30954
|
}
|
|
30953
30955
|
else {
|
|
30954
30956
|
this.ac = c;
|
|
@@ -30979,10 +30981,10 @@
|
|
|
30979
30981
|
case 18:
|
|
30980
30982
|
d.o = igniteuiAngularCore.EnumUtil.getEnumValue(igniteuiAngularCore.BaseControlTheme_$type, c);
|
|
30981
30983
|
break;
|
|
30982
|
-
case
|
|
30984
|
+
case 55:
|
|
30983
30985
|
if (igniteuiAngularCore.typeCast(igniteuiAngularCore.NativeUIComponent.$, c) !== null) {
|
|
30984
30986
|
this.aa = c;
|
|
30985
|
-
d.appendButtonContent(this.aa.
|
|
30987
|
+
d.appendButtonContent(this.aa.ao);
|
|
30986
30988
|
}
|
|
30987
30989
|
break;
|
|
30988
30990
|
case 0:
|
|
@@ -31007,7 +31009,7 @@
|
|
|
31007
31009
|
case 4:
|
|
31008
31010
|
d.ax = c;
|
|
31009
31011
|
break;
|
|
31010
|
-
case
|
|
31012
|
+
case 33:
|
|
31011
31013
|
d.disabled = c;
|
|
31012
31014
|
break;
|
|
31013
31015
|
case 5:
|
|
@@ -31019,19 +31021,19 @@
|
|
|
31019
31021
|
case 24:
|
|
31020
31022
|
d.ql = c;
|
|
31021
31023
|
break;
|
|
31022
|
-
case
|
|
31024
|
+
case 56:
|
|
31023
31025
|
d.bn = c.left;
|
|
31024
31026
|
d.bp = c.top;
|
|
31025
31027
|
d.bo = c.right;
|
|
31026
31028
|
d.bm = c.bottom;
|
|
31027
31029
|
break;
|
|
31028
|
-
case
|
|
31030
|
+
case 58:
|
|
31029
31031
|
d.az = c;
|
|
31030
31032
|
break;
|
|
31031
|
-
case
|
|
31033
|
+
case 57:
|
|
31032
31034
|
d.aw = c;
|
|
31033
31035
|
break;
|
|
31034
|
-
case
|
|
31036
|
+
case 59:
|
|
31035
31037
|
d.au = c;
|
|
31036
31038
|
break;
|
|
31037
31039
|
case 17:
|
|
@@ -31040,13 +31042,13 @@
|
|
|
31040
31042
|
case 11:
|
|
31041
31043
|
d.ab = c;
|
|
31042
31044
|
break;
|
|
31043
|
-
case
|
|
31045
|
+
case 89:
|
|
31044
31046
|
d.bz = c;
|
|
31045
31047
|
break;
|
|
31046
|
-
case
|
|
31048
|
+
case 60:
|
|
31047
31049
|
d.a6 = c;
|
|
31048
31050
|
break;
|
|
31049
|
-
case
|
|
31051
|
+
case 119:
|
|
31050
31052
|
d.n7 = c;
|
|
31051
31053
|
break;
|
|
31052
31054
|
case 23:
|
|
@@ -31058,7 +31060,7 @@
|
|
|
31058
31060
|
var c = a;
|
|
31059
31061
|
switch (b) {
|
|
31060
31062
|
case 3: return this.ac;
|
|
31061
|
-
case
|
|
31063
|
+
case 55: return this.aa;
|
|
31062
31064
|
case 1:
|
|
31063
31065
|
switch (c.s) {
|
|
31064
31066
|
case 0: return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.NativeUIDisplayDensity_$type, 0);
|
|
@@ -31079,18 +31081,18 @@
|
|
|
31079
31081
|
}
|
|
31080
31082
|
return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.NativeUIButtonDisplayType_$type, 0);
|
|
31081
31083
|
case 4: return c.ax;
|
|
31082
|
-
case
|
|
31084
|
+
case 33: return c.disabled;
|
|
31083
31085
|
case 5: return c.av;
|
|
31084
31086
|
case 6: return !c.a3;
|
|
31085
31087
|
case 24: return c.ql;
|
|
31086
|
-
case
|
|
31087
|
-
case
|
|
31088
|
-
case
|
|
31089
|
-
case
|
|
31088
|
+
case 56: return new igniteuiAngularCore.Thickness(1, c.bn, c.bp, c.bo, c.bm);
|
|
31089
|
+
case 58: return c.az;
|
|
31090
|
+
case 57: return c.aw;
|
|
31091
|
+
case 59: return c.au;
|
|
31090
31092
|
case 17: return c.k6;
|
|
31091
|
-
case
|
|
31092
|
-
case
|
|
31093
|
-
case
|
|
31093
|
+
case 89: return c.bz;
|
|
31094
|
+
case 60: return c.a6;
|
|
31095
|
+
case 119: return c.n7;
|
|
31094
31096
|
case 23: return c.n6;
|
|
31095
31097
|
}
|
|
31096
31098
|
return null;
|
|
@@ -32314,7 +32316,7 @@
|
|
|
32314
32316
|
this.m = true;
|
|
32315
32317
|
this.ap();
|
|
32316
32318
|
if (this.a != null) {
|
|
32317
|
-
this.a.
|
|
32319
|
+
this.a.av(this.u.rootWrapper, "");
|
|
32318
32320
|
}
|
|
32319
32321
|
if (this.z == -1) {
|
|
32320
32322
|
this.z = this.u.setTimeout(igniteuiAngularCore.runOn(this, this.an), 200);
|
|
@@ -32323,7 +32325,7 @@
|
|
|
32323
32325
|
MultiSliderView.prototype.au = function () {
|
|
32324
32326
|
this.m = false;
|
|
32325
32327
|
if (this.a != null && this.u != null) {
|
|
32326
|
-
this.a.
|
|
32328
|
+
this.a.bk(this.u.rootWrapper, "");
|
|
32327
32329
|
}
|
|
32328
32330
|
if (this.z != -1) {
|
|
32329
32331
|
window.clearTimeout(this.z);
|
|
@@ -32366,8 +32368,8 @@
|
|
|
32366
32368
|
this.w = igniteuiAngularCore.truncate(Math.round(d));
|
|
32367
32369
|
}
|
|
32368
32370
|
if (this.l.d && this.t != 1) {
|
|
32369
|
-
this.l.
|
|
32370
|
-
this.l.
|
|
32371
|
+
this.l.ac();
|
|
32372
|
+
this.l.ad(this.t, this.t);
|
|
32371
32373
|
}
|
|
32372
32374
|
this.l.l(this.g.e0.left, this.g.e0.top, this.g.e0.width, this.g.e0.height);
|
|
32373
32375
|
for (var e = 0; e < this.r.count; e++) {
|
|
@@ -32389,29 +32391,29 @@
|
|
|
32389
32391
|
this.a1(this.r._inner[i].allPaths);
|
|
32390
32392
|
}
|
|
32391
32393
|
if (this.l.d && this.t != 1) {
|
|
32392
|
-
this.l.
|
|
32394
|
+
this.l.ab();
|
|
32393
32395
|
}
|
|
32394
32396
|
};
|
|
32395
32397
|
MultiSliderView.prototype.a2 = function (a) {
|
|
32396
32398
|
if (a.j != null) {
|
|
32397
|
-
this.l.
|
|
32399
|
+
this.l.ac();
|
|
32398
32400
|
}
|
|
32399
32401
|
this.l.k(a.j);
|
|
32400
|
-
this.l.
|
|
32402
|
+
this.l.y(a);
|
|
32401
32403
|
if (a.j != null) {
|
|
32402
|
-
this.l.
|
|
32404
|
+
this.l.ab();
|
|
32403
32405
|
}
|
|
32404
32406
|
};
|
|
32405
32407
|
MultiSliderView.prototype.a1 = function (a) {
|
|
32406
32408
|
for (var b = 0; b < a.count; b++) {
|
|
32407
32409
|
var c = a.item(b);
|
|
32408
32410
|
if (c.j != null) {
|
|
32409
|
-
this.l.
|
|
32411
|
+
this.l.ac();
|
|
32410
32412
|
}
|
|
32411
32413
|
this.l.k(c.j);
|
|
32412
32414
|
this.l.t(c);
|
|
32413
32415
|
if (c.j != null) {
|
|
32414
|
-
this.l.
|
|
32416
|
+
this.l.ab();
|
|
32415
32417
|
}
|
|
32416
32418
|
}
|
|
32417
32419
|
};
|
|
@@ -32484,17 +32486,17 @@
|
|
|
32484
32486
|
this.v = i;
|
|
32485
32487
|
var j = this.u.get2DCanvasContext(this.v);
|
|
32486
32488
|
this.l = new igniteuiAngularCore.RenderingContext(new igniteuiAngularCore.CanvasViewRenderer(), j);
|
|
32487
|
-
this.l.
|
|
32489
|
+
this.l.ah(this.j);
|
|
32488
32490
|
this.ab();
|
|
32489
32491
|
this.a = new igniteuiAngularCore.CanvasGestureDOMEventProxy(this.u.rootWrapper, this.u, false);
|
|
32490
|
-
this.a.
|
|
32492
|
+
this.a.bo = this.g.e0;
|
|
32491
32493
|
var k = this.a;
|
|
32492
32494
|
k.onContactStarted = igniteuiAngularCore.delegateCombine(k.onContactStarted, igniteuiAngularCore.runOn(this, this.aj));
|
|
32493
32495
|
var l = this.a;
|
|
32494
32496
|
l.onContactMoved = igniteuiAngularCore.delegateCombine(l.onContactMoved, igniteuiAngularCore.runOn(this, this.ai));
|
|
32495
32497
|
var m = this.a;
|
|
32496
32498
|
m.onContactCompleted = igniteuiAngularCore.delegateCombine(m.onContactCompleted, igniteuiAngularCore.runOn(this, this.ah));
|
|
32497
|
-
this.a.
|
|
32499
|
+
this.a.aq = function (n) { return _this.g.ey.containsPoint(n); };
|
|
32498
32500
|
this.g.ds(0, 0, e, f);
|
|
32499
32501
|
this.s = igniteuiAngularCore.FontUtil.getCurrentFontHeight(this.u, this.j);
|
|
32500
32502
|
this.g.trackDirty();
|
|
@@ -32517,8 +32519,8 @@
|
|
|
32517
32519
|
b.onContactMoved = igniteuiAngularCore.delegateRemove(b.onContactMoved, igniteuiAngularCore.runOn(this, this.ai));
|
|
32518
32520
|
var c = this.a;
|
|
32519
32521
|
c.onContactCompleted = igniteuiAngularCore.delegateRemove(c.onContactCompleted, igniteuiAngularCore.runOn(this, this.ah));
|
|
32520
|
-
this.a.
|
|
32521
|
-
this.a.
|
|
32522
|
+
this.a.aq = null;
|
|
32523
|
+
this.a.ax();
|
|
32522
32524
|
}
|
|
32523
32525
|
};
|
|
32524
32526
|
MultiSliderView.prototype.ay = function () {
|
|
@@ -32537,7 +32539,7 @@
|
|
|
32537
32539
|
if (a || d) {
|
|
32538
32540
|
this.g.ds(0, 0, b, c);
|
|
32539
32541
|
if (this.a != null) {
|
|
32540
|
-
this.a.
|
|
32542
|
+
this.a.bo = this.g.e0;
|
|
32541
32543
|
}
|
|
32542
32544
|
}
|
|
32543
32545
|
};
|
|
@@ -32559,7 +32561,7 @@
|
|
|
32559
32561
|
this.i = c;
|
|
32560
32562
|
this.j = this.i;
|
|
32561
32563
|
this.s = igniteuiAngularCore.FontUtil.getCurrentFontHeight(this.u, this.j);
|
|
32562
|
-
this.l.
|
|
32564
|
+
this.l.ah(this.i);
|
|
32563
32565
|
this.g.trackDirty();
|
|
32564
32566
|
}
|
|
32565
32567
|
};
|
|
@@ -34315,15 +34317,15 @@
|
|
|
34315
34317
|
switch (b) {
|
|
34316
34318
|
case 12: return a.bg;
|
|
34317
34319
|
case 13: return a.bf;
|
|
34318
|
-
case
|
|
34319
|
-
case
|
|
34320
|
+
case 98: return a.bv;
|
|
34321
|
+
case 99: return a.bf;
|
|
34320
34322
|
case 14: return a.bl;
|
|
34321
34323
|
case 2: return a.thumbs._inner[0].s;
|
|
34322
|
-
case
|
|
34323
|
-
case
|
|
34324
|
-
case
|
|
34325
|
-
case
|
|
34326
|
-
case
|
|
34324
|
+
case 93: return a.b0;
|
|
34325
|
+
case 94: return a.ek;
|
|
34326
|
+
case 95: return a.es;
|
|
34327
|
+
case 97: return a.eu;
|
|
34328
|
+
case 96: return a.et;
|
|
34327
34329
|
case 30:
|
|
34328
34330
|
var c = a.e;
|
|
34329
34331
|
switch (c) {
|
|
@@ -34363,10 +34365,10 @@
|
|
|
34363
34365
|
case 13:
|
|
34364
34366
|
a.bf = c;
|
|
34365
34367
|
break;
|
|
34366
|
-
case
|
|
34368
|
+
case 98:
|
|
34367
34369
|
a.bv = c;
|
|
34368
34370
|
break;
|
|
34369
|
-
case
|
|
34371
|
+
case 99:
|
|
34370
34372
|
a.bu = c;
|
|
34371
34373
|
break;
|
|
34372
34374
|
case 14:
|
|
@@ -34375,19 +34377,19 @@
|
|
|
34375
34377
|
case 2:
|
|
34376
34378
|
a.thumbs._inner[0].s = c;
|
|
34377
34379
|
break;
|
|
34378
|
-
case
|
|
34380
|
+
case 93:
|
|
34379
34381
|
a.b0 = c;
|
|
34380
34382
|
break;
|
|
34381
|
-
case
|
|
34383
|
+
case 94:
|
|
34382
34384
|
a.ek = c;
|
|
34383
34385
|
break;
|
|
34384
|
-
case
|
|
34386
|
+
case 95:
|
|
34385
34387
|
a.es = c;
|
|
34386
34388
|
break;
|
|
34387
|
-
case
|
|
34389
|
+
case 97:
|
|
34388
34390
|
a.eu = c;
|
|
34389
34391
|
break;
|
|
34390
|
-
case
|
|
34392
|
+
case 96:
|
|
34391
34393
|
a.et = c;
|
|
34392
34394
|
break;
|
|
34393
34395
|
case 30:
|
|
@@ -36316,17 +36318,17 @@
|
|
|
36316
36318
|
}
|
|
36317
36319
|
return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.NativeUIDisplayDensity_$type, e);
|
|
36318
36320
|
case 18: return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.BaseControlTheme_$type, c.q);
|
|
36319
|
-
case
|
|
36321
|
+
case 88: return c.d;
|
|
36320
36322
|
case 0:
|
|
36321
36323
|
switch (c.i) {
|
|
36322
36324
|
case 0: return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.NativeUIButtonGroupDisplayType_$type, 0);
|
|
36323
36325
|
case 1: return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.NativeUIButtonGroupDisplayType_$type, 1);
|
|
36324
36326
|
}
|
|
36325
36327
|
return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.NativeUIButtonDisplayType_$type, 0);
|
|
36326
|
-
case
|
|
36328
|
+
case 33: return c.disabled;
|
|
36327
36329
|
case 24: return c.ht;
|
|
36328
36330
|
case 17: return c.a2;
|
|
36329
|
-
case
|
|
36331
|
+
case 120: return c.hp;
|
|
36330
36332
|
}
|
|
36331
36333
|
return null;
|
|
36332
36334
|
};
|
|
@@ -36357,7 +36359,7 @@
|
|
|
36357
36359
|
case 18:
|
|
36358
36360
|
d.q = igniteuiAngularCore.EnumUtil.getEnumValue(igniteuiAngularCore.BaseControlTheme_$type, c);
|
|
36359
36361
|
break;
|
|
36360
|
-
case
|
|
36362
|
+
case 88:
|
|
36361
36363
|
d.d = c;
|
|
36362
36364
|
break;
|
|
36363
36365
|
case 0:
|
|
@@ -36370,7 +36372,7 @@
|
|
|
36370
36372
|
break;
|
|
36371
36373
|
}
|
|
36372
36374
|
break;
|
|
36373
|
-
case
|
|
36375
|
+
case 33:
|
|
36374
36376
|
d.disabled = c;
|
|
36375
36377
|
break;
|
|
36376
36378
|
case 24:
|
|
@@ -36379,7 +36381,7 @@
|
|
|
36379
36381
|
case 17:
|
|
36380
36382
|
d.a2 = c.e;
|
|
36381
36383
|
break;
|
|
36382
|
-
case
|
|
36384
|
+
case 120:
|
|
36383
36385
|
d.hp = c;
|
|
36384
36386
|
break;
|
|
36385
36387
|
}
|
|
@@ -36396,7 +36398,7 @@
|
|
|
36396
36398
|
XButtonGroupBridge.prototype.addButton = function (a, b) {
|
|
36397
36399
|
this.v.add(b);
|
|
36398
36400
|
a.buttons.add(b.d.getMethodTarget(null));
|
|
36399
|
-
a.appendContentChild(b.
|
|
36401
|
+
a.appendContentChild(b.ao);
|
|
36400
36402
|
};
|
|
36401
36403
|
XButtonGroupBridge.prototype.updateButton = function (a, b, c) {
|
|
36402
36404
|
this.v._inner[b] = c;
|
|
@@ -36405,7 +36407,7 @@
|
|
|
36405
36407
|
XButtonGroupBridge.prototype.insertButton = function (a, b, c) {
|
|
36406
36408
|
this.v.insert(b, c);
|
|
36407
36409
|
a.buttons.insert(b, c.d.getMethodTarget(null));
|
|
36408
|
-
a.appendContentChild(c.
|
|
36410
|
+
a.appendContentChild(c.ao);
|
|
36409
36411
|
};
|
|
36410
36412
|
XButtonGroupBridge.prototype.removeButton = function (a, b) {
|
|
36411
36413
|
this.v.removeAt(b);
|
|
@@ -37074,18 +37076,18 @@
|
|
|
37074
37076
|
if (a == null || b == null) {
|
|
37075
37077
|
return;
|
|
37076
37078
|
}
|
|
37077
|
-
igniteuiAngularCore.NativeUI.
|
|
37078
|
-
igniteuiAngularCore.NativeUI.
|
|
37079
|
+
igniteuiAngularCore.NativeUI.p(a, new igniteuiAngularCore.CornerRadius(0, this.ao));
|
|
37080
|
+
igniteuiAngularCore.NativeUI.p(b, new igniteuiAngularCore.CornerRadius(0, this.ao));
|
|
37079
37081
|
if (!igniteuiAngularCore.isNaN_(this.an)) {
|
|
37080
|
-
igniteuiAngularCore.NativeUI.
|
|
37082
|
+
igniteuiAngularCore.NativeUI.q(b, new igniteuiAngularCore.Thickness(0, this.an));
|
|
37081
37083
|
}
|
|
37082
37084
|
if (this.checked) {
|
|
37083
|
-
igniteuiAngularCore.NativeUI.
|
|
37084
|
-
igniteuiAngularCore.NativeUI.
|
|
37085
|
+
igniteuiAngularCore.NativeUI.n(a, this.c8);
|
|
37086
|
+
igniteuiAngularCore.NativeUI.o(b, this.c9);
|
|
37085
37087
|
}
|
|
37086
37088
|
else {
|
|
37087
|
-
igniteuiAngularCore.NativeUI.
|
|
37088
|
-
igniteuiAngularCore.NativeUI.
|
|
37089
|
+
igniteuiAngularCore.NativeUI.n(a, this.db);
|
|
37090
|
+
igniteuiAngularCore.NativeUI.o(b, this.dc);
|
|
37089
37091
|
}
|
|
37090
37092
|
};
|
|
37091
37093
|
XCheckbox.prototype.cw = function () {
|
|
@@ -37093,8 +37095,8 @@
|
|
|
37093
37095
|
if (a == null) {
|
|
37094
37096
|
return;
|
|
37095
37097
|
}
|
|
37096
|
-
igniteuiAngularCore.NativeUI.
|
|
37097
|
-
igniteuiAngularCore.NativeUI.
|
|
37098
|
+
igniteuiAngularCore.NativeUI.ad(a, this.da);
|
|
37099
|
+
igniteuiAngularCore.NativeUI.ag(a, this.ap);
|
|
37098
37100
|
};
|
|
37099
37101
|
Object.defineProperty(XCheckbox.prototype, "dl", {
|
|
37100
37102
|
get: function () {
|
|
@@ -37649,7 +37651,7 @@
|
|
|
37649
37651
|
this.view.al(igniteuiAngularCore.BrushUtil.u(this.c8, 0.6), igniteuiAngularCore.BrushUtil.u(this.dc, 0.1));
|
|
37650
37652
|
}
|
|
37651
37653
|
if (!this.indeterminate) {
|
|
37652
|
-
igniteuiAngularCore.NativeUI.
|
|
37654
|
+
igniteuiAngularCore.NativeUI.ai(this.view.v, null);
|
|
37653
37655
|
}
|
|
37654
37656
|
if (this.z || this.indeterminate || a) {
|
|
37655
37657
|
var d = this.view.u;
|
|
@@ -37668,23 +37670,23 @@
|
|
|
37668
37670
|
$ret.j = -_this.view.l();
|
|
37669
37671
|
return $ret;
|
|
37670
37672
|
})()));
|
|
37671
|
-
igniteuiAngularCore.NativeUI.
|
|
37672
|
-
igniteuiAngularCore.NativeUI.
|
|
37673
|
-
igniteuiAngularCore.NativeUI.
|
|
37674
|
-
igniteuiAngularCore.NativeUI.
|
|
37675
|
-
igniteuiAngularCore.NativeUI.
|
|
37673
|
+
igniteuiAngularCore.NativeUI.n(d, this.c8);
|
|
37674
|
+
igniteuiAngularCore.NativeUI.o(e, this.c9);
|
|
37675
|
+
igniteuiAngularCore.NativeUI.ab(f, 1);
|
|
37676
|
+
igniteuiAngularCore.NativeUI.af(f, 41);
|
|
37677
|
+
igniteuiAngularCore.NativeUI.ai(f, g);
|
|
37676
37678
|
}
|
|
37677
37679
|
else if (b) {
|
|
37678
|
-
igniteuiAngularCore.NativeUI.
|
|
37679
|
-
igniteuiAngularCore.NativeUI.
|
|
37680
|
-
igniteuiAngularCore.NativeUI.
|
|
37681
|
-
igniteuiAngularCore.NativeUI.
|
|
37680
|
+
igniteuiAngularCore.NativeUI.n(d, this.c8);
|
|
37681
|
+
igniteuiAngularCore.NativeUI.o(e, this.c9);
|
|
37682
|
+
igniteuiAngularCore.NativeUI.ab(f, 1);
|
|
37683
|
+
igniteuiAngularCore.NativeUI.af(f, 0);
|
|
37682
37684
|
}
|
|
37683
37685
|
else {
|
|
37684
|
-
igniteuiAngularCore.NativeUI.
|
|
37685
|
-
igniteuiAngularCore.NativeUI.
|
|
37686
|
-
igniteuiAngularCore.NativeUI.
|
|
37687
|
-
igniteuiAngularCore.NativeUI.
|
|
37686
|
+
igniteuiAngularCore.NativeUI.n(d, this.db);
|
|
37687
|
+
igniteuiAngularCore.NativeUI.o(e, this.dc);
|
|
37688
|
+
igniteuiAngularCore.NativeUI.ab(f, 0);
|
|
37689
|
+
igniteuiAngularCore.NativeUI.af(f, 24);
|
|
37688
37690
|
}
|
|
37689
37691
|
if (this.o.playState == 1) {
|
|
37690
37692
|
this.o.cancel();
|
|
@@ -37902,10 +37904,10 @@
|
|
|
37902
37904
|
case 7: return c.checked;
|
|
37903
37905
|
case 18: return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.BaseControlTheme_$type, c.n);
|
|
37904
37906
|
case 17: return c.ar;
|
|
37905
|
-
case
|
|
37906
|
-
case
|
|
37907
|
-
case
|
|
37908
|
-
case
|
|
37907
|
+
case 67: return c.dl;
|
|
37908
|
+
case 69: return c.dm;
|
|
37909
|
+
case 68: return c.dd;
|
|
37910
|
+
case 70: return c.de;
|
|
37909
37911
|
}
|
|
37910
37912
|
return null;
|
|
37911
37913
|
};
|
|
@@ -37924,16 +37926,16 @@
|
|
|
37924
37926
|
case 17:
|
|
37925
37927
|
d.ar = c;
|
|
37926
37928
|
break;
|
|
37927
|
-
case
|
|
37929
|
+
case 67:
|
|
37928
37930
|
d.dl = c;
|
|
37929
37931
|
break;
|
|
37930
|
-
case
|
|
37932
|
+
case 69:
|
|
37931
37933
|
d.dm = c;
|
|
37932
37934
|
break;
|
|
37933
|
-
case
|
|
37935
|
+
case 68:
|
|
37934
37936
|
d.dd = c;
|
|
37935
37937
|
break;
|
|
37936
|
-
case
|
|
37938
|
+
case 70:
|
|
37937
37939
|
d.de = c;
|
|
37938
37940
|
break;
|
|
37939
37941
|
}
|
|
@@ -37969,15 +37971,15 @@
|
|
|
37969
37971
|
case 16: return this.v;
|
|
37970
37972
|
case 15: return this.u;
|
|
37971
37973
|
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
|
|
37974
|
+
case 45: return c.a6;
|
|
37975
|
+
case 46: return c.a7;
|
|
37976
|
+
case 47: return c.a8;
|
|
37977
|
+
case 48: return c.a5;
|
|
37978
|
+
case 49: return c.a9;
|
|
37979
|
+
case 50: return c.a1;
|
|
37980
|
+
case 64: return c.e;
|
|
37981
|
+
case 65: return c.f;
|
|
37982
|
+
case 66: return c.a4;
|
|
37981
37983
|
}
|
|
37982
37984
|
return _super.prototype.getValue.call(this, a, b);
|
|
37983
37985
|
};
|
|
@@ -37997,31 +37999,31 @@
|
|
|
37997
37999
|
this.w(d);
|
|
37998
38000
|
}
|
|
37999
38001
|
break;
|
|
38000
|
-
case
|
|
38002
|
+
case 45:
|
|
38001
38003
|
d.a6 = c;
|
|
38002
38004
|
break;
|
|
38003
|
-
case
|
|
38005
|
+
case 46:
|
|
38004
38006
|
d.a7 = c;
|
|
38005
38007
|
break;
|
|
38006
|
-
case
|
|
38008
|
+
case 47:
|
|
38007
38009
|
d.a8 = c;
|
|
38008
38010
|
break;
|
|
38009
|
-
case
|
|
38011
|
+
case 48:
|
|
38010
38012
|
d.a5 = c;
|
|
38011
38013
|
break;
|
|
38012
|
-
case
|
|
38014
|
+
case 49:
|
|
38013
38015
|
d.a9 = c;
|
|
38014
38016
|
break;
|
|
38015
|
-
case
|
|
38017
|
+
case 50:
|
|
38016
38018
|
d.a1 = c;
|
|
38017
38019
|
break;
|
|
38018
|
-
case
|
|
38020
|
+
case 64:
|
|
38019
38021
|
d.e = c;
|
|
38020
38022
|
break;
|
|
38021
|
-
case
|
|
38023
|
+
case 65:
|
|
38022
38024
|
d.f = c;
|
|
38023
38025
|
break;
|
|
38024
|
-
case
|
|
38026
|
+
case 66:
|
|
38025
38027
|
d.a4 = c;
|
|
38026
38028
|
break;
|
|
38027
38029
|
}
|
|
@@ -38036,8 +38038,8 @@
|
|
|
38036
38038
|
a.svg = null;
|
|
38037
38039
|
a.svgPath = null;
|
|
38038
38040
|
a.b = null;
|
|
38039
|
-
a.
|
|
38040
|
-
a.
|
|
38041
|
+
a.b2 = null;
|
|
38042
|
+
a.bj = null;
|
|
38041
38043
|
var b = igniteuiAngularCore.SvgIconRegistry.instance.getSvgPathString(this.u, this.v);
|
|
38042
38044
|
if (b != null) {
|
|
38043
38045
|
if (igniteuiAngularCore.stringStartsWith(igniteuiAngularCore.trimStart(b, ' ', '\n', '\r', '\t'), "<svg")) {
|
|
@@ -38055,16 +38057,16 @@
|
|
|
38055
38057
|
}
|
|
38056
38058
|
var d = igniteuiAngularCore.SvgIconRegistry.instance.getDataURLString(this.u, this.v);
|
|
38057
38059
|
if (d != null) {
|
|
38058
|
-
a.
|
|
38060
|
+
a.b2 = d;
|
|
38059
38061
|
return;
|
|
38060
38062
|
}
|
|
38061
38063
|
var e = igniteuiAngularCore.SvgIconRegistry.instance.getIconSource(this.u, this.v);
|
|
38062
38064
|
if (e != null) {
|
|
38063
|
-
a.
|
|
38065
|
+
a.bj = e;
|
|
38064
38066
|
}
|
|
38065
38067
|
};
|
|
38066
38068
|
XIconBridge.prototype.exportVisualData = function (a) {
|
|
38067
|
-
var b = a.
|
|
38069
|
+
var b = a.bi();
|
|
38068
38070
|
return b;
|
|
38069
38071
|
};
|
|
38070
38072
|
XIconBridge.$t = igniteuiAngularCore.markType(XIconBridge, 'XIconBridge', XComponentBridge.$);
|
|
@@ -38230,28 +38232,28 @@
|
|
|
38230
38232
|
var c = a;
|
|
38231
38233
|
switch (b) {
|
|
38232
38234
|
case 22: return c.ax;
|
|
38233
|
-
case
|
|
38234
|
-
case
|
|
38235
|
+
case 61: return c.av;
|
|
38236
|
+
case 62: return c.aq;
|
|
38235
38237
|
case 25: return c.am;
|
|
38236
38238
|
case 26: return c.a9;
|
|
38237
38239
|
case 17: return c.a1;
|
|
38238
38240
|
case 23: return c.c0;
|
|
38239
|
-
case
|
|
38241
|
+
case 36: switch (c.p) {
|
|
38240
38242
|
case 1: return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.NativeUIPopupAnimationType_$type, 1);
|
|
38241
38243
|
default: return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.NativeUIPopupAnimationType_$type, 0);
|
|
38242
38244
|
}
|
|
38243
|
-
case
|
|
38244
|
-
case
|
|
38245
|
-
case
|
|
38246
|
-
case
|
|
38247
|
-
case
|
|
38245
|
+
case 37: return c.at;
|
|
38246
|
+
case 38: return c.as;
|
|
38247
|
+
case 41: return c.bb;
|
|
38248
|
+
case 42: return c.au;
|
|
38249
|
+
case 44: switch (c.v) {
|
|
38248
38250
|
case 1: return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.NativeUIPopupPointerPosition_$type, 1);
|
|
38249
38251
|
default: return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.NativeUIPopupPointerPosition_$type, 2);
|
|
38250
38252
|
}
|
|
38251
|
-
case
|
|
38252
|
-
case
|
|
38253
|
-
case
|
|
38254
|
-
case
|
|
38253
|
+
case 43: return c.c4;
|
|
38254
|
+
case 40: return c.ao;
|
|
38255
|
+
case 63: return c.a4;
|
|
38256
|
+
case 111: return c.ay;
|
|
38255
38257
|
}
|
|
38256
38258
|
return _super.prototype.getValue.call(this, a, b);
|
|
38257
38259
|
};
|
|
@@ -38270,7 +38272,7 @@
|
|
|
38270
38272
|
case 23:
|
|
38271
38273
|
d.c0 = c;
|
|
38272
38274
|
break;
|
|
38273
|
-
case
|
|
38275
|
+
case 36:
|
|
38274
38276
|
switch (igniteuiAngularCore.EnumUtil.getEnumValue(igniteuiAngularCore.NativeUIPopupAnimationType_$type, c)) {
|
|
38275
38277
|
case 1:
|
|
38276
38278
|
d.p = 1;
|
|
@@ -38280,22 +38282,22 @@
|
|
|
38280
38282
|
break;
|
|
38281
38283
|
}
|
|
38282
38284
|
break;
|
|
38283
|
-
case
|
|
38285
|
+
case 37:
|
|
38284
38286
|
d.at = c;
|
|
38285
38287
|
break;
|
|
38286
|
-
case
|
|
38288
|
+
case 38:
|
|
38287
38289
|
d.as = c;
|
|
38288
38290
|
break;
|
|
38289
|
-
case
|
|
38291
|
+
case 41:
|
|
38290
38292
|
d.bb = igniteuiAngularCore.typeGetValue(c);
|
|
38291
38293
|
break;
|
|
38292
|
-
case
|
|
38294
|
+
case 42:
|
|
38293
38295
|
d.au = c;
|
|
38294
38296
|
break;
|
|
38295
|
-
case
|
|
38297
|
+
case 43:
|
|
38296
38298
|
d.c4 = c;
|
|
38297
38299
|
break;
|
|
38298
|
-
case
|
|
38300
|
+
case 44:
|
|
38299
38301
|
switch (igniteuiAngularCore.EnumUtil.getEnumValue(igniteuiAngularCore.NativeUIPopupPointerPosition_$type, c)) {
|
|
38300
38302
|
case 1:
|
|
38301
38303
|
d.v = 1;
|
|
@@ -38305,13 +38307,13 @@
|
|
|
38305
38307
|
break;
|
|
38306
38308
|
}
|
|
38307
38309
|
break;
|
|
38308
|
-
case
|
|
38310
|
+
case 40:
|
|
38309
38311
|
d.ao = c;
|
|
38310
38312
|
break;
|
|
38311
|
-
case
|
|
38313
|
+
case 63:
|
|
38312
38314
|
d.a4 = c;
|
|
38313
38315
|
break;
|
|
38314
|
-
case
|
|
38316
|
+
case 111:
|
|
38315
38317
|
d.ay = c;
|
|
38316
38318
|
break;
|
|
38317
38319
|
}
|
|
@@ -38321,7 +38323,7 @@
|
|
|
38321
38323
|
a.showRelativeToExclusionRect(b, this.v(c), this.u(d));
|
|
38322
38324
|
};
|
|
38323
38325
|
XPopupBridge.prototype.showRelativeToTarget = function (a, b, c, d) {
|
|
38324
|
-
var e = b.
|
|
38326
|
+
var e = b.ao.getNativeElement();
|
|
38325
38327
|
a.cr(e, this.v(c), this.u(d));
|
|
38326
38328
|
};
|
|
38327
38329
|
XPopupBridge.prototype.close = function (a) {
|
|
@@ -38353,17 +38355,17 @@
|
|
|
38353
38355
|
}
|
|
38354
38356
|
};
|
|
38355
38357
|
XPopupBridge.prototype.exportVisualData = function (a) {
|
|
38356
|
-
return a.
|
|
38358
|
+
return a.bi();
|
|
38357
38359
|
};
|
|
38358
38360
|
XPopupBridge.prototype.addChild = function (a, b) {
|
|
38359
38361
|
this.ae.add(b);
|
|
38360
38362
|
var c = a;
|
|
38361
|
-
c.appendPopupContent(b.
|
|
38363
|
+
c.appendPopupContent(b.ao);
|
|
38362
38364
|
};
|
|
38363
38365
|
XPopupBridge.prototype.insertChild = function (a, b, c) {
|
|
38364
38366
|
this.ae.add(c);
|
|
38365
38367
|
var d = a;
|
|
38366
|
-
d.appendPopupContent(c.
|
|
38368
|
+
d.appendPopupContent(c.ao);
|
|
38367
38369
|
};
|
|
38368
38370
|
XPopupBridge.prototype.getChildAt = function (a, b) {
|
|
38369
38371
|
return this.ae._inner[b];
|
|
@@ -38373,12 +38375,12 @@
|
|
|
38373
38375
|
};
|
|
38374
38376
|
XPopupBridge.prototype.removeChild = function (a, b) {
|
|
38375
38377
|
var c = a;
|
|
38376
|
-
c.removePopupContent(b.
|
|
38378
|
+
c.removePopupContent(b.ao);
|
|
38377
38379
|
this.ae.remove(b);
|
|
38378
38380
|
};
|
|
38379
38381
|
XPopupBridge.prototype.removeChildAt = function (a, b) {
|
|
38380
38382
|
var c = a;
|
|
38381
|
-
c.removePopupContent(this.ae._inner[b].
|
|
38383
|
+
c.removePopupContent(this.ae._inner[b].ao);
|
|
38382
38384
|
this.ae.removeAt(b);
|
|
38383
38385
|
};
|
|
38384
38386
|
XPopupBridge.$t = igniteuiAngularCore.markType(XPopupBridge, 'XPopupBridge', XComponentBridge.$, [igniteuiAngularCore.INativeUIPopupBridge_$type]);
|
|
@@ -38546,7 +38548,7 @@
|
|
|
38546
38548
|
configurable: true
|
|
38547
38549
|
});
|
|
38548
38550
|
NativeUIXInputsFactory.m = function () {
|
|
38549
|
-
igniteuiAngularCore.NativeUIComponent.
|
|
38551
|
+
igniteuiAngularCore.NativeUIComponent.at(NativeUIXInputsFactory.b);
|
|
38550
38552
|
};
|
|
38551
38553
|
Object.defineProperty(NativeUIXInputsFactory.prototype, "flavor", {
|
|
38552
38554
|
get: function () {
|
|
@@ -38620,7 +38622,7 @@
|
|
|
38620
38622
|
f.inputs.add(j);
|
|
38621
38623
|
var l = new XInputBridge(f);
|
|
38622
38624
|
var m = new igniteuiAngularCore.NativeUIInput();
|
|
38623
|
-
m.
|
|
38625
|
+
m.ao = d;
|
|
38624
38626
|
m.d = l;
|
|
38625
38627
|
b(m);
|
|
38626
38628
|
};
|
|
@@ -38634,7 +38636,7 @@
|
|
|
38634
38636
|
var g = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
|
|
38635
38637
|
var h = new XButtonBridge(f);
|
|
38636
38638
|
var i = new igniteuiAngularCore.NativeUIButton();
|
|
38637
|
-
i.
|
|
38639
|
+
i.ao = d;
|
|
38638
38640
|
i.d = h;
|
|
38639
38641
|
b(i);
|
|
38640
38642
|
};
|
|
@@ -38649,7 +38651,7 @@
|
|
|
38649
38651
|
var h = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
|
|
38650
38652
|
var i = new MultiSliderBridge(f);
|
|
38651
38653
|
var j = new igniteuiAngularCore.NativeUISlider();
|
|
38652
|
-
j.
|
|
38654
|
+
j.ao = d;
|
|
38653
38655
|
j.d = i;
|
|
38654
38656
|
b(j);
|
|
38655
38657
|
};
|
|
@@ -38662,7 +38664,7 @@
|
|
|
38662
38664
|
var g = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
|
|
38663
38665
|
var h = new XButtonGroupBridge(f);
|
|
38664
38666
|
var i = new igniteuiAngularCore.NativeUIButtonGroup();
|
|
38665
|
-
i.
|
|
38667
|
+
i.ao = d;
|
|
38666
38668
|
i.d = h;
|
|
38667
38669
|
b(i);
|
|
38668
38670
|
};
|
|
@@ -38675,7 +38677,7 @@
|
|
|
38675
38677
|
var g = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
|
|
38676
38678
|
var h = new ColorEditorBridge(f);
|
|
38677
38679
|
var i = new igniteuiAngularCore.NativeUIColorEditor();
|
|
38678
|
-
i.
|
|
38680
|
+
i.ao = d;
|
|
38679
38681
|
i.d = h;
|
|
38680
38682
|
b(i);
|
|
38681
38683
|
};
|
|
@@ -38688,7 +38690,7 @@
|
|
|
38688
38690
|
var g = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
|
|
38689
38691
|
var h = new XCheckboxBridge(f);
|
|
38690
38692
|
var i = new igniteuiAngularCore.NativeUICheckbox();
|
|
38691
|
-
i.
|
|
38693
|
+
i.ao = d;
|
|
38692
38694
|
i.d = h;
|
|
38693
38695
|
b(i);
|
|
38694
38696
|
};
|
|
@@ -38701,7 +38703,7 @@
|
|
|
38701
38703
|
var g = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
|
|
38702
38704
|
var h = new XIconBridge(f);
|
|
38703
38705
|
var i = new igniteuiAngularCore.NativeUIIcon();
|
|
38704
|
-
i.
|
|
38706
|
+
i.ao = d;
|
|
38705
38707
|
i.d = h;
|
|
38706
38708
|
var j = c.createElement("div");
|
|
38707
38709
|
var k = c.getSubRenderer(j);
|
|
@@ -38712,9 +38714,9 @@
|
|
|
38712
38714
|
var m = k.getExternal(l, k.rootWrapper, k.getExternal(l, null, null));
|
|
38713
38715
|
var n = new XButtonBridge(l);
|
|
38714
38716
|
var o = new igniteuiAngularCore.NativeUIButton();
|
|
38715
|
-
o.
|
|
38717
|
+
o.ao = j;
|
|
38716
38718
|
o.d = n;
|
|
38717
|
-
o.
|
|
38719
|
+
o.bp = i;
|
|
38718
38720
|
b(o);
|
|
38719
38721
|
};
|
|
38720
38722
|
NativeUIXInputsFactory.prototype.h = function (a, b) {
|
|
@@ -38726,7 +38728,7 @@
|
|
|
38726
38728
|
var g = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
|
|
38727
38729
|
var h = new XIconBridge(f);
|
|
38728
38730
|
var i = new igniteuiAngularCore.NativeUIIcon();
|
|
38729
|
-
i.
|
|
38731
|
+
i.ao = d;
|
|
38730
38732
|
i.d = h;
|
|
38731
38733
|
b(i);
|
|
38732
38734
|
};
|
|
@@ -38738,7 +38740,7 @@
|
|
|
38738
38740
|
f.provideRenderer(e);
|
|
38739
38741
|
var g = new XPopupBridge(f);
|
|
38740
38742
|
var h = new igniteuiAngularCore.NativeUIPopup();
|
|
38741
|
-
h.
|
|
38743
|
+
h.ao = d;
|
|
38742
38744
|
h.d = g;
|
|
38743
38745
|
b(h);
|
|
38744
38746
|
};
|
|
@@ -38948,7 +38950,7 @@
|
|
|
38948
38950
|
ColorEditorPanelView.prototype.bf = function (a) {
|
|
38949
38951
|
};
|
|
38950
38952
|
ColorEditorPanelView.prototype.a8 = function (a) {
|
|
38951
|
-
this.aa.append(this.aa.getWrapper(a.
|
|
38953
|
+
this.aa.append(this.aa.getWrapper(a.ao));
|
|
38952
38954
|
};
|
|
38953
38955
|
ColorEditorPanelView.prototype.be = function (a, b, c, d, e, f, g) {
|
|
38954
38956
|
var h = igniteuiAngularCore.truncate(Math.round(f * this.a.ab));
|
|
@@ -38971,8 +38973,8 @@
|
|
|
38971
38973
|
};
|
|
38972
38974
|
};
|
|
38973
38975
|
ColorEditorPanelView.prototype.ba = function (a) {
|
|
38974
|
-
if (this.ae == null || a.
|
|
38975
|
-
a.
|
|
38976
|
+
if (this.ae == null || a.ap == null) {
|
|
38977
|
+
a.ap = "image";
|
|
38976
38978
|
var b = this.aa.createElement("canvas");
|
|
38977
38979
|
this.ae = b;
|
|
38978
38980
|
var c = this.be(this.ae, this.m, this.l, this.au, this.at, 148, 148);
|
|
@@ -38982,7 +38984,7 @@
|
|
|
38982
38984
|
this.at = c.p4;
|
|
38983
38985
|
this.ae.setStyleProperty("justify-self", "center");
|
|
38984
38986
|
this.ae.setStyleProperty("align-self", "center");
|
|
38985
|
-
var d = a.
|
|
38987
|
+
var d = a.ao;
|
|
38986
38988
|
d.append(this.ae);
|
|
38987
38989
|
this.bm(this.a.ad());
|
|
38988
38990
|
}
|
|
@@ -39016,8 +39018,8 @@
|
|
|
39016
39018
|
}
|
|
39017
39019
|
};
|
|
39018
39020
|
ColorEditorPanelView.prototype.a9 = function (a) {
|
|
39019
|
-
if (this.ad == null || a.
|
|
39020
|
-
a.
|
|
39021
|
+
if (this.ad == null || a.ap == null) {
|
|
39022
|
+
a.ap = "image";
|
|
39021
39023
|
var b = this.aa.createElement("canvas");
|
|
39022
39024
|
this.ad = b;
|
|
39023
39025
|
var c = this.be(this.ad, this.j, this.h, this.as, this.ar, 248, 19);
|
|
@@ -39027,7 +39029,7 @@
|
|
|
39027
39029
|
this.ar = c.p4;
|
|
39028
39030
|
this.ad.setStyleProperty("justify-self", "center");
|
|
39029
39031
|
this.ad.setStyleProperty("align-self", "center");
|
|
39030
|
-
var d = a.
|
|
39032
|
+
var d = a.ao;
|
|
39031
39033
|
d.append(this.ad);
|
|
39032
39034
|
this.bl(0);
|
|
39033
39035
|
}
|
|
@@ -39061,9 +39063,9 @@
|
|
|
39061
39063
|
}
|
|
39062
39064
|
};
|
|
39063
39065
|
ColorEditorPanelView.prototype.bb = function (a) {
|
|
39064
|
-
var b = a.
|
|
39066
|
+
var b = a.ao;
|
|
39065
39067
|
if (b.getChildCount() == 1) {
|
|
39066
|
-
a.
|
|
39068
|
+
a.ap = "image";
|
|
39067
39069
|
var c = this.aa.createElement("canvas");
|
|
39068
39070
|
this.ah = c;
|
|
39069
39071
|
var d = this.be(this.ah, this.t, this.p, this.aw, this.av, 85, 148);
|
|
@@ -39085,8 +39087,8 @@
|
|
|
39085
39087
|
}
|
|
39086
39088
|
};
|
|
39087
39089
|
ColorEditorPanelView.prototype.bc = function (a) {
|
|
39088
|
-
if (this.ai == null || a.
|
|
39089
|
-
a.
|
|
39090
|
+
if (this.ai == null || a.ap == null) {
|
|
39091
|
+
a.ap = "image";
|
|
39090
39092
|
var b = this.aa.createElement("canvas");
|
|
39091
39093
|
this.ai = b;
|
|
39092
39094
|
var c = this.be(this.ai, this.z, this.v, this.aw, this.av, 25, 148);
|
|
@@ -39096,7 +39098,7 @@
|
|
|
39096
39098
|
this.av = c.p4;
|
|
39097
39099
|
this.ai.setStyleProperty("justify-self", "center");
|
|
39098
39100
|
this.ai.setStyleProperty("align-self", "center");
|
|
39099
|
-
var d = a.
|
|
39101
|
+
var d = a.ao;
|
|
39100
39102
|
d.append(this.ai);
|
|
39101
39103
|
this.bo(0, 1, 0.5);
|
|
39102
39104
|
}
|
|
@@ -39178,19 +39180,20 @@
|
|
|
39178
39180
|
function ColorEditorView() {
|
|
39179
39181
|
var _this = _super.call(this) || this;
|
|
39180
39182
|
_this.a = null;
|
|
39181
|
-
_this.
|
|
39183
|
+
_this.i = null;
|
|
39182
39184
|
_this.d = null;
|
|
39183
39185
|
_this.g = new igniteuiAngularCore.List$1(igniteuiAngularCore.Delegate_$type, 0);
|
|
39184
39186
|
_this.e = true;
|
|
39187
|
+
_this._createColorEditorPanel = null;
|
|
39185
39188
|
_this.b = null;
|
|
39186
39189
|
return _this;
|
|
39187
39190
|
}
|
|
39188
|
-
ColorEditorView.prototype.
|
|
39191
|
+
ColorEditorView.prototype.r = function () {
|
|
39189
39192
|
};
|
|
39190
39193
|
ColorEditorView.prototype.f = function () {
|
|
39191
39194
|
return true;
|
|
39192
39195
|
};
|
|
39193
|
-
ColorEditorView.prototype.
|
|
39196
|
+
ColorEditorView.prototype.p = function (a) {
|
|
39194
39197
|
var e_2, _a;
|
|
39195
39198
|
if (a == null) {
|
|
39196
39199
|
try {
|
|
@@ -39218,45 +39221,61 @@
|
|
|
39218
39221
|
if (this.a.a == null) {
|
|
39219
39222
|
this.a.a = new igniteuiAngularCore.DOMExecutionContext(a);
|
|
39220
39223
|
}
|
|
39221
|
-
this.
|
|
39224
|
+
this.i = a;
|
|
39222
39225
|
this.a.bj();
|
|
39223
39226
|
};
|
|
39224
|
-
ColorEditorView.prototype.
|
|
39227
|
+
ColorEditorView.prototype.n = function () {
|
|
39225
39228
|
if (igniteuiAngularCore.KeyFrameAnimationFactory.h == null) {
|
|
39226
|
-
igniteuiAngularCore.KeyFrameAnimationFactory.h = this.
|
|
39229
|
+
igniteuiAngularCore.KeyFrameAnimationFactory.h = this.i;
|
|
39227
39230
|
}
|
|
39228
39231
|
};
|
|
39229
|
-
ColorEditorView.prototype.
|
|
39232
|
+
ColorEditorView.prototype.o = function () {
|
|
39230
39233
|
this.e = true;
|
|
39231
39234
|
};
|
|
39232
|
-
ColorEditorView.prototype.
|
|
39235
|
+
ColorEditorView.prototype.q = function () {
|
|
39233
39236
|
this.e = false;
|
|
39234
39237
|
};
|
|
39235
|
-
ColorEditorView.prototype.
|
|
39236
|
-
return this.
|
|
39238
|
+
ColorEditorView.prototype.k = function () {
|
|
39239
|
+
return this.i;
|
|
39237
39240
|
};
|
|
39238
|
-
ColorEditorView.prototype
|
|
39239
|
-
|
|
39240
|
-
|
|
39241
|
-
|
|
39242
|
-
|
|
39243
|
-
|
|
39244
|
-
|
|
39245
|
-
|
|
39241
|
+
Object.defineProperty(ColorEditorView.prototype, "createColorEditorPanel", {
|
|
39242
|
+
get: function () {
|
|
39243
|
+
return this._createColorEditorPanel;
|
|
39244
|
+
},
|
|
39245
|
+
set: function (a) {
|
|
39246
|
+
this._createColorEditorPanel = a;
|
|
39247
|
+
},
|
|
39248
|
+
enumerable: false,
|
|
39249
|
+
configurable: true
|
|
39250
|
+
});
|
|
39251
|
+
ColorEditorView.prototype.j = function () {
|
|
39252
|
+
if (this.createColorEditorPanel != null) {
|
|
39253
|
+
var a = this.createColorEditorPanel();
|
|
39254
|
+
var b = this.i.getWrapper(a);
|
|
39255
|
+
this.b = (a.i);
|
|
39256
|
+
return a;
|
|
39257
|
+
}
|
|
39258
|
+
var c = new ColorEditorPanel();
|
|
39259
|
+
this.b = c;
|
|
39260
|
+
var d = this.i.createElement("div");
|
|
39261
|
+
var e = this.i.getSubRenderer(d);
|
|
39262
|
+
c.provideContainer(e);
|
|
39263
|
+
var f = this.i.getExternal(c, null, null);
|
|
39264
|
+
return d;
|
|
39246
39265
|
};
|
|
39247
|
-
ColorEditorView.prototype.
|
|
39248
|
-
var c = a.
|
|
39249
|
-
c.append(this.
|
|
39266
|
+
ColorEditorView.prototype.l = function (a, b) {
|
|
39267
|
+
var c = a.ao;
|
|
39268
|
+
c.append(this.i.getWrapper(b));
|
|
39250
39269
|
};
|
|
39251
|
-
ColorEditorView.prototype.
|
|
39252
|
-
this.
|
|
39270
|
+
ColorEditorView.prototype.m = function (a) {
|
|
39271
|
+
this.i.append(this.i.getWrapper(a.ao));
|
|
39253
39272
|
};
|
|
39254
39273
|
ColorEditorView.prototype.c = function (a) {
|
|
39255
39274
|
return this.b;
|
|
39256
39275
|
};
|
|
39257
|
-
ColorEditorView.prototype.
|
|
39258
|
-
if (this.
|
|
39259
|
-
var b = this.
|
|
39276
|
+
ColorEditorView.prototype.s = function (a) {
|
|
39277
|
+
if (this.i != null) {
|
|
39278
|
+
var b = this.i.rootWrapper.getNativeElement();
|
|
39260
39279
|
var c = (b.getBoundingClientRect());
|
|
39261
39280
|
if (a) {
|
|
39262
39281
|
c = new igniteuiAngularCore.Rect(0, c.left + window.pageXOffset, c.top + window.pageYOffset, c.width, c.height);
|
|
@@ -39265,7 +39284,7 @@
|
|
|
39265
39284
|
}
|
|
39266
39285
|
return null;
|
|
39267
39286
|
};
|
|
39268
|
-
ColorEditorView.prototype.
|
|
39287
|
+
ColorEditorView.prototype.t = function () {
|
|
39269
39288
|
return new igniteuiAngularCore.Size(1, NaN, NaN);
|
|
39270
39289
|
};
|
|
39271
39290
|
ColorEditorView.$t = igniteuiAngularCore.markType(ColorEditorView, 'ColorEditorView');
|
|
@@ -39278,7 +39297,7 @@
|
|
|
39278
39297
|
tslib.__extends(ColorEditor, _super);
|
|
39279
39298
|
function ColorEditor() {
|
|
39280
39299
|
var _this = _super.call(this) || this;
|
|
39281
|
-
_this.
|
|
39300
|
+
_this._view = null;
|
|
39282
39301
|
_this.s = null;
|
|
39283
39302
|
_this.r = null;
|
|
39284
39303
|
_this.e = null;
|
|
@@ -39316,15 +39335,25 @@
|
|
|
39316
39335
|
NativeUIXInputsFactory.m();
|
|
39317
39336
|
var a = new ColorEditorView();
|
|
39318
39337
|
a.a = _this;
|
|
39319
|
-
_this.
|
|
39320
|
-
_this.
|
|
39338
|
+
_this.view = a;
|
|
39339
|
+
_this.view.r();
|
|
39321
39340
|
return _this;
|
|
39322
39341
|
}
|
|
39342
|
+
Object.defineProperty(ColorEditor.prototype, "view", {
|
|
39343
|
+
get: function () {
|
|
39344
|
+
return this._view;
|
|
39345
|
+
},
|
|
39346
|
+
set: function (a) {
|
|
39347
|
+
this._view = a;
|
|
39348
|
+
},
|
|
39349
|
+
enumerable: false,
|
|
39350
|
+
configurable: true
|
|
39351
|
+
});
|
|
39323
39352
|
ColorEditor.prototype.onAttachedToUI = function () {
|
|
39324
|
-
this.
|
|
39353
|
+
this.view.o();
|
|
39325
39354
|
};
|
|
39326
39355
|
ColorEditor.prototype.onDetachedFromUI = function () {
|
|
39327
|
-
this.
|
|
39356
|
+
this.view.q();
|
|
39328
39357
|
};
|
|
39329
39358
|
ColorEditor.prototype.b4 = function (a, b) {
|
|
39330
39359
|
if (this.valueChanging != null) {
|
|
@@ -39344,12 +39373,12 @@
|
|
|
39344
39373
|
this.provideContainer(null);
|
|
39345
39374
|
};
|
|
39346
39375
|
ColorEditor.prototype.provideContainer = function (a) {
|
|
39347
|
-
this.
|
|
39376
|
+
this.view.p(a);
|
|
39348
39377
|
};
|
|
39349
39378
|
Object.defineProperty(ColorEditor.prototype, "u", {
|
|
39350
39379
|
get: function () {
|
|
39351
39380
|
if (this.t == null) {
|
|
39352
|
-
this.t = new igniteuiAngularCore.SRProvider(this.
|
|
39381
|
+
this.t = new igniteuiAngularCore.SRProvider(this.view.i);
|
|
39353
39382
|
this.t.cb("ColorEditor");
|
|
39354
39383
|
}
|
|
39355
39384
|
return this.t;
|
|
@@ -39619,7 +39648,7 @@
|
|
|
39619
39648
|
break;
|
|
39620
39649
|
case "Label":
|
|
39621
39650
|
if (this.r != null) {
|
|
39622
|
-
this.r.
|
|
39651
|
+
this.r.b6 = this.a2;
|
|
39623
39652
|
}
|
|
39624
39653
|
break;
|
|
39625
39654
|
case "TextStyle":
|
|
@@ -39627,7 +39656,7 @@
|
|
|
39627
39656
|
break;
|
|
39628
39657
|
case "ShowClearButton":
|
|
39629
39658
|
if (this.r != null) {
|
|
39630
|
-
if (this.r.
|
|
39659
|
+
if (this.r.b8 != "") {
|
|
39631
39660
|
}
|
|
39632
39661
|
}
|
|
39633
39662
|
break;
|
|
@@ -39639,14 +39668,14 @@
|
|
|
39639
39668
|
break;
|
|
39640
39669
|
case "AllowTextInput":
|
|
39641
39670
|
if (this.r != null) {
|
|
39642
|
-
this.r.
|
|
39671
|
+
this.r.b1 = this.am();
|
|
39643
39672
|
}
|
|
39644
39673
|
break;
|
|
39645
39674
|
case "OpenOnFocus": break;
|
|
39646
39675
|
case "IsDisabled":
|
|
39647
39676
|
{
|
|
39648
39677
|
if (this.r != null) {
|
|
39649
|
-
this.r.
|
|
39678
|
+
this.r.b1 = this.am();
|
|
39650
39679
|
}
|
|
39651
39680
|
}
|
|
39652
39681
|
break;
|
|
@@ -39657,7 +39686,7 @@
|
|
|
39657
39686
|
};
|
|
39658
39687
|
ColorEditor.prototype.cj = function () {
|
|
39659
39688
|
if (this.r != null) {
|
|
39660
|
-
this.r.
|
|
39689
|
+
this.r.cf = this.cr;
|
|
39661
39690
|
}
|
|
39662
39691
|
};
|
|
39663
39692
|
ColorEditor.prototype.ch = function () {
|
|
@@ -39666,7 +39695,7 @@
|
|
|
39666
39695
|
};
|
|
39667
39696
|
ColorEditor.prototype.ci = function () {
|
|
39668
39697
|
if (this.n != null) {
|
|
39669
|
-
this.r.
|
|
39698
|
+
this.r.bl = this.n;
|
|
39670
39699
|
}
|
|
39671
39700
|
};
|
|
39672
39701
|
ColorEditor.prototype.bh = function () {
|
|
@@ -39674,7 +39703,7 @@
|
|
|
39674
39703
|
return;
|
|
39675
39704
|
}
|
|
39676
39705
|
if (this.r != null) {
|
|
39677
|
-
this.r.
|
|
39706
|
+
this.r.b8 = "";
|
|
39678
39707
|
}
|
|
39679
39708
|
this.value = igniteuiAngularCore.BrushUtil.l(0, 0, 0, 0);
|
|
39680
39709
|
this.e.ax();
|
|
@@ -39687,8 +39716,8 @@
|
|
|
39687
39716
|
this.aa = false;
|
|
39688
39717
|
};
|
|
39689
39718
|
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.
|
|
39719
|
+
igniteuiAngularCore.NativeUIWindow.h(15, igniteuiAngularCore.runOn(this, this.b7), this.view.i);
|
|
39720
|
+
igniteuiAngularCore.NativeUIWindow.h(9, igniteuiAngularCore.runOn(this, this.b6), this.view.i);
|
|
39692
39721
|
};
|
|
39693
39722
|
ColorEditor.prototype.bv = function () {
|
|
39694
39723
|
igniteuiAngularCore.NativeUIWindow.i(15, igniteuiAngularCore.runOn(this, this.b7));
|
|
@@ -39697,46 +39726,46 @@
|
|
|
39697
39726
|
ColorEditor.prototype.b6 = function (a) {
|
|
39698
39727
|
var b = a;
|
|
39699
39728
|
if (this.r != null) {
|
|
39700
|
-
if (this.s.
|
|
39729
|
+
if (this.s.b7 && !this.s.t(b.b) && !this.r.t(b.b)) {
|
|
39701
39730
|
this.bi();
|
|
39702
39731
|
}
|
|
39703
39732
|
}
|
|
39704
39733
|
};
|
|
39705
39734
|
ColorEditor.prototype.b7 = function (a) {
|
|
39706
39735
|
if (this.r != null) {
|
|
39707
|
-
var b = this.r.
|
|
39708
|
-
this.s.
|
|
39736
|
+
var b = this.r.bf();
|
|
39737
|
+
this.s.cf(b);
|
|
39709
39738
|
}
|
|
39710
39739
|
};
|
|
39711
39740
|
ColorEditor.prototype.bj = function () {
|
|
39712
39741
|
var _this = this;
|
|
39713
|
-
igniteuiAngularCore.NativeUIComponent.
|
|
39742
|
+
igniteuiAngularCore.NativeUIComponent.aw(this.view.k(), [12, 2, 7, 0], [2, 2, 2, 2], function (a) {
|
|
39714
39743
|
var b = a[0];
|
|
39715
39744
|
var c = a[1];
|
|
39716
39745
|
var d = a[2];
|
|
39717
39746
|
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.
|
|
39747
|
+
var f = _this.view.j();
|
|
39748
|
+
_this.view.l(e, f);
|
|
39749
|
+
b.bo(d);
|
|
39750
|
+
d.bo(e);
|
|
39751
|
+
_this.view.m(c);
|
|
39752
|
+
b.ci = igniteuiAngularCore.BrushUtil.l(255, 255, 255, 255);
|
|
39753
|
+
b.cb = 150;
|
|
39754
|
+
b.b9 = 8;
|
|
39755
|
+
b.cc = 4;
|
|
39756
|
+
b.b2 = true;
|
|
39728
39757
|
_this.r = c;
|
|
39729
39758
|
_this.r.c = _this.j;
|
|
39730
|
-
_this.r.
|
|
39731
|
-
_this.r.
|
|
39732
|
-
_this.r.
|
|
39733
|
-
_this.r.
|
|
39734
|
-
_this.r.
|
|
39759
|
+
_this.r.bq = _this.l;
|
|
39760
|
+
_this.r.b7 = ColorEditor.a8;
|
|
39761
|
+
_this.r.cd = igniteuiAngularCore.BrushUtil.l(255, 255, 255, 255);
|
|
39762
|
+
_this.r.ce = igniteuiAngularCore.BrushUtil.l(255, 0, 0, 0);
|
|
39763
|
+
_this.r.bo = igniteuiAngularCore.runOn(_this, _this.cf);
|
|
39735
39764
|
_this.r.n = igniteuiAngularCore.runOn(_this, _this.by);
|
|
39736
39765
|
_this.r.o = igniteuiAngularCore.runOn(_this, _this.b0);
|
|
39737
|
-
_this.r.
|
|
39766
|
+
_this.r.cc = igniteuiAngularCore.BrushUtil.l(255, 0, 0, 255);
|
|
39738
39767
|
_this.s = b;
|
|
39739
|
-
_this.e = _this.
|
|
39768
|
+
_this.e = _this.view.c(f);
|
|
39740
39769
|
_this.e.value = _this.value;
|
|
39741
39770
|
var g = _this.e;
|
|
39742
39771
|
g.closed = igniteuiAngularCore.delegateCombine(g.closed, igniteuiAngularCore.runOn(_this, _this.bf));
|
|
@@ -39756,7 +39785,7 @@
|
|
|
39756
39785
|
this.bl(a);
|
|
39757
39786
|
};
|
|
39758
39787
|
ColorEditor.prototype.b0 = function (a, b) {
|
|
39759
|
-
if (!this.s.t(b.b) && !this.r.t(b.b) && !(this.r.
|
|
39788
|
+
if (!this.s.t(b.b) && !this.r.t(b.b) && !(this.r.ao == b.b)) {
|
|
39760
39789
|
this.bp();
|
|
39761
39790
|
}
|
|
39762
39791
|
};
|
|
@@ -39774,18 +39803,18 @@
|
|
|
39774
39803
|
};
|
|
39775
39804
|
ColorEditor.prototype.b5 = function (a, b) {
|
|
39776
39805
|
if (this.r != null) {
|
|
39777
|
-
this.r.
|
|
39806
|
+
this.r.cc = b;
|
|
39778
39807
|
}
|
|
39779
39808
|
};
|
|
39780
39809
|
ColorEditor.prototype.bl = function (a) {
|
|
39781
|
-
if (this.s.
|
|
39810
|
+
if (this.s.b7) {
|
|
39782
39811
|
this.w = true;
|
|
39783
39812
|
this.bi();
|
|
39784
39813
|
}
|
|
39785
39814
|
};
|
|
39786
39815
|
ColorEditor.prototype.cg = function () {
|
|
39787
39816
|
if (this.w == false) {
|
|
39788
|
-
if (this.s.
|
|
39817
|
+
if (this.s.b7) {
|
|
39789
39818
|
this.bi();
|
|
39790
39819
|
}
|
|
39791
39820
|
else {
|
|
@@ -39801,8 +39830,8 @@
|
|
|
39801
39830
|
return;
|
|
39802
39831
|
}
|
|
39803
39832
|
if (this.s != null) {
|
|
39804
|
-
var a = this.
|
|
39805
|
-
var b = this.
|
|
39833
|
+
var a = this.view.s(false);
|
|
39834
|
+
var b = this.view.t();
|
|
39806
39835
|
var c = b.height;
|
|
39807
39836
|
var d = 240;
|
|
39808
39837
|
var e = a.bottom + d;
|
|
@@ -39822,14 +39851,14 @@
|
|
|
39822
39851
|
};
|
|
39823
39852
|
ColorEditor.prototype.ce = function (a, b) {
|
|
39824
39853
|
{
|
|
39825
|
-
var c = this.
|
|
39826
|
-
this.s.
|
|
39854
|
+
var c = this.view.s(true);
|
|
39855
|
+
this.s.cg(c, a, b);
|
|
39827
39856
|
}
|
|
39828
39857
|
};
|
|
39829
39858
|
ColorEditor.prototype.bi = function () {
|
|
39830
39859
|
var _this = this;
|
|
39831
39860
|
if (this.s != null) {
|
|
39832
|
-
this.a.executeDelayed(function () { return _this.s.
|
|
39861
|
+
this.a.executeDelayed(function () { return _this.s.cd(); }, 0);
|
|
39833
39862
|
}
|
|
39834
39863
|
if (this.e != null) {
|
|
39835
39864
|
this.e.bg();
|
|
@@ -39842,9 +39871,9 @@
|
|
|
39842
39871
|
a = false;
|
|
39843
39872
|
}
|
|
39844
39873
|
if (this.r != null) {
|
|
39845
|
-
this.r.
|
|
39874
|
+
this.r.a1();
|
|
39846
39875
|
}
|
|
39847
|
-
if (!this.s.
|
|
39876
|
+
if (!this.s.b7 && this.al == true) {
|
|
39848
39877
|
if (this.w == false) {
|
|
39849
39878
|
if (this.aa) {
|
|
39850
39879
|
return;
|
|
@@ -39872,7 +39901,7 @@
|
|
|
39872
39901
|
};
|
|
39873
39902
|
ColorEditor.prototype.cb = function () {
|
|
39874
39903
|
if (this.r != null) {
|
|
39875
|
-
this.r.
|
|
39904
|
+
this.r.ca();
|
|
39876
39905
|
}
|
|
39877
39906
|
};
|
|
39878
39907
|
ColorEditor.prototype.bo = function () {
|
|
@@ -40226,7 +40255,7 @@
|
|
|
40226
40255
|
};
|
|
40227
40256
|
ColorEditorPanel.prototype.a4 = function () {
|
|
40228
40257
|
var _this = this;
|
|
40229
|
-
igniteuiAngularCore.NativeUIContent.
|
|
40258
|
+
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
40259
|
var b = a[0];
|
|
40231
40260
|
var c = a[1];
|
|
40232
40261
|
var d = a[2];
|
|
@@ -40242,97 +40271,97 @@
|
|
|
40242
40271
|
var n = a[12];
|
|
40243
40272
|
var o = a[13];
|
|
40244
40273
|
var p = a[14];
|
|
40245
|
-
e.
|
|
40246
|
-
i.
|
|
40247
|
-
g.
|
|
40248
|
-
e.
|
|
40249
|
-
i.
|
|
40250
|
-
g.
|
|
40251
|
-
g.
|
|
40252
|
-
f.
|
|
40253
|
-
l.
|
|
40274
|
+
e.bl = 2;
|
|
40275
|
+
i.bl = 0;
|
|
40276
|
+
g.bl = 1;
|
|
40277
|
+
e.bx = igniteuiAngularCore.BrushUtil.l(0, 0, 0, 0);
|
|
40278
|
+
i.bx = igniteuiAngularCore.BrushUtil.l(0, 0, 0, 0);
|
|
40279
|
+
g.bx = igniteuiAngularCore.BrushUtil.l(0, 0, 0, 0);
|
|
40280
|
+
g.bi = new igniteuiAngularCore.Thickness(1, 0, 5, 5, 0);
|
|
40281
|
+
f.bi = new igniteuiAngularCore.Thickness(1, 0, 5, 5, 0);
|
|
40282
|
+
l.b0 = "Ok";
|
|
40254
40283
|
l.c = _this.f;
|
|
40255
|
-
m.
|
|
40284
|
+
m.b0 = "Cancel";
|
|
40256
40285
|
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.
|
|
40286
|
+
i.bi = new igniteuiAngularCore.Thickness(1, 5, 0, 5, 2);
|
|
40287
|
+
h.bi = new igniteuiAngularCore.Thickness(1, 5, 0, 5, 2);
|
|
40288
|
+
e.bi = new igniteuiAngularCore.Thickness(1, 5, 5, 5, 0);
|
|
40289
|
+
d.bi = new igniteuiAngularCore.Thickness(1, 5, 5, 5, 0);
|
|
40290
|
+
p.bi = new igniteuiAngularCore.Thickness(1, 5, 16, 0, 11);
|
|
40291
|
+
p.a9 = igniteuiAngularCore.BrushUtil.l(255, 255, 0, 0);
|
|
40292
|
+
c.cf(p, 0);
|
|
40293
|
+
c.cd(p, 0);
|
|
40294
|
+
c.bo(p);
|
|
40295
|
+
n.b5(0, 2, 1);
|
|
40296
|
+
n.b5(1, 2, 1);
|
|
40297
|
+
n.bi = new igniteuiAngularCore.Thickness(1, 5, 2, 5, 2);
|
|
40298
|
+
n.cd(j, 0);
|
|
40299
|
+
j.bi = new igniteuiAngularCore.Thickness(1, 0, 0, 2, 0);
|
|
40300
|
+
j.bv = 1;
|
|
40301
|
+
j.bq = _this.h;
|
|
40273
40302
|
j.c = _this.f;
|
|
40274
|
-
j.
|
|
40275
|
-
o.
|
|
40276
|
-
o.
|
|
40277
|
-
o.
|
|
40303
|
+
j.b6 = "rgba";
|
|
40304
|
+
o.bi = new igniteuiAngularCore.Thickness(1, 0, 0, 2, 0);
|
|
40305
|
+
o.bv = 1;
|
|
40306
|
+
o.bq = _this.h;
|
|
40278
40307
|
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.
|
|
40308
|
+
o.b6 = "hex";
|
|
40309
|
+
n.cd(o, 1);
|
|
40310
|
+
n.bo(j);
|
|
40311
|
+
n.bo(o);
|
|
40312
|
+
l.bi = new igniteuiAngularCore.Thickness(1, 5, 2, 5, 2);
|
|
40313
|
+
m.bi = new igniteuiAngularCore.Thickness(1, 5, 2, 5, 2);
|
|
40314
|
+
l.bq = _this.h;
|
|
40315
|
+
m.bq = _this.h;
|
|
40316
|
+
l.bn = igniteuiAngularCore.runOn(_this, _this.a6);
|
|
40317
|
+
m.bn = igniteuiAngularCore.runOn(_this, _this.bh);
|
|
40318
|
+
b.b7(0, 1, 175);
|
|
40319
|
+
b.b7(1, 0, 0);
|
|
40320
|
+
b.b7(2, 0, 0);
|
|
40321
|
+
b.b7(3, 0, 0);
|
|
40322
|
+
b.b5(0, 1, 90);
|
|
40323
|
+
b.b5(1, 1, 175);
|
|
40324
|
+
b.b5(2, 1, 25);
|
|
40325
|
+
b.cf(c, 0);
|
|
40326
|
+
b.cd(c, 0);
|
|
40327
|
+
b.cf(d, 0);
|
|
40328
|
+
b.cd(d, 1);
|
|
40329
|
+
b.cf(e, 0);
|
|
40330
|
+
b.cd(e, 1);
|
|
40331
|
+
b.cf(f, 0);
|
|
40332
|
+
b.cd(f, 3);
|
|
40333
|
+
b.cf(g, 0);
|
|
40334
|
+
b.cd(g, 3);
|
|
40335
|
+
b.cf(h, 1);
|
|
40336
|
+
b.cd(h, 0);
|
|
40337
|
+
b.ce(h, 3);
|
|
40338
|
+
b.cf(i, 1);
|
|
40339
|
+
b.cd(i, 0);
|
|
40340
|
+
b.ce(i, 3);
|
|
40341
|
+
b.cf(n, 2);
|
|
40342
|
+
b.cd(n, 0);
|
|
40343
|
+
b.ce(n, 3);
|
|
40344
|
+
b.cf(k, 3);
|
|
40345
|
+
b.cd(k, 0);
|
|
40346
|
+
b.ce(k, 3);
|
|
40347
|
+
k.b5(0, 2, 1);
|
|
40348
|
+
k.b5(1, 2, 1);
|
|
40349
|
+
k.cd(l, 0);
|
|
40350
|
+
k.cd(m, 1);
|
|
40351
|
+
k.bo(l);
|
|
40352
|
+
k.bo(m);
|
|
40353
|
+
b.bo(c);
|
|
40354
|
+
b.bo(d);
|
|
40355
|
+
b.bo(e);
|
|
40356
|
+
b.bo(f);
|
|
40357
|
+
b.bo(g);
|
|
40358
|
+
b.bo(h);
|
|
40359
|
+
b.bo(i);
|
|
40360
|
+
b.bo(n);
|
|
40361
|
+
b.bo(k);
|
|
40333
40362
|
_this.d.a8(b);
|
|
40334
40363
|
_this.n = b;
|
|
40335
|
-
_this.n.
|
|
40364
|
+
_this.n.by = true;
|
|
40336
40365
|
_this.s = i;
|
|
40337
40366
|
_this.u = g;
|
|
40338
40367
|
_this.m = f;
|
|
@@ -40340,24 +40369,24 @@
|
|
|
40340
40369
|
_this.o = p;
|
|
40341
40370
|
_this.r = j;
|
|
40342
40371
|
_this.q = o;
|
|
40343
|
-
_this.s.
|
|
40344
|
-
_this.s.
|
|
40345
|
-
_this.s.by = igniteuiAngularCore.BrushUtil.l(255, 255, 255, 255);
|
|
40372
|
+
_this.s.br = 0;
|
|
40373
|
+
_this.s.bq = 360;
|
|
40346
40374
|
_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.
|
|
40375
|
+
_this.s.b0 = igniteuiAngularCore.BrushUtil.l(255, 255, 255, 255);
|
|
40376
|
+
_this.u.br = 0;
|
|
40377
|
+
_this.u.bq = 1;
|
|
40378
|
+
_this.t.bz = igniteuiAngularCore.BrushUtil.l(255, 155, 155, 155);
|
|
40379
|
+
_this.t.b0 = igniteuiAngularCore.BrushUtil.l(255, 255, 255, 255);
|
|
40380
|
+
_this.t.br = 0;
|
|
40381
|
+
_this.t.bq = 1;
|
|
40382
|
+
_this.t.bv = 0;
|
|
40383
|
+
_this.t.bu = 1;
|
|
40384
|
+
_this.s.bp = igniteuiAngularCore.runOn(_this, _this.au);
|
|
40355
40385
|
_this.s.bo = igniteuiAngularCore.runOn(_this, _this.au);
|
|
40356
|
-
_this.
|
|
40386
|
+
_this.u.bp = igniteuiAngularCore.runOn(_this, _this.aw);
|
|
40357
40387
|
_this.u.bo = igniteuiAngularCore.runOn(_this, _this.aw);
|
|
40358
|
-
_this.
|
|
40388
|
+
_this.t.bp = igniteuiAngularCore.runOn(_this, _this.av);
|
|
40359
40389
|
_this.t.bo = igniteuiAngularCore.runOn(_this, _this.av);
|
|
40360
|
-
_this.t.bn = igniteuiAngularCore.runOn(_this, _this.av);
|
|
40361
40390
|
_this.l = d;
|
|
40362
40391
|
_this.k = h;
|
|
40363
40392
|
_this.p = c;
|
|
@@ -40394,26 +40423,26 @@
|
|
|
40394
40423
|
var a = igniteuiAngularCore.Color.u(0, 0, 0, 0);
|
|
40395
40424
|
var b = igniteuiAngularCore.Color.u(255, 255, 0, 0);
|
|
40396
40425
|
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.
|
|
40426
|
+
var c = this.s.bt;
|
|
40427
|
+
var d = this.t.bt;
|
|
40428
|
+
var e = 1 - this.t.bw;
|
|
40429
|
+
var f = 1 - this.u.bt;
|
|
40401
40430
|
b = igniteuiAngularCore.ColorUtil.r(1, c, 1, 0.5);
|
|
40402
40431
|
a = igniteuiAngularCore.ColorUtil.r(f, c, d, e);
|
|
40403
|
-
this.s.
|
|
40404
|
-
this.t.
|
|
40405
|
-
this.o.
|
|
40406
|
-
this.d.bm(this.s.
|
|
40432
|
+
this.s.by = igniteuiAngularCore.BrushUtil.l(b.l, b.o, b.n, b.m);
|
|
40433
|
+
this.t.by = igniteuiAngularCore.BrushUtil.l(a.l, a.o, a.n, a.m);
|
|
40434
|
+
this.o.a9 = igniteuiAngularCore.BrushUtil.l(a.l, a.o, a.n, a.m);
|
|
40435
|
+
this.d.bm(this.s.bt);
|
|
40407
40436
|
this.d.bn(0);
|
|
40408
|
-
this.d.bo(this.s.
|
|
40437
|
+
this.d.bo(this.s.bt, this.t.bt, 1 - this.t.bw);
|
|
40409
40438
|
}
|
|
40410
40439
|
if (this.r != null) {
|
|
40411
40440
|
var g = a.o + ", " + a.n + ", " + a.m + ", " + Math.round((a.l / 255) * 1000) / 1000;
|
|
40412
|
-
this.r.
|
|
40441
|
+
this.r.b8 = g;
|
|
40413
40442
|
}
|
|
40414
40443
|
if (this.q != null) {
|
|
40415
40444
|
var h = igniteuiAngularCore.ColorUtil.k(a, false);
|
|
40416
|
-
this.q.
|
|
40445
|
+
this.q.b8 = h;
|
|
40417
40446
|
}
|
|
40418
40447
|
this.bx = igniteuiAngularCore.BrushUtil.l(a.l, a.o, a.n, a.m);
|
|
40419
40448
|
this.bc(this.value);
|
|
@@ -40426,7 +40455,7 @@
|
|
|
40426
40455
|
ColorEditorPanel.prototype.bl = function () {
|
|
40427
40456
|
};
|
|
40428
40457
|
ColorEditorPanel.prototype.a3 = function () {
|
|
40429
|
-
this.n.
|
|
40458
|
+
this.n.a0();
|
|
40430
40459
|
};
|
|
40431
40460
|
ColorEditorPanel.prototype.onAttachedToUI = function () {
|
|
40432
40461
|
this.d.bg();
|
|
@@ -40456,10 +40485,10 @@
|
|
|
40456
40485
|
var a = this.b5;
|
|
40457
40486
|
var b = igniteuiAngularCore.ColorUtil.a(a);
|
|
40458
40487
|
this.y = true;
|
|
40459
|
-
this.s.
|
|
40460
|
-
this.u.
|
|
40461
|
-
this.t.
|
|
40462
|
-
this.t.
|
|
40488
|
+
this.s.bt = b[1] == -1 ? 0 : b[1];
|
|
40489
|
+
this.u.bt = 1 - b[0];
|
|
40490
|
+
this.t.bt = b[2];
|
|
40491
|
+
this.t.bw = 1 - b[3];
|
|
40463
40492
|
this.y = false;
|
|
40464
40493
|
if (this.x) {
|
|
40465
40494
|
this.bn();
|
|
@@ -40479,7 +40508,7 @@
|
|
|
40479
40508
|
this.bn();
|
|
40480
40509
|
};
|
|
40481
40510
|
ColorEditorPanel.prototype.a0 = function (a, b, c) {
|
|
40482
|
-
var d = this.s.
|
|
40511
|
+
var d = this.s.bt;
|
|
40483
40512
|
var e = 1;
|
|
40484
40513
|
var f = 255;
|
|
40485
40514
|
for (var g = 0; g < c; g++) {
|
|
@@ -40638,12 +40667,12 @@
|
|
|
40638
40667
|
};
|
|
40639
40668
|
ColorEditorPanel.prototype.ad = function () {
|
|
40640
40669
|
if (this.s != null) {
|
|
40641
|
-
return this.s.
|
|
40670
|
+
return this.s.bt;
|
|
40642
40671
|
}
|
|
40643
40672
|
return 0;
|
|
40644
40673
|
};
|
|
40645
40674
|
ColorEditorPanel.prototype.a1 = function (a, b, c) {
|
|
40646
|
-
var d = this.s.
|
|
40675
|
+
var d = this.s.bt;
|
|
40647
40676
|
var e = 1;
|
|
40648
40677
|
var f = 255;
|
|
40649
40678
|
for (var g = 0; g < c; g++) {
|
|
@@ -40680,11 +40709,11 @@
|
|
|
40680
40709
|
}
|
|
40681
40710
|
};
|
|
40682
40711
|
ColorEditorPanel.prototype.a2 = function (a, b, c) {
|
|
40683
|
-
var d = this.s.
|
|
40712
|
+
var d = this.s.bt;
|
|
40684
40713
|
var e = 1;
|
|
40685
40714
|
var f = 255;
|
|
40686
|
-
var g = 1 - this.t.
|
|
40687
|
-
var h = this.t.
|
|
40715
|
+
var g = 1 - this.t.bw;
|
|
40716
|
+
var h = this.t.bt;
|
|
40688
40717
|
for (var i = 0; i < c; i++) {
|
|
40689
40718
|
var j = i / c;
|
|
40690
40719
|
for (var k = 0; k < b; k++) {
|
|
@@ -40953,6 +40982,9 @@
|
|
|
40953
40982
|
this._portalManager = new igniteuiAngularCore.PortalManager("colorEditorContent", componentFactoryResolver);
|
|
40954
40983
|
var ren = new igniteuiAngularCore.AngularRenderer(root, this.renderer, window.document, this.ngZone, true, {}, this._portalManager);
|
|
40955
40984
|
this._wrapper = ren;
|
|
40985
|
+
colorEditor.view.createColorEditorPanel = function () {
|
|
40986
|
+
return window.document.createElement("igx-color-editor-panel");
|
|
40987
|
+
};
|
|
40956
40988
|
colorEditor.provideContainer(ren);
|
|
40957
40989
|
}
|
|
40958
40990
|
}
|
|
@@ -42741,15 +42773,10 @@
|
|
|
42741
42773
|
return null;
|
|
42742
42774
|
}
|
|
42743
42775
|
if (!r.externalObject) {
|
|
42744
|
-
var e =
|
|
42745
|
-
if (
|
|
42776
|
+
var e = IgxMultiSliderThumbComponent._createFromInternal(r);
|
|
42777
|
+
if (e) {
|
|
42746
42778
|
e._implementation = r;
|
|
42747
42779
|
}
|
|
42748
|
-
else {
|
|
42749
|
-
if (e.i.setNativeElement) {
|
|
42750
|
-
e.i.setNativeElement(r);
|
|
42751
|
-
}
|
|
42752
|
-
}
|
|
42753
42780
|
r.externalObject = e;
|
|
42754
42781
|
}
|
|
42755
42782
|
return r.externalObject;
|
|
@@ -42767,15 +42794,10 @@
|
|
|
42767
42794
|
return null;
|
|
42768
42795
|
}
|
|
42769
42796
|
if (!r.externalObject) {
|
|
42770
|
-
var e =
|
|
42771
|
-
if (
|
|
42797
|
+
var e = IgxMultiSliderThumbComponent._createFromInternal(r);
|
|
42798
|
+
if (e) {
|
|
42772
42799
|
e._implementation = r;
|
|
42773
42800
|
}
|
|
42774
|
-
else {
|
|
42775
|
-
if (e.i.setNativeElement) {
|
|
42776
|
-
e.i.setNativeElement(r);
|
|
42777
|
-
}
|
|
42778
|
-
}
|
|
42779
42801
|
r.externalObject = e;
|
|
42780
42802
|
}
|
|
42781
42803
|
return r.externalObject;
|
|
@@ -42811,139 +42833,236 @@
|
|
|
42811
42833
|
return IgxMultiSliderTrackThumbRange;
|
|
42812
42834
|
}());
|
|
42813
42835
|
|
|
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
|
-
|
|
42836
|
+
var IgxMultiSliderThumbComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
42837
|
+
function IgxMultiSliderThumbComponent() {
|
|
42838
|
+
this.__p = null;
|
|
42839
|
+
this._hasUserValues = new Set();
|
|
42840
|
+
this._stylingContainer = null;
|
|
42841
|
+
this._stylingParent = null;
|
|
42842
|
+
this._inStyling = false;
|
|
42843
|
+
this._propertyUpdated = null;
|
|
42844
|
+
this._zoneRunner = null;
|
|
42845
|
+
if (this._styling) {
|
|
42846
|
+
igniteuiAngularCore.NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this));
|
|
42847
|
+
}
|
|
42848
|
+
this._implementation = this.createImplementation();
|
|
42849
|
+
this._implementation.externalObject = this;
|
|
42850
|
+
this.onImplementationCreated();
|
|
42851
|
+
if (this._initializeAdapters) {
|
|
42852
|
+
this._initializeAdapters();
|
|
42853
|
+
}
|
|
42854
|
+
}
|
|
42855
|
+
IgxMultiSliderThumbComponent.prototype.createImplementation = function () {
|
|
42856
|
+
return new MultiSliderThumb();
|
|
42857
|
+
};
|
|
42858
|
+
IgxMultiSliderThumbComponent.prototype.ngOnInit = function () {
|
|
42859
|
+
};
|
|
42860
|
+
Object.defineProperty(IgxMultiSliderThumbComponent.prototype, "i", {
|
|
42861
|
+
/**
|
|
42862
|
+
* @hidden
|
|
42863
|
+
*/
|
|
42864
|
+
get: function () {
|
|
42865
|
+
return this._implementation;
|
|
42866
|
+
} /**
|
|
42867
|
+
* @hidden
|
|
42868
|
+
*/,
|
|
42869
|
+
enumerable: false,
|
|
42870
|
+
configurable: true
|
|
42871
|
+
});
|
|
42872
|
+
IgxMultiSliderThumbComponent._createFromInternal = function (internal) {
|
|
42873
|
+
if (!internal) {
|
|
42874
|
+
return null;
|
|
42875
|
+
}
|
|
42876
|
+
if (!internal.$type) {
|
|
42877
|
+
return null;
|
|
42878
|
+
}
|
|
42879
|
+
var name = internal.$type.name;
|
|
42880
|
+
var externalName = "Igx" + name + "Component";
|
|
42881
|
+
if (!igniteuiAngularCore.TypeRegistrar.isRegistered(externalName)) {
|
|
42882
|
+
return null;
|
|
42883
|
+
}
|
|
42884
|
+
return igniteuiAngularCore.TypeRegistrar.create(externalName);
|
|
42885
|
+
};
|
|
42886
|
+
IgxMultiSliderThumbComponent.prototype.onImplementationCreated = function () {
|
|
42887
|
+
};
|
|
42888
|
+
Object.defineProperty(IgxMultiSliderThumbComponent.prototype, "value", {
|
|
42889
|
+
get: function () {
|
|
42890
|
+
return this.i.s;
|
|
42891
|
+
},
|
|
42892
|
+
set: function (v) {
|
|
42893
|
+
this.i.s = +v;
|
|
42894
|
+
},
|
|
42895
|
+
enumerable: false,
|
|
42896
|
+
configurable: true
|
|
42897
|
+
});
|
|
42898
|
+
Object.defineProperty(IgxMultiSliderThumbComponent.prototype, "rangePosition", {
|
|
42899
|
+
get: function () {
|
|
42900
|
+
return this.i.g;
|
|
42901
|
+
},
|
|
42902
|
+
set: function (v) {
|
|
42903
|
+
this.i.g = igniteuiAngularCore.ensureEnum(MultiSliderThumbRangePosition_$type, v);
|
|
42904
|
+
},
|
|
42905
|
+
enumerable: false,
|
|
42906
|
+
configurable: true
|
|
42907
|
+
});
|
|
42908
|
+
Object.defineProperty(IgxMultiSliderThumbComponent.prototype, "range", {
|
|
42909
|
+
get: function () {
|
|
42910
|
+
var r = this.i.i;
|
|
42911
|
+
if (r == null) {
|
|
42912
|
+
return null;
|
|
42913
|
+
}
|
|
42914
|
+
if (!r.externalObject) {
|
|
42915
|
+
var e = new IgxMultiSliderTrackThumbRange();
|
|
42916
|
+
if (r.$type) {
|
|
42917
|
+
e._implementation = r;
|
|
42918
|
+
}
|
|
42919
|
+
else {
|
|
42920
|
+
if (e.i.setNativeElement) {
|
|
42921
|
+
e.i.setNativeElement(r);
|
|
42922
|
+
}
|
|
42923
|
+
}
|
|
42924
|
+
r.externalObject = e;
|
|
42925
|
+
}
|
|
42926
|
+
return r.externalObject;
|
|
42927
|
+
},
|
|
42928
|
+
set: function (v) {
|
|
42929
|
+
v == null ? this.i.i = null : this.i.i = v.i;
|
|
42930
|
+
},
|
|
42931
|
+
enumerable: false,
|
|
42932
|
+
configurable: true
|
|
42933
|
+
});
|
|
42934
|
+
IgxMultiSliderThumbComponent.prototype.findByName = function (name) {
|
|
42935
|
+
if (this.findEphemera) {
|
|
42936
|
+
if (name && name.indexOf("@@e:") == 0) {
|
|
42937
|
+
return this.findEphemera(name);
|
|
42938
|
+
}
|
|
42939
|
+
}
|
|
42940
|
+
if (this.range && this.range.name && this.range.name == name) {
|
|
42941
|
+
return this.range;
|
|
42942
|
+
}
|
|
42943
|
+
return null;
|
|
42944
|
+
};
|
|
42945
|
+
Object.defineProperty(IgxMultiSliderThumbComponent.prototype, "hasUserValues", {
|
|
42946
|
+
get: function () {
|
|
42947
|
+
return this._hasUserValues;
|
|
42948
|
+
},
|
|
42949
|
+
enumerable: false,
|
|
42950
|
+
configurable: true
|
|
42951
|
+
});
|
|
42952
|
+
IgxMultiSliderThumbComponent.prototype.__m = function (propertyName) {
|
|
42953
|
+
if (!this._inStyling) {
|
|
42954
|
+
this._hasUserValues.add(propertyName);
|
|
42955
|
+
}
|
|
42956
|
+
};
|
|
42957
|
+
IgxMultiSliderThumbComponent.prototype._styling = function (container, component, parent) {
|
|
42958
|
+
if (this._inStyling) {
|
|
42959
|
+
return;
|
|
42960
|
+
}
|
|
42961
|
+
this._inStyling = true;
|
|
42962
|
+
this._stylingContainer = container;
|
|
42963
|
+
this._stylingParent = component;
|
|
42964
|
+
var genericPrefix = "";
|
|
42965
|
+
var typeName = this.i.$type.name;
|
|
42966
|
+
if (typeName.indexOf("Xam") === 0) {
|
|
42967
|
+
typeName = typeName.substring(3);
|
|
42968
|
+
}
|
|
42969
|
+
genericPrefix = igniteuiAngularCore.toSpinal("MultiSliderThumbComponent");
|
|
42970
|
+
var additionalPrefixes = [];
|
|
42971
|
+
var prefix = igniteuiAngularCore.toSpinal(typeName);
|
|
42972
|
+
additionalPrefixes.push(prefix + "-");
|
|
42973
|
+
var b = this.i.$type.baseType;
|
|
42974
|
+
while (b && b.name != "Object" &&
|
|
42975
|
+
b.name != "Base" &&
|
|
42976
|
+
b.name != "Control" &&
|
|
42977
|
+
b.Name != "DependencyObject" &&
|
|
42978
|
+
b.Name != "FrameworkElement") {
|
|
42979
|
+
typeName = b.name;
|
|
42980
|
+
if (typeName.indexOf("Xam") === 0) {
|
|
42981
|
+
typeName = typeName.substring(3);
|
|
42982
|
+
}
|
|
42983
|
+
var basePrefix = igniteuiAngularCore.toSpinal(typeName);
|
|
42984
|
+
additionalPrefixes.push(basePrefix + "-");
|
|
42985
|
+
b = b.baseType;
|
|
42986
|
+
}
|
|
42987
|
+
if (parent) {
|
|
42988
|
+
var parentTypeName = parent.i.$type.name;
|
|
42989
|
+
if (parentTypeName.indexOf("Xam") === 0) {
|
|
42990
|
+
parentTypeName = parentTypeName.substring(3);
|
|
42991
|
+
}
|
|
42992
|
+
var parentPrefix = igniteuiAngularCore.toSpinal(parentTypeName);
|
|
42993
|
+
additionalPrefixes.push(parentPrefix + "-" + genericPrefix + "-");
|
|
42994
|
+
additionalPrefixes.push(parentPrefix + "-" + prefix + "-");
|
|
42995
|
+
}
|
|
42996
|
+
igniteuiAngularCore.initializePropertiesFromCss(container, this, genericPrefix + "-", this.hasUserValues, false, additionalPrefixes);
|
|
42997
|
+
if (this._otherStyling) {
|
|
42998
|
+
this._otherStyling(container, component, parent);
|
|
42999
|
+
}
|
|
43000
|
+
this._inStyling = false;
|
|
43001
|
+
};
|
|
43002
|
+
IgxMultiSliderThumbComponent.prototype.push = function (amount) {
|
|
43003
|
+
var iv = this.i.r(amount);
|
|
43004
|
+
return (iv);
|
|
43005
|
+
};
|
|
43006
|
+
Object.defineProperty(IgxMultiSliderThumbComponent.prototype, "propertyUpdated", {
|
|
43007
|
+
get: function () {
|
|
43008
|
+
var _this = this;
|
|
43009
|
+
if (this._propertyUpdated == null) {
|
|
43010
|
+
this._propertyUpdated = new i0.EventEmitter();
|
|
43011
|
+
this.i.propertyUpdated = igniteuiAngularCore.delegateCombine(this.i.propertyUpdated, function (o, e) {
|
|
43012
|
+
_this._runInZone(function () {
|
|
43013
|
+
var outerArgs = new igniteuiAngularCore.IgxPropertyUpdatedEventArgs();
|
|
43014
|
+
outerArgs._provideImplementation(e);
|
|
43015
|
+
if (_this.beforePropertyUpdated) {
|
|
43016
|
+
_this.beforePropertyUpdated(_this, outerArgs);
|
|
43017
|
+
}
|
|
43018
|
+
_this._propertyUpdated.emit({
|
|
43019
|
+
sender: _this,
|
|
43020
|
+
args: outerArgs
|
|
43021
|
+
});
|
|
43022
|
+
});
|
|
43023
|
+
});
|
|
43024
|
+
}
|
|
43025
|
+
return this._propertyUpdated;
|
|
43026
|
+
},
|
|
43027
|
+
enumerable: false,
|
|
43028
|
+
configurable: true
|
|
43029
|
+
});
|
|
43030
|
+
IgxMultiSliderThumbComponent.prototype._runInZone = function (act) {
|
|
43031
|
+
if (this._zoneRunner != null) {
|
|
43032
|
+
this._zoneRunner(act);
|
|
43033
|
+
}
|
|
43034
|
+
else {
|
|
43035
|
+
act();
|
|
43036
|
+
}
|
|
43037
|
+
};
|
|
43038
|
+
IgxMultiSliderThumbComponent.ɵfac = i0["ɵɵngDeclareFactory"]({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbComponent, deps: [], target: i0["ɵɵFactoryTarget"].Component });
|
|
43039
|
+
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 });
|
|
43040
|
+
return IgxMultiSliderThumbComponent;
|
|
42939
43041
|
}());
|
|
43042
|
+
i0["ɵɵngDeclareClassMetadata"]({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbComponent, decorators: [{
|
|
43043
|
+
type: i0.Component,
|
|
43044
|
+
args: [{
|
|
43045
|
+
selector: 'igx-multi-slider-thumb',
|
|
43046
|
+
template: "",
|
|
43047
|
+
providers: [],
|
|
43048
|
+
changeDetection: i0.ChangeDetectionStrategy.OnPush
|
|
43049
|
+
}]
|
|
43050
|
+
}], ctorParameters: function () { return []; }, propDecorators: { value: [{
|
|
43051
|
+
type: i0.Input
|
|
43052
|
+
}], rangePosition: [{
|
|
43053
|
+
type: i0.Input
|
|
43054
|
+
}], range: [{
|
|
43055
|
+
type: i0.Input
|
|
43056
|
+
}], propertyUpdated: [{
|
|
43057
|
+
type: i0.Output
|
|
43058
|
+
}] } });
|
|
42940
43059
|
|
|
42941
43060
|
var IgxMultiSliderThumbCollection = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
42942
43061
|
tslib.__extends(IgxMultiSliderThumbCollection, _super);
|
|
42943
43062
|
function IgxMultiSliderThumbCollection(list) {
|
|
42944
43063
|
var _this = _super.call(this) || this;
|
|
42945
|
-
if (!
|
|
42946
|
-
|
|
43064
|
+
if (!IgxMultiSliderThumbComponent.$type) {
|
|
43065
|
+
IgxMultiSliderThumbComponent.$type = igniteuiAngularCore.markType(IgxMultiSliderThumbComponent, "IgxMultiSliderThumbComponent");
|
|
42947
43066
|
}
|
|
42948
43067
|
if (list) {
|
|
42949
43068
|
for (var i = 0; i < list.length; i++) {
|
|
@@ -42953,10 +43072,10 @@
|
|
|
42953
43072
|
return _this;
|
|
42954
43073
|
}
|
|
42955
43074
|
IgxMultiSliderThumbCollection.prototype._createInnerColl = function () {
|
|
42956
|
-
if (!
|
|
42957
|
-
|
|
43075
|
+
if (!IgxMultiSliderThumbComponent.$type) {
|
|
43076
|
+
IgxMultiSliderThumbComponent.$type = igniteuiAngularCore.markType(IgxMultiSliderThumbComponent, "IgxMultiSliderThumbComponent");
|
|
42958
43077
|
}
|
|
42959
|
-
var coll = new igniteuiAngularCore.SyncableObservableCollection$2(
|
|
43078
|
+
var coll = new igniteuiAngularCore.SyncableObservableCollection$2(IgxMultiSliderThumbComponent.$type, MultiSliderThumb.$type, 0);
|
|
42960
43079
|
coll.compare = function (ext, int) {
|
|
42961
43080
|
var comp = ext;
|
|
42962
43081
|
if (comp._implementation) {
|
|
@@ -42973,7 +43092,7 @@
|
|
|
42973
43092
|
coll.createFrom = function (int) {
|
|
42974
43093
|
var ext = int.externalObject;
|
|
42975
43094
|
if (!ext) {
|
|
42976
|
-
ext = new
|
|
43095
|
+
ext = new IgxMultiSliderThumbComponent();
|
|
42977
43096
|
if (ext) {
|
|
42978
43097
|
if (!int.$type && ext._implementation.setNativeElement) {
|
|
42979
43098
|
ext._implementation.setNativeElement(int);
|
|
@@ -43088,15 +43207,10 @@
|
|
|
43088
43207
|
return null;
|
|
43089
43208
|
}
|
|
43090
43209
|
if (!r.externalObject) {
|
|
43091
|
-
var e =
|
|
43092
|
-
if (
|
|
43210
|
+
var e = IgxMultiSliderThumbComponent._createFromInternal(r);
|
|
43211
|
+
if (e) {
|
|
43093
43212
|
e._implementation = r;
|
|
43094
43213
|
}
|
|
43095
|
-
else {
|
|
43096
|
-
if (e.i.setNativeElement) {
|
|
43097
|
-
e.i.setNativeElement(r);
|
|
43098
|
-
}
|
|
43099
|
-
}
|
|
43100
43214
|
r.externalObject = e;
|
|
43101
43215
|
}
|
|
43102
43216
|
return r.externalObject;
|
|
@@ -46162,12 +46276,12 @@
|
|
|
46162
46276
|
switch (b) {
|
|
46163
46277
|
case 15:
|
|
46164
46278
|
case 16:
|
|
46165
|
-
case 44:
|
|
46166
46279
|
case 45:
|
|
46167
46280
|
case 46:
|
|
46168
46281
|
case 47:
|
|
46169
46282
|
case 48:
|
|
46170
|
-
case 49:
|
|
46283
|
+
case 49:
|
|
46284
|
+
case 50: return this.al.t;
|
|
46171
46285
|
}
|
|
46172
46286
|
return _super.prototype.getTargetForBuildInProperty.call(this, a, b);
|
|
46173
46287
|
};
|
|
@@ -46183,12 +46297,12 @@
|
|
|
46183
46297
|
switch (b) {
|
|
46184
46298
|
case 16:
|
|
46185
46299
|
case 15:
|
|
46186
|
-
case 44:
|
|
46187
46300
|
case 45:
|
|
46188
46301
|
case 46:
|
|
46189
46302
|
case 47:
|
|
46190
46303
|
case 48:
|
|
46191
|
-
case 49:
|
|
46304
|
+
case 49:
|
|
46305
|
+
case 50: return this.al.getValue(a, b);
|
|
46192
46306
|
case 18: return igniteuiAngularCore.enumGetBox(igniteuiAngularCore.BaseControlTheme_$type, a.o);
|
|
46193
46307
|
}
|
|
46194
46308
|
return _super.prototype.getValue.call(this, a, b);
|
|
@@ -46198,12 +46312,12 @@
|
|
|
46198
46312
|
switch (b) {
|
|
46199
46313
|
case 16:
|
|
46200
46314
|
case 15:
|
|
46201
|
-
case 44:
|
|
46202
46315
|
case 45:
|
|
46203
46316
|
case 46:
|
|
46204
46317
|
case 47:
|
|
46205
46318
|
case 48:
|
|
46206
46319
|
case 49:
|
|
46320
|
+
case 50:
|
|
46207
46321
|
this.al.setValue(a, b, c);
|
|
46208
46322
|
break;
|
|
46209
46323
|
case 18:
|
|
@@ -46809,6 +46923,56 @@
|
|
|
46809
46923
|
return DefaultMultiTrackShadeVisual;
|
|
46810
46924
|
}(igniteuiAngularCore.Base));
|
|
46811
46925
|
|
|
46926
|
+
/*
|
|
46927
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
46928
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
46929
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
46930
|
+
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.
|
|
46931
|
+
*/
|
|
46932
|
+
var IgxMultiSliderThumbModule = /** @class */ /*@__PURE__*/ (function () {
|
|
46933
|
+
function IgxMultiSliderThumbModule() {
|
|
46934
|
+
}
|
|
46935
|
+
IgxMultiSliderThumbModule.ɵfac = i0["ɵɵngDeclareFactory"]({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbModule, deps: [], target: i0["ɵɵFactoryTarget"].NgModule });
|
|
46936
|
+
IgxMultiSliderThumbModule.ɵmod = i0["ɵɵngDeclareNgModule"]({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbModule, declarations: [IgxMultiSliderThumbComponent], imports: [common.CommonModule], exports: [IgxMultiSliderThumbComponent] });
|
|
46937
|
+
IgxMultiSliderThumbModule.ɵinj = i0["ɵɵngDeclareInjector"]({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbModule, imports: [[common.CommonModule]] });
|
|
46938
|
+
return IgxMultiSliderThumbModule;
|
|
46939
|
+
}());
|
|
46940
|
+
i0["ɵɵngDeclareClassMetadata"]({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbModule, decorators: [{
|
|
46941
|
+
type: i0.NgModule,
|
|
46942
|
+
args: [{
|
|
46943
|
+
declarations: [IgxMultiSliderThumbComponent],
|
|
46944
|
+
imports: [common.CommonModule],
|
|
46945
|
+
exports: [IgxMultiSliderThumbComponent],
|
|
46946
|
+
entryComponents: []
|
|
46947
|
+
}]
|
|
46948
|
+
}] });
|
|
46949
|
+
|
|
46950
|
+
/*
|
|
46951
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
46952
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
46953
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
46954
|
+
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.
|
|
46955
|
+
*/
|
|
46956
|
+
var IgxMultiSliderThumbDynamicModule = /** @class */ /*@__PURE__*/ (function () {
|
|
46957
|
+
function IgxMultiSliderThumbDynamicModule() {
|
|
46958
|
+
igniteuiAngularCore.TypeRegistrar.registerCons("IgxMultiSliderThumbComponent", IgxMultiSliderThumbComponent);
|
|
46959
|
+
igniteuiAngularCore.TypeRegistrar.register("MultiSliderThumb", MultiSliderThumb.$type);
|
|
46960
|
+
}
|
|
46961
|
+
IgxMultiSliderThumbDynamicModule.ɵfac = i0["ɵɵngDeclareFactory"]({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbDynamicModule, deps: [], target: i0["ɵɵFactoryTarget"].NgModule });
|
|
46962
|
+
IgxMultiSliderThumbDynamicModule.ɵmod = i0["ɵɵngDeclareNgModule"]({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbDynamicModule, imports: [common.CommonModule, IgxMultiSliderThumbModule], exports: [IgxMultiSliderThumbModule] });
|
|
46963
|
+
IgxMultiSliderThumbDynamicModule.ɵinj = i0["ɵɵngDeclareInjector"]({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbDynamicModule, imports: [[common.CommonModule, IgxMultiSliderThumbModule], IgxMultiSliderThumbModule] });
|
|
46964
|
+
return IgxMultiSliderThumbDynamicModule;
|
|
46965
|
+
}());
|
|
46966
|
+
i0["ɵɵngDeclareClassMetadata"]({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbDynamicModule, decorators: [{
|
|
46967
|
+
type: i0.NgModule,
|
|
46968
|
+
args: [{
|
|
46969
|
+
declarations: [],
|
|
46970
|
+
imports: [common.CommonModule, IgxMultiSliderThumbModule],
|
|
46971
|
+
exports: [IgxMultiSliderThumbModule],
|
|
46972
|
+
entryComponents: [IgxMultiSliderThumbComponent]
|
|
46973
|
+
}]
|
|
46974
|
+
}], ctorParameters: function () { return []; } });
|
|
46975
|
+
|
|
46812
46976
|
/*
|
|
46813
46977
|
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
46814
46978
|
https://www.infragistics.com/legal/license/igultimate-la
|
|
@@ -47018,8 +47182,10 @@
|
|
|
47018
47182
|
exports.IgxMultiSliderDynamicModule = IgxMultiSliderDynamicModule;
|
|
47019
47183
|
exports.IgxMultiSliderModule = IgxMultiSliderModule;
|
|
47020
47184
|
exports.IgxMultiSliderResolvingToolTipValueEventArgs = IgxMultiSliderResolvingToolTipValueEventArgs;
|
|
47021
|
-
exports.IgxMultiSliderThumb = IgxMultiSliderThumb;
|
|
47022
47185
|
exports.IgxMultiSliderThumbCollection = IgxMultiSliderThumbCollection;
|
|
47186
|
+
exports.IgxMultiSliderThumbComponent = IgxMultiSliderThumbComponent;
|
|
47187
|
+
exports.IgxMultiSliderThumbDynamicModule = IgxMultiSliderThumbDynamicModule;
|
|
47188
|
+
exports.IgxMultiSliderThumbModule = IgxMultiSliderThumbModule;
|
|
47023
47189
|
exports.IgxMultiSliderThumbValueChangingEventArgs = IgxMultiSliderThumbValueChangingEventArgs;
|
|
47024
47190
|
exports.IgxMultiSliderTrackThumbRange = IgxMultiSliderTrackThumbRange;
|
|
47025
47191
|
exports.IgxMultiSliderYValueChangingEventArgs = IgxMultiSliderYValueChangingEventArgs;
|