igniteui-angular-core 13.2.0-beta.3 → 14.1.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 (92) hide show
  1. package/bundles/igniteui-angular-core.umd.js +1073 -807
  2. package/bundles/igniteui-angular-core.umd.min.js +1 -1
  3. package/esm2015/lib/BlazorCodeGeneratingComponentRendererModuleEmitter.js +9 -9
  4. package/esm2015/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +391 -322
  5. package/esm2015/lib/CodeGeneratingComponentRendererDataEmitter.js +2 -2
  6. package/esm2015/lib/CodeGeneratingComponentRendererHandlerEmitter.js +2 -2
  7. package/esm2015/lib/CodeGeneratingComponentRendererModuleEmitter.js +14 -11
  8. package/esm2015/lib/CodeGeneratingRendererResult.js +56 -44
  9. package/esm2015/lib/CodeGenerationFolderTemplate.js +41 -37
  10. package/esm2015/lib/ComponentRendererAdapter.js +3 -0
  11. package/esm2015/lib/ComponentRenderer_combined.js +1 -1
  12. package/esm2015/lib/DataGridPagerDescriptionModule.js +2 -0
  13. package/esm2015/lib/DescriptionSerializer.js +70 -56
  14. package/esm2015/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.js +24 -22
  15. package/esm2015/lib/FinancialChartDescriptionModule.js +2 -0
  16. package/esm2015/lib/IgcSliderBridge.js +38 -12
  17. package/esm2015/lib/NativeUIButton.js +2 -1
  18. package/esm2015/lib/NativeUICheckbox.js +2 -1
  19. package/esm2015/lib/NativeUIDropDown.js +2 -1
  20. package/esm2015/lib/NativeUIInput.js +2 -1
  21. package/esm2015/lib/NativeUIInputsFactory.js +1 -0
  22. package/esm2015/lib/NativeUISlider.js +26 -11
  23. package/esm2015/lib/PropertyEditorPropertyDescriptionChangedEventArgsDescription.js +8 -0
  24. package/esm2015/lib/PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata.js +1 -0
  25. package/esm2015/lib/StackedFragmentSeriesDescription.js +121 -121
  26. package/esm2015/lib/StackedFragmentSeriesDescriptionMetadata.js +1 -1
  27. package/esm2015/lib/TSCodeGeneratingComponentRendererModuleEmitter.js +36 -34
  28. package/esm2015/lib/WebDropdownGroupDescription.js +2 -10
  29. package/esm2015/lib/WebDropdownGroupDescriptionMetadata.js +0 -3
  30. package/esm2015/lib/WebTreeDescriptionModule.js +0 -4
  31. package/esm2015/lib/WebTreeItemDescription.js +14 -22
  32. package/esm2015/lib/WebTreeItemDescriptionMetadata.js +1 -2
  33. package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescription.js +3 -3
  34. package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +3 -1
  35. package/esm2015/lib/WebTreeSelectionOptionsEventDetailDescription.js +36 -0
  36. package/esm2015/lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata.js +38 -0
  37. package/esm2015/public_api.js +2 -0
  38. package/esm5/lib/BlazorCodeGeneratingComponentRendererModuleEmitter.js +9 -9
  39. package/esm5/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +458 -371
  40. package/esm5/lib/CodeGeneratingComponentRendererDataEmitter.js +2 -2
  41. package/esm5/lib/CodeGeneratingComponentRendererHandlerEmitter.js +2 -2
  42. package/esm5/lib/CodeGeneratingComponentRendererModuleEmitter.js +18 -11
  43. package/esm5/lib/CodeGeneratingRendererResult.js +95 -66
  44. package/esm5/lib/CodeGenerationFolderTemplate.js +40 -36
  45. package/esm5/lib/ComponentRendererAdapter.js +3 -0
  46. package/esm5/lib/ComponentRenderer_combined.js +1 -1
  47. package/esm5/lib/DataGridPagerDescriptionModule.js +2 -0
  48. package/esm5/lib/DescriptionSerializer.js +70 -56
  49. package/esm5/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.js +24 -22
  50. package/esm5/lib/FinancialChartDescriptionModule.js +2 -0
  51. package/esm5/lib/IgcSliderBridge.js +38 -12
  52. package/esm5/lib/NativeUIButton.js +2 -1
  53. package/esm5/lib/NativeUICheckbox.js +2 -1
  54. package/esm5/lib/NativeUIDropDown.js +2 -1
  55. package/esm5/lib/NativeUIInput.js +2 -1
  56. package/esm5/lib/NativeUIInputsFactory.js +1 -0
  57. package/esm5/lib/NativeUISlider.js +25 -6
  58. package/esm5/lib/PropertyEditorPropertyDescriptionChangedEventArgsDescription.js +14 -1
  59. package/esm5/lib/PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata.js +1 -0
  60. package/esm5/lib/StackedFragmentSeriesDescription.js +120 -120
  61. package/esm5/lib/StackedFragmentSeriesDescriptionMetadata.js +1 -1
  62. package/esm5/lib/TSCodeGeneratingComponentRendererModuleEmitter.js +36 -34
  63. package/esm5/lib/WebDropdownGroupDescription.js +1 -13
  64. package/esm5/lib/WebDropdownGroupDescriptionMetadata.js +0 -3
  65. package/esm5/lib/WebTreeDescriptionModule.js +0 -4
  66. package/esm5/lib/WebTreeItemDescription.js +13 -25
  67. package/esm5/lib/WebTreeItemDescriptionMetadata.js +1 -2
  68. package/esm5/lib/WebTreeSelectionOptionsEventArgsDescription.js +2 -2
  69. package/esm5/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +3 -1
  70. package/esm5/lib/WebTreeSelectionOptionsEventDetailDescription.js +46 -0
  71. package/esm5/lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata.js +42 -0
  72. package/esm5/public_api.js +2 -0
  73. package/fesm2015/igniteui-angular-core.js +947 -733
  74. package/fesm5/igniteui-angular-core.js +1072 -808
  75. package/lib/BlazorCodeGeneratingComponentRendererModuleEmitter.d.ts +3 -3
  76. package/lib/CodeGeneratingComponentRendererCodeEmitter_combined.d.ts +120 -114
  77. package/lib/CodeGeneratingComponentRendererModuleEmitter.d.ts +6 -5
  78. package/lib/CodeGeneratingRendererResult.d.ts +15 -12
  79. package/lib/DescriptionSerializer.d.ts +7 -6
  80. package/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.d.ts +7 -7
  81. package/lib/IgcSliderBridge.d.ts +7 -3
  82. package/lib/NativeUISlider.d.ts +9 -6
  83. package/lib/PropertyEditorPropertyDescriptionChangedEventArgsDescription.d.ts +3 -0
  84. package/lib/StackedFragmentSeriesDescription.d.ts +46 -46
  85. package/lib/TSCodeGeneratingComponentRendererModuleEmitter.d.ts +7 -7
  86. package/lib/WebDropdownGroupDescription.d.ts +0 -4
  87. package/lib/WebTreeItemDescription.d.ts +6 -9
  88. package/lib/WebTreeSelectionOptionsEventArgsDescription.d.ts +3 -3
  89. package/lib/WebTreeSelectionOptionsEventDetailDescription.d.ts +17 -0
  90. package/lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata.d.ts +13 -0
  91. package/package.json +4 -4
  92. package/public_api.d.ts +2 -0
@@ -34,14 +34,14 @@ export let DescriptionSerializer = /*@__PURE__*/ (() => {
34
34
  this.i = null;
35
35
  this.e = false;
36
36
  }
37
- o(a, b) {
37
+ p(a, b) {
38
38
  let c = DescriptionTreeBuilder.createTree(a, b);
39
39
  let d = new DescriptionSerializerBuilder();
40
- this.p(a, c, d);
40
+ this.q(a, c, d);
41
41
  return d.toString();
42
42
  }
43
- s(a, b, c) {
44
- this.p(a, b, c);
43
+ t(a, b, c) {
44
+ this.q(a, b, c);
45
45
  }
46
46
  c(a, b) {
47
47
  let c = new JsonDictionaryParser();
@@ -66,7 +66,7 @@ export let DescriptionSerializer = /*@__PURE__*/ (() => {
66
66
  this.e = false;
67
67
  return g;
68
68
  }
69
- u(a, b, c, d, e) {
69
+ v(a, b, c, d, e) {
70
70
  if (this.g) {
71
71
  a.w(b, c, d, e);
72
72
  }
@@ -127,14 +127,14 @@ export let DescriptionSerializer = /*@__PURE__*/ (() => {
127
127
  break;
128
128
  }
129
129
  if (!this.e) {
130
- this.u(a, h, k, l, q);
130
+ this.v(a, h, k, l, q);
131
131
  }
132
132
  }
133
133
  else if (typeCast(JsonDictionaryObject.$, p) !== null) {
134
134
  let r = p;
135
135
  let s = this.b(a, r, l.knownType);
136
136
  f.e(s);
137
- this.u(a, h, k, l, s.result);
137
+ this.v(a, h, k, l, s.result);
138
138
  }
139
139
  else if (typeCast(JsonDictionaryArray.$, p) !== null) {
140
140
  let t = p;
@@ -148,50 +148,64 @@ export let DescriptionSerializer = /*@__PURE__*/ (() => {
148
148
  u = l.collectionElementType;
149
149
  }
150
150
  let w = this.a(f, a, t, u);
151
+ if (this.f) {
152
+ if (l.propertyName.toLowerCase() == "includedproperties" || l.propertyName.toLowerCase() == "excludedproperties") {
153
+ let x = w;
154
+ let y = new Array(x.length);
155
+ for (let z = 0; z < x.length; z++) {
156
+ y[z] = this.n(x[z]);
157
+ }
158
+ w = y;
159
+ }
160
+ }
151
161
  if (!this.e || v) {
152
- this.u(a, h, k, l, w);
162
+ this.v(a, h, k, l, w);
153
163
  }
154
164
  }
155
165
  else {
156
- let x = l.specificExternalType;
157
- if (x == null && l.knownType == 3) {
158
- x = "DateTime";
166
+ let aa = l.specificExternalType;
167
+ if (aa == null && l.knownType == 3) {
168
+ aa = "DateTime";
159
169
  }
160
- if (x == null) {
161
- x = "String";
170
+ if (aa == null) {
171
+ aa = "String";
162
172
  }
163
- let y = p;
164
- let z = this.j(f, a, y, x);
173
+ let ab = p;
174
+ let ac = this.j(f, a, ab, aa);
165
175
  if (this.f) {
166
- if (stringEndsWith(l.propertyName, "MemberPath") || (g != null && stringEndsWith(g, "Axis") && l.propertyName.toLowerCase() == "label")) {
167
- let aa = z.toString();
168
- if (this.i != null) {
169
- z = this.i(aa);
170
- }
171
- else {
172
- if (stringStartsWith(aa, "{")) {
173
- if (!stringStartsWith(aa, "{[")) {
174
- aa = aa.substr(1, aa.length - 2);
175
- aa = "{[" + aa + "]}";
176
- z = aa;
177
- }
178
- }
179
- else {
180
- if (!stringStartsWith(aa, "[")) {
181
- aa = "[" + aa + "]";
182
- z = aa;
183
- }
184
- }
185
- }
176
+ if (stringEndsWith(l.propertyName, "MemberPath") || stringEndsWith(l.propertyName.toLowerCase(), "field") || (g != null && stringEndsWith(g, "Axis") && l.propertyName.toLowerCase() == "label")) {
177
+ ac = this.n(ac);
186
178
  }
187
179
  }
188
180
  if (!this.e) {
189
- this.u(a, h, k, l, z);
181
+ this.v(a, h, k, l, ac);
190
182
  }
191
183
  }
192
184
  }
193
185
  return f;
194
186
  }
187
+ n(a) {
188
+ let b = a.toString();
189
+ if (this.i != null) {
190
+ a = this.i(b);
191
+ }
192
+ else {
193
+ if (stringStartsWith(b, "{")) {
194
+ if (!stringStartsWith(b, "{[")) {
195
+ b = b.substr(1, b.length - 2);
196
+ b = "{[" + b + "]}";
197
+ a = b;
198
+ }
199
+ }
200
+ else {
201
+ if (!stringStartsWith(b, "[")) {
202
+ b = "[" + b + "]";
203
+ a = b;
204
+ }
205
+ }
206
+ }
207
+ return a;
208
+ }
195
209
  k(a, b) {
196
210
  if (b == null) {
197
211
  return null;
@@ -310,7 +324,7 @@ export let DescriptionSerializer = /*@__PURE__*/ (() => {
310
324
  return c.value;
311
325
  }
312
326
  }
313
- p(a, b, c) {
327
+ q(a, b, c) {
314
328
  c.f("{");
315
329
  c.i();
316
330
  c.f("\"type\": \"" + b.h + "\"");
@@ -320,25 +334,25 @@ export let DescriptionSerializer = /*@__PURE__*/ (() => {
320
334
  if (e >= 0) {
321
335
  c.f(",");
322
336
  }
323
- this.q(a, b, f, c);
337
+ this.r(a, b, f, c);
324
338
  }
325
339
  c.h();
326
340
  c.f("}");
327
341
  }
328
- n(a) {
342
+ o(a) {
329
343
  if (a == null) {
330
344
  return null;
331
345
  }
332
346
  return a.substr(0, 1).toLowerCase() + a.substr(1);
333
347
  }
334
- q(a, b, c, d) {
348
+ r(a, b, c, d) {
335
349
  if (c.c.toLowerCase() == "type") {
336
350
  return;
337
351
  }
338
- d.e("\"" + this.n(c.c) + "\": ");
339
- this.t(a, b, c, c.b, d);
352
+ d.e("\"" + this.o(c.c) + "\": ");
353
+ this.u(a, b, c, c.b, d);
340
354
  }
341
- t(a, b, c, d, e) {
355
+ u(a, b, c, d, e) {
342
356
  let f = 2;
343
357
  if (c.a != null) {
344
358
  f = c.a.knownType;
@@ -360,17 +374,17 @@ export let DescriptionSerializer = /*@__PURE__*/ (() => {
360
374
  }
361
375
  let j = h;
362
376
  if (typeCast(DescriptionTreeNode.$, g[i]) !== null) {
363
- this.p(a, g[i], e);
377
+ this.q(a, g[i], e);
364
378
  }
365
379
  else {
366
- this.r(a, h, g[i], e);
380
+ this.s(a, h, g[i], e);
367
381
  }
368
382
  }
369
383
  e.e("]");
370
384
  }
371
385
  break;
372
386
  case 7:
373
- this.r(a, "Boolean", d, e);
387
+ this.s(a, "Boolean", d, e);
374
388
  break;
375
389
  case 9:
376
390
  {
@@ -383,10 +397,10 @@ export let DescriptionSerializer = /*@__PURE__*/ (() => {
383
397
  }
384
398
  let n = l;
385
399
  if (typeCast(DescriptionTreeNode.$, k[m]) !== null) {
386
- this.p(a, k[m], e);
400
+ this.q(a, k[m], e);
387
401
  }
388
402
  else {
389
- this.r(a, l, k[m], e);
403
+ this.s(a, l, k[m], e);
390
404
  }
391
405
  }
392
406
  e.e("]");
@@ -398,29 +412,29 @@ export let DescriptionSerializer = /*@__PURE__*/ (() => {
398
412
  case 20:
399
413
  case 5:
400
414
  case 2:
401
- this.r(a, "String", d, e);
415
+ this.s(a, "String", d, e);
402
416
  break;
403
417
  case 3:
404
- this.r(a, "DateTime", d, e);
418
+ this.s(a, "DateTime", d, e);
405
419
  break;
406
420
  case 8:
407
421
  if (c.a.specificExternalType.toLowerCase() == "string") {
408
- this.r(a, "String", d, e);
422
+ this.s(a, "String", d, e);
409
423
  }
410
424
  else {
411
- this.p(a, d, e);
425
+ this.q(a, d, e);
412
426
  }
413
427
  break;
414
428
  case 1:
415
- this.r(a, "Double", d, e);
429
+ this.s(a, "Double", d, e);
416
430
  break;
417
431
  case 14:
418
432
  case 12:
419
433
  case 11:
420
- this.p(a, d, e);
434
+ this.q(a, d, e);
421
435
  break;
422
436
  case 21:
423
- this.r(a, "TimeSpan", d, e);
437
+ this.s(a, "TimeSpan", d, e);
424
438
  break;
425
439
  case 17:
426
440
  case 0:
@@ -428,7 +442,7 @@ export let DescriptionSerializer = /*@__PURE__*/ (() => {
428
442
  case 13: throw new NotImplementedException(0);
429
443
  }
430
444
  }
431
- r(a, b, c, d) {
445
+ s(a, b, c, d) {
432
446
  switch (b.toLowerCase()) {
433
447
  case "string":
434
448
  if (c == null) {
@@ -16,43 +16,45 @@ export let DotNetCodeGeneratingComponentRendererModuleEmitter = /*@__PURE__*/ ((
16
16
  class DotNetCodeGeneratingComponentRendererModuleEmitter extends CodeGeneratingComponentRendererModuleEmitter {
17
17
  constructor(a, b, c) {
18
18
  super(b, c);
19
- this.o = 0;
20
- this.r = 0;
21
- this.p = false;
22
- this.q = new Dictionary$2(String_$type, List$1.$.specialize(String_$type), 0);
23
- this.o = a;
19
+ this.p = 0;
20
+ this.s = 0;
21
+ this.q = false;
22
+ this.r = new Dictionary$2(String_$type, List$1.$.specialize(String_$type), 0);
23
+ this.p = a;
24
24
  }
25
- get s() {
26
- return this.r;
25
+ get t() {
26
+ return this.s;
27
27
  }
28
- n() {
29
- super.n();
30
- this.r = 0;
28
+ o() {
29
+ super.o();
30
+ this.s = 0;
31
31
  }
32
- get t() {
33
- switch (this.o) {
32
+ get u() {
33
+ switch (this.p) {
34
34
  case 0: return "Xam";
35
35
  case 4: return "Ultra";
36
36
  case 5: return "Igb";
37
37
  }
38
38
  return "";
39
39
  }
40
- k(a) {
41
- super.k(a);
42
- if (a == "withDescriptions" && this.o != 5) {
43
- this.p = true;
40
+ l(a) {
41
+ super.l(a);
42
+ if (a == "withDescriptions" && this.p != 5) {
43
+ this.q = true;
44
44
  return;
45
45
  }
46
46
  let b = "";
47
47
  let c = a.split('/');
48
48
  if (c.length == 1) {
49
49
  b = c[0];
50
+ this.j.addPackageRef(b);
50
51
  }
51
52
  else {
53
+ this.j.addPackageRef(c[0]);
52
54
  b = c[1];
53
55
  }
54
- if (this.p) {
55
- if (this.r == 0) {
56
+ if (this.q) {
57
+ if (this.s == 0) {
56
58
  this.c.k("private ComponentRenderer _componentRenderer = null;");
57
59
  this.c.k("public ComponentRenderer Renderer");
58
60
  this.c.k("{");
@@ -73,11 +75,11 @@ export let DotNetCodeGeneratingComponentRendererModuleEmitter = /*@__PURE__*/ ((
73
75
  }
74
76
  this.c.k(d + ".Register(context);");
75
77
  }
76
- this.r++;
78
+ this.s++;
77
79
  }
78
- m() {
79
- super.m();
80
- if (this.p) {
80
+ n() {
81
+ super.n();
82
+ if (this.q) {
81
83
  this.g.addUsing("using Infragistics.Controls.Description;");
82
84
  this.c.f();
83
85
  this.c.k("}");
@@ -28,6 +28,7 @@ import { ItemToolTipLayerDescriptionModule } from "./ItemToolTipLayerDescription
28
28
  import { CategoryToolTipLayerDescriptionModule } from "./CategoryToolTipLayerDescriptionModule";
29
29
  import { CategoryHighlightLayerDescriptionModule } from "./CategoryHighlightLayerDescriptionModule";
30
30
  import { CategoryItemHighlightLayerDescriptionModule } from "./CategoryItemHighlightLayerDescriptionModule";
31
+ import { DataToolTipLayerDescriptionModule } from "./DataToolTipLayerDescriptionModule";
31
32
  import { FinalValueLayerDescriptionModule } from "./FinalValueLayerDescriptionModule";
32
33
  import { NumberAbbreviatorDescriptionModule } from "./NumberAbbreviatorDescriptionModule";
33
34
  import { DataChartInteractivityDescriptionModule } from "./DataChartInteractivityDescriptionModule";
@@ -62,6 +63,7 @@ export let FinancialChartDescriptionModule = /*@__PURE__*/ (() => {
62
63
  CategoryToolTipLayerDescriptionModule.register(a);
63
64
  CategoryHighlightLayerDescriptionModule.register(a);
64
65
  CategoryItemHighlightLayerDescriptionModule.register(a);
66
+ DataToolTipLayerDescriptionModule.register(a);
65
67
  FinalValueLayerDescriptionModule.register(a);
66
68
  NumberAbbreviatorDescriptionModule.register(a);
67
69
  DataChartInteractivityDescriptionModule.register(a);
@@ -14,24 +14,43 @@ export let IgcSliderBridge = /*@__PURE__*/ (() => {
14
14
  class IgcSliderBridge extends NativeUIElementBridge {
15
15
  constructor() {
16
16
  super(...arguments);
17
- this.d = null;
18
- this.c = null;
19
17
  this.e = null;
18
+ this.c = null;
19
+ this.g = null;
20
+ this.f = null;
21
+ this.d = null;
22
+ this.h = null;
20
23
  }
21
24
  addHandler(a, b, c, d) {
22
25
  switch (c) {
26
+ case 0:
27
+ {
28
+ let e = a;
29
+ this.f = e.listen("igcInput", runOn(this, this.j));
30
+ this.d = d;
31
+ this.h = b;
32
+ }
33
+ break;
23
34
  case 4:
24
- let e = a;
25
- this.d = e.listen("igcChange", runOn(this, this.f));
26
- this.c = d;
27
- this.e = b;
35
+ {
36
+ let f = a;
37
+ this.e = f.listen("igcChange", runOn(this, this.i));
38
+ this.c = d;
39
+ this.g = b;
40
+ }
28
41
  break;
29
42
  }
30
43
  }
31
- f(a) {
44
+ j(a) {
45
+ if (this.d != null) {
46
+ let b = new NativeUISliderValueChangedEventArgs();
47
+ this.d(this.h, b);
48
+ }
49
+ }
50
+ i(a) {
32
51
  if (this.c != null) {
33
52
  let b = new NativeUISliderValueChangedEventArgs();
34
- this.c(this.e, b);
53
+ this.c(this.g, b);
35
54
  }
36
55
  }
37
56
  getValue(a, b) {
@@ -45,12 +64,19 @@ export let IgcSliderBridge = /*@__PURE__*/ (() => {
45
64
  }
46
65
  removeHandler(a, b, c, d) {
47
66
  switch (c) {
48
- case 2:
49
- if (this.d != null) {
50
- this.d();
67
+ case 0:
68
+ if (this.f != null) {
69
+ this.f();
70
+ }
71
+ this.d = null;
72
+ this.h = null;
73
+ break;
74
+ case 4:
75
+ if (this.e != null) {
76
+ this.e();
51
77
  }
52
78
  this.c = null;
53
- this.e = null;
79
+ this.g = null;
54
80
  break;
55
81
  }
56
82
  }
@@ -37,12 +37,13 @@ export let NativeUIButton = /*@__PURE__*/ (() => {
37
37
  return this.ap;
38
38
  }
39
39
  set aq(a) {
40
+ let b = this.ap;
40
41
  this.ap = a;
41
42
  if (this.ap != null) {
42
43
  this.w(1, this.ap);
43
44
  }
44
45
  else {
45
- this.ab(1, this.ap);
46
+ this.ab(1, b);
46
47
  }
47
48
  }
48
49
  }
@@ -36,12 +36,13 @@ export let NativeUICheckbox = /*@__PURE__*/ (() => {
36
36
  return this.ap;
37
37
  }
38
38
  set aq(a) {
39
+ let b = this.ap;
39
40
  this.ap = a;
40
41
  if (this.ap != null) {
41
42
  this.w(2, this.ap);
42
43
  }
43
44
  else {
44
- this.ab(2, this.ap);
45
+ this.ab(2, b);
45
46
  }
46
47
  }
47
48
  }
@@ -30,12 +30,13 @@ export let NativeUIDropDown = /*@__PURE__*/ (() => {
30
30
  return this.aq;
31
31
  }
32
32
  set ar(a) {
33
+ let b = this.aq;
33
34
  this.aq = a;
34
35
  if (this.aq != null) {
35
36
  this.w(3, this.aq);
36
37
  }
37
38
  else {
38
- this.ab(3, this.aq);
39
+ this.ab(3, b);
39
40
  }
40
41
  }
41
42
  get at() {
@@ -43,12 +43,13 @@ export let NativeUIInput = /*@__PURE__*/ (() => {
43
43
  return this.ar;
44
44
  }
45
45
  set as(a) {
46
+ let b = this.ar;
46
47
  this.ar = a;
47
48
  if (this.ar != null) {
48
49
  this.w(0, this.ar);
49
50
  }
50
51
  else {
51
- this.ab(0, this.ar);
52
+ this.ab(0, b);
52
53
  }
53
54
  }
54
55
  }
@@ -105,6 +105,7 @@ export let NativeUIInputsFactory = /*@__PURE__*/ (() => {
105
105
  j(a, b) {
106
106
  let c = a;
107
107
  let d = c.createElement("igc-slider");
108
+ d.setProperty("hideTooltip", true);
108
109
  let e = new IgcSliderBridge();
109
110
  let f = new NativeUISlider();
110
111
  f.u = d;
@@ -14,48 +14,63 @@ export let NativeUISlider = /*@__PURE__*/ (() => {
14
14
  constructor() {
15
15
  super(...arguments);
16
16
  this.ap = null;
17
+ this.aq = null;
17
18
  }
18
19
  get_c() {
19
20
  return 5;
20
21
  }
21
- get au() {
22
+ get aw() {
22
23
  let a = this.o(2);
23
24
  return a;
24
25
  }
25
- set au(a) {
26
+ set aw(a) {
26
27
  this.ad(2, a);
27
28
  }
28
- get as() {
29
+ get au() {
29
30
  let a = this.o(10);
30
31
  return a;
31
32
  }
32
- set as(a) {
33
+ set au(a) {
33
34
  this.ad(10, a);
34
35
  }
35
- get ar() {
36
+ get at() {
36
37
  let a = this.o(11);
37
38
  return a;
38
39
  }
39
- set ar(a) {
40
+ set at(a) {
40
41
  this.ad(11, a);
41
42
  }
42
- get at() {
43
+ get av() {
43
44
  let a = this.o(12);
44
45
  return a;
45
46
  }
46
- set at(a) {
47
+ set av(a) {
47
48
  this.ad(12, a);
48
49
  }
49
- get aq() {
50
+ get ar() {
50
51
  return this.ap;
51
52
  }
52
- set aq(a) {
53
+ set ar(a) {
54
+ let b = this.ap;
53
55
  this.ap = a;
54
56
  if (this.ap != null) {
55
57
  this.w(4, this.ap);
56
58
  }
57
59
  else {
58
- this.ab(4, this.ap);
60
+ this.ab(4, b);
61
+ }
62
+ }
63
+ get as() {
64
+ return this.aq;
65
+ }
66
+ set as(a) {
67
+ let b = this.aq;
68
+ this.aq = a;
69
+ if (this.aq != null) {
70
+ this.w(0, this.aq);
71
+ }
72
+ else {
73
+ this.ab(0, b);
59
74
  }
60
75
  }
61
76
  }
@@ -13,6 +13,7 @@ export let PropertyEditorPropertyDescriptionChangedEventArgsDescription = /*@__P
13
13
  class PropertyEditorPropertyDescriptionChangedEventArgsDescription extends Description {
14
14
  constructor() {
15
15
  super();
16
+ this.f = null;
16
17
  }
17
18
  get_type() {
18
19
  return "PropertyEditorPropertyDescriptionChangedEventArgs";
@@ -20,6 +21,13 @@ export let PropertyEditorPropertyDescriptionChangedEventArgsDescription = /*@__P
20
21
  get type() {
21
22
  return this.get_type();
22
23
  }
24
+ get newValue() {
25
+ return this.f;
26
+ }
27
+ set newValue(a) {
28
+ this.f = a;
29
+ this.e("NewValue");
30
+ }
23
31
  }
24
32
  PropertyEditorPropertyDescriptionChangedEventArgsDescription.$t = markType(PropertyEditorPropertyDescriptionChangedEventArgsDescription, 'PropertyEditorPropertyDescriptionChangedEventArgsDescription', Description.$);
25
33
  return PropertyEditorPropertyDescriptionChangedEventArgsDescription;
@@ -23,6 +23,7 @@ export let PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata
23
23
  a.s(PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata.a);
24
24
  }
25
25
  static c(a) {
26
+ a.item("NewValue", "Unknown");
26
27
  }
27
28
  static d(a) {
28
29
  PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata.b(a);