igniteui-angular-inputs 21.0.1-beta.0 → 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.
Files changed (70) hide show
  1. package/bundles/igniteui-angular-inputs.umd.js +931 -765
  2. package/bundles/igniteui-angular-inputs.umd.min.js +1 -1
  3. package/esm2015/lib/ButtonView_combined.js +21 -21
  4. package/esm2015/lib/CalendarView_combined.js +3 -3
  5. package/esm2015/lib/CheckboxView_combined.js +23 -23
  6. package/esm2015/lib/IconView_combined.js +163 -163
  7. package/esm2015/lib/InputGroupView_combined.js +31 -31
  8. package/esm2015/lib/MultiSliderBridge.js +14 -14
  9. package/esm2015/lib/MultiSliderView_combined.js +17 -17
  10. package/esm2015/lib/NativeUIXInputsFactory_combined.js +241 -222
  11. package/esm2015/lib/RippleView_combined.js +1 -1
  12. package/esm2015/lib/XButtonBridge.js +20 -20
  13. package/esm2015/lib/XButtonGroupBridge.js +8 -8
  14. package/esm2015/lib/XCheckboxBridge.js +8 -8
  15. package/esm2015/lib/XComponentBridge.js +4 -2
  16. package/esm2015/lib/XIconBridge.js +23 -23
  17. package/esm2015/lib/XIconButtonBridge.js +5 -5
  18. package/esm2015/lib/XInputBridge.js +18 -18
  19. package/esm2015/lib/XPopupBridge.js +28 -28
  20. package/esm2015/lib/igx-color-editor-component.js +3 -0
  21. package/esm2015/lib/igx-multi-slider-thumb-collection.js +7 -7
  22. package/esm2015/lib/igx-multi-slider-thumb-component.js +209 -0
  23. package/esm2015/lib/igx-multi-slider-thumb-dynamic-module.js +34 -0
  24. package/esm2015/lib/igx-multi-slider-thumb-module.js +27 -0
  25. package/esm2015/lib/igx-multi-slider-thumb-value-changing-event-args.js +3 -8
  26. package/esm2015/lib/igx-multi-slider-track-thumb-range.js +5 -15
  27. package/esm2015/lib/igx-x-icon-component.js +10 -10
  28. package/esm2015/public_api.js +3 -1
  29. package/esm5/lib/ButtonView_combined.js +21 -21
  30. package/esm5/lib/CalendarView_combined.js +3 -3
  31. package/esm5/lib/CheckboxView_combined.js +23 -23
  32. package/esm5/lib/IconView_combined.js +158 -158
  33. package/esm5/lib/InputGroupView_combined.js +31 -31
  34. package/esm5/lib/MultiSliderBridge.js +14 -14
  35. package/esm5/lib/MultiSliderView_combined.js +17 -17
  36. package/esm5/lib/NativeUIXInputsFactory_combined.js +251 -224
  37. package/esm5/lib/RippleView_combined.js +1 -1
  38. package/esm5/lib/XButtonBridge.js +20 -20
  39. package/esm5/lib/XButtonGroupBridge.js +8 -8
  40. package/esm5/lib/XCheckboxBridge.js +8 -8
  41. package/esm5/lib/XComponentBridge.js +4 -2
  42. package/esm5/lib/XIconBridge.js +23 -23
  43. package/esm5/lib/XIconButtonBridge.js +5 -5
  44. package/esm5/lib/XInputBridge.js +18 -18
  45. package/esm5/lib/XPopupBridge.js +28 -28
  46. package/esm5/lib/igx-color-editor-component.js +3 -0
  47. package/esm5/lib/igx-multi-slider-thumb-collection.js +7 -7
  48. package/esm5/lib/igx-multi-slider-thumb-component.js +233 -0
  49. package/esm5/lib/igx-multi-slider-thumb-dynamic-module.js +33 -0
  50. package/esm5/lib/igx-multi-slider-thumb-module.js +28 -0
  51. package/esm5/lib/igx-multi-slider-thumb-value-changing-event-args.js +3 -8
  52. package/esm5/lib/igx-multi-slider-track-thumb-range.js +5 -15
  53. package/esm5/lib/igx-x-icon-component.js +10 -10
  54. package/esm5/public_api.js +3 -1
  55. package/fesm2015/igniteui-angular-inputs.js +906 -749
  56. package/fesm5/igniteui-angular-inputs.js +929 -765
  57. package/lib/IconView_combined.d.ts +33 -34
  58. package/lib/MultiSliderView_combined.d.ts +1 -1
  59. package/lib/NativeUIXInputsFactory_combined.d.ts +18 -13
  60. package/lib/igx-multi-slider-thumb-collection.d.ts +4 -4
  61. package/lib/igx-multi-slider-thumb-component.d.ts +47 -0
  62. package/lib/igx-multi-slider-thumb-dynamic-module.d.ts +9 -0
  63. package/lib/igx-multi-slider-thumb-module.d.ts +8 -0
  64. package/lib/igx-multi-slider-thumb-value-changing-event-args.d.ts +3 -3
  65. package/lib/igx-multi-slider-track-thumb-range.d.ts +5 -5
  66. package/package.json +2 -2
  67. package/public_api.d.ts +3 -1
  68. package/esm2015/lib/igx-multi-slider-thumb.js +0 -111
  69. package/esm5/lib/igx-multi-slider-thumb.js +0 -134
  70. package/lib/igx-multi-slider-thumb.d.ts +0 -33
@@ -208,7 +208,7 @@ let RippleView = /*@__PURE__*/ (() => {
208
208
  d.setStyleProperty("pointer-events", "none");
209
209
  d.setStyleProperty("border-radius", c + "px");
210
210
  d.setStyleProperty("opacity", ".5");
211
- NativeUI.af(d, ((() => {
211
+ NativeUI.ai(d, ((() => {
212
212
  let $ret = new ScaleTransform();
213
213
  $ret.l = 0.3;
214
214
  $ret.m = 0.3;
@@ -1009,7 +1009,7 @@ let ButtonView = /*@__PURE__*/ (() => {
1009
1009
  this.o.setStyleProperty("white-space", "no-wrap");
1010
1010
  this.o.setStyleProperty("color", "#000");
1011
1011
  this.o.setStyleProperty("background", this.c.nt._fill);
1012
- NativeUI.o(this.o, this.c.k4);
1012
+ NativeUI.p(this.o, this.c.k4);
1013
1013
  this.o.setAttribute("id", this.c.hz);
1014
1014
  this.ay();
1015
1015
  this.i.add(c.listen("change", runOn(this, this.aa)));
@@ -2079,10 +2079,10 @@ let XButton = /*@__PURE__*/ (() => {
2079
2079
  if (a == null) {
2080
2080
  return;
2081
2081
  }
2082
- NativeUI.o(a, this.k4);
2083
- NativeUI.n(a, this.nu);
2082
+ NativeUI.p(a, this.k4);
2083
+ NativeUI.o(a, this.nu);
2084
2084
  if (!isNaN_(this.bk)) {
2085
- NativeUI.p(a, new Thickness(0, this.bk));
2085
+ NativeUI.q(a, new Thickness(0, this.bk));
2086
2086
  }
2087
2087
  if (this.disabled) {
2088
2088
  this.view.a0(this.cv, this.v);
@@ -2099,17 +2099,17 @@ let XButton = /*@__PURE__*/ (() => {
2099
2099
  }
2100
2100
  }
2101
2101
  if (this.disabled) {
2102
- NativeUI.m(a, this.nv);
2102
+ NativeUI.n(a, this.nv);
2103
2103
  }
2104
2104
  else if (this.focused && this.a3) {
2105
- NativeUI.m(a, this.ny);
2105
+ NativeUI.n(a, this.ny);
2106
2106
  }
2107
2107
  else {
2108
2108
  if (this.a4 && !this.av) {
2109
- NativeUI.m(a, this.n0);
2109
+ NativeUI.n(a, this.n0);
2110
2110
  }
2111
2111
  else {
2112
- NativeUI.m(a, this.nt);
2112
+ NativeUI.n(a, this.nt);
2113
2113
  }
2114
2114
  }
2115
2115
  this.view.az(this.n3, BrushUtil.l(0, 0, 0, 0));
@@ -2117,21 +2117,21 @@ let XButton = /*@__PURE__*/ (() => {
2117
2117
  this.view.a2(this.ab);
2118
2118
  }
2119
2119
  if (this.disabled) {
2120
- NativeUI.q(this.view.t, this.nx);
2121
2120
  NativeUI.r(this.view.t, this.nx);
2121
+ NativeUI.t(this.view.t, this.nx);
2122
2122
  }
2123
2123
  else if (this.focused && this.a3) {
2124
- NativeUI.q(this.view.t, this.nz);
2125
2124
  NativeUI.r(this.view.t, this.nz);
2125
+ NativeUI.t(this.view.t, this.nz);
2126
2126
  }
2127
2127
  else {
2128
2128
  if (this.a4 && !this.av) {
2129
- NativeUI.q(this.view.t, this.n1);
2130
2129
  NativeUI.r(this.view.t, this.n1);
2130
+ NativeUI.t(this.view.t, this.n1);
2131
2131
  }
2132
2132
  else {
2133
- NativeUI.q(this.view.t, this.n4);
2134
2133
  NativeUI.r(this.view.t, this.n4);
2134
+ NativeUI.t(this.view.t, this.n4);
2135
2135
  }
2136
2136
  }
2137
2137
  }
@@ -3881,16 +3881,16 @@ let XButton = /*@__PURE__*/ (() => {
3881
3881
  c.p = e[1];
3882
3882
  c.h = this.o;
3883
3883
  c.i = this.r;
3884
- c.c = AppearanceHelper.a(NativeUI.ak(a));
3884
+ c.c = AppearanceHelper.a(NativeUI.an(a));
3885
3885
  c.g = AppearanceHelper.a(this.n5);
3886
3886
  c.d = AppearanceHelper.a(this.n2);
3887
3887
  c.a = AppearanceHelper.a(this.ns);
3888
3888
  c.u = this.cy;
3889
3889
  c.e = AppearanceHelper.a(this.n3);
3890
3890
  c.ag = this.k4;
3891
- c.b = AppearanceHelper.a(NativeUI.aj(a));
3891
+ c.b = AppearanceHelper.a(NativeUI.am(a));
3892
3892
  c.j = this.v;
3893
- c.f = AppearanceHelper.a(NativeUI.al(b));
3893
+ c.f = AppearanceHelper.a(NativeUI.ao(b));
3894
3894
  c.o = this.bk;
3895
3895
  c.x = this.f1;
3896
3896
  c.y = this.g5;
@@ -4260,9 +4260,9 @@ let XButton = /*@__PURE__*/ (() => {
4260
4260
  })()));
4261
4261
  XButton.k = new Theme(1, ((() => {
4262
4262
  let $ret = new Dictionary$2(String_$type, Base.$, 0);
4263
- $ret.addItem("UmbraShadowColor", BrushUtil.l(100, 33, 150, 243));
4264
- $ret.addItem("PenumbraShadowColor", BrushUtil.l(70, 33, 150, 243));
4265
- $ret.addItem("AmbientShadowColor", BrushUtil.l(40, 33, 150, 243));
4263
+ $ret.addItem("UmbraShadowColor", BrushUtil.l(0, 0, 0, 0));
4264
+ $ret.addItem("PenumbraShadowColor", BrushUtil.l(0, 0, 0, 0));
4265
+ $ret.addItem("AmbientShadowColor", BrushUtil.l(0, 0, 0, 0));
4266
4266
  $ret.addItem("ElevationMode", enumGetBox(ElevationMode_$type, 2));
4267
4267
  return $ret;
4268
4268
  })()), ((() => {
@@ -4419,9 +4419,9 @@ let XButton = /*@__PURE__*/ (() => {
4419
4419
  })()));
4420
4420
  XButton.j = new Theme(1, ((() => {
4421
4421
  let $ret = new Dictionary$2(String_$type, Base.$, 0);
4422
- $ret.addItem("UmbraShadowColor", BrushUtil.l(100, 33, 150, 243));
4423
- $ret.addItem("PenumbraShadowColor", BrushUtil.l(70, 33, 150, 243));
4424
- $ret.addItem("AmbientShadowColor", BrushUtil.l(40, 33, 150, 243));
4422
+ $ret.addItem("UmbraShadowColor", BrushUtil.l(0, 0, 0, 0));
4423
+ $ret.addItem("PenumbraShadowColor", BrushUtil.l(0, 0, 0, 0));
4424
+ $ret.addItem("AmbientShadowColor", BrushUtil.l(0, 0, 0, 0));
4425
4425
  $ret.addItem("ElevationMode", enumGetBox(ElevationMode_$type, 2));
4426
4426
  return $ret;
4427
4427
  })()), ((() => {
@@ -4805,7 +4805,7 @@ let IconView = /*@__PURE__*/ (() => {
4805
4805
  this.y.append(this.w);
4806
4806
  this.v.append(this.y);
4807
4807
  this.o.add(c.listen("click", runOn(this, this.ak)));
4808
- this.d.c6();
4808
+ this.d.c8();
4809
4809
  }
4810
4810
  ay(a) {
4811
4811
  this.z = null;
@@ -4848,7 +4848,7 @@ let IconView = /*@__PURE__*/ (() => {
4848
4848
  let b = this.v.rootWrapper.getNativeElement();
4849
4849
  b.innerHTML = a;
4850
4850
  this.z = this.v.rootWrapper.getChildAt(0);
4851
- let c = this.z.getAttribute("viewbox");
4851
+ let c = this.z.getAttribute("viewBox");
4852
4852
  if (c != null) {
4853
4853
  let d = c.split(' ');
4854
4854
  if (d.length == 1) {
@@ -4859,11 +4859,11 @@ let IconView = /*@__PURE__*/ (() => {
4859
4859
  let f = parseFloat(d[1].trim());
4860
4860
  let g = parseFloat(d[2].trim());
4861
4861
  let h = parseFloat(d[3].trim());
4862
- this.d.dd(e, f, g, h);
4862
+ this.d.df(e, f, g, h);
4863
4863
  }
4864
4864
  }
4865
4865
  else {
4866
- this.d.dd(NaN, NaN, NaN, NaN);
4866
+ this.d.df(NaN, NaN, NaN, NaN);
4867
4867
  }
4868
4868
  }
4869
4869
  }
@@ -4939,7 +4939,7 @@ let IconView = /*@__PURE__*/ (() => {
4939
4939
  this.v.rootWrapper.append(this.y);
4940
4940
  }
4941
4941
  else {
4942
- NativeUI.r(a, b);
4942
+ NativeUI.t(a, b);
4943
4943
  }
4944
4944
  }
4945
4945
  ar(a, b) {
@@ -4948,7 +4948,7 @@ let IconView = /*@__PURE__*/ (() => {
4948
4948
  c.setAttribute("stroke", "url('#" + this.n.item(b) + "')");
4949
4949
  }
4950
4950
  else {
4951
- NativeUI.aa(a, b);
4951
+ NativeUI.ad(a, b);
4952
4952
  }
4953
4953
  }
4954
4954
  ad(a) {
@@ -4958,10 +4958,10 @@ let IconView = /*@__PURE__*/ (() => {
4958
4958
  }
4959
4959
  }
4960
4960
  ae(a) {
4961
- this.d.c3();
4961
+ this.d.c5();
4962
4962
  }
4963
4963
  af(a) {
4964
- this.d.c4();
4964
+ this.d.c6();
4965
4965
  }
4966
4966
  aj() {
4967
4967
  this.j = true;
@@ -5134,18 +5134,18 @@ let XIcon = /*@__PURE__*/ (() => {
5134
5134
  this.dp = null;
5135
5135
  this.dq = null;
5136
5136
  this.dr = null;
5137
- this.be = null;
5138
- this.bj = null;
5139
- this.bm = null;
5137
+ this.bf = null;
5140
5138
  this.bl = null;
5139
+ this.bo = null;
5140
+ this.bn = null;
5141
5141
  this.a = null;
5142
- this.de = null;
5143
5142
  this.bd = null;
5143
+ this.be = null;
5144
5144
  this.n = null;
5145
- this.bk = "ig-icon-" + XIcon.bc++;
5145
+ this.bm = "ig-icon-" + XIcon.bc++;
5146
5146
  this.ba = 0;
5147
5147
  this.p = false;
5148
- this.bi = null;
5148
+ this.bk = null;
5149
5149
  this.r = false;
5150
5150
  this.q = false;
5151
5151
  this.af = 1;
@@ -5179,13 +5179,13 @@ let XIcon = /*@__PURE__*/ (() => {
5179
5179
  destroy() {
5180
5180
  this.provideContainer(null);
5181
5181
  }
5182
- c5(a, b, c) {
5182
+ c7(a, b, c) {
5183
5183
  if (this.propertyChanged != null) {
5184
5184
  this.propertyChanged(this, new PropertyChangedEventArgs(a));
5185
5185
  }
5186
- this.c8(a, b, c);
5186
+ this.da(a, b, c);
5187
5187
  }
5188
- c8(a, b, c) {
5188
+ da(a, b, c) {
5189
5189
  switch (a) {
5190
5190
  case "Fill":
5191
5191
  case "Stroke":
@@ -5194,51 +5194,51 @@ let XIcon = /*@__PURE__*/ (() => {
5194
5194
  case "HoverStroke":
5195
5195
  case "HoverStrokeThickness":
5196
5196
  case "IsHover":
5197
- this.dc();
5197
+ this.de();
5198
5198
  break;
5199
5199
  case "FillColors":
5200
5200
  case "StrokeColors":
5201
5201
  case "ActualFill":
5202
5202
  case "ActualStroke":
5203
5203
  case "ActualStrokeWidth":
5204
- this.da();
5204
+ this.dc();
5205
5205
  break;
5206
5206
  case "SVG":
5207
- this.bm = null;
5207
+ this.bo = null;
5208
5208
  this.a = null;
5209
- this.da();
5209
+ this.dc();
5210
5210
  break;
5211
5211
  case "SVGPath":
5212
- this.bl = null;
5212
+ this.bn = null;
5213
5213
  this.a = null;
5214
- this.da();
5214
+ this.dc();
5215
5215
  break;
5216
5216
  case "SVGPaths":
5217
- this.bl = null;
5218
- this.bm = null;
5219
- this.da();
5217
+ this.bn = null;
5218
+ this.bo = null;
5219
+ this.dc();
5220
5220
  break;
5221
5221
  case "DataURL":
5222
- this.bl = null;
5223
- this.bm = null;
5222
+ this.bn = null;
5223
+ this.bo = null;
5224
5224
  this.a = null;
5225
- this.da();
5225
+ this.dc();
5226
5226
  break;
5227
5227
  case "Source":
5228
- this.bl = null;
5229
- this.bm = null;
5228
+ this.bn = null;
5229
+ this.bo = null;
5230
5230
  this.a = null;
5231
- this.da();
5231
+ this.dc();
5232
5232
  break;
5233
5233
  case "DataTemplate":
5234
5234
  case "DataTemplateContext":
5235
- this.bl = null;
5236
- this.bm = null;
5235
+ this.bn = null;
5236
+ this.bo = null;
5237
5237
  this.a = null;
5238
- this.da();
5238
+ this.dc();
5239
5239
  break;
5240
5240
  case "Opacity":
5241
- this.db();
5241
+ this.dd();
5242
5242
  break;
5243
5243
  case "ViewBoxLeft":
5244
5244
  this.as = !isNaN_(this.a6) ? this.a6 : !isNaN_(this.ah) ? this.ah : 0;
@@ -5264,7 +5264,7 @@ let XIcon = /*@__PURE__*/ (() => {
5264
5264
  break;
5265
5265
  }
5266
5266
  }
5267
- dc() {
5267
+ de() {
5268
5268
  let a = this.fill != null ? this.fill : XIcon.dx;
5269
5269
  let b = this.ea != null ? this.ea : XIcon.d1;
5270
5270
  let c = !isNaN_(this.a4) ? this.a4 : XIcon.aw;
@@ -5285,19 +5285,19 @@ let XIcon = /*@__PURE__*/ (() => {
5285
5285
  get t() {
5286
5286
  return this.svgPath != null && !this.view.m;
5287
5287
  }
5288
- db() {
5289
- NativeUI.y(this.view.aa, this.a3);
5288
+ dd() {
5289
+ NativeUI.ab(this.view.aa, this.a3);
5290
5290
  }
5291
- cz() {
5291
+ c1() {
5292
5292
  this.view.ag();
5293
5293
  }
5294
- da() {
5294
+ dc() {
5295
5295
  let a = this.view.aa;
5296
5296
  if (this.t) {
5297
5297
  let b = this.view.ab;
5298
- NativeUI.r(b, this.du);
5299
- NativeUI.aa(b, this.dv);
5300
- NativeUI.ad(b, this.aq);
5298
+ NativeUI.t(b, this.du);
5299
+ NativeUI.ad(b, this.dv);
5300
+ NativeUI.ag(b, this.aq);
5301
5301
  }
5302
5302
  else {
5303
5303
  let c = this.j();
@@ -5306,8 +5306,8 @@ let XIcon = /*@__PURE__*/ (() => {
5306
5306
  this.view.ai();
5307
5307
  }
5308
5308
  let d = false;
5309
- if (this.df != null) {
5310
- this.view.as(this.df, this.bf);
5309
+ if (this.bg != null) {
5310
+ this.view.as(this.bg, this.bh);
5311
5311
  }
5312
5312
  else if (this.svgPath != null) {
5313
5313
  if (stringStartsWith(trimStart(this.svgPath, ' ', '\n', '\r', '\t'), "<svg")) {
@@ -5322,9 +5322,9 @@ let XIcon = /*@__PURE__*/ (() => {
5322
5322
  this.view.az(this.b);
5323
5323
  let e = this.view.c;
5324
5324
  if (e != null && e.length > 0) {
5325
- let f = NativeUI.r;
5326
- let g = NativeUI.aa;
5327
- this.c7();
5325
+ let f = NativeUI.t;
5326
+ let g = NativeUI.ad;
5327
+ this.c9();
5328
5328
  f = runOn(this.view, this.view.aq);
5329
5329
  g = runOn(this.view, this.view.ar);
5330
5330
  for (let h = 0; h < e.length; h++) {
@@ -5335,10 +5335,10 @@ let XIcon = /*@__PURE__*/ (() => {
5335
5335
  g(e[h], this.dv);
5336
5336
  }
5337
5337
  if (!isNaN_(this.aq)) {
5338
- NativeUI.ad(e[h], this.aq);
5338
+ NativeUI.ag(e[h], this.aq);
5339
5339
  }
5340
5340
  if (this.dw != null) {
5341
- NativeUI.q(e[h], this.dw);
5341
+ NativeUI.r(e[h], this.dw);
5342
5342
  }
5343
5343
  if (this.e != null && this.e.count == e.length) {
5344
5344
  f(e[h], this.e.item(h));
@@ -5357,30 +5357,30 @@ let XIcon = /*@__PURE__*/ (() => {
5357
5357
  this.view.ax(this.svg);
5358
5358
  d = true;
5359
5359
  }
5360
- else if (this.b0 != null) {
5361
- this.view.at(this.b0);
5360
+ else if (this.b2 != null) {
5361
+ this.view.at(this.b2);
5362
5362
  }
5363
- else if (this.bh != null) {
5364
- this.view.aw(this.bh);
5363
+ else if (this.bj != null) {
5364
+ this.view.aw(this.bj);
5365
5365
  }
5366
5366
  else {
5367
5367
  }
5368
5368
  if (d) {
5369
5369
  for (let i = 0; i < this.view.r.count; i++) {
5370
5370
  let j = this.view.r._inner[i].c;
5371
- NativeUI.r(this.view.r._inner[i].d, j.l.f(this.d6));
5371
+ NativeUI.t(this.view.r._inner[i].d, j.l.f(this.d6));
5372
5372
  }
5373
5373
  for (let k = 0; k < this.view.s.count; k++) {
5374
5374
  let l = this.view.s._inner[k].c;
5375
- NativeUI.aa(this.view.s._inner[k].d, l.m.f(this.d7));
5375
+ NativeUI.ad(this.view.s._inner[k].d, l.m.f(this.d7));
5376
5376
  }
5377
5377
  for (let m = 0; m < this.view.t.count; m++) {
5378
5378
  let n = this.view.t._inner[m].c;
5379
- NativeUI.r(this.view.t._inner[m].d, n.l.f(this.d8));
5379
+ NativeUI.t(this.view.t._inner[m].d, n.l.f(this.d8));
5380
5380
  }
5381
5381
  for (let o = 0; o < this.view.u.count; o++) {
5382
5382
  let p = this.view.u._inner[o].c;
5383
- NativeUI.aa(this.view.u._inner[o].d, p.m.f(this.d9));
5383
+ NativeUI.ad(this.view.u._inner[o].d, p.m.f(this.d9));
5384
5384
  }
5385
5385
  for (let q = 0; q < this.view.e.o.count; q++) {
5386
5386
  let r = this.view.e.o._inner[q];
@@ -5389,7 +5389,7 @@ let XIcon = /*@__PURE__*/ (() => {
5389
5389
  if (t < this.e.count) {
5390
5390
  for (let u = 0; u < this.view.e.q._inner[q].count; u++) {
5391
5391
  let v = this.view.e.q._inner[q]._inner[u].c;
5392
- NativeUI.r(this.view.e.q._inner[q]._inner[u].d, v.l.f(this.e.item(t)));
5392
+ NativeUI.t(this.view.e.q._inner[q]._inner[u].d, v.l.f(this.e.item(t)));
5393
5393
  }
5394
5394
  }
5395
5395
  }
@@ -5400,35 +5400,35 @@ let XIcon = /*@__PURE__*/ (() => {
5400
5400
  if (z < this.f.count) {
5401
5401
  for (let aa = 0; aa < this.view.f.q._inner[w].count; aa++) {
5402
5402
  let ab = this.view.f.q._inner[w]._inner[aa].c;
5403
- NativeUI.aa(this.view.f.q._inner[w]._inner[aa].d, ab.m.f(this.f.item(z)));
5403
+ NativeUI.ad(this.view.f.q._inner[w]._inner[aa].d, ab.m.f(this.f.item(z)));
5404
5404
  }
5405
5405
  }
5406
5406
  }
5407
5407
  for (let ac = 0; ac < this.view.q.count; ac++) {
5408
5408
  let ad = this.view.q._inner[ac].c;
5409
- NativeUI.r(this.view.q._inner[ac].d, ad.l.f(this.du));
5410
- NativeUI.aa(this.view.q._inner[ac].d, ad.m.f(this.dv));
5409
+ NativeUI.t(this.view.q._inner[ac].d, ad.l.f(this.du));
5410
+ NativeUI.ad(this.view.q._inner[ac].d, ad.m.f(this.dv));
5411
5411
  }
5412
5412
  }
5413
5413
  let ae = this.view.aa;
5414
5414
  if (this.du != null) {
5415
- NativeUI.r(ae, this.du);
5415
+ NativeUI.t(ae, this.du);
5416
5416
  }
5417
5417
  if (this.dv != null) {
5418
- NativeUI.aa(ae, this.dv);
5418
+ NativeUI.ad(ae, this.dv);
5419
5419
  }
5420
5420
  if (!isNaN_(this.aq)) {
5421
- NativeUI.ad(ae, this.aq);
5421
+ NativeUI.ag(ae, this.aq);
5422
5422
  }
5423
5423
  }
5424
5424
  if (this.o != null) {
5425
5425
  this.view.a0(this.o);
5426
5426
  }
5427
5427
  if (this.dw != null) {
5428
- NativeUI.q(this.view.aa, this.dw);
5428
+ NativeUI.r(this.view.aa, this.dw);
5429
5429
  }
5430
5430
  }
5431
- c7() {
5431
+ c9() {
5432
5432
  if (this.du != null) {
5433
5433
  this.view.ap(this.du, "fill");
5434
5434
  }
@@ -5457,10 +5457,10 @@ let XIcon = /*@__PURE__*/ (() => {
5457
5457
  else if (this.svg != null) {
5458
5458
  a = 0;
5459
5459
  }
5460
- else if (this.b0 != null) {
5460
+ else if (this.b2 != null) {
5461
5461
  a = 3;
5462
5462
  }
5463
- else if (this.bh != null) {
5463
+ else if (this.bj != null) {
5464
5464
  a = 4;
5465
5465
  }
5466
5466
  return a;
@@ -5472,7 +5472,7 @@ let XIcon = /*@__PURE__*/ (() => {
5472
5472
  let b = this.l;
5473
5473
  this.l = a;
5474
5474
  if (b != this.l) {
5475
- this.c5("BaseTheme", enumGetBox(BaseControlTheme_$type, b), enumGetBox(BaseControlTheme_$type, a));
5475
+ this.c7("BaseTheme", enumGetBox(BaseControlTheme_$type, b), enumGetBox(BaseControlTheme_$type, a));
5476
5476
  }
5477
5477
  }
5478
5478
  get du() {
@@ -5482,7 +5482,7 @@ let XIcon = /*@__PURE__*/ (() => {
5482
5482
  let b = this.dg;
5483
5483
  this.dg = a;
5484
5484
  if (b != this.dg) {
5485
- this.c5("ActualFill", b, a);
5485
+ this.c7("ActualFill", b, a);
5486
5486
  }
5487
5487
  }
5488
5488
  get dv() {
@@ -5492,7 +5492,7 @@ let XIcon = /*@__PURE__*/ (() => {
5492
5492
  let b = this.dh;
5493
5493
  this.dh = a;
5494
5494
  if (b != this.dh) {
5495
- this.c5("ActualStroke", b, a);
5495
+ this.c7("ActualStroke", b, a);
5496
5496
  }
5497
5497
  }
5498
5498
  get dw() {
@@ -5502,7 +5502,7 @@ let XIcon = /*@__PURE__*/ (() => {
5502
5502
  let b = this.di;
5503
5503
  this.di = a;
5504
5504
  if (b != this.di) {
5505
- this.c5("ActualTextColor", b, a);
5505
+ this.c7("ActualTextColor", b, a);
5506
5506
  }
5507
5507
  }
5508
5508
  get aq() {
@@ -5512,7 +5512,7 @@ let XIcon = /*@__PURE__*/ (() => {
5512
5512
  let b = this.y;
5513
5513
  this.y = a;
5514
5514
  if (b != this.y) {
5515
- this.c5("ActualStrokeWidth", b, a);
5515
+ this.c7("ActualStrokeWidth", b, a);
5516
5516
  }
5517
5517
  }
5518
5518
  get fill() {
@@ -5522,7 +5522,7 @@ let XIcon = /*@__PURE__*/ (() => {
5522
5522
  let b = this.dj;
5523
5523
  this.dj = a;
5524
5524
  if (b != this.dj) {
5525
- this.c5("Fill", b, a);
5525
+ this.c7("Fill", b, a);
5526
5526
  }
5527
5527
  }
5528
5528
  get ea() {
@@ -5532,7 +5532,7 @@ let XIcon = /*@__PURE__*/ (() => {
5532
5532
  let b = this.ds;
5533
5533
  this.ds = a;
5534
5534
  if (b != this.ds) {
5535
- this.c5("Stroke", b, a);
5535
+ this.c7("Stroke", b, a);
5536
5536
  }
5537
5537
  }
5538
5538
  get a4() {
@@ -5542,7 +5542,7 @@ let XIcon = /*@__PURE__*/ (() => {
5542
5542
  let b = this.ak;
5543
5543
  this.ak = a;
5544
5544
  if (b != this.ak) {
5545
- this.c5("StrokeWidth", b, a);
5545
+ this.c7("StrokeWidth", b, a);
5546
5546
  }
5547
5547
  }
5548
5548
  get eb() {
@@ -5552,7 +5552,7 @@ let XIcon = /*@__PURE__*/ (() => {
5552
5552
  let b = this.dt;
5553
5553
  this.dt = a;
5554
5554
  if (b != this.dt) {
5555
- this.c5("TextColor", b, a);
5555
+ this.c7("TextColor", b, a);
5556
5556
  }
5557
5557
  }
5558
5558
  get d3() {
@@ -5562,7 +5562,7 @@ let XIcon = /*@__PURE__*/ (() => {
5562
5562
  let b = this.dk;
5563
5563
  this.dk = a;
5564
5564
  if (b != this.dk) {
5565
- this.c5("HoverFill", b, a);
5565
+ this.c7("HoverFill", b, a);
5566
5566
  }
5567
5567
  }
5568
5568
  get d4() {
@@ -5572,7 +5572,7 @@ let XIcon = /*@__PURE__*/ (() => {
5572
5572
  let b = this.dl;
5573
5573
  this.dl = a;
5574
5574
  if (b != this.dl) {
5575
- this.c5("HoverStroke", b, a);
5575
+ this.c7("HoverStroke", b, a);
5576
5576
  }
5577
5577
  }
5578
5578
  get a2() {
@@ -5582,7 +5582,7 @@ let XIcon = /*@__PURE__*/ (() => {
5582
5582
  let b = this.ae;
5583
5583
  this.ae = a;
5584
5584
  if (b != this.ae) {
5585
- this.c5("HoverStrokeThickness", b, a);
5585
+ this.c7("HoverStrokeThickness", b, a);
5586
5586
  }
5587
5587
  }
5588
5588
  get d5() {
@@ -5592,7 +5592,7 @@ let XIcon = /*@__PURE__*/ (() => {
5592
5592
  let b = this.dm;
5593
5593
  this.dm = a;
5594
5594
  if (b != this.dm) {
5595
- this.c5("HoverTextColor", b, a);
5595
+ this.c7("HoverTextColor", b, a);
5596
5596
  }
5597
5597
  }
5598
5598
  get e() {
@@ -5602,7 +5602,7 @@ let XIcon = /*@__PURE__*/ (() => {
5602
5602
  let b = this.c;
5603
5603
  this.c = a;
5604
5604
  if (b != this.c) {
5605
- this.c5("FillColors", b, this.c);
5605
+ this.c7("FillColors", b, this.c);
5606
5606
  }
5607
5607
  }
5608
5608
  get f() {
@@ -5612,7 +5612,7 @@ let XIcon = /*@__PURE__*/ (() => {
5612
5612
  let b = this.d;
5613
5613
  this.d = a;
5614
5614
  if (b != this.d) {
5615
- this.c5("StrokeColors", b, this.d);
5615
+ this.c7("StrokeColors", b, this.d);
5616
5616
  }
5617
5617
  }
5618
5618
  get d6() {
@@ -5622,7 +5622,7 @@ let XIcon = /*@__PURE__*/ (() => {
5622
5622
  let b = this.dn;
5623
5623
  this.dn = a;
5624
5624
  if (b != this.dn) {
5625
- this.c5("PrimaryFillColor", b, this.dn);
5625
+ this.c7("PrimaryFillColor", b, this.dn);
5626
5626
  }
5627
5627
  }
5628
5628
  get d7() {
@@ -5632,7 +5632,7 @@ let XIcon = /*@__PURE__*/ (() => {
5632
5632
  let b = this.dp;
5633
5633
  this.dp = a;
5634
5634
  if (b != this.dp) {
5635
- this.c5("PrimaryStrokeColor", b, this.dp);
5635
+ this.c7("PrimaryStrokeColor", b, this.dp);
5636
5636
  }
5637
5637
  }
5638
5638
  get d8() {
@@ -5642,7 +5642,7 @@ let XIcon = /*@__PURE__*/ (() => {
5642
5642
  let b = this.dq;
5643
5643
  this.dq = a;
5644
5644
  if (b != this.dq) {
5645
- this.c5("SecondaryFillColor", b, this.dq);
5645
+ this.c7("SecondaryFillColor", b, this.dq);
5646
5646
  }
5647
5647
  }
5648
5648
  get d9() {
@@ -5652,47 +5652,47 @@ let XIcon = /*@__PURE__*/ (() => {
5652
5652
  let b = this.dr;
5653
5653
  this.dr = a;
5654
5654
  if (b != this.dr) {
5655
- this.c5("SecondaryStrokeColor", b, this.dr);
5655
+ this.c7("SecondaryStrokeColor", b, this.dr);
5656
5656
  }
5657
5657
  }
5658
- get bh() {
5659
- return this.be;
5658
+ get bj() {
5659
+ return this.bf;
5660
5660
  }
5661
- set bh(a) {
5662
- let b = this.be;
5663
- this.be = a;
5664
- if (b != this.be) {
5665
- this.c5("Source", b, a);
5661
+ set bj(a) {
5662
+ let b = this.bf;
5663
+ this.bf = a;
5664
+ if (b != this.bf) {
5665
+ this.c7("Source", b, a);
5666
5666
  }
5667
5667
  }
5668
- get b0() {
5669
- return this.bj;
5668
+ get b2() {
5669
+ return this.bl;
5670
5670
  }
5671
- set b0(a) {
5672
- let b = this.bj;
5673
- this.bj = a;
5674
- if (b != this.bj) {
5675
- this.c5("DataURL", b, a);
5671
+ set b2(a) {
5672
+ let b = this.bl;
5673
+ this.bl = a;
5674
+ if (b != this.bl) {
5675
+ this.c7("DataURL", b, a);
5676
5676
  }
5677
5677
  }
5678
5678
  get svgPath() {
5679
- return this.bm;
5679
+ return this.bo;
5680
5680
  }
5681
5681
  set svgPath(a) {
5682
- let b = this.bm;
5683
- this.bm = a;
5684
- if (b != this.bm) {
5685
- this.c5("SVGPath", b, a);
5682
+ let b = this.bo;
5683
+ this.bo = a;
5684
+ if (b != this.bo) {
5685
+ this.c7("SVGPath", b, a);
5686
5686
  }
5687
5687
  }
5688
5688
  get svg() {
5689
- return this.bl;
5689
+ return this.bn;
5690
5690
  }
5691
5691
  set svg(a) {
5692
- let b = this.bl;
5693
- this.bl = a;
5694
- if (b != this.bl) {
5695
- this.c5("SVG", b, this.bl);
5692
+ let b = this.bn;
5693
+ this.bn = a;
5694
+ if (b != this.bn) {
5695
+ this.c7("SVG", b, this.bn);
5696
5696
  }
5697
5697
  }
5698
5698
  get b() {
@@ -5702,33 +5702,33 @@ let XIcon = /*@__PURE__*/ (() => {
5702
5702
  let b = this.a;
5703
5703
  this.a = a;
5704
5704
  if (b != this.a) {
5705
- this.c5("SVGPaths", b, this.a);
5706
- }
5707
- }
5708
- get df() {
5709
- return this.de;
5710
- }
5711
- set df(a) {
5712
- let b = this.de;
5713
- this.de = a;
5714
- if (b != this.de) {
5715
- this.c5("DataTemplate", b, this.de);
5705
+ this.c7("SVGPaths", b, this.a);
5716
5706
  }
5717
5707
  }
5718
- get bf() {
5708
+ get bg() {
5719
5709
  return this.bd;
5720
5710
  }
5721
- set bf(a) {
5711
+ set bg(a) {
5722
5712
  let b = this.bd;
5723
5713
  this.bd = a;
5724
5714
  if (b != this.bd) {
5725
- this.c5("DataTemplateContext", b, this.bd);
5715
+ this.c7("DataTemplate", b, this.bd);
5726
5716
  }
5727
5717
  }
5728
- c3() {
5718
+ get bh() {
5719
+ return this.be;
5720
+ }
5721
+ set bh(a) {
5722
+ let b = this.be;
5723
+ this.be = a;
5724
+ if (b != this.be) {
5725
+ this.c7("DataTemplateContext", b, this.be);
5726
+ }
5727
+ }
5728
+ c5() {
5729
5729
  this.v = true;
5730
5730
  }
5731
- c4() {
5731
+ c6() {
5732
5732
  this.v = false;
5733
5733
  }
5734
5734
  get o() {
@@ -5738,17 +5738,17 @@ let XIcon = /*@__PURE__*/ (() => {
5738
5738
  let b = this.n;
5739
5739
  this.n = a;
5740
5740
  if (b != this.n) {
5741
- this.c5("TextStyle", b, a);
5741
+ this.c7("TextStyle", b, a);
5742
5742
  }
5743
5743
  }
5744
- get ca() {
5745
- return this.bk;
5744
+ get cc() {
5745
+ return this.bm;
5746
5746
  }
5747
- set ca(a) {
5748
- let b = this.bk;
5749
- this.bk = a;
5750
- if (b != this.bk) {
5751
- this.c5("Id", b, a);
5747
+ set cc(a) {
5748
+ let b = this.bm;
5749
+ this.bm = a;
5750
+ if (b != this.bm) {
5751
+ this.c7("Id", b, a);
5752
5752
  }
5753
5753
  }
5754
5754
  get s() {
@@ -5762,17 +5762,17 @@ let XIcon = /*@__PURE__*/ (() => {
5762
5762
  this.ba = a;
5763
5763
  this.p = true;
5764
5764
  if (b != this.ba) {
5765
- this.c5("TabIndex", b, a);
5765
+ this.c7("TabIndex", b, a);
5766
5766
  }
5767
5767
  }
5768
- get bv() {
5769
- return this.bi;
5768
+ get bx() {
5769
+ return this.bk;
5770
5770
  }
5771
- set bv(a) {
5772
- let b = this.bi;
5773
- this.bi = a;
5774
- if (b != this.bi) {
5775
- this.c5("AriaLabel", b, a);
5771
+ set bx(a) {
5772
+ let b = this.bk;
5773
+ this.bk = a;
5774
+ if (b != this.bk) {
5775
+ this.c7("AriaLabel", b, a);
5776
5776
  }
5777
5777
  }
5778
5778
  get v() {
@@ -5782,7 +5782,7 @@ let XIcon = /*@__PURE__*/ (() => {
5782
5782
  let b = this.r;
5783
5783
  this.r = a;
5784
5784
  if (b != this.r) {
5785
- this.c5("IsHover", b, a);
5785
+ this.c7("IsHover", b, a);
5786
5786
  }
5787
5787
  }
5788
5788
  get disabled() {
@@ -5792,7 +5792,7 @@ let XIcon = /*@__PURE__*/ (() => {
5792
5792
  let b = this.q;
5793
5793
  this.q = a;
5794
5794
  if (b != this.q) {
5795
- this.c5("IsDisabled", b, a);
5795
+ this.c7("IsDisabled", b, a);
5796
5796
  }
5797
5797
  }
5798
5798
  get a3() {
@@ -5802,7 +5802,7 @@ let XIcon = /*@__PURE__*/ (() => {
5802
5802
  let b = this.af;
5803
5803
  this.af = a;
5804
5804
  if (b != this.af) {
5805
- this.c5("Opacity", b, this.af);
5805
+ this.c7("Opacity", b, this.af);
5806
5806
  }
5807
5807
  }
5808
5808
  get as() {
@@ -5812,7 +5812,7 @@ let XIcon = /*@__PURE__*/ (() => {
5812
5812
  let b = this.aa;
5813
5813
  this.aa = a;
5814
5814
  if (b != this.aa) {
5815
- this.c5("ActualViewBoxLeft", b, this.aa);
5815
+ this.c7("ActualViewBoxLeft", b, this.aa);
5816
5816
  }
5817
5817
  }
5818
5818
  get a6() {
@@ -5822,7 +5822,7 @@ let XIcon = /*@__PURE__*/ (() => {
5822
5822
  let b = this.am;
5823
5823
  this.am = a;
5824
5824
  if (b != this.am) {
5825
- this.c5("ViewBoxLeft", b, this.am);
5825
+ this.c7("ViewBoxLeft", b, this.am);
5826
5826
  }
5827
5827
  }
5828
5828
  get at() {
@@ -5832,7 +5832,7 @@ let XIcon = /*@__PURE__*/ (() => {
5832
5832
  let b = this.ab;
5833
5833
  this.ab = a;
5834
5834
  if (b != this.ab) {
5835
- this.c5("ActualViewBoxTop", b, this.ab);
5835
+ this.c7("ActualViewBoxTop", b, this.ab);
5836
5836
  }
5837
5837
  }
5838
5838
  get a7() {
@@ -5842,7 +5842,7 @@ let XIcon = /*@__PURE__*/ (() => {
5842
5842
  let b = this.an;
5843
5843
  this.an = a;
5844
5844
  if (b != this.an) {
5845
- this.c5("ViewBoxTop", b, this.an);
5845
+ this.c7("ViewBoxTop", b, this.an);
5846
5846
  }
5847
5847
  }
5848
5848
  get au() {
@@ -5852,7 +5852,7 @@ let XIcon = /*@__PURE__*/ (() => {
5852
5852
  let b = this.ac;
5853
5853
  this.ac = a;
5854
5854
  if (b != this.ac) {
5855
- this.c5("ActualViewBoxWidth", b, this.ac);
5855
+ this.c7("ActualViewBoxWidth", b, this.ac);
5856
5856
  }
5857
5857
  }
5858
5858
  get a8() {
@@ -5862,7 +5862,7 @@ let XIcon = /*@__PURE__*/ (() => {
5862
5862
  let b = this.ao;
5863
5863
  this.ao = a;
5864
5864
  if (b != this.ao) {
5865
- this.c5("ViewBoxWidth", b, this.ao);
5865
+ this.c7("ViewBoxWidth", b, this.ao);
5866
5866
  }
5867
5867
  }
5868
5868
  get ar() {
@@ -5872,7 +5872,7 @@ let XIcon = /*@__PURE__*/ (() => {
5872
5872
  let b = this.z;
5873
5873
  this.z = a;
5874
5874
  if (b != this.z) {
5875
- this.c5("ActualViewBoxHeight", b, this.z);
5875
+ this.c7("ActualViewBoxHeight", b, this.z);
5876
5876
  }
5877
5877
  }
5878
5878
  get a5() {
@@ -5882,7 +5882,7 @@ let XIcon = /*@__PURE__*/ (() => {
5882
5882
  let b = this.al;
5883
5883
  this.al = a;
5884
5884
  if (b != this.al) {
5885
- this.c5("ViewBoxHeight", b, this.al);
5885
+ this.c7("ViewBoxHeight", b, this.al);
5886
5886
  }
5887
5887
  }
5888
5888
  get a9() {
@@ -5892,7 +5892,7 @@ let XIcon = /*@__PURE__*/ (() => {
5892
5892
  let b = this.ap;
5893
5893
  this.ap = a;
5894
5894
  if (b != this.ap) {
5895
- this.c5("Width", b, this.ap);
5895
+ this.c7("Width", b, this.ap);
5896
5896
  }
5897
5897
  }
5898
5898
  get a1() {
@@ -5902,10 +5902,10 @@ let XIcon = /*@__PURE__*/ (() => {
5902
5902
  let b = this.ad;
5903
5903
  this.ad = a;
5904
5904
  if (b != this.ad) {
5905
- this.c5("Height", b, this.ad);
5905
+ this.c7("Height", b, this.ad);
5906
5906
  }
5907
5907
  }
5908
- c6() {
5908
+ c8() {
5909
5909
  }
5910
5910
  onDetachedFromUI() {
5911
5911
  this.view.am();
@@ -5927,10 +5927,10 @@ let XIcon = /*@__PURE__*/ (() => {
5927
5927
  w() {
5928
5928
  return this.view.l();
5929
5929
  }
5930
- bg() {
5930
+ bi() {
5931
5931
  return this.g();
5932
5932
  }
5933
- b2() {
5933
+ b4() {
5934
5934
  let a = this.g();
5935
5935
  return a.l();
5936
5936
  }
@@ -5945,7 +5945,7 @@ let XIcon = /*@__PURE__*/ (() => {
5945
5945
  a.a = this.view.a();
5946
5946
  a.svg = this.svg;
5947
5947
  a.svgPath = this.svgPath;
5948
- a.k = this.b0;
5948
+ a.k = this.b2;
5949
5949
  if (this.o != null) {
5950
5950
  let d = this.o;
5951
5951
  if (this.view != null && d.q == null) {
@@ -5979,7 +5979,7 @@ let XIcon = /*@__PURE__*/ (() => {
5979
5979
  provideContainer(a) {
5980
5980
  this.view.al(a);
5981
5981
  }
5982
- dd(a, b, c, d) {
5982
+ df(a, b, c, d) {
5983
5983
  this.ah = a;
5984
5984
  this.ai = b;
5985
5985
  this.aj = c;
@@ -8914,7 +8914,7 @@ let XCalendar = /*@__PURE__*/ (() => {
8914
8914
  m.d = n[1] - e;
8915
8915
  m.c = NativeUI.d(k._inner[l].parent());
8916
8916
  m.f = NativeUI.k(k._inner[l].parent());
8917
- m.b = AppearanceHelper.a(NativeUI.al(k._inner[l]));
8917
+ m.b = AppearanceHelper.a(NativeUI.ao(k._inner[l]));
8918
8918
  m.g = k._inner[l].getText();
8919
8919
  a.k.add(m);
8920
8920
  }
@@ -8927,8 +8927,8 @@ let XCalendar = /*@__PURE__*/ (() => {
8927
8927
  q.d = r[1] - e;
8928
8928
  q.c = NativeUI.d(o._inner[p].parent());
8929
8929
  q.f = NativeUI.k(o._inner[p].parent());
8930
- q.b = AppearanceHelper.a(NativeUI.al(o._inner[p]));
8931
- q.a = AppearanceHelper.a(NativeUI.ak(o._inner[p]));
8930
+ q.b = AppearanceHelper.a(NativeUI.ao(o._inner[p]));
8931
+ q.a = AppearanceHelper.a(NativeUI.an(o._inner[p]));
8932
8932
  q.g = o._inner[p].getText();
8933
8933
  a.l.add(q);
8934
8934
  }
@@ -12533,19 +12533,19 @@ let IgxXIconComponent = /*@__PURE__*/ (() => {
12533
12533
  * Gets or sets the image source for the icon. Used if none of the other icon types are not used.
12534
12534
  */
12535
12535
  get source() {
12536
- return this.i.bh;
12536
+ return this.i.bj;
12537
12537
  }
12538
12538
  set source(v) {
12539
- this.i.bh = v;
12539
+ this.i.bj = v;
12540
12540
  }
12541
12541
  /**
12542
12542
  * Gets or sets data url for the icon to use.
12543
12543
  */
12544
12544
  get dataURL() {
12545
- return this.i.b0;
12545
+ return this.i.b2;
12546
12546
  }
12547
12547
  set dataURL(v) {
12548
- this.i.b0 = v;
12548
+ this.i.b2 = v;
12549
12549
  }
12550
12550
  /**
12551
12551
  * Gets or sets path data for the icon to use.
@@ -12596,10 +12596,10 @@ let IgxXIconComponent = /*@__PURE__*/ (() => {
12596
12596
  * Gets or sets the id to use for the checkbox.
12597
12597
  */
12598
12598
  get id() {
12599
- return this.i.ca;
12599
+ return this.i.cc;
12600
12600
  }
12601
12601
  set id(v) {
12602
- this.i.ca = v;
12602
+ this.i.cc = v;
12603
12603
  }
12604
12604
  /**
12605
12605
  * Gets or sets TabIndex to use for the checkbox.
@@ -12614,10 +12614,10 @@ let IgxXIconComponent = /*@__PURE__*/ (() => {
12614
12614
  * Gets or sets the value of the aria-label attribute.
12615
12615
  */
12616
12616
  get ariaLabel() {
12617
- return this.i.bv;
12617
+ return this.i.bx;
12618
12618
  }
12619
12619
  set ariaLabel(v) {
12620
- this.i.bv = v;
12620
+ this.i.bx = v;
12621
12621
  }
12622
12622
  /**
12623
12623
  * Gets or sets whether the icon is hovered.
@@ -12805,7 +12805,7 @@ let IgxXIconComponent = /*@__PURE__*/ (() => {
12805
12805
 
12806
12806
  */
12807
12807
  exportVisualModel() {
12808
- let iv = this.i.bg();
12808
+ let iv = this.i.bi();
12809
12809
  return (iv);
12810
12810
  }
12811
12811
  /**
@@ -12813,7 +12813,7 @@ let IgxXIconComponent = /*@__PURE__*/ (() => {
12813
12813
 
12814
12814
  */
12815
12815
  exportSerializedVisualModel() {
12816
- let iv = this.i.b2();
12816
+ let iv = this.i.b4();
12817
12817
  return (iv);
12818
12818
  }
12819
12819
  _runInZone(act) {
@@ -13995,7 +13995,7 @@ let InputGroupView = /*@__PURE__*/ (() => {
13995
13995
  g.setStyleProperty("height", "2px");
13996
13996
  g.setStyleProperty("display", "block");
13997
13997
  g.setStyleProperty("pointer-events", "none");
13998
- NativeUI.af(g, ((() => {
13998
+ NativeUI.ai(g, ((() => {
13999
13999
  let $ret = new ScaleTransform();
14000
14000
  $ret.l = 0.5;
14001
14001
  $ret.m = 1;
@@ -14171,7 +14171,7 @@ let SuffixView = /*@__PURE__*/ (() => {
14171
14171
  $ret.m = 1;
14172
14172
  return $ret;
14173
14173
  })()));
14174
- NativeUI.af(this.h.rootWrapper, b);
14174
+ NativeUI.ai(this.h.rootWrapper, b);
14175
14175
  this.h.rootWrapper.setStyleProperty("transform-origin", "0px 0px");
14176
14176
  }
14177
14177
  g() {
@@ -14271,7 +14271,7 @@ let PrefixView = /*@__PURE__*/ (() => {
14271
14271
  $ret.m = 1;
14272
14272
  return $ret;
14273
14273
  })()));
14274
- NativeUI.af(this.h.rootWrapper, b);
14274
+ NativeUI.ai(this.h.rootWrapper, b);
14275
14275
  this.h.rootWrapper.setStyleProperty("transform-origin", "0px 0px");
14276
14276
  }
14277
14277
  g() {
@@ -14368,7 +14368,7 @@ let LabelView = /*@__PURE__*/ (() => {
14368
14368
  c.setStyleProperty("overflow", "hidden");
14369
14369
  c.setStyleProperty("height", "1.125rem");
14370
14370
  c.setStyleProperty("backface-visibility", "hidden");
14371
- NativeUI.q(this.m.rootWrapper, this.c.c3);
14371
+ NativeUI.r(this.m.rootWrapper, this.c.c3);
14372
14372
  c.setStyleProperty("outline-style", "none");
14373
14373
  c.setStyleProperty("box-shadow", "none");
14374
14374
  c.setStyleProperty("font-family", "Verdana");
@@ -14394,7 +14394,7 @@ let LabelView = /*@__PURE__*/ (() => {
14394
14394
  $ret.m = 1;
14395
14395
  return $ret;
14396
14396
  })()));
14397
- NativeUI.af(this.m.rootWrapper, a);
14397
+ NativeUI.ai(this.m.rootWrapper, a);
14398
14398
  this.n.setStyleProperty("height", "1.125rem");
14399
14399
  this.m.rootWrapper.setStyleProperty("position", "absolute");
14400
14400
  this.m.rootWrapper.setStyleProperty("transform-origin", "0px 0px");
@@ -14565,7 +14565,7 @@ let LabelView = /*@__PURE__*/ (() => {
14565
14565
  }
14566
14566
  }
14567
14567
  ah(a) {
14568
- NativeUI.q(this.n, a);
14568
+ NativeUI.r(this.n, a);
14569
14569
  }
14570
14570
  e() {
14571
14571
  return ((() => {
@@ -14643,7 +14643,7 @@ let InputView = /*@__PURE__*/ (() => {
14643
14643
  c.setStyleProperty("background-attachment", "initial");
14644
14644
  c.setStyleProperty("background-origin", "initial");
14645
14645
  c.setStyleProperty("background-color", "transparent");
14646
- NativeUI.q(c, this.c.d4);
14646
+ NativeUI.r(c, this.c.d4);
14647
14647
  c.setStyleProperty("outline-style", "none");
14648
14648
  c.setStyleProperty("box-shadow", "none");
14649
14649
  c.setStyleProperty("border-top", "0.1875rem solid transparent");
@@ -14774,7 +14774,7 @@ let InputView = /*@__PURE__*/ (() => {
14774
14774
  $ret.m = 1;
14775
14775
  return $ret;
14776
14776
  })()));
14777
- NativeUI.af(this.m.rootWrapper, b);
14777
+ NativeUI.ai(this.m.rootWrapper, b);
14778
14778
  this.m.rootWrapper.setStyleProperty("transform-origin", "0px 0px");
14779
14779
  }
14780
14780
  l() {
@@ -15792,7 +15792,7 @@ let XInputGroup = /*@__PURE__*/ (() => {
15792
15792
  this.jv();
15793
15793
  break;
15794
15794
  case "IsDisabled":
15795
- NativeUI.u(this.view.v, !this.disabled);
15795
+ NativeUI.w(this.view.v, !this.disabled);
15796
15796
  break;
15797
15797
  }
15798
15798
  }
@@ -15975,44 +15975,44 @@ let XInputGroup = /*@__PURE__*/ (() => {
15975
15975
  let e = this.v != null && this.v.playState == 1;
15976
15976
  let f = this.w != null && this.w.playState == 1;
15977
15977
  let g = this.u != null && this.u.playState == 1;
15978
- NativeUI.o(a, this.ko);
15979
- NativeUI.o(b, this.ko);
15980
- NativeUI.m(a, this.l5);
15981
- NativeUI.z(a, this.oe);
15978
+ NativeUI.p(a, this.ko);
15979
+ NativeUI.p(b, this.ko);
15980
+ NativeUI.n(a, this.l5);
15981
+ NativeUI.ac(a, this.oe);
15982
15982
  if (this.ao) {
15983
15983
  if (!g) {
15984
- NativeUI.n(b, this.l7);
15985
- NativeUI.p(b, new Thickness(0, this.ch));
15984
+ NativeUI.o(b, this.l7);
15985
+ NativeUI.q(b, new Thickness(0, this.ch));
15986
15986
  }
15987
15987
  if (!f) {
15988
- NativeUI.m(c, this.l8);
15988
+ NativeUI.n(c, this.l8);
15989
15989
  }
15990
15990
  }
15991
15991
  else {
15992
15992
  if (!f) {
15993
15993
  if (this.ap) {
15994
- NativeUI.m(c, this.l9);
15995
- NativeUI.y(c, this.ck);
15996
- NativeUI.t(c, this.cl);
15994
+ NativeUI.n(c, this.l9);
15995
+ NativeUI.ab(c, this.ck);
15996
+ NativeUI.v(c, this.cl);
15997
15997
  }
15998
15998
  else {
15999
- NativeUI.m(c, this.ma);
16000
- NativeUI.y(c, this.cm);
16001
- NativeUI.t(c, this.cp);
15999
+ NativeUI.n(c, this.ma);
16000
+ NativeUI.ab(c, this.cm);
16001
+ NativeUI.v(c, this.cp);
16002
16002
  }
16003
16003
  }
16004
16004
  if (!g) {
16005
- NativeUI.n(b, this.l6);
16006
- NativeUI.p(b, new Thickness(0, this.cg));
16005
+ NativeUI.o(b, this.l6);
16006
+ NativeUI.q(b, new Thickness(0, this.cg));
16007
16007
  }
16008
16008
  if (!f) {
16009
- NativeUI.m(a, this.l5);
16009
+ NativeUI.n(a, this.l5);
16010
16010
  }
16011
16011
  }
16012
16012
  if (!e) {
16013
- NativeUI.m(d, this.mb);
16014
- NativeUI.t(d, this.co);
16015
- NativeUI.y(d, this.cn);
16013
+ NativeUI.n(d, this.mb);
16014
+ NativeUI.v(d, this.co);
16015
+ NativeUI.ab(d, this.cn);
16016
16016
  }
16017
16017
  }
16018
16018
  get a() {
@@ -18642,7 +18642,7 @@ let XLabel = /*@__PURE__*/ (() => {
18642
18642
  a.c = this.p;
18643
18643
  a.e = this.t;
18644
18644
  a.d = this.s;
18645
- a.a = AppearanceHelper.a(NativeUI.al(b));
18645
+ a.a = AppearanceHelper.a(NativeUI.ao(b));
18646
18646
  a.b = this.l;
18647
18647
  a.i = this.ap;
18648
18648
  a.g = this.an;
@@ -18956,7 +18956,7 @@ let XInput = /*@__PURE__*/ (() => {
18956
18956
  if (this.ad != null) {
18957
18957
  this.view.bc(this.ad);
18958
18958
  }
18959
- NativeUI.q(this.view.r, this.d4);
18959
+ NativeUI.r(this.view.r, this.d4);
18960
18960
  this.view.a7();
18961
18961
  }
18962
18962
  get d4() {
@@ -19326,7 +19326,7 @@ let XInput = /*@__PURE__*/ (() => {
19326
19326
  a.l = this.ce;
19327
19327
  a.o = this.ci;
19328
19328
  a.d = this.au;
19329
- a.a = AppearanceHelper.a(NativeUI.al(b));
19329
+ a.a = AppearanceHelper.a(NativeUI.ao(b));
19330
19330
  a.k = this.b8;
19331
19331
  a.n = this.cg;
19332
19332
  a.e = this.aw;
@@ -25729,7 +25729,8 @@ let XComponentBridge = /*@__PURE__*/ (() => {
25729
25729
  case 15:
25730
25730
  case 17:
25731
25731
  case 7:
25732
- case 21: return b;
25732
+ case 21:
25733
+ case 1: return b;
25733
25734
  }
25734
25735
  return this.s != null ? this.s : b;
25735
25736
  }
@@ -25741,7 +25742,8 @@ let XComponentBridge = /*@__PURE__*/ (() => {
25741
25742
  }
25742
25743
  getTargetForBuildInProperty(a, b) {
25743
25744
  switch (b) {
25744
- case 108: return a;
25745
+ case 109:
25746
+ case 122: return a;
25745
25747
  }
25746
25748
  return this.s != null ? this.s : a;
25747
25749
  }
@@ -26000,18 +26002,18 @@ let XInputBridge = /*@__PURE__*/ (() => {
26000
26002
  let c = a;
26001
26003
  let d = typeCast(XInput.$, c.inputs._inner[0]);
26002
26004
  switch (b) {
26003
- case 103: return a.mc;
26005
+ case 104: return a.mc;
26004
26006
  case 3:
26005
26007
  this.an(a);
26006
26008
  let e = this.v(a);
26007
26009
  return e.text;
26008
- case 100:
26010
+ case 101:
26009
26011
  this.ao(a);
26010
26012
  return this.u.svgPath;
26011
- case 101:
26013
+ case 102:
26012
26014
  this.ao(a);
26013
26015
  return this.u.fill;
26014
- case 102:
26016
+ case 103:
26015
26017
  this.ao(a);
26016
26018
  return this.u.ea;
26017
26019
  case 2: return d.cq;
@@ -26047,11 +26049,11 @@ let XInputBridge = /*@__PURE__*/ (() => {
26047
26049
  }
26048
26050
  break;
26049
26051
  case 21: return d.a1;
26050
- case 32: return d.disabled;
26051
- case 33: return d.d8;
26052
- case 105: return d.selectionStart;
26053
- case 106: return d.selectionEnd;
26054
- case 107: return c.an;
26052
+ case 33: return d.disabled;
26053
+ case 34: return d.d8;
26054
+ case 106: return d.selectionStart;
26055
+ case 107: return d.selectionEnd;
26056
+ case 108: return c.an;
26055
26057
  }
26056
26058
  return null;
26057
26059
  }
@@ -26059,7 +26061,7 @@ let XInputBridge = /*@__PURE__*/ (() => {
26059
26061
  let d = a;
26060
26062
  let e = typeCast(XInput.$, d.inputs._inner[0]);
26061
26063
  switch (b) {
26062
- case 103:
26064
+ case 104:
26063
26065
  a.mc = c;
26064
26066
  break;
26065
26067
  case 3:
@@ -26067,15 +26069,15 @@ let XInputBridge = /*@__PURE__*/ (() => {
26067
26069
  let f = this.v(a);
26068
26070
  f.text = c;
26069
26071
  break;
26070
- case 100:
26072
+ case 101:
26071
26073
  this.ao(a);
26072
26074
  this.u.svgPath = c;
26073
26075
  break;
26074
- case 101:
26076
+ case 102:
26075
26077
  this.ao(a);
26076
26078
  this.u.fill = c;
26077
26079
  break;
26078
- case 102:
26080
+ case 103:
26079
26081
  this.ao(a);
26080
26082
  this.u.ea = c;
26081
26083
  break;
@@ -26146,19 +26148,19 @@ let XInputBridge = /*@__PURE__*/ (() => {
26146
26148
  case 21:
26147
26149
  e.a1 = c;
26148
26150
  break;
26149
- case 32:
26151
+ case 33:
26150
26152
  e.disabled = c;
26151
26153
  break;
26152
- case 33:
26154
+ case 34:
26153
26155
  e.d8 = c;
26154
26156
  break;
26155
- case 105:
26157
+ case 106:
26156
26158
  e.selectionStart = typeGetValue(c);
26157
26159
  break;
26158
- case 106:
26160
+ case 107:
26159
26161
  e.selectionEnd = typeGetValue(c);
26160
26162
  break;
26161
- case 107:
26163
+ case 108:
26162
26164
  d.an = c;
26163
26165
  break;
26164
26166
  }
@@ -26325,7 +26327,7 @@ let XButtonBridge = /*@__PURE__*/ (() => {
26325
26327
  d.clearButtonContent();
26326
26328
  if (typeCast(NativeUIComponent.$, c) !== null) {
26327
26329
  this.ac = c;
26328
- d.appendButtonContent(this.ac.an);
26330
+ d.appendButtonContent(this.ac.ao);
26329
26331
  }
26330
26332
  else {
26331
26333
  this.ac = c;
@@ -26356,10 +26358,10 @@ let XButtonBridge = /*@__PURE__*/ (() => {
26356
26358
  case 18:
26357
26359
  d.o = EnumUtil.getEnumValue(BaseControlTheme_$type, c);
26358
26360
  break;
26359
- case 54:
26361
+ case 55:
26360
26362
  if (typeCast(NativeUIComponent.$, c) !== null) {
26361
26363
  this.aa = c;
26362
- d.appendButtonContent(this.aa.an);
26364
+ d.appendButtonContent(this.aa.ao);
26363
26365
  }
26364
26366
  break;
26365
26367
  case 0:
@@ -26384,7 +26386,7 @@ let XButtonBridge = /*@__PURE__*/ (() => {
26384
26386
  case 4:
26385
26387
  d.ax = c;
26386
26388
  break;
26387
- case 32:
26389
+ case 33:
26388
26390
  d.disabled = c;
26389
26391
  break;
26390
26392
  case 5:
@@ -26396,19 +26398,19 @@ let XButtonBridge = /*@__PURE__*/ (() => {
26396
26398
  case 24:
26397
26399
  d.ql = c;
26398
26400
  break;
26399
- case 55:
26401
+ case 56:
26400
26402
  d.bn = c.left;
26401
26403
  d.bp = c.top;
26402
26404
  d.bo = c.right;
26403
26405
  d.bm = c.bottom;
26404
26406
  break;
26405
- case 57:
26407
+ case 58:
26406
26408
  d.az = c;
26407
26409
  break;
26408
- case 56:
26410
+ case 57:
26409
26411
  d.aw = c;
26410
26412
  break;
26411
- case 58:
26413
+ case 59:
26412
26414
  d.au = c;
26413
26415
  break;
26414
26416
  case 17:
@@ -26417,13 +26419,13 @@ let XButtonBridge = /*@__PURE__*/ (() => {
26417
26419
  case 11:
26418
26420
  d.ab = c;
26419
26421
  break;
26420
- case 88:
26422
+ case 89:
26421
26423
  d.bz = c;
26422
26424
  break;
26423
- case 59:
26425
+ case 60:
26424
26426
  d.a6 = c;
26425
26427
  break;
26426
- case 118:
26428
+ case 119:
26427
26429
  d.n7 = c;
26428
26430
  break;
26429
26431
  case 23:
@@ -26435,7 +26437,7 @@ let XButtonBridge = /*@__PURE__*/ (() => {
26435
26437
  let c = a;
26436
26438
  switch (b) {
26437
26439
  case 3: return this.ac;
26438
- case 54: return this.aa;
26440
+ case 55: return this.aa;
26439
26441
  case 1:
26440
26442
  switch (c.s) {
26441
26443
  case 0: return enumGetBox(NativeUIDisplayDensity_$type, 0);
@@ -26456,18 +26458,18 @@ let XButtonBridge = /*@__PURE__*/ (() => {
26456
26458
  }
26457
26459
  return enumGetBox(NativeUIButtonDisplayType_$type, 0);
26458
26460
  case 4: return c.ax;
26459
- case 32: return c.disabled;
26461
+ case 33: return c.disabled;
26460
26462
  case 5: return c.av;
26461
26463
  case 6: return !c.a3;
26462
26464
  case 24: return c.ql;
26463
- case 55: return new Thickness(1, c.bn, c.bp, c.bo, c.bm);
26464
- case 57: return c.az;
26465
- case 56: return c.aw;
26466
- case 58: return c.au;
26465
+ case 56: return new Thickness(1, c.bn, c.bp, c.bo, c.bm);
26466
+ case 58: return c.az;
26467
+ case 57: return c.aw;
26468
+ case 59: return c.au;
26467
26469
  case 17: return c.k6;
26468
- case 88: return c.bz;
26469
- case 59: return c.a6;
26470
- case 118: return c.n7;
26470
+ case 89: return c.bz;
26471
+ case 60: return c.a6;
26472
+ case 119: return c.n7;
26471
26473
  case 23: return c.n6;
26472
26474
  }
26473
26475
  return null;
@@ -27536,7 +27538,7 @@ let MultiSliderView = /*@__PURE__*/ (() => {
27536
27538
  this.m = true;
27537
27539
  this.ap();
27538
27540
  if (this.a != null) {
27539
- this.a.au(this.u.rootWrapper, "");
27541
+ this.a.av(this.u.rootWrapper, "");
27540
27542
  }
27541
27543
  if (this.z == -1) {
27542
27544
  this.z = this.u.setTimeout(runOn(this, this.an), 200);
@@ -27545,7 +27547,7 @@ let MultiSliderView = /*@__PURE__*/ (() => {
27545
27547
  au() {
27546
27548
  this.m = false;
27547
27549
  if (this.a != null && this.u != null) {
27548
- this.a.bi(this.u.rootWrapper, "");
27550
+ this.a.bk(this.u.rootWrapper, "");
27549
27551
  }
27550
27552
  if (this.z != -1) {
27551
27553
  window.clearTimeout(this.z);
@@ -27588,8 +27590,8 @@ let MultiSliderView = /*@__PURE__*/ (() => {
27588
27590
  this.w = truncate(Math.round(d));
27589
27591
  }
27590
27592
  if (this.l.d && this.t != 1) {
27591
- this.l.aa();
27592
- this.l.ab(this.t, this.t);
27593
+ this.l.ac();
27594
+ this.l.ad(this.t, this.t);
27593
27595
  }
27594
27596
  this.l.l(this.g.e0.left, this.g.e0.top, this.g.e0.width, this.g.e0.height);
27595
27597
  for (let e = 0; e < this.r.count; e++) {
@@ -27611,29 +27613,29 @@ let MultiSliderView = /*@__PURE__*/ (() => {
27611
27613
  this.a1(this.r._inner[i].allPaths);
27612
27614
  }
27613
27615
  if (this.l.d && this.t != 1) {
27614
- this.l.z();
27616
+ this.l.ab();
27615
27617
  }
27616
27618
  }
27617
27619
  a2(a) {
27618
27620
  if (a.j != null) {
27619
- this.l.aa();
27621
+ this.l.ac();
27620
27622
  }
27621
27623
  this.l.k(a.j);
27622
- this.l.x(a);
27624
+ this.l.y(a);
27623
27625
  if (a.j != null) {
27624
- this.l.z();
27626
+ this.l.ab();
27625
27627
  }
27626
27628
  }
27627
27629
  a1(a) {
27628
27630
  for (let b = 0; b < a.count; b++) {
27629
27631
  let c = a.item(b);
27630
27632
  if (c.j != null) {
27631
- this.l.aa();
27633
+ this.l.ac();
27632
27634
  }
27633
27635
  this.l.k(c.j);
27634
27636
  this.l.t(c);
27635
27637
  if (c.j != null) {
27636
- this.l.z();
27638
+ this.l.ab();
27637
27639
  }
27638
27640
  }
27639
27641
  }
@@ -27705,17 +27707,17 @@ let MultiSliderView = /*@__PURE__*/ (() => {
27705
27707
  this.v = i;
27706
27708
  let j = this.u.get2DCanvasContext(this.v);
27707
27709
  this.l = new RenderingContext(new CanvasViewRenderer(), j);
27708
- this.l.af(this.j);
27710
+ this.l.ah(this.j);
27709
27711
  this.ab();
27710
27712
  this.a = new CanvasGestureDOMEventProxy(this.u.rootWrapper, this.u, false);
27711
- this.a.bm = this.g.e0;
27713
+ this.a.bo = this.g.e0;
27712
27714
  let k = this.a;
27713
27715
  k.onContactStarted = delegateCombine(k.onContactStarted, runOn(this, this.aj));
27714
27716
  let l = this.a;
27715
27717
  l.onContactMoved = delegateCombine(l.onContactMoved, runOn(this, this.ai));
27716
27718
  let m = this.a;
27717
27719
  m.onContactCompleted = delegateCombine(m.onContactCompleted, runOn(this, this.ah));
27718
- this.a.ap = (n) => this.g.ey.containsPoint(n);
27720
+ this.a.aq = (n) => this.g.ey.containsPoint(n);
27719
27721
  this.g.ds(0, 0, e, f);
27720
27722
  this.s = FontUtil.getCurrentFontHeight(this.u, this.j);
27721
27723
  this.g.trackDirty();
@@ -27738,8 +27740,8 @@ let MultiSliderView = /*@__PURE__*/ (() => {
27738
27740
  b.onContactMoved = delegateRemove(b.onContactMoved, runOn(this, this.ai));
27739
27741
  let c = this.a;
27740
27742
  c.onContactCompleted = delegateRemove(c.onContactCompleted, runOn(this, this.ah));
27741
- this.a.ap = null;
27742
- this.a.aw();
27743
+ this.a.aq = null;
27744
+ this.a.ax();
27743
27745
  }
27744
27746
  }
27745
27747
  ay() {
@@ -27758,7 +27760,7 @@ let MultiSliderView = /*@__PURE__*/ (() => {
27758
27760
  if (a || d) {
27759
27761
  this.g.ds(0, 0, b, c);
27760
27762
  if (this.a != null) {
27761
- this.a.bm = this.g.e0;
27763
+ this.a.bo = this.g.e0;
27762
27764
  }
27763
27765
  }
27764
27766
  }
@@ -27780,7 +27782,7 @@ let MultiSliderView = /*@__PURE__*/ (() => {
27780
27782
  this.i = c;
27781
27783
  this.j = this.i;
27782
27784
  this.s = FontUtil.getCurrentFontHeight(this.u, this.j);
27783
- this.l.af(this.i);
27785
+ this.l.ah(this.i);
27784
27786
  this.g.trackDirty();
27785
27787
  }
27786
27788
  }
@@ -29319,15 +29321,15 @@ let MultiSliderBridge = /*@__PURE__*/ (() => {
29319
29321
  switch (b) {
29320
29322
  case 12: return a.bg;
29321
29323
  case 13: return a.bf;
29322
- case 97: return a.bv;
29323
- case 98: return a.bf;
29324
+ case 98: return a.bv;
29325
+ case 99: return a.bf;
29324
29326
  case 14: return a.bl;
29325
29327
  case 2: return a.thumbs._inner[0].s;
29326
- case 92: return a.b0;
29327
- case 93: return a.ek;
29328
- case 94: return a.es;
29329
- case 96: return a.eu;
29330
- case 95: return a.et;
29328
+ case 93: return a.b0;
29329
+ case 94: return a.ek;
29330
+ case 95: return a.es;
29331
+ case 97: return a.eu;
29332
+ case 96: return a.et;
29331
29333
  case 30:
29332
29334
  let c = a.e;
29333
29335
  switch (c) {
@@ -29367,10 +29369,10 @@ let MultiSliderBridge = /*@__PURE__*/ (() => {
29367
29369
  case 13:
29368
29370
  a.bf = c;
29369
29371
  break;
29370
- case 97:
29372
+ case 98:
29371
29373
  a.bv = c;
29372
29374
  break;
29373
- case 98:
29375
+ case 99:
29374
29376
  a.bu = c;
29375
29377
  break;
29376
29378
  case 14:
@@ -29379,19 +29381,19 @@ let MultiSliderBridge = /*@__PURE__*/ (() => {
29379
29381
  case 2:
29380
29382
  a.thumbs._inner[0].s = c;
29381
29383
  break;
29382
- case 92:
29384
+ case 93:
29383
29385
  a.b0 = c;
29384
29386
  break;
29385
- case 93:
29387
+ case 94:
29386
29388
  a.ek = c;
29387
29389
  break;
29388
- case 94:
29390
+ case 95:
29389
29391
  a.es = c;
29390
29392
  break;
29391
- case 96:
29393
+ case 97:
29392
29394
  a.eu = c;
29393
29395
  break;
29394
- case 95:
29396
+ case 96:
29395
29397
  a.et = c;
29396
29398
  break;
29397
29399
  case 30:
@@ -30953,17 +30955,17 @@ let XButtonGroupBridge = /*@__PURE__*/ (() => {
30953
30955
  }
30954
30956
  return enumGetBox(NativeUIDisplayDensity_$type, e);
30955
30957
  case 18: return enumGetBox(BaseControlTheme_$type, c.q);
30956
- case 87: return c.d;
30958
+ case 88: return c.d;
30957
30959
  case 0:
30958
30960
  switch (c.i) {
30959
30961
  case 0: return enumGetBox(NativeUIButtonGroupDisplayType_$type, 0);
30960
30962
  case 1: return enumGetBox(NativeUIButtonGroupDisplayType_$type, 1);
30961
30963
  }
30962
30964
  return enumGetBox(NativeUIButtonDisplayType_$type, 0);
30963
- case 32: return c.disabled;
30965
+ case 33: return c.disabled;
30964
30966
  case 24: return c.ht;
30965
30967
  case 17: return c.a2;
30966
- case 119: return c.hp;
30968
+ case 120: return c.hp;
30967
30969
  }
30968
30970
  return null;
30969
30971
  }
@@ -30994,7 +30996,7 @@ let XButtonGroupBridge = /*@__PURE__*/ (() => {
30994
30996
  case 18:
30995
30997
  d.q = EnumUtil.getEnumValue(BaseControlTheme_$type, c);
30996
30998
  break;
30997
- case 87:
30999
+ case 88:
30998
31000
  d.d = c;
30999
31001
  break;
31000
31002
  case 0:
@@ -31007,7 +31009,7 @@ let XButtonGroupBridge = /*@__PURE__*/ (() => {
31007
31009
  break;
31008
31010
  }
31009
31011
  break;
31010
- case 32:
31012
+ case 33:
31011
31013
  d.disabled = c;
31012
31014
  break;
31013
31015
  case 24:
@@ -31016,7 +31018,7 @@ let XButtonGroupBridge = /*@__PURE__*/ (() => {
31016
31018
  case 17:
31017
31019
  d.a2 = c.e;
31018
31020
  break;
31019
- case 119:
31021
+ case 120:
31020
31022
  d.hp = c;
31021
31023
  break;
31022
31024
  }
@@ -31033,7 +31035,7 @@ let XButtonGroupBridge = /*@__PURE__*/ (() => {
31033
31035
  addButton(a, b) {
31034
31036
  this.v.add(b);
31035
31037
  a.buttons.add(b.d.getMethodTarget(null));
31036
- a.appendContentChild(b.an);
31038
+ a.appendContentChild(b.ao);
31037
31039
  }
31038
31040
  updateButton(a, b, c) {
31039
31041
  this.v._inner[b] = c;
@@ -31042,7 +31044,7 @@ let XButtonGroupBridge = /*@__PURE__*/ (() => {
31042
31044
  insertButton(a, b, c) {
31043
31045
  this.v.insert(b, c);
31044
31046
  a.buttons.insert(b, c.d.getMethodTarget(null));
31045
- a.appendContentChild(c.an);
31047
+ a.appendContentChild(c.ao);
31046
31048
  }
31047
31049
  removeButton(a, b) {
31048
31050
  this.v.removeAt(b);
@@ -31645,18 +31647,18 @@ let XCheckbox = /*@__PURE__*/ (() => {
31645
31647
  if (a == null || b == null) {
31646
31648
  return;
31647
31649
  }
31648
- NativeUI.o(a, new CornerRadius(0, this.ao));
31649
- NativeUI.o(b, new CornerRadius(0, this.ao));
31650
+ NativeUI.p(a, new CornerRadius(0, this.ao));
31651
+ NativeUI.p(b, new CornerRadius(0, this.ao));
31650
31652
  if (!isNaN_(this.an)) {
31651
- NativeUI.p(b, new Thickness(0, this.an));
31653
+ NativeUI.q(b, new Thickness(0, this.an));
31652
31654
  }
31653
31655
  if (this.checked) {
31654
- NativeUI.m(a, this.c8);
31655
- NativeUI.n(b, this.c9);
31656
+ NativeUI.n(a, this.c8);
31657
+ NativeUI.o(b, this.c9);
31656
31658
  }
31657
31659
  else {
31658
- NativeUI.m(a, this.db);
31659
- NativeUI.n(b, this.dc);
31660
+ NativeUI.n(a, this.db);
31661
+ NativeUI.o(b, this.dc);
31660
31662
  }
31661
31663
  }
31662
31664
  cw() {
@@ -31664,8 +31666,8 @@ let XCheckbox = /*@__PURE__*/ (() => {
31664
31666
  if (a == null) {
31665
31667
  return;
31666
31668
  }
31667
- NativeUI.aa(a, this.da);
31668
- NativeUI.ad(a, this.ap);
31669
+ NativeUI.ad(a, this.da);
31670
+ NativeUI.ag(a, this.ap);
31669
31671
  }
31670
31672
  get dl() {
31671
31673
  return this.c6;
@@ -32079,7 +32081,7 @@ let XCheckbox = /*@__PURE__*/ (() => {
32079
32081
  this.view.al(BrushUtil.u(this.c8, 0.6), BrushUtil.u(this.dc, 0.1));
32080
32082
  }
32081
32083
  if (!this.indeterminate) {
32082
- NativeUI.af(this.view.v, null);
32084
+ NativeUI.ai(this.view.v, null);
32083
32085
  }
32084
32086
  if (this.z || this.indeterminate || a) {
32085
32087
  let d = this.view.u;
@@ -32098,23 +32100,23 @@ let XCheckbox = /*@__PURE__*/ (() => {
32098
32100
  $ret.j = -this.view.l();
32099
32101
  return $ret;
32100
32102
  })()));
32101
- NativeUI.m(d, this.c8);
32102
- NativeUI.n(e, this.c9);
32103
- NativeUI.y(f, 1);
32104
- NativeUI.ac(f, 41);
32105
- NativeUI.af(f, g);
32103
+ NativeUI.n(d, this.c8);
32104
+ NativeUI.o(e, this.c9);
32105
+ NativeUI.ab(f, 1);
32106
+ NativeUI.af(f, 41);
32107
+ NativeUI.ai(f, g);
32106
32108
  }
32107
32109
  else if (b) {
32108
- NativeUI.m(d, this.c8);
32109
- NativeUI.n(e, this.c9);
32110
- NativeUI.y(f, 1);
32111
- NativeUI.ac(f, 0);
32110
+ NativeUI.n(d, this.c8);
32111
+ NativeUI.o(e, this.c9);
32112
+ NativeUI.ab(f, 1);
32113
+ NativeUI.af(f, 0);
32112
32114
  }
32113
32115
  else {
32114
- NativeUI.m(d, this.db);
32115
- NativeUI.n(e, this.dc);
32116
- NativeUI.y(f, 0);
32117
- NativeUI.ac(f, 24);
32116
+ NativeUI.n(d, this.db);
32117
+ NativeUI.o(e, this.dc);
32118
+ NativeUI.ab(f, 0);
32119
+ NativeUI.af(f, 24);
32118
32120
  }
32119
32121
  if (this.o.playState == 1) {
32120
32122
  this.o.cancel();
@@ -32332,10 +32334,10 @@ let XCheckboxBridge = /*@__PURE__*/ (() => {
32332
32334
  case 7: return c.checked;
32333
32335
  case 18: return enumGetBox(BaseControlTheme_$type, c.n);
32334
32336
  case 17: return c.ar;
32335
- case 66: return c.dl;
32336
- case 68: return c.dm;
32337
- case 67: return c.dd;
32338
- case 69: return c.de;
32337
+ case 67: return c.dl;
32338
+ case 69: return c.dm;
32339
+ case 68: return c.dd;
32340
+ case 70: return c.de;
32339
32341
  }
32340
32342
  return null;
32341
32343
  }
@@ -32354,16 +32356,16 @@ let XCheckboxBridge = /*@__PURE__*/ (() => {
32354
32356
  case 17:
32355
32357
  d.ar = c;
32356
32358
  break;
32357
- case 66:
32359
+ case 67:
32358
32360
  d.dl = c;
32359
32361
  break;
32360
- case 68:
32362
+ case 69:
32361
32363
  d.dm = c;
32362
32364
  break;
32363
- case 67:
32365
+ case 68:
32364
32366
  d.dd = c;
32365
32367
  break;
32366
- case 69:
32368
+ case 70:
32367
32369
  d.de = c;
32368
32370
  break;
32369
32371
  }
@@ -32399,15 +32401,15 @@ let XIconBridge = /*@__PURE__*/ (() => {
32399
32401
  case 16: return this.v;
32400
32402
  case 15: return this.u;
32401
32403
  case 18: return enumGetBox(BaseControlTheme_$type, c.m);
32402
- case 44: return c.a6;
32403
- case 45: return c.a7;
32404
- case 46: return c.a8;
32405
- case 47: return c.a5;
32406
- case 48: return c.a9;
32407
- case 49: return c.a1;
32408
- case 63: return c.e;
32409
- case 64: return c.f;
32410
- case 65: return c.a4;
32404
+ case 45: return c.a6;
32405
+ case 46: return c.a7;
32406
+ case 47: return c.a8;
32407
+ case 48: return c.a5;
32408
+ case 49: return c.a9;
32409
+ case 50: return c.a1;
32410
+ case 64: return c.e;
32411
+ case 65: return c.f;
32412
+ case 66: return c.a4;
32411
32413
  }
32412
32414
  return super.getValue(a, b);
32413
32415
  }
@@ -32427,31 +32429,31 @@ let XIconBridge = /*@__PURE__*/ (() => {
32427
32429
  this.w(d);
32428
32430
  }
32429
32431
  break;
32430
- case 44:
32432
+ case 45:
32431
32433
  d.a6 = c;
32432
32434
  break;
32433
- case 45:
32435
+ case 46:
32434
32436
  d.a7 = c;
32435
32437
  break;
32436
- case 46:
32438
+ case 47:
32437
32439
  d.a8 = c;
32438
32440
  break;
32439
- case 47:
32441
+ case 48:
32440
32442
  d.a5 = c;
32441
32443
  break;
32442
- case 48:
32444
+ case 49:
32443
32445
  d.a9 = c;
32444
32446
  break;
32445
- case 49:
32447
+ case 50:
32446
32448
  d.a1 = c;
32447
32449
  break;
32448
- case 63:
32450
+ case 64:
32449
32451
  d.e = c;
32450
32452
  break;
32451
- case 64:
32453
+ case 65:
32452
32454
  d.f = c;
32453
32455
  break;
32454
- case 65:
32456
+ case 66:
32455
32457
  d.a4 = c;
32456
32458
  break;
32457
32459
  }
@@ -32466,8 +32468,8 @@ let XIconBridge = /*@__PURE__*/ (() => {
32466
32468
  a.svg = null;
32467
32469
  a.svgPath = null;
32468
32470
  a.b = null;
32469
- a.b0 = null;
32470
- a.bh = null;
32471
+ a.b2 = null;
32472
+ a.bj = null;
32471
32473
  let b = SvgIconRegistry.instance.getSvgPathString(this.u, this.v);
32472
32474
  if (b != null) {
32473
32475
  if (stringStartsWith(trimStart(b, ' ', '\n', '\r', '\t'), "<svg")) {
@@ -32485,16 +32487,16 @@ let XIconBridge = /*@__PURE__*/ (() => {
32485
32487
  }
32486
32488
  let d = SvgIconRegistry.instance.getDataURLString(this.u, this.v);
32487
32489
  if (d != null) {
32488
- a.b0 = d;
32490
+ a.b2 = d;
32489
32491
  return;
32490
32492
  }
32491
32493
  let e = SvgIconRegistry.instance.getIconSource(this.u, this.v);
32492
32494
  if (e != null) {
32493
- a.bh = e;
32495
+ a.bj = e;
32494
32496
  }
32495
32497
  }
32496
32498
  exportVisualData(a) {
32497
- let b = a.bg();
32499
+ let b = a.bi();
32498
32500
  return b;
32499
32501
  }
32500
32502
  }
@@ -32660,28 +32662,28 @@ let XPopupBridge = /*@__PURE__*/ (() => {
32660
32662
  let c = a;
32661
32663
  switch (b) {
32662
32664
  case 22: return c.ax;
32663
- case 60: return c.av;
32664
- case 61: return c.aq;
32665
+ case 61: return c.av;
32666
+ case 62: return c.aq;
32665
32667
  case 25: return c.am;
32666
32668
  case 26: return c.a9;
32667
32669
  case 17: return c.a1;
32668
32670
  case 23: return c.c0;
32669
- case 35: switch (c.p) {
32671
+ case 36: switch (c.p) {
32670
32672
  case 1: return enumGetBox(NativeUIPopupAnimationType_$type, 1);
32671
32673
  default: return enumGetBox(NativeUIPopupAnimationType_$type, 0);
32672
32674
  }
32673
- case 36: return c.at;
32674
- case 37: return c.as;
32675
- case 40: return c.bb;
32676
- case 41: return c.au;
32677
- case 43: switch (c.v) {
32675
+ case 37: return c.at;
32676
+ case 38: return c.as;
32677
+ case 41: return c.bb;
32678
+ case 42: return c.au;
32679
+ case 44: switch (c.v) {
32678
32680
  case 1: return enumGetBox(NativeUIPopupPointerPosition_$type, 1);
32679
32681
  default: return enumGetBox(NativeUIPopupPointerPosition_$type, 2);
32680
32682
  }
32681
- case 42: return c.c4;
32682
- case 39: return c.ao;
32683
- case 62: return c.a4;
32684
- case 110: return c.ay;
32683
+ case 43: return c.c4;
32684
+ case 40: return c.ao;
32685
+ case 63: return c.a4;
32686
+ case 111: return c.ay;
32685
32687
  }
32686
32688
  return super.getValue(a, b);
32687
32689
  }
@@ -32700,7 +32702,7 @@ let XPopupBridge = /*@__PURE__*/ (() => {
32700
32702
  case 23:
32701
32703
  d.c0 = c;
32702
32704
  break;
32703
- case 35:
32705
+ case 36:
32704
32706
  switch (EnumUtil.getEnumValue(NativeUIPopupAnimationType_$type, c)) {
32705
32707
  case 1:
32706
32708
  d.p = 1;
@@ -32710,22 +32712,22 @@ let XPopupBridge = /*@__PURE__*/ (() => {
32710
32712
  break;
32711
32713
  }
32712
32714
  break;
32713
- case 36:
32715
+ case 37:
32714
32716
  d.at = c;
32715
32717
  break;
32716
- case 37:
32718
+ case 38:
32717
32719
  d.as = c;
32718
32720
  break;
32719
- case 40:
32721
+ case 41:
32720
32722
  d.bb = typeGetValue(c);
32721
32723
  break;
32722
- case 41:
32724
+ case 42:
32723
32725
  d.au = c;
32724
32726
  break;
32725
- case 42:
32727
+ case 43:
32726
32728
  d.c4 = c;
32727
32729
  break;
32728
- case 43:
32730
+ case 44:
32729
32731
  switch (EnumUtil.getEnumValue(NativeUIPopupPointerPosition_$type, c)) {
32730
32732
  case 1:
32731
32733
  d.v = 1;
@@ -32735,13 +32737,13 @@ let XPopupBridge = /*@__PURE__*/ (() => {
32735
32737
  break;
32736
32738
  }
32737
32739
  break;
32738
- case 39:
32740
+ case 40:
32739
32741
  d.ao = c;
32740
32742
  break;
32741
- case 62:
32743
+ case 63:
32742
32744
  d.a4 = c;
32743
32745
  break;
32744
- case 110:
32746
+ case 111:
32745
32747
  d.ay = c;
32746
32748
  break;
32747
32749
  }
@@ -32751,7 +32753,7 @@ let XPopupBridge = /*@__PURE__*/ (() => {
32751
32753
  a.showRelativeToExclusionRect(b, this.v(c), this.u(d));
32752
32754
  }
32753
32755
  showRelativeToTarget(a, b, c, d) {
32754
- let e = b.an.getNativeElement();
32756
+ let e = b.ao.getNativeElement();
32755
32757
  a.cr(e, this.v(c), this.u(d));
32756
32758
  }
32757
32759
  close(a) {
@@ -32783,17 +32785,17 @@ let XPopupBridge = /*@__PURE__*/ (() => {
32783
32785
  }
32784
32786
  }
32785
32787
  exportVisualData(a) {
32786
- return a.bg();
32788
+ return a.bi();
32787
32789
  }
32788
32790
  addChild(a, b) {
32789
32791
  this.ae.add(b);
32790
32792
  let c = a;
32791
- c.appendPopupContent(b.an);
32793
+ c.appendPopupContent(b.ao);
32792
32794
  }
32793
32795
  insertChild(a, b, c) {
32794
32796
  this.ae.add(c);
32795
32797
  let d = a;
32796
- d.appendPopupContent(c.an);
32798
+ d.appendPopupContent(c.ao);
32797
32799
  }
32798
32800
  getChildAt(a, b) {
32799
32801
  return this.ae._inner[b];
@@ -32803,12 +32805,12 @@ let XPopupBridge = /*@__PURE__*/ (() => {
32803
32805
  }
32804
32806
  removeChild(a, b) {
32805
32807
  let c = a;
32806
- c.removePopupContent(b.an);
32808
+ c.removePopupContent(b.ao);
32807
32809
  this.ae.remove(b);
32808
32810
  }
32809
32811
  removeChildAt(a, b) {
32810
32812
  let c = a;
32811
- c.removePopupContent(this.ae._inner[b].an);
32813
+ c.removePopupContent(this.ae._inner[b].ao);
32812
32814
  this.ae.removeAt(b);
32813
32815
  }
32814
32816
  }
@@ -32958,7 +32960,7 @@ let NativeUIXInputsFactory = /*@__PURE__*/ (() => {
32958
32960
  return NativeUIXInputsFactory.a;
32959
32961
  }
32960
32962
  static m() {
32961
- NativeUIComponent.as(NativeUIXInputsFactory.b);
32963
+ NativeUIComponent.at(NativeUIXInputsFactory.b);
32962
32964
  }
32963
32965
  get flavor() {
32964
32966
  return this.c;
@@ -33028,7 +33030,7 @@ let NativeUIXInputsFactory = /*@__PURE__*/ (() => {
33028
33030
  f.inputs.add(j);
33029
33031
  let l = new XInputBridge(f);
33030
33032
  let m = new NativeUIInput();
33031
- m.an = d;
33033
+ m.ao = d;
33032
33034
  m.d = l;
33033
33035
  b(m);
33034
33036
  }
@@ -33042,7 +33044,7 @@ let NativeUIXInputsFactory = /*@__PURE__*/ (() => {
33042
33044
  let g = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
33043
33045
  let h = new XButtonBridge(f);
33044
33046
  let i = new NativeUIButton();
33045
- i.an = d;
33047
+ i.ao = d;
33046
33048
  i.d = h;
33047
33049
  b(i);
33048
33050
  }
@@ -33057,7 +33059,7 @@ let NativeUIXInputsFactory = /*@__PURE__*/ (() => {
33057
33059
  let h = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
33058
33060
  let i = new MultiSliderBridge(f);
33059
33061
  let j = new NativeUISlider();
33060
- j.an = d;
33062
+ j.ao = d;
33061
33063
  j.d = i;
33062
33064
  b(j);
33063
33065
  }
@@ -33070,7 +33072,7 @@ let NativeUIXInputsFactory = /*@__PURE__*/ (() => {
33070
33072
  let g = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
33071
33073
  let h = new XButtonGroupBridge(f);
33072
33074
  let i = new NativeUIButtonGroup();
33073
- i.an = d;
33075
+ i.ao = d;
33074
33076
  i.d = h;
33075
33077
  b(i);
33076
33078
  }
@@ -33083,7 +33085,7 @@ let NativeUIXInputsFactory = /*@__PURE__*/ (() => {
33083
33085
  let g = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
33084
33086
  let h = new ColorEditorBridge(f);
33085
33087
  let i = new NativeUIColorEditor();
33086
- i.an = d;
33088
+ i.ao = d;
33087
33089
  i.d = h;
33088
33090
  b(i);
33089
33091
  }
@@ -33096,7 +33098,7 @@ let NativeUIXInputsFactory = /*@__PURE__*/ (() => {
33096
33098
  let g = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
33097
33099
  let h = new XCheckboxBridge(f);
33098
33100
  let i = new NativeUICheckbox();
33099
- i.an = d;
33101
+ i.ao = d;
33100
33102
  i.d = h;
33101
33103
  b(i);
33102
33104
  }
@@ -33109,7 +33111,7 @@ let NativeUIXInputsFactory = /*@__PURE__*/ (() => {
33109
33111
  let g = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
33110
33112
  let h = new XIconBridge(f);
33111
33113
  let i = new NativeUIIcon();
33112
- i.an = d;
33114
+ i.ao = d;
33113
33115
  i.d = h;
33114
33116
  let j = c.createElement("div");
33115
33117
  let k = c.getSubRenderer(j);
@@ -33120,9 +33122,9 @@ let NativeUIXInputsFactory = /*@__PURE__*/ (() => {
33120
33122
  let m = k.getExternal(l, k.rootWrapper, k.getExternal(l, null, null));
33121
33123
  let n = new XButtonBridge(l);
33122
33124
  let o = new NativeUIButton();
33123
- o.an = j;
33125
+ o.ao = j;
33124
33126
  o.d = n;
33125
- o.bo = i;
33127
+ o.bp = i;
33126
33128
  b(o);
33127
33129
  }
33128
33130
  h(a, b) {
@@ -33134,7 +33136,7 @@ let NativeUIXInputsFactory = /*@__PURE__*/ (() => {
33134
33136
  let g = e.getExternal(f, e.rootWrapper, e.getExternal(f, null, null));
33135
33137
  let h = new XIconBridge(f);
33136
33138
  let i = new NativeUIIcon();
33137
- i.an = d;
33139
+ i.ao = d;
33138
33140
  i.d = h;
33139
33141
  b(i);
33140
33142
  }
@@ -33146,7 +33148,7 @@ let NativeUIXInputsFactory = /*@__PURE__*/ (() => {
33146
33148
  f.provideRenderer(e);
33147
33149
  let g = new XPopupBridge(f);
33148
33150
  let h = new NativeUIPopup();
33149
- h.an = d;
33151
+ h.ao = d;
33150
33152
  h.d = g;
33151
33153
  b(h);
33152
33154
  }
@@ -33339,7 +33341,7 @@ let ColorEditorPanelView = /*@__PURE__*/ (() => {
33339
33341
  bf(a) {
33340
33342
  }
33341
33343
  a8(a) {
33342
- this.aa.append(this.aa.getWrapper(a.an));
33344
+ this.aa.append(this.aa.getWrapper(a.ao));
33343
33345
  }
33344
33346
  be(a, b, c, d, e, f, g) {
33345
33347
  let h = truncate(Math.round(f * this.a.ab));
@@ -33362,8 +33364,8 @@ let ColorEditorPanelView = /*@__PURE__*/ (() => {
33362
33364
  };
33363
33365
  }
33364
33366
  ba(a) {
33365
- if (this.ae == null || a.ao == null) {
33366
- a.ao = "image";
33367
+ if (this.ae == null || a.ap == null) {
33368
+ a.ap = "image";
33367
33369
  let b = this.aa.createElement("canvas");
33368
33370
  this.ae = b;
33369
33371
  let c = this.be(this.ae, this.m, this.l, this.au, this.at, 148, 148);
@@ -33373,7 +33375,7 @@ let ColorEditorPanelView = /*@__PURE__*/ (() => {
33373
33375
  this.at = c.p4;
33374
33376
  this.ae.setStyleProperty("justify-self", "center");
33375
33377
  this.ae.setStyleProperty("align-self", "center");
33376
- let d = a.an;
33378
+ let d = a.ao;
33377
33379
  d.append(this.ae);
33378
33380
  this.bm(this.a.ad());
33379
33381
  }
@@ -33407,8 +33409,8 @@ let ColorEditorPanelView = /*@__PURE__*/ (() => {
33407
33409
  }
33408
33410
  }
33409
33411
  a9(a) {
33410
- if (this.ad == null || a.ao == null) {
33411
- a.ao = "image";
33412
+ if (this.ad == null || a.ap == null) {
33413
+ a.ap = "image";
33412
33414
  let b = this.aa.createElement("canvas");
33413
33415
  this.ad = b;
33414
33416
  let c = this.be(this.ad, this.j, this.h, this.as, this.ar, 248, 19);
@@ -33418,7 +33420,7 @@ let ColorEditorPanelView = /*@__PURE__*/ (() => {
33418
33420
  this.ar = c.p4;
33419
33421
  this.ad.setStyleProperty("justify-self", "center");
33420
33422
  this.ad.setStyleProperty("align-self", "center");
33421
- let d = a.an;
33423
+ let d = a.ao;
33422
33424
  d.append(this.ad);
33423
33425
  this.bl(0);
33424
33426
  }
@@ -33452,9 +33454,9 @@ let ColorEditorPanelView = /*@__PURE__*/ (() => {
33452
33454
  }
33453
33455
  }
33454
33456
  bb(a) {
33455
- let b = a.an;
33457
+ let b = a.ao;
33456
33458
  if (b.getChildCount() == 1) {
33457
- a.ao = "image";
33459
+ a.ap = "image";
33458
33460
  let c = this.aa.createElement("canvas");
33459
33461
  this.ah = c;
33460
33462
  let d = this.be(this.ah, this.t, this.p, this.aw, this.av, 85, 148);
@@ -33476,8 +33478,8 @@ let ColorEditorPanelView = /*@__PURE__*/ (() => {
33476
33478
  }
33477
33479
  }
33478
33480
  bc(a) {
33479
- if (this.ai == null || a.ao == null) {
33480
- a.ao = "image";
33481
+ if (this.ai == null || a.ap == null) {
33482
+ a.ap = "image";
33481
33483
  let b = this.aa.createElement("canvas");
33482
33484
  this.ai = b;
33483
33485
  let c = this.be(this.ai, this.z, this.v, this.aw, this.av, 25, 148);
@@ -33487,7 +33489,7 @@ let ColorEditorPanelView = /*@__PURE__*/ (() => {
33487
33489
  this.av = c.p4;
33488
33490
  this.ai.setStyleProperty("justify-self", "center");
33489
33491
  this.ai.setStyleProperty("align-self", "center");
33490
- let d = a.an;
33492
+ let d = a.ao;
33491
33493
  d.append(this.ai);
33492
33494
  this.bo(0, 1, 0.5);
33493
33495
  }
@@ -33570,18 +33572,19 @@ let ColorEditorView = /*@__PURE__*/ (() => {
33570
33572
  constructor() {
33571
33573
  super();
33572
33574
  this.a = null;
33573
- this.h = null;
33575
+ this.i = null;
33574
33576
  this.d = null;
33575
33577
  this.g = new List$1(Delegate_$type, 0);
33576
33578
  this.e = true;
33579
+ this._createColorEditorPanel = null;
33577
33580
  this.b = null;
33578
33581
  }
33579
- q() {
33582
+ r() {
33580
33583
  }
33581
33584
  f() {
33582
33585
  return true;
33583
33586
  }
33584
- o(a) {
33587
+ p(a) {
33585
33588
  if (a == null) {
33586
33589
  for (let b of fromEnum(this.g)) {
33587
33590
  b();
@@ -33592,45 +33595,57 @@ let ColorEditorView = /*@__PURE__*/ (() => {
33592
33595
  if (this.a.a == null) {
33593
33596
  this.a.a = new DOMExecutionContext(a);
33594
33597
  }
33595
- this.h = a;
33598
+ this.i = a;
33596
33599
  this.a.bj();
33597
33600
  }
33598
- m() {
33601
+ n() {
33599
33602
  if (KeyFrameAnimationFactory.h == null) {
33600
- KeyFrameAnimationFactory.h = this.h;
33603
+ KeyFrameAnimationFactory.h = this.i;
33601
33604
  }
33602
33605
  }
33603
- n() {
33606
+ o() {
33604
33607
  this.e = true;
33605
33608
  }
33606
- p() {
33609
+ q() {
33607
33610
  this.e = false;
33608
33611
  }
33609
- j() {
33610
- return this.h;
33612
+ k() {
33613
+ return this.i;
33611
33614
  }
33612
- i() {
33613
- let a = new ColorEditorPanel();
33614
- this.b = a;
33615
- let b = this.h.createElement("div");
33616
- let c = this.h.getSubRenderer(b);
33617
- a.provideContainer(c);
33618
- let d = this.h.getExternal(a, null, null);
33619
- return b;
33615
+ get createColorEditorPanel() {
33616
+ return this._createColorEditorPanel;
33620
33617
  }
33621
- k(a, b) {
33622
- let c = a.an;
33623
- c.append(this.h.getWrapper(b));
33618
+ set createColorEditorPanel(a) {
33619
+ this._createColorEditorPanel = a;
33624
33620
  }
33625
- l(a) {
33626
- this.h.append(this.h.getWrapper(a.an));
33621
+ j() {
33622
+ if (this.createColorEditorPanel != null) {
33623
+ let a = this.createColorEditorPanel();
33624
+ let b = this.i.getWrapper(a);
33625
+ this.b = (a.i);
33626
+ return a;
33627
+ }
33628
+ let c = new ColorEditorPanel();
33629
+ this.b = c;
33630
+ let d = this.i.createElement("div");
33631
+ let e = this.i.getSubRenderer(d);
33632
+ c.provideContainer(e);
33633
+ let f = this.i.getExternal(c, null, null);
33634
+ return d;
33635
+ }
33636
+ l(a, b) {
33637
+ let c = a.ao;
33638
+ c.append(this.i.getWrapper(b));
33639
+ }
33640
+ m(a) {
33641
+ this.i.append(this.i.getWrapper(a.ao));
33627
33642
  }
33628
33643
  c(a) {
33629
33644
  return this.b;
33630
33645
  }
33631
- r(a) {
33632
- if (this.h != null) {
33633
- let b = this.h.rootWrapper.getNativeElement();
33646
+ s(a) {
33647
+ if (this.i != null) {
33648
+ let b = this.i.rootWrapper.getNativeElement();
33634
33649
  let c = (b.getBoundingClientRect());
33635
33650
  if (a) {
33636
33651
  c = new Rect(0, c.left + window.pageXOffset, c.top + window.pageYOffset, c.width, c.height);
@@ -33639,7 +33654,7 @@ let ColorEditorView = /*@__PURE__*/ (() => {
33639
33654
  }
33640
33655
  return null;
33641
33656
  }
33642
- s() {
33657
+ t() {
33643
33658
  return new Size(1, NaN, NaN);
33644
33659
  }
33645
33660
  }
@@ -33653,7 +33668,7 @@ let ColorEditor = /*@__PURE__*/ (() => {
33653
33668
  class ColorEditor extends Base {
33654
33669
  constructor() {
33655
33670
  super();
33656
- this.h = null;
33671
+ this._view = null;
33657
33672
  this.s = null;
33658
33673
  this.r = null;
33659
33674
  this.e = null;
@@ -33691,14 +33706,20 @@ let ColorEditor = /*@__PURE__*/ (() => {
33691
33706
  NativeUIXInputsFactory.m();
33692
33707
  let a = new ColorEditorView();
33693
33708
  a.a = this;
33694
- this.h = a;
33695
- this.h.q();
33709
+ this.view = a;
33710
+ this.view.r();
33711
+ }
33712
+ get view() {
33713
+ return this._view;
33714
+ }
33715
+ set view(a) {
33716
+ this._view = a;
33696
33717
  }
33697
33718
  onAttachedToUI() {
33698
- this.h.n();
33719
+ this.view.o();
33699
33720
  }
33700
33721
  onDetachedFromUI() {
33701
- this.h.p();
33722
+ this.view.q();
33702
33723
  }
33703
33724
  b4(a, b) {
33704
33725
  if (this.valueChanging != null) {
@@ -33718,11 +33739,11 @@ let ColorEditor = /*@__PURE__*/ (() => {
33718
33739
  this.provideContainer(null);
33719
33740
  }
33720
33741
  provideContainer(a) {
33721
- this.h.o(a);
33742
+ this.view.p(a);
33722
33743
  }
33723
33744
  get u() {
33724
33745
  if (this.t == null) {
33725
- this.t = new SRProvider(this.h.h);
33746
+ this.t = new SRProvider(this.view.i);
33726
33747
  this.t.cb("ColorEditor");
33727
33748
  }
33728
33749
  return this.t;
@@ -33921,7 +33942,7 @@ let ColorEditor = /*@__PURE__*/ (() => {
33921
33942
  break;
33922
33943
  case "Label":
33923
33944
  if (this.r != null) {
33924
- this.r.b5 = this.a2;
33945
+ this.r.b6 = this.a2;
33925
33946
  }
33926
33947
  break;
33927
33948
  case "TextStyle":
@@ -33929,7 +33950,7 @@ let ColorEditor = /*@__PURE__*/ (() => {
33929
33950
  break;
33930
33951
  case "ShowClearButton":
33931
33952
  if (this.r != null) {
33932
- if (this.r.b7 != "") {
33953
+ if (this.r.b8 != "") {
33933
33954
  }
33934
33955
  }
33935
33956
  break;
@@ -33941,14 +33962,14 @@ let ColorEditor = /*@__PURE__*/ (() => {
33941
33962
  break;
33942
33963
  case "AllowTextInput":
33943
33964
  if (this.r != null) {
33944
- this.r.b0 = this.am();
33965
+ this.r.b1 = this.am();
33945
33966
  }
33946
33967
  break;
33947
33968
  case "OpenOnFocus": break;
33948
33969
  case "IsDisabled":
33949
33970
  {
33950
33971
  if (this.r != null) {
33951
- this.r.b0 = this.am();
33972
+ this.r.b1 = this.am();
33952
33973
  }
33953
33974
  }
33954
33975
  break;
@@ -33959,7 +33980,7 @@ let ColorEditor = /*@__PURE__*/ (() => {
33959
33980
  }
33960
33981
  cj() {
33961
33982
  if (this.r != null) {
33962
- this.r.ce = this.cr;
33983
+ this.r.cf = this.cr;
33963
33984
  }
33964
33985
  }
33965
33986
  ch() {
@@ -33968,7 +33989,7 @@ let ColorEditor = /*@__PURE__*/ (() => {
33968
33989
  }
33969
33990
  ci() {
33970
33991
  if (this.n != null) {
33971
- this.r.bk = this.n;
33992
+ this.r.bl = this.n;
33972
33993
  }
33973
33994
  }
33974
33995
  bh() {
@@ -33976,7 +33997,7 @@ let ColorEditor = /*@__PURE__*/ (() => {
33976
33997
  return;
33977
33998
  }
33978
33999
  if (this.r != null) {
33979
- this.r.b7 = "";
34000
+ this.r.b8 = "";
33980
34001
  }
33981
34002
  this.value = BrushUtil.l(0, 0, 0, 0);
33982
34003
  this.e.ax();
@@ -33989,8 +34010,8 @@ let ColorEditor = /*@__PURE__*/ (() => {
33989
34010
  this.aa = false;
33990
34011
  }
33991
34012
  br() {
33992
- NativeUIWindow.h(15, runOn(this, this.b7), this.h.h);
33993
- NativeUIWindow.h(9, runOn(this, this.b6), this.h.h);
34013
+ NativeUIWindow.h(15, runOn(this, this.b7), this.view.i);
34014
+ NativeUIWindow.h(9, runOn(this, this.b6), this.view.i);
33994
34015
  }
33995
34016
  bv() {
33996
34017
  NativeUIWindow.i(15, runOn(this, this.b7));
@@ -33999,45 +34020,45 @@ let ColorEditor = /*@__PURE__*/ (() => {
33999
34020
  b6(a) {
34000
34021
  let b = a;
34001
34022
  if (this.r != null) {
34002
- if (this.s.b6 && !this.s.t(b.b) && !this.r.t(b.b)) {
34023
+ if (this.s.b7 && !this.s.t(b.b) && !this.r.t(b.b)) {
34003
34024
  this.bi();
34004
34025
  }
34005
34026
  }
34006
34027
  }
34007
34028
  b7(a) {
34008
34029
  if (this.r != null) {
34009
- let b = this.r.be();
34010
- this.s.ce(b);
34030
+ let b = this.r.bf();
34031
+ this.s.cf(b);
34011
34032
  }
34012
34033
  }
34013
34034
  bj() {
34014
- NativeUIComponent.av(this.h.j(), [12, 2, 7, 0], [2, 2, 2, 2], (a) => {
34035
+ NativeUIComponent.aw(this.view.k(), [12, 2, 7, 0], [2, 2, 2, 2], (a) => {
34015
34036
  let b = a[0];
34016
34037
  let c = a[1];
34017
34038
  let d = a[2];
34018
34039
  let e = a[3];
34019
- let f = this.h.i();
34020
- this.h.k(e, f);
34021
- b.bn(d);
34022
- d.bn(e);
34023
- this.h.l(c);
34024
- b.ch = BrushUtil.l(255, 255, 255, 255);
34025
- b.ca = 150;
34026
- b.b8 = 8;
34027
- b.cb = 4;
34028
- b.b1 = true;
34040
+ let f = this.view.j();
34041
+ this.view.l(e, f);
34042
+ b.bo(d);
34043
+ d.bo(e);
34044
+ this.view.m(c);
34045
+ b.ci = BrushUtil.l(255, 255, 255, 255);
34046
+ b.cb = 150;
34047
+ b.b9 = 8;
34048
+ b.cc = 4;
34049
+ b.b2 = true;
34029
34050
  this.r = c;
34030
34051
  this.r.c = this.j;
34031
- this.r.bp = this.l;
34032
- this.r.b6 = ColorEditor.a8;
34033
- this.r.cc = BrushUtil.l(255, 255, 255, 255);
34034
- this.r.cd = BrushUtil.l(255, 0, 0, 0);
34035
- this.r.bn = runOn(this, this.cf);
34052
+ this.r.bq = this.l;
34053
+ this.r.b7 = ColorEditor.a8;
34054
+ this.r.cd = BrushUtil.l(255, 255, 255, 255);
34055
+ this.r.ce = BrushUtil.l(255, 0, 0, 0);
34056
+ this.r.bo = runOn(this, this.cf);
34036
34057
  this.r.n = runOn(this, this.by);
34037
34058
  this.r.o = runOn(this, this.b0);
34038
- this.r.cb = BrushUtil.l(255, 0, 0, 255);
34059
+ this.r.cc = BrushUtil.l(255, 0, 0, 255);
34039
34060
  this.s = b;
34040
- this.e = this.h.c(f);
34061
+ this.e = this.view.c(f);
34041
34062
  this.e.value = this.value;
34042
34063
  let g = this.e;
34043
34064
  g.closed = delegateCombine(g.closed, runOn(this, this.bf));
@@ -34057,7 +34078,7 @@ let ColorEditor = /*@__PURE__*/ (() => {
34057
34078
  this.bl(a);
34058
34079
  }
34059
34080
  b0(a, b) {
34060
- if (!this.s.t(b.b) && !this.r.t(b.b) && !(this.r.an == b.b)) {
34081
+ if (!this.s.t(b.b) && !this.r.t(b.b) && !(this.r.ao == b.b)) {
34061
34082
  this.bp();
34062
34083
  }
34063
34084
  }
@@ -34075,18 +34096,18 @@ let ColorEditor = /*@__PURE__*/ (() => {
34075
34096
  }
34076
34097
  b5(a, b) {
34077
34098
  if (this.r != null) {
34078
- this.r.cb = b;
34099
+ this.r.cc = b;
34079
34100
  }
34080
34101
  }
34081
34102
  bl(a) {
34082
- if (this.s.b6) {
34103
+ if (this.s.b7) {
34083
34104
  this.w = true;
34084
34105
  this.bi();
34085
34106
  }
34086
34107
  }
34087
34108
  cg() {
34088
34109
  if (this.w == false) {
34089
- if (this.s.b6) {
34110
+ if (this.s.b7) {
34090
34111
  this.bi();
34091
34112
  }
34092
34113
  else {
@@ -34102,8 +34123,8 @@ let ColorEditor = /*@__PURE__*/ (() => {
34102
34123
  return;
34103
34124
  }
34104
34125
  if (this.s != null) {
34105
- let a = this.h.r(false);
34106
- let b = this.h.s();
34126
+ let a = this.view.s(false);
34127
+ let b = this.view.t();
34107
34128
  let c = b.height;
34108
34129
  let d = 240;
34109
34130
  let e = a.bottom + d;
@@ -34123,13 +34144,13 @@ let ColorEditor = /*@__PURE__*/ (() => {
34123
34144
  }
34124
34145
  ce(a, b) {
34125
34146
  {
34126
- let c = this.h.r(true);
34127
- this.s.cf(c, a, b);
34147
+ let c = this.view.s(true);
34148
+ this.s.cg(c, a, b);
34128
34149
  }
34129
34150
  }
34130
34151
  bi() {
34131
34152
  if (this.s != null) {
34132
- this.a.executeDelayed(() => this.s.cc(), 0);
34153
+ this.a.executeDelayed(() => this.s.cd(), 0);
34133
34154
  }
34134
34155
  if (this.e != null) {
34135
34156
  this.e.bg();
@@ -34138,9 +34159,9 @@ let ColorEditor = /*@__PURE__*/ (() => {
34138
34159
  }
34139
34160
  focus(a = false) {
34140
34161
  if (this.r != null) {
34141
- this.r.a0();
34162
+ this.r.a1();
34142
34163
  }
34143
- if (!this.s.b6 && this.al == true) {
34164
+ if (!this.s.b7 && this.al == true) {
34144
34165
  if (this.w == false) {
34145
34166
  if (this.aa) {
34146
34167
  return;
@@ -34168,7 +34189,7 @@ let ColorEditor = /*@__PURE__*/ (() => {
34168
34189
  }
34169
34190
  cb() {
34170
34191
  if (this.r != null) {
34171
- this.r.b9();
34192
+ this.r.ca();
34172
34193
  }
34173
34194
  }
34174
34195
  bo() {
@@ -34469,7 +34490,7 @@ let ColorEditorPanel = /*@__PURE__*/ (() => {
34469
34490
  }
34470
34491
  }
34471
34492
  a4() {
34472
- NativeUIContent.av(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], (a) => {
34493
+ 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], (a) => {
34473
34494
  let b = a[0];
34474
34495
  let c = a[1];
34475
34496
  let d = a[2];
@@ -34485,97 +34506,97 @@ let ColorEditorPanel = /*@__PURE__*/ (() => {
34485
34506
  let n = a[12];
34486
34507
  let o = a[13];
34487
34508
  let p = a[14];
34488
- e.bk = 2;
34489
- i.bk = 0;
34490
- g.bk = 1;
34491
- e.bw = BrushUtil.l(0, 0, 0, 0);
34492
- i.bw = BrushUtil.l(0, 0, 0, 0);
34493
- g.bw = BrushUtil.l(0, 0, 0, 0);
34494
- g.bh = new Thickness(1, 0, 5, 5, 0);
34495
- f.bh = new Thickness(1, 0, 5, 5, 0);
34496
- l.bz = "Ok";
34509
+ e.bl = 2;
34510
+ i.bl = 0;
34511
+ g.bl = 1;
34512
+ e.bx = BrushUtil.l(0, 0, 0, 0);
34513
+ i.bx = BrushUtil.l(0, 0, 0, 0);
34514
+ g.bx = BrushUtil.l(0, 0, 0, 0);
34515
+ g.bi = new Thickness(1, 0, 5, 5, 0);
34516
+ f.bi = new Thickness(1, 0, 5, 5, 0);
34517
+ l.b0 = "Ok";
34497
34518
  l.c = this.f;
34498
- m.bz = "Cancel";
34519
+ m.b0 = "Cancel";
34499
34520
  m.c = this.f;
34500
- i.bh = new Thickness(1, 5, 0, 5, 2);
34501
- h.bh = new Thickness(1, 5, 0, 5, 2);
34502
- e.bh = new Thickness(1, 5, 5, 5, 0);
34503
- d.bh = new Thickness(1, 5, 5, 5, 0);
34504
- p.bh = new Thickness(1, 5, 16, 0, 11);
34505
- p.a8 = BrushUtil.l(255, 255, 0, 0);
34506
- c.cc(p, 0);
34507
- c.ca(p, 0);
34508
- c.bn(p);
34509
- n.b2(0, 2, 1);
34510
- n.b2(1, 2, 1);
34511
- n.bh = new Thickness(1, 5, 2, 5, 2);
34512
- n.ca(j, 0);
34513
- j.bh = new Thickness(1, 0, 0, 2, 0);
34514
- j.bu = 1;
34515
- j.bp = this.h;
34521
+ i.bi = new Thickness(1, 5, 0, 5, 2);
34522
+ h.bi = new Thickness(1, 5, 0, 5, 2);
34523
+ e.bi = new Thickness(1, 5, 5, 5, 0);
34524
+ d.bi = new Thickness(1, 5, 5, 5, 0);
34525
+ p.bi = new Thickness(1, 5, 16, 0, 11);
34526
+ p.a9 = BrushUtil.l(255, 255, 0, 0);
34527
+ c.cf(p, 0);
34528
+ c.cd(p, 0);
34529
+ c.bo(p);
34530
+ n.b5(0, 2, 1);
34531
+ n.b5(1, 2, 1);
34532
+ n.bi = new Thickness(1, 5, 2, 5, 2);
34533
+ n.cd(j, 0);
34534
+ j.bi = new Thickness(1, 0, 0, 2, 0);
34535
+ j.bv = 1;
34536
+ j.bq = this.h;
34516
34537
  j.c = this.f;
34517
- j.b5 = "rgba";
34518
- o.bh = new Thickness(1, 0, 0, 2, 0);
34519
- o.bu = 1;
34520
- o.bp = this.h;
34538
+ j.b6 = "rgba";
34539
+ o.bi = new Thickness(1, 0, 0, 2, 0);
34540
+ o.bv = 1;
34541
+ o.bq = this.h;
34521
34542
  o.c = this.f;
34522
- o.b5 = "hex";
34523
- n.ca(o, 1);
34524
- n.bn(j);
34525
- n.bn(o);
34526
- l.bh = new Thickness(1, 5, 2, 5, 2);
34527
- m.bh = new Thickness(1, 5, 2, 5, 2);
34528
- l.bp = this.h;
34529
- m.bp = this.h;
34530
- l.bm = runOn(this, this.a6);
34531
- m.bm = runOn(this, this.bh);
34532
- b.b4(0, 1, 175);
34533
- b.b4(1, 0, 0);
34534
- b.b4(2, 0, 0);
34535
- b.b4(3, 0, 0);
34536
- b.b2(0, 1, 90);
34537
- b.b2(1, 1, 175);
34538
- b.b2(2, 1, 25);
34539
- b.cc(c, 0);
34540
- b.ca(c, 0);
34541
- b.cc(d, 0);
34542
- b.ca(d, 1);
34543
- b.cc(e, 0);
34544
- b.ca(e, 1);
34545
- b.cc(f, 0);
34546
- b.ca(f, 3);
34547
- b.cc(g, 0);
34548
- b.ca(g, 3);
34549
- b.cc(h, 1);
34550
- b.ca(h, 0);
34551
- b.cb(h, 3);
34552
- b.cc(i, 1);
34553
- b.ca(i, 0);
34554
- b.cb(i, 3);
34555
- b.cc(n, 2);
34556
- b.ca(n, 0);
34557
- b.cb(n, 3);
34558
- b.cc(k, 3);
34559
- b.ca(k, 0);
34560
- b.cb(k, 3);
34561
- k.b2(0, 2, 1);
34562
- k.b2(1, 2, 1);
34563
- k.ca(l, 0);
34564
- k.ca(m, 1);
34565
- k.bn(l);
34566
- k.bn(m);
34567
- b.bn(c);
34568
- b.bn(d);
34569
- b.bn(e);
34570
- b.bn(f);
34571
- b.bn(g);
34572
- b.bn(h);
34573
- b.bn(i);
34574
- b.bn(n);
34575
- b.bn(k);
34543
+ o.b6 = "hex";
34544
+ n.cd(o, 1);
34545
+ n.bo(j);
34546
+ n.bo(o);
34547
+ l.bi = new Thickness(1, 5, 2, 5, 2);
34548
+ m.bi = new Thickness(1, 5, 2, 5, 2);
34549
+ l.bq = this.h;
34550
+ m.bq = this.h;
34551
+ l.bn = runOn(this, this.a6);
34552
+ m.bn = runOn(this, this.bh);
34553
+ b.b7(0, 1, 175);
34554
+ b.b7(1, 0, 0);
34555
+ b.b7(2, 0, 0);
34556
+ b.b7(3, 0, 0);
34557
+ b.b5(0, 1, 90);
34558
+ b.b5(1, 1, 175);
34559
+ b.b5(2, 1, 25);
34560
+ b.cf(c, 0);
34561
+ b.cd(c, 0);
34562
+ b.cf(d, 0);
34563
+ b.cd(d, 1);
34564
+ b.cf(e, 0);
34565
+ b.cd(e, 1);
34566
+ b.cf(f, 0);
34567
+ b.cd(f, 3);
34568
+ b.cf(g, 0);
34569
+ b.cd(g, 3);
34570
+ b.cf(h, 1);
34571
+ b.cd(h, 0);
34572
+ b.ce(h, 3);
34573
+ b.cf(i, 1);
34574
+ b.cd(i, 0);
34575
+ b.ce(i, 3);
34576
+ b.cf(n, 2);
34577
+ b.cd(n, 0);
34578
+ b.ce(n, 3);
34579
+ b.cf(k, 3);
34580
+ b.cd(k, 0);
34581
+ b.ce(k, 3);
34582
+ k.b5(0, 2, 1);
34583
+ k.b5(1, 2, 1);
34584
+ k.cd(l, 0);
34585
+ k.cd(m, 1);
34586
+ k.bo(l);
34587
+ k.bo(m);
34588
+ b.bo(c);
34589
+ b.bo(d);
34590
+ b.bo(e);
34591
+ b.bo(f);
34592
+ b.bo(g);
34593
+ b.bo(h);
34594
+ b.bo(i);
34595
+ b.bo(n);
34596
+ b.bo(k);
34576
34597
  this.d.a8(b);
34577
34598
  this.n = b;
34578
- this.n.bw = true;
34599
+ this.n.by = true;
34579
34600
  this.s = i;
34580
34601
  this.u = g;
34581
34602
  this.m = f;
@@ -34583,24 +34604,24 @@ let ColorEditorPanel = /*@__PURE__*/ (() => {
34583
34604
  this.o = p;
34584
34605
  this.r = j;
34585
34606
  this.q = o;
34586
- this.s.bq = 0;
34587
- this.s.bp = 360;
34588
- this.s.by = BrushUtil.l(255, 255, 255, 255);
34607
+ this.s.br = 0;
34608
+ this.s.bq = 360;
34589
34609
  this.s.bz = BrushUtil.l(255, 255, 255, 255);
34590
- this.u.bq = 0;
34591
- this.u.bp = 1;
34592
- this.t.by = BrushUtil.l(255, 155, 155, 155);
34593
- this.t.bz = BrushUtil.l(255, 255, 255, 255);
34594
- this.t.bq = 0;
34595
- this.t.bp = 1;
34596
- this.t.bu = 0;
34597
- this.t.bt = 1;
34610
+ this.s.b0 = BrushUtil.l(255, 255, 255, 255);
34611
+ this.u.br = 0;
34612
+ this.u.bq = 1;
34613
+ this.t.bz = BrushUtil.l(255, 155, 155, 155);
34614
+ this.t.b0 = BrushUtil.l(255, 255, 255, 255);
34615
+ this.t.br = 0;
34616
+ this.t.bq = 1;
34617
+ this.t.bv = 0;
34618
+ this.t.bu = 1;
34619
+ this.s.bp = runOn(this, this.au);
34598
34620
  this.s.bo = runOn(this, this.au);
34599
- this.s.bn = runOn(this, this.au);
34621
+ this.u.bp = runOn(this, this.aw);
34600
34622
  this.u.bo = runOn(this, this.aw);
34601
- this.u.bn = runOn(this, this.aw);
34623
+ this.t.bp = runOn(this, this.av);
34602
34624
  this.t.bo = runOn(this, this.av);
34603
- this.t.bn = runOn(this, this.av);
34604
34625
  this.l = d;
34605
34626
  this.k = h;
34606
34627
  this.p = c;
@@ -34636,26 +34657,26 @@ let ColorEditorPanel = /*@__PURE__*/ (() => {
34636
34657
  let a = Color.u(0, 0, 0, 0);
34637
34658
  let b = Color.u(255, 255, 0, 0);
34638
34659
  if (this.s != null) {
34639
- let c = this.s.bs;
34640
- let d = this.t.bs;
34641
- let e = 1 - this.t.bv;
34642
- let f = 1 - this.u.bs;
34660
+ let c = this.s.bt;
34661
+ let d = this.t.bt;
34662
+ let e = 1 - this.t.bw;
34663
+ let f = 1 - this.u.bt;
34643
34664
  b = ColorUtil.r(1, c, 1, 0.5);
34644
34665
  a = ColorUtil.r(f, c, d, e);
34645
- this.s.bx = BrushUtil.l(b.l, b.o, b.n, b.m);
34646
- this.t.bx = BrushUtil.l(a.l, a.o, a.n, a.m);
34647
- this.o.a8 = BrushUtil.l(a.l, a.o, a.n, a.m);
34648
- this.d.bm(this.s.bs);
34666
+ this.s.by = BrushUtil.l(b.l, b.o, b.n, b.m);
34667
+ this.t.by = BrushUtil.l(a.l, a.o, a.n, a.m);
34668
+ this.o.a9 = BrushUtil.l(a.l, a.o, a.n, a.m);
34669
+ this.d.bm(this.s.bt);
34649
34670
  this.d.bn(0);
34650
- this.d.bo(this.s.bs, this.t.bs, 1 - this.t.bv);
34671
+ this.d.bo(this.s.bt, this.t.bt, 1 - this.t.bw);
34651
34672
  }
34652
34673
  if (this.r != null) {
34653
34674
  let g = a.o + ", " + a.n + ", " + a.m + ", " + Math.round((a.l / 255) * 1000) / 1000;
34654
- this.r.b7 = g;
34675
+ this.r.b8 = g;
34655
34676
  }
34656
34677
  if (this.q != null) {
34657
34678
  let h = ColorUtil.k(a, false);
34658
- this.q.b7 = h;
34679
+ this.q.b8 = h;
34659
34680
  }
34660
34681
  this.bx = BrushUtil.l(a.l, a.o, a.n, a.m);
34661
34682
  this.bc(this.value);
@@ -34668,7 +34689,7 @@ let ColorEditorPanel = /*@__PURE__*/ (() => {
34668
34689
  bl() {
34669
34690
  }
34670
34691
  a3() {
34671
- this.n.az();
34692
+ this.n.a0();
34672
34693
  }
34673
34694
  onAttachedToUI() {
34674
34695
  this.d.bg();
@@ -34694,10 +34715,10 @@ let ColorEditorPanel = /*@__PURE__*/ (() => {
34694
34715
  let a = this.b5;
34695
34716
  let b = ColorUtil.a(a);
34696
34717
  this.y = true;
34697
- this.s.bs = b[1] == -1 ? 0 : b[1];
34698
- this.u.bs = 1 - b[0];
34699
- this.t.bs = b[2];
34700
- this.t.bv = 1 - b[3];
34718
+ this.s.bt = b[1] == -1 ? 0 : b[1];
34719
+ this.u.bt = 1 - b[0];
34720
+ this.t.bt = b[2];
34721
+ this.t.bw = 1 - b[3];
34701
34722
  this.y = false;
34702
34723
  if (this.x) {
34703
34724
  this.bn();
@@ -34717,7 +34738,7 @@ let ColorEditorPanel = /*@__PURE__*/ (() => {
34717
34738
  this.bn();
34718
34739
  }
34719
34740
  a0(a, b, c) {
34720
- let d = this.s.bs;
34741
+ let d = this.s.bt;
34721
34742
  let e = 1;
34722
34743
  let f = 255;
34723
34744
  for (let g = 0; g < c; g++) {
@@ -34876,12 +34897,12 @@ let ColorEditorPanel = /*@__PURE__*/ (() => {
34876
34897
  }
34877
34898
  ad() {
34878
34899
  if (this.s != null) {
34879
- return this.s.bs;
34900
+ return this.s.bt;
34880
34901
  }
34881
34902
  return 0;
34882
34903
  }
34883
34904
  a1(a, b, c) {
34884
- let d = this.s.bs;
34905
+ let d = this.s.bt;
34885
34906
  let e = 1;
34886
34907
  let f = 255;
34887
34908
  for (let g = 0; g < c; g++) {
@@ -34918,11 +34939,11 @@ let ColorEditorPanel = /*@__PURE__*/ (() => {
34918
34939
  }
34919
34940
  }
34920
34941
  a2(a, b, c) {
34921
- let d = this.s.bs;
34942
+ let d = this.s.bt;
34922
34943
  let e = 1;
34923
34944
  let f = 255;
34924
- let g = 1 - this.t.bv;
34925
- let h = this.t.bs;
34945
+ let g = 1 - this.t.bw;
34946
+ let h = this.t.bt;
34926
34947
  for (let i = 0; i < c; i++) {
34927
34948
  let j = i / c;
34928
34949
  for (let k = 0; k < b; k++) {
@@ -35170,6 +35191,9 @@ let IgxColorEditorComponent = /*@__PURE__*/ (() => {
35170
35191
  this._portalManager = new PortalManager("colorEditorContent", componentFactoryResolver);
35171
35192
  var ren = new AngularRenderer(root, this.renderer, window.document, this.ngZone, true, {}, this._portalManager);
35172
35193
  this._wrapper = ren;
35194
+ colorEditor.view.createColorEditorPanel = () => {
35195
+ return window.document.createElement("igx-color-editor-panel");
35196
+ };
35173
35197
  colorEditor.provideContainer(ren);
35174
35198
  }
35175
35199
  }
@@ -36644,15 +36668,10 @@ class IgxMultiSliderTrackThumbRange {
36644
36668
  return null;
36645
36669
  }
36646
36670
  if (!r.externalObject) {
36647
- let e = new IgxMultiSliderThumb();
36648
- if (r.$type) {
36671
+ let e = IgxMultiSliderThumbComponent._createFromInternal(r);
36672
+ if (e) {
36649
36673
  e._implementation = r;
36650
36674
  }
36651
- else {
36652
- if (e.i.setNativeElement) {
36653
- e.i.setNativeElement(r);
36654
- }
36655
- }
36656
36675
  r.externalObject = e;
36657
36676
  }
36658
36677
  return r.externalObject;
@@ -36666,15 +36685,10 @@ class IgxMultiSliderTrackThumbRange {
36666
36685
  return null;
36667
36686
  }
36668
36687
  if (!r.externalObject) {
36669
- let e = new IgxMultiSliderThumb();
36670
- if (r.$type) {
36688
+ let e = IgxMultiSliderThumbComponent._createFromInternal(r);
36689
+ if (e) {
36671
36690
  e._implementation = r;
36672
36691
  }
36673
- else {
36674
- if (e.i.setNativeElement) {
36675
- e.i.setNativeElement(r);
36676
- }
36677
- }
36678
36692
  r.externalObject = e;
36679
36693
  }
36680
36694
  return r.externalObject;
@@ -36706,116 +36720,212 @@ class IgxMultiSliderTrackThumbRange {
36706
36720
  }
36707
36721
  }
36708
36722
 
36709
- class IgxMultiSliderThumb {
36710
- constructor() {
36711
- this._propertyUpdated = null;
36712
- this._zoneRunner = null;
36713
- this._implementation = this.createImplementation();
36714
- this._implementation.externalObject = this;
36715
- this.onImplementationCreated();
36716
- if (this._initializeAdapters) {
36717
- this._initializeAdapters();
36718
- }
36719
- }
36720
- createImplementation() {
36721
- return new MultiSliderThumb();
36722
- }
36723
- /**
36724
- * @hidden
36725
- */
36726
- get i() {
36727
- return this._implementation;
36728
- }
36729
- onImplementationCreated() {
36730
- }
36731
- _provideImplementation(i) {
36732
- this._implementation = i;
36733
- this._implementation.externalObject = this;
36734
- this.onImplementationCreated();
36735
- }
36736
- get value() {
36737
- return this.i.s;
36738
- }
36739
- set value(v) {
36740
- this.i.s = +v;
36741
- }
36742
- get rangePosition() {
36743
- return this.i.g;
36744
- }
36745
- set rangePosition(v) {
36746
- this.i.g = ensureEnum(MultiSliderThumbRangePosition_$type, v);
36747
- }
36748
- get range() {
36749
- const r = this.i.i;
36750
- if (r == null) {
36751
- return null;
36752
- }
36753
- if (!r.externalObject) {
36754
- let e = new IgxMultiSliderTrackThumbRange();
36755
- if (r.$type) {
36756
- e._implementation = r;
36757
- }
36758
- else {
36759
- if (e.i.setNativeElement) {
36760
- e.i.setNativeElement(r);
36761
- }
36762
- }
36763
- r.externalObject = e;
36764
- }
36765
- return r.externalObject;
36766
- }
36767
- set range(v) {
36768
- v == null ? this.i.i = null : this.i.i = v.i;
36769
- }
36770
- findByName(name) {
36771
- if (this.findEphemera) {
36772
- if (name && name.indexOf("@@e:") == 0) {
36773
- return this.findEphemera(name);
36774
- }
36775
- }
36776
- if (this.range && this.range.name && this.range.name == name) {
36777
- return this.range;
36778
- }
36779
- return null;
36780
- }
36781
- push(amount) {
36782
- let iv = this.i.r(amount);
36783
- return (iv);
36784
- }
36785
- get propertyUpdated() {
36786
- if (this._propertyUpdated == null) {
36787
- this._propertyUpdated = new EventEmitter();
36788
- this.i.propertyUpdated = delegateCombine(this.i.propertyUpdated, (o, e) => {
36789
- this._runInZone(() => {
36790
- let outerArgs = new IgxPropertyUpdatedEventArgs();
36791
- outerArgs._provideImplementation(e);
36792
- if (this.beforePropertyUpdated) {
36793
- this.beforePropertyUpdated(this, outerArgs);
36794
- }
36795
- this._propertyUpdated.emit({
36796
- sender: this,
36797
- args: outerArgs
36798
- });
36799
- });
36800
- });
36801
- }
36802
- return this._propertyUpdated;
36803
- }
36804
- _runInZone(act) {
36805
- if (this._zoneRunner != null) {
36806
- this._zoneRunner(act);
36807
- }
36808
- else {
36809
- act();
36810
- }
36811
- }
36812
- }
36723
+ let IgxMultiSliderThumbComponent = /*@__PURE__*/ (() => {
36724
+ class IgxMultiSliderThumbComponent {
36725
+ constructor() {
36726
+ this.__p = null;
36727
+ this._hasUserValues = new Set();
36728
+ this._stylingContainer = null;
36729
+ this._stylingParent = null;
36730
+ this._inStyling = false;
36731
+ this._propertyUpdated = null;
36732
+ this._zoneRunner = null;
36733
+ if (this._styling) {
36734
+ NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this));
36735
+ }
36736
+ this._implementation = this.createImplementation();
36737
+ this._implementation.externalObject = this;
36738
+ this.onImplementationCreated();
36739
+ if (this._initializeAdapters) {
36740
+ this._initializeAdapters();
36741
+ }
36742
+ }
36743
+ createImplementation() {
36744
+ return new MultiSliderThumb();
36745
+ }
36746
+ ngOnInit() {
36747
+ }
36748
+ /**
36749
+ * @hidden
36750
+ */
36751
+ get i() {
36752
+ return this._implementation;
36753
+ } /**
36754
+ * @hidden
36755
+ */
36756
+ static _createFromInternal(internal) {
36757
+ if (!internal) {
36758
+ return null;
36759
+ }
36760
+ if (!internal.$type) {
36761
+ return null;
36762
+ }
36763
+ let name = internal.$type.name;
36764
+ let externalName = "Igx" + name + "Component";
36765
+ if (!TypeRegistrar.isRegistered(externalName)) {
36766
+ return null;
36767
+ }
36768
+ return TypeRegistrar.create(externalName);
36769
+ }
36770
+ onImplementationCreated() {
36771
+ }
36772
+ get value() {
36773
+ return this.i.s;
36774
+ }
36775
+ set value(v) {
36776
+ this.i.s = +v;
36777
+ }
36778
+ get rangePosition() {
36779
+ return this.i.g;
36780
+ }
36781
+ set rangePosition(v) {
36782
+ this.i.g = ensureEnum(MultiSliderThumbRangePosition_$type, v);
36783
+ }
36784
+ get range() {
36785
+ const r = this.i.i;
36786
+ if (r == null) {
36787
+ return null;
36788
+ }
36789
+ if (!r.externalObject) {
36790
+ let e = new IgxMultiSliderTrackThumbRange();
36791
+ if (r.$type) {
36792
+ e._implementation = r;
36793
+ }
36794
+ else {
36795
+ if (e.i.setNativeElement) {
36796
+ e.i.setNativeElement(r);
36797
+ }
36798
+ }
36799
+ r.externalObject = e;
36800
+ }
36801
+ return r.externalObject;
36802
+ }
36803
+ set range(v) {
36804
+ v == null ? this.i.i = null : this.i.i = v.i;
36805
+ }
36806
+ findByName(name) {
36807
+ if (this.findEphemera) {
36808
+ if (name && name.indexOf("@@e:") == 0) {
36809
+ return this.findEphemera(name);
36810
+ }
36811
+ }
36812
+ if (this.range && this.range.name && this.range.name == name) {
36813
+ return this.range;
36814
+ }
36815
+ return null;
36816
+ }
36817
+ get hasUserValues() {
36818
+ return this._hasUserValues;
36819
+ }
36820
+ __m(propertyName) {
36821
+ if (!this._inStyling) {
36822
+ this._hasUserValues.add(propertyName);
36823
+ }
36824
+ }
36825
+ _styling(container, component, parent) {
36826
+ if (this._inStyling) {
36827
+ return;
36828
+ }
36829
+ this._inStyling = true;
36830
+ this._stylingContainer = container;
36831
+ this._stylingParent = component;
36832
+ let genericPrefix = "";
36833
+ let typeName = this.i.$type.name;
36834
+ if (typeName.indexOf("Xam") === 0) {
36835
+ typeName = typeName.substring(3);
36836
+ }
36837
+ genericPrefix = toSpinal("MultiSliderThumbComponent");
36838
+ let additionalPrefixes = [];
36839
+ let prefix = toSpinal(typeName);
36840
+ additionalPrefixes.push(prefix + "-");
36841
+ let b = this.i.$type.baseType;
36842
+ while (b && b.name != "Object" &&
36843
+ b.name != "Base" &&
36844
+ b.name != "Control" &&
36845
+ b.Name != "DependencyObject" &&
36846
+ b.Name != "FrameworkElement") {
36847
+ typeName = b.name;
36848
+ if (typeName.indexOf("Xam") === 0) {
36849
+ typeName = typeName.substring(3);
36850
+ }
36851
+ let basePrefix = toSpinal(typeName);
36852
+ additionalPrefixes.push(basePrefix + "-");
36853
+ b = b.baseType;
36854
+ }
36855
+ if (parent) {
36856
+ let parentTypeName = parent.i.$type.name;
36857
+ if (parentTypeName.indexOf("Xam") === 0) {
36858
+ parentTypeName = parentTypeName.substring(3);
36859
+ }
36860
+ let parentPrefix = toSpinal(parentTypeName);
36861
+ additionalPrefixes.push(parentPrefix + "-" + genericPrefix + "-");
36862
+ additionalPrefixes.push(parentPrefix + "-" + prefix + "-");
36863
+ }
36864
+ initializePropertiesFromCss(container, this, genericPrefix + "-", this.hasUserValues, false, additionalPrefixes);
36865
+ if (this._otherStyling) {
36866
+ this._otherStyling(container, component, parent);
36867
+ }
36868
+ this._inStyling = false;
36869
+ }
36870
+ push(amount) {
36871
+ let iv = this.i.r(amount);
36872
+ return (iv);
36873
+ }
36874
+ get propertyUpdated() {
36875
+ if (this._propertyUpdated == null) {
36876
+ this._propertyUpdated = new EventEmitter();
36877
+ this.i.propertyUpdated = delegateCombine(this.i.propertyUpdated, (o, e) => {
36878
+ this._runInZone(() => {
36879
+ let outerArgs = new IgxPropertyUpdatedEventArgs();
36880
+ outerArgs._provideImplementation(e);
36881
+ if (this.beforePropertyUpdated) {
36882
+ this.beforePropertyUpdated(this, outerArgs);
36883
+ }
36884
+ this._propertyUpdated.emit({
36885
+ sender: this,
36886
+ args: outerArgs
36887
+ });
36888
+ });
36889
+ });
36890
+ }
36891
+ return this._propertyUpdated;
36892
+ }
36893
+ _runInZone(act) {
36894
+ if (this._zoneRunner != null) {
36895
+ this._zoneRunner(act);
36896
+ }
36897
+ else {
36898
+ act();
36899
+ }
36900
+ }
36901
+ }
36902
+ IgxMultiSliderThumbComponent.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbComponent, deps: [], target: ɵɵFactoryTarget.Component });
36903
+ IgxMultiSliderThumbComponent.ɵcmp = ɵɵ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: ChangeDetectionStrategy.OnPush });
36904
+ return IgxMultiSliderThumbComponent;
36905
+ })();
36906
+ ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbComponent, decorators: [{
36907
+ type: Component,
36908
+ args: [{
36909
+ selector: 'igx-multi-slider-thumb',
36910
+ template: ``,
36911
+ providers: [],
36912
+ changeDetection: ChangeDetectionStrategy.OnPush
36913
+ }]
36914
+ }], ctorParameters: function () { return []; }, propDecorators: { value: [{
36915
+ type: Input
36916
+ }], rangePosition: [{
36917
+ type: Input
36918
+ }], range: [{
36919
+ type: Input
36920
+ }], propertyUpdated: [{
36921
+ type: Output
36922
+ }] } });
36813
36923
 
36814
36924
  class IgxMultiSliderThumbCollection extends IgCollection {
36815
36925
  constructor(list) {
36816
36926
  super();
36817
- if (!IgxMultiSliderThumb.$type) {
36818
- IgxMultiSliderThumb.$type = markType(IgxMultiSliderThumb, "IgxMultiSliderThumb");
36927
+ if (!IgxMultiSliderThumbComponent.$type) {
36928
+ IgxMultiSliderThumbComponent.$type = markType(IgxMultiSliderThumbComponent, "IgxMultiSliderThumbComponent");
36819
36929
  }
36820
36930
  if (list) {
36821
36931
  for (let i = 0; i < list.length; i++) {
@@ -36824,10 +36934,10 @@ class IgxMultiSliderThumbCollection extends IgCollection {
36824
36934
  }
36825
36935
  }
36826
36936
  _createInnerColl() {
36827
- if (!IgxMultiSliderThumb.$type) {
36828
- IgxMultiSliderThumb.$type = markType(IgxMultiSliderThumb, "IgxMultiSliderThumb");
36937
+ if (!IgxMultiSliderThumbComponent.$type) {
36938
+ IgxMultiSliderThumbComponent.$type = markType(IgxMultiSliderThumbComponent, "IgxMultiSliderThumbComponent");
36829
36939
  }
36830
- let coll = new SyncableObservableCollection$2(IgxMultiSliderThumb.$type, MultiSliderThumb.$type, 0);
36940
+ let coll = new SyncableObservableCollection$2(IgxMultiSliderThumbComponent.$type, MultiSliderThumb.$type, 0);
36831
36941
  coll.compare = (ext, int) => {
36832
36942
  let comp = ext;
36833
36943
  if (comp._implementation) {
@@ -36844,7 +36954,7 @@ class IgxMultiSliderThumbCollection extends IgCollection {
36844
36954
  coll.createFrom = (int) => {
36845
36955
  let ext = int.externalObject;
36846
36956
  if (!ext) {
36847
- ext = new IgxMultiSliderThumb();
36957
+ ext = new IgxMultiSliderThumbComponent();
36848
36958
  if (ext) {
36849
36959
  if (!int.$type && ext._implementation.setNativeElement) {
36850
36960
  ext._implementation.setNativeElement(int);
@@ -36936,15 +37046,10 @@ class IgxMultiSliderThumbValueChangingEventArgs {
36936
37046
  return null;
36937
37047
  }
36938
37048
  if (!r.externalObject) {
36939
- let e = new IgxMultiSliderThumb();
36940
- if (r.$type) {
37049
+ let e = IgxMultiSliderThumbComponent._createFromInternal(r);
37050
+ if (e) {
36941
37051
  e._implementation = r;
36942
37052
  }
36943
- else {
36944
- if (e.i.setNativeElement) {
36945
- e.i.setNativeElement(r);
36946
- }
36947
- }
36948
37053
  r.externalObject = e;
36949
37054
  }
36950
37055
  return r.externalObject;
@@ -39516,12 +39621,12 @@ let XIconButtonBridge = /*@__PURE__*/ (() => {
39516
39621
  switch (b) {
39517
39622
  case 15:
39518
39623
  case 16:
39519
- case 44:
39520
39624
  case 45:
39521
39625
  case 46:
39522
39626
  case 47:
39523
39627
  case 48:
39524
- case 49: return this.al.t;
39628
+ case 49:
39629
+ case 50: return this.al.t;
39525
39630
  }
39526
39631
  return super.getTargetForBuildInProperty(a, b);
39527
39632
  }
@@ -39537,12 +39642,12 @@ let XIconButtonBridge = /*@__PURE__*/ (() => {
39537
39642
  switch (b) {
39538
39643
  case 16:
39539
39644
  case 15:
39540
- case 44:
39541
39645
  case 45:
39542
39646
  case 46:
39543
39647
  case 47:
39544
39648
  case 48:
39545
- case 49: return this.al.getValue(a, b);
39649
+ case 49:
39650
+ case 50: return this.al.getValue(a, b);
39546
39651
  case 18: return enumGetBox(BaseControlTheme_$type, a.o);
39547
39652
  }
39548
39653
  return super.getValue(a, b);
@@ -39552,12 +39657,12 @@ let XIconButtonBridge = /*@__PURE__*/ (() => {
39552
39657
  switch (b) {
39553
39658
  case 16:
39554
39659
  case 15:
39555
- case 44:
39556
39660
  case 45:
39557
39661
  case 46:
39558
39662
  case 47:
39559
39663
  case 48:
39560
39664
  case 49:
39665
+ case 50:
39561
39666
  this.al.setValue(a, b, c);
39562
39667
  break;
39563
39668
  case 18:
@@ -40095,6 +40200,58 @@ let DefaultMultiTrackShadeVisual = /*@__PURE__*/ (() => {
40095
40200
  return DefaultMultiTrackShadeVisual;
40096
40201
  })();
40097
40202
 
40203
+ /*
40204
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
40205
+ https://www.infragistics.com/legal/license/igultimate-la
40206
+ https://www.infragistics.com/legal/license/igultimate-eula
40207
+ 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.
40208
+ */
40209
+ let IgxMultiSliderThumbModule = /*@__PURE__*/ (() => {
40210
+ class IgxMultiSliderThumbModule {
40211
+ }
40212
+ IgxMultiSliderThumbModule.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbModule, deps: [], target: ɵɵFactoryTarget.NgModule });
40213
+ IgxMultiSliderThumbModule.ɵmod = ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbModule, declarations: [IgxMultiSliderThumbComponent], imports: [CommonModule], exports: [IgxMultiSliderThumbComponent] });
40214
+ IgxMultiSliderThumbModule.ɵinj = ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbModule, imports: [[CommonModule]] });
40215
+ return IgxMultiSliderThumbModule;
40216
+ })();
40217
+ ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbModule, decorators: [{
40218
+ type: NgModule,
40219
+ args: [{
40220
+ declarations: [IgxMultiSliderThumbComponent],
40221
+ imports: [CommonModule],
40222
+ exports: [IgxMultiSliderThumbComponent],
40223
+ entryComponents: []
40224
+ }]
40225
+ }] });
40226
+
40227
+ /*
40228
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
40229
+ https://www.infragistics.com/legal/license/igultimate-la
40230
+ https://www.infragistics.com/legal/license/igultimate-eula
40231
+ 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.
40232
+ */
40233
+ let IgxMultiSliderThumbDynamicModule = /*@__PURE__*/ (() => {
40234
+ class IgxMultiSliderThumbDynamicModule {
40235
+ constructor() {
40236
+ TypeRegistrar.registerCons("IgxMultiSliderThumbComponent", IgxMultiSliderThumbComponent);
40237
+ TypeRegistrar.register("MultiSliderThumb", MultiSliderThumb.$type);
40238
+ }
40239
+ }
40240
+ IgxMultiSliderThumbDynamicModule.ɵfac = ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbDynamicModule, deps: [], target: ɵɵFactoryTarget.NgModule });
40241
+ IgxMultiSliderThumbDynamicModule.ɵmod = ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbDynamicModule, imports: [CommonModule, IgxMultiSliderThumbModule], exports: [IgxMultiSliderThumbModule] });
40242
+ IgxMultiSliderThumbDynamicModule.ɵinj = ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbDynamicModule, imports: [[CommonModule, IgxMultiSliderThumbModule], IgxMultiSliderThumbModule] });
40243
+ return IgxMultiSliderThumbDynamicModule;
40244
+ })();
40245
+ ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderThumbDynamicModule, decorators: [{
40246
+ type: NgModule,
40247
+ args: [{
40248
+ declarations: [],
40249
+ imports: [CommonModule, IgxMultiSliderThumbModule],
40250
+ exports: [IgxMultiSliderThumbModule],
40251
+ entryComponents: [IgxMultiSliderThumbComponent]
40252
+ }]
40253
+ }], ctorParameters: function () { return []; } });
40254
+
40098
40255
  /*
40099
40256
  THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
40100
40257
  https://www.infragistics.com/legal/license/igultimate-la
@@ -40230,4 +40387,4 @@ let TextBlockVisualModelExport = /*@__PURE__*/ (() => {
40230
40387
  * Generated bundle index. Do not edit.
40231
40388
  */
40232
40389
 
40233
- export { ButtonClickEventArgs, ButtonDisplayStyle_$type, ButtonGroupDisplayStyle_$type, ButtonGroupOrientation, ButtonGroupOrientation_$type, ButtonGroupSelectionChangedEventArgs, ButtonGroupView, ButtonGroupVisualModelExport, ButtonView, ButtonVisualModelExport, CalendarView, CalendarVisualModelExport, CheckboxChangeEventArgs, CheckboxLabelPosition_$type, CheckboxListVisualModelExport, CheckboxView, CheckboxVisualModelExport, ColorEditor, ColorEditorBridge, ColorEditorGotFocusEventArgs, ColorEditorLostFocusEventArgs, ColorEditorPanel, ColorEditorPanelClosedEventArgs, ColorEditorPanelSelectedValueChangedEventArgs, ColorEditorPanelView, ColorEditorView, ColorEditorVisualModelExport, DateFormats, DateFormats_$type, DatePickerView, DatePickerVisualModelExport, DateTimeValueFormatter, DayInfo, DayOfWeek, DayOfWeek_$type, DefaultMultiSliderTrackBarVisual, DefaultMultiSliderTrackRangeVisual, DefaultMultiSliderTrackThumbCalloutVisual, DefaultMultiSliderTrackThumbVisual, DefaultMultiTrackShadeVisual, ElevationHelper, FirstWeek, FirstWeek_$type, GotFocusEventArgs, IMultiSliderTrackBarVisual_$type, IMultiSliderTrackRangeVisual_$type, IMultiSliderTrackShadeVisual_$type, IMultiSliderTrackThumbCalloutVisual_$type, IMultiSliderTrackThumbVisual_$type, ISliderTrackOwner_$type, IconClickedEventArgs, IconView, IconViewType_$type, IconVisualModelExport, IgxButtonClickEventArgs, IgxButtonGroupSelectionChangedEventArgs, IgxCheckboxChangeEventArgs, IgxColorEditorComponent, IgxColorEditorDynamicModule, IgxColorEditorGotFocusEventArgs, IgxColorEditorLostFocusEventArgs, IgxColorEditorModule, IgxColorEditorPanelClosedEventArgs, IgxColorEditorPanelComponent, IgxColorEditorPanelDynamicModule, IgxColorEditorPanelModule, IgxColorEditorPanelSelectedValueChangedEventArgs, IgxGotFocusEventArgs, IgxInputChangeEventArgs, IgxLostFocusEventArgs, IgxMultiSliderComponent, IgxMultiSliderDynamicModule, IgxMultiSliderModule, IgxMultiSliderResolvingToolTipValueEventArgs, IgxMultiSliderThumb, IgxMultiSliderThumbCollection, IgxMultiSliderThumbValueChangingEventArgs, IgxMultiSliderTrackThumbRange, IgxMultiSliderYValueChangingEventArgs, IgxSelectedValueChangedEventArgs, IgxXButtonComponent, IgxXButtonDynamicModule, IgxXButtonGroupButtonCollection, IgxXButtonGroupComponent, IgxXButtonGroupDynamicModule, IgxXButtonGroupModule, IgxXButtonModule, IgxXCalendarComponent, IgxXCalendarDynamicModule, IgxXCalendarLocaleEnModule, IgxXCalendarModule, IgxXCheckboxComponent, IgxXCheckboxDynamicModule, IgxXCheckboxModule, IgxXDatePickerComponent, IgxXDatePickerDynamicModule, IgxXDatePickerModule, IgxXIconComponent, IgxXIconDynamicModule, IgxXIconModule, IgxXInputComponent, IgxXInputDynamicModule, IgxXInputGroupComponent, IgxXInputGroupDynamicModule, IgxXInputGroupInputCollection, IgxXInputGroupItemComponent, IgxXInputGroupModule, IgxXInputModule, IgxXLabelComponent, IgxXLabelDynamicModule, IgxXLabelModule, IgxXPrefixComponent, IgxXPrefixDynamicModule, IgxXPrefixModule, IgxXRippleComponent, IgxXRippleDynamicModule, IgxXRippleModule, IgxXSuffixComponent, InputChangeEventArgs, InputGroupDisplayType, InputGroupDisplayType_$type, InputGroupView, InputGroupVisualModelExport, InputShiftType, InputShiftType_$type, InputView, InputVisualModelExport, KEYCODES_$type, LabelShiftType, LabelShiftType_$type, LabelView, LabelVisualModelExport, LostFocusEventArgs, MaskOptions, MaskParsingService, MultiSlider, MultiSliderBridge, MultiSliderCursor_$type, MultiSliderHitInfo, MultiSliderOrientation, MultiSliderOrientation_$type, MultiSliderResolvingToolTipValueEventArgs, MultiSliderThumb, MultiSliderThumbCollection, MultiSliderThumbRangePosition, MultiSliderThumbRangePosition_$type, MultiSliderThumbValueChangingEventArgs, MultiSliderTrackShadeOrientation_$type, MultiSliderTrackThumbRange, MultiSliderView, MultiSliderVisualArea_$type, MultiSliderYValueChangingEventArgs, NativeUIXInputsFactory, PrefixShiftType, PrefixShiftType_$type, PrefixView, PrefixVisualModelExport, Replaced, RippleView, RippleVisualModelExport, SelectedValueChangedEventArgs, SuffixShiftType, SuffixShiftType_$type, SuffixView, SuffixVisualModelExport, TextBlockVisualModelExport, TextElementsVisualModelExport, Theme, ThemeResolver, XButton, XButtonBridge, XButtonGroup, XButtonGroupBridge, XButtonGroupButtonCollection, XCalendar, XCalendarLocaleEn, XCheckbox, XCheckboxBridge, XComponentBridge, XDatePicker, XIcon, XIconBridge, XIconButtonBridge, XInput, XInputBridge, XInputGroup, XInputGroupInputCollection, XInputGroupItem, XLabel, XPopupBridge, XPrefix, XRipple, XSuffix };
40390
+ export { ButtonClickEventArgs, ButtonDisplayStyle_$type, ButtonGroupDisplayStyle_$type, ButtonGroupOrientation, ButtonGroupOrientation_$type, ButtonGroupSelectionChangedEventArgs, ButtonGroupView, ButtonGroupVisualModelExport, ButtonView, ButtonVisualModelExport, CalendarView, CalendarVisualModelExport, CheckboxChangeEventArgs, CheckboxLabelPosition_$type, CheckboxListVisualModelExport, CheckboxView, CheckboxVisualModelExport, ColorEditor, ColorEditorBridge, ColorEditorGotFocusEventArgs, ColorEditorLostFocusEventArgs, ColorEditorPanel, ColorEditorPanelClosedEventArgs, ColorEditorPanelSelectedValueChangedEventArgs, ColorEditorPanelView, ColorEditorView, ColorEditorVisualModelExport, DateFormats, DateFormats_$type, DatePickerView, DatePickerVisualModelExport, DateTimeValueFormatter, DayInfo, DayOfWeek, DayOfWeek_$type, DefaultMultiSliderTrackBarVisual, DefaultMultiSliderTrackRangeVisual, DefaultMultiSliderTrackThumbCalloutVisual, DefaultMultiSliderTrackThumbVisual, DefaultMultiTrackShadeVisual, ElevationHelper, FirstWeek, FirstWeek_$type, GotFocusEventArgs, IMultiSliderTrackBarVisual_$type, IMultiSliderTrackRangeVisual_$type, IMultiSliderTrackShadeVisual_$type, IMultiSliderTrackThumbCalloutVisual_$type, IMultiSliderTrackThumbVisual_$type, ISliderTrackOwner_$type, IconClickedEventArgs, IconView, IconViewType_$type, IconVisualModelExport, IgxButtonClickEventArgs, IgxButtonGroupSelectionChangedEventArgs, IgxCheckboxChangeEventArgs, IgxColorEditorComponent, IgxColorEditorDynamicModule, IgxColorEditorGotFocusEventArgs, IgxColorEditorLostFocusEventArgs, IgxColorEditorModule, IgxColorEditorPanelClosedEventArgs, IgxColorEditorPanelComponent, IgxColorEditorPanelDynamicModule, IgxColorEditorPanelModule, IgxColorEditorPanelSelectedValueChangedEventArgs, IgxGotFocusEventArgs, IgxInputChangeEventArgs, IgxLostFocusEventArgs, IgxMultiSliderComponent, IgxMultiSliderDynamicModule, IgxMultiSliderModule, IgxMultiSliderResolvingToolTipValueEventArgs, IgxMultiSliderThumbCollection, IgxMultiSliderThumbComponent, IgxMultiSliderThumbDynamicModule, IgxMultiSliderThumbModule, IgxMultiSliderThumbValueChangingEventArgs, IgxMultiSliderTrackThumbRange, IgxMultiSliderYValueChangingEventArgs, IgxSelectedValueChangedEventArgs, IgxXButtonComponent, IgxXButtonDynamicModule, IgxXButtonGroupButtonCollection, IgxXButtonGroupComponent, IgxXButtonGroupDynamicModule, IgxXButtonGroupModule, IgxXButtonModule, IgxXCalendarComponent, IgxXCalendarDynamicModule, IgxXCalendarLocaleEnModule, IgxXCalendarModule, IgxXCheckboxComponent, IgxXCheckboxDynamicModule, IgxXCheckboxModule, IgxXDatePickerComponent, IgxXDatePickerDynamicModule, IgxXDatePickerModule, IgxXIconComponent, IgxXIconDynamicModule, IgxXIconModule, IgxXInputComponent, IgxXInputDynamicModule, IgxXInputGroupComponent, IgxXInputGroupDynamicModule, IgxXInputGroupInputCollection, IgxXInputGroupItemComponent, IgxXInputGroupModule, IgxXInputModule, IgxXLabelComponent, IgxXLabelDynamicModule, IgxXLabelModule, IgxXPrefixComponent, IgxXPrefixDynamicModule, IgxXPrefixModule, IgxXRippleComponent, IgxXRippleDynamicModule, IgxXRippleModule, IgxXSuffixComponent, InputChangeEventArgs, InputGroupDisplayType, InputGroupDisplayType_$type, InputGroupView, InputGroupVisualModelExport, InputShiftType, InputShiftType_$type, InputView, InputVisualModelExport, KEYCODES_$type, LabelShiftType, LabelShiftType_$type, LabelView, LabelVisualModelExport, LostFocusEventArgs, MaskOptions, MaskParsingService, MultiSlider, MultiSliderBridge, MultiSliderCursor_$type, MultiSliderHitInfo, MultiSliderOrientation, MultiSliderOrientation_$type, MultiSliderResolvingToolTipValueEventArgs, MultiSliderThumb, MultiSliderThumbCollection, MultiSliderThumbRangePosition, MultiSliderThumbRangePosition_$type, MultiSliderThumbValueChangingEventArgs, MultiSliderTrackShadeOrientation_$type, MultiSliderTrackThumbRange, MultiSliderView, MultiSliderVisualArea_$type, MultiSliderYValueChangingEventArgs, NativeUIXInputsFactory, PrefixShiftType, PrefixShiftType_$type, PrefixView, PrefixVisualModelExport, Replaced, RippleView, RippleVisualModelExport, SelectedValueChangedEventArgs, SuffixShiftType, SuffixShiftType_$type, SuffixView, SuffixVisualModelExport, TextBlockVisualModelExport, TextElementsVisualModelExport, Theme, ThemeResolver, XButton, XButtonBridge, XButtonGroup, XButtonGroupBridge, XButtonGroupButtonCollection, XCalendar, XCalendarLocaleEn, XCheckbox, XCheckboxBridge, XComponentBridge, XDatePicker, XIcon, XIconBridge, XIconButtonBridge, XInput, XInputBridge, XInputGroup, XInputGroupInputCollection, XInputGroupItem, XLabel, XPopupBridge, XPrefix, XRipple, XSuffix };