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
@@ -13,50 +13,50 @@ export let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
13
13
  class StackedFragmentSeriesDescription extends Description {
14
14
  constructor() {
15
15
  super();
16
- this.b4 = null;
17
- this.b3 = null;
18
- this.bl = null;
16
+ this.b6 = null;
17
+ this.b5 = null;
18
+ this.bn = null;
19
19
  this.j = false;
20
20
  this.f = false;
21
21
  this.an = 0;
22
22
  this.ac = 0;
23
- this.cj = null;
24
- this.bx = null;
23
+ this.cl = null;
24
+ this.bz = null;
25
25
  this.m = false;
26
26
  this.i = false;
27
27
  this.ao = 0;
28
28
  this.ad = 0;
29
29
  this.ap = 0;
30
30
  this.ae = 0;
31
- this.b7 = null;
32
- this.bo = null;
33
- this.b8 = null;
34
- this.bp = null;
35
31
  this.b9 = null;
36
32
  this.bq = null;
37
- this.b6 = null;
38
- this.b5 = null;
39
- this.bn = null;
40
- this.bm = null;
41
33
  this.ca = null;
42
34
  this.br = null;
43
35
  this.cb = null;
44
36
  this.bs = null;
37
+ this.b8 = null;
38
+ this.b7 = null;
39
+ this.bp = null;
40
+ this.bo = null;
45
41
  this.cc = null;
46
42
  this.bt = null;
47
43
  this.cd = null;
48
44
  this.bu = null;
49
45
  this.ce = null;
46
+ this.bv = null;
47
+ this.cf = null;
48
+ this.bw = null;
49
+ this.cg = null;
50
50
  this.ak = 0;
51
51
  this.z = 0;
52
- this.cf = null;
53
- this.bv = null;
52
+ this.ch = null;
53
+ this.bx = null;
54
54
  this.ag = 0;
55
55
  this.v = 0;
56
56
  this.ai = 0;
57
57
  this.x = 0;
58
- this.cg = null;
59
- this.bw = null;
58
+ this.ci = null;
59
+ this.by = null;
60
60
  this.ah = 0;
61
61
  this.w = 0;
62
62
  this.al = 0;
@@ -69,28 +69,28 @@ export let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
69
69
  this.af = 0;
70
70
  this.aj = 0;
71
71
  this.y = 0;
72
- this.ck = null;
73
- this.cl = null;
72
+ this.bl = null;
73
+ this.cm = null;
74
74
  this.bf = 0;
75
75
  this.bg = 0;
76
- this.cm = null;
77
76
  this.cn = null;
78
- this.l = false;
79
77
  this.co = null;
78
+ this.l = false;
79
+ this.cp = null;
80
80
  this.h = false;
81
81
  this.be = 0;
82
- this.b0 = null;
82
+ this.b2 = null;
83
+ this.b3 = null;
83
84
  this.b1 = null;
84
- this.bz = null;
85
- this.by = null;
85
+ this.b0 = null;
86
86
  this.bd = 0;
87
- this.cr = null;
88
- this.cp = null;
89
- this.cq = null;
90
87
  this.cs = null;
91
- this.b2 = null;
92
- this.ch = null;
93
- this.ci = null;
88
+ this.cq = null;
89
+ this.cr = null;
90
+ this.ct = null;
91
+ this.b4 = null;
92
+ this.cj = null;
93
+ this.ck = null;
94
94
  }
95
95
  get_type() {
96
96
  return "StackedFragmentSeries";
@@ -99,24 +99,24 @@ export let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
99
99
  return this.get_type();
100
100
  }
101
101
  get dataSourceRef() {
102
- return this.b4;
102
+ return this.b6;
103
103
  }
104
104
  set dataSourceRef(a) {
105
- this.b4 = a;
105
+ this.b6 = a;
106
106
  this.e("DataSourceRef");
107
107
  }
108
108
  get brush() {
109
- return this.b3;
109
+ return this.b5;
110
110
  }
111
111
  set brush(a) {
112
- this.b3 = a;
112
+ this.b5 = a;
113
113
  this.e("Brush");
114
114
  }
115
115
  get actualBrush() {
116
- return this.bl;
116
+ return this.bn;
117
117
  }
118
118
  set actualBrush(a) {
119
- this.bl = a;
119
+ this.bn = a;
120
120
  this.e("ActualBrush");
121
121
  }
122
122
  get isDropShadowEnabled() {
@@ -148,17 +148,17 @@ export let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
148
148
  this.e("ActualShadowBlur");
149
149
  }
150
150
  get shadowColor() {
151
- return this.cj;
151
+ return this.cl;
152
152
  }
153
153
  set shadowColor(a) {
154
- this.cj = a;
154
+ this.cl = a;
155
155
  this.e("ShadowColor");
156
156
  }
157
157
  get actualShadowColor() {
158
- return this.bx;
158
+ return this.bz;
159
159
  }
160
160
  set actualShadowColor(a) {
161
- this.bx = a;
161
+ this.bz = a;
162
162
  this.e("ActualShadowColor");
163
163
  }
164
164
  get useSingleShadow() {
@@ -204,136 +204,136 @@ export let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
204
204
  this.e("ActualShadowOffsetY");
205
205
  }
206
206
  get legendItemBadgeTemplateRef() {
207
- return this.b7;
207
+ return this.b9;
208
208
  }
209
209
  set legendItemBadgeTemplateRef(a) {
210
- this.b7 = a;
210
+ this.b9 = a;
211
211
  this.e("LegendItemBadgeTemplateRef");
212
212
  }
213
213
  get actualLegendItemBadgeTemplateRef() {
214
- return this.bo;
214
+ return this.bq;
215
215
  }
216
216
  set actualLegendItemBadgeTemplateRef(a) {
217
- this.bo = a;
217
+ this.bq = a;
218
218
  this.e("ActualLegendItemBadgeTemplateRef");
219
219
  }
220
220
  get legendItemTemplateRef() {
221
- return this.b8;
221
+ return this.ca;
222
222
  }
223
223
  set legendItemTemplateRef(a) {
224
- this.b8 = a;
224
+ this.ca = a;
225
225
  this.e("LegendItemTemplateRef");
226
226
  }
227
227
  get actualLegendItemTemplateRef() {
228
- return this.bp;
228
+ return this.br;
229
229
  }
230
230
  set actualLegendItemTemplateRef(a) {
231
- this.bp = a;
231
+ this.br = a;
232
232
  this.e("ActualLegendItemTemplateRef");
233
233
  }
234
234
  get legendItemVisibility() {
235
- return this.b9;
235
+ return this.cb;
236
236
  }
237
237
  set legendItemVisibility(a) {
238
- this.b9 = a;
238
+ this.cb = a;
239
239
  this.e("LegendItemVisibility");
240
240
  }
241
241
  get actualLegendItemVisibility() {
242
- return this.bq;
242
+ return this.bs;
243
243
  }
244
244
  set actualLegendItemVisibility(a) {
245
- this.bq = a;
245
+ this.bs = a;
246
246
  this.e("ActualLegendItemVisibility");
247
247
  }
248
248
  get legendItemBadgeShape() {
249
- return this.b6;
249
+ return this.b8;
250
250
  }
251
251
  set legendItemBadgeShape(a) {
252
- this.b6 = a;
252
+ this.b8 = a;
253
253
  this.e("LegendItemBadgeShape");
254
254
  }
255
255
  get legendItemBadgeMode() {
256
- return this.b5;
256
+ return this.b7;
257
257
  }
258
258
  set legendItemBadgeMode(a) {
259
- this.b5 = a;
259
+ this.b7 = a;
260
260
  this.e("LegendItemBadgeMode");
261
261
  }
262
262
  get actualLegendItemBadgeShape() {
263
- return this.bn;
263
+ return this.bp;
264
264
  }
265
265
  set actualLegendItemBadgeShape(a) {
266
- this.bn = a;
266
+ this.bp = a;
267
267
  this.e("ActualLegendItemBadgeShape");
268
268
  }
269
269
  get actualLegendItemBadgeMode() {
270
- return this.bm;
270
+ return this.bo;
271
271
  }
272
272
  set actualLegendItemBadgeMode(a) {
273
- this.bm = a;
273
+ this.bo = a;
274
274
  this.e("ActualLegendItemBadgeMode");
275
275
  }
276
276
  get markerBrush() {
277
- return this.ca;
277
+ return this.cc;
278
278
  }
279
279
  set markerBrush(a) {
280
- this.ca = a;
280
+ this.cc = a;
281
281
  this.e("MarkerBrush");
282
282
  }
283
283
  get actualMarkerBrush() {
284
- return this.br;
284
+ return this.bt;
285
285
  }
286
286
  set actualMarkerBrush(a) {
287
- this.br = a;
287
+ this.bt = a;
288
288
  this.e("ActualMarkerBrush");
289
289
  }
290
290
  get markerOutline() {
291
- return this.cb;
291
+ return this.cd;
292
292
  }
293
293
  set markerOutline(a) {
294
- this.cb = a;
294
+ this.cd = a;
295
295
  this.e("MarkerOutline");
296
296
  }
297
297
  get actualMarkerOutline() {
298
- return this.bs;
298
+ return this.bu;
299
299
  }
300
300
  set actualMarkerOutline(a) {
301
- this.bs = a;
301
+ this.bu = a;
302
302
  this.e("ActualMarkerOutline");
303
303
  }
304
304
  get markerTemplateRef() {
305
- return this.cc;
305
+ return this.ce;
306
306
  }
307
307
  set markerTemplateRef(a) {
308
- this.cc = a;
308
+ this.ce = a;
309
309
  this.e("MarkerTemplateRef");
310
310
  }
311
311
  get actualMarkerTemplateRef() {
312
- return this.bt;
312
+ return this.bv;
313
313
  }
314
314
  set actualMarkerTemplateRef(a) {
315
- this.bt = a;
315
+ this.bv = a;
316
316
  this.e("ActualMarkerTemplateRef");
317
317
  }
318
318
  get markerType() {
319
- return this.cd;
319
+ return this.cf;
320
320
  }
321
321
  set markerType(a) {
322
- this.cd = a;
322
+ this.cf = a;
323
323
  this.e("MarkerType");
324
324
  }
325
325
  get actualMarkerType() {
326
- return this.bu;
326
+ return this.bw;
327
327
  }
328
328
  set actualMarkerType(a) {
329
- this.bu = a;
329
+ this.bw = a;
330
330
  this.e("ActualMarkerType");
331
331
  }
332
332
  get name() {
333
- return this.ce;
333
+ return this.cg;
334
334
  }
335
335
  set name(a) {
336
- this.ce = a;
336
+ this.cg = a;
337
337
  this.e("Name");
338
338
  }
339
339
  get opacity() {
@@ -351,17 +351,17 @@ export let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
351
351
  this.e("ActualOpacity");
352
352
  }
353
353
  get outline() {
354
- return this.cf;
354
+ return this.ch;
355
355
  }
356
356
  set outline(a) {
357
- this.cf = a;
357
+ this.ch = a;
358
358
  this.e("Outline");
359
359
  }
360
360
  get actualOutline() {
361
- return this.bv;
361
+ return this.bx;
362
362
  }
363
363
  set actualOutline(a) {
364
- this.bv = a;
364
+ this.bx = a;
365
365
  this.e("ActualOutline");
366
366
  }
367
367
  get areaFillOpacity() {
@@ -393,17 +393,17 @@ export let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
393
393
  this.e("ActualMarkerFillOpacity");
394
394
  }
395
395
  get outlineMode() {
396
- return this.cg;
396
+ return this.ci;
397
397
  }
398
398
  set outlineMode(a) {
399
- this.cg = a;
399
+ this.ci = a;
400
400
  this.e("OutlineMode");
401
401
  }
402
402
  get actualOutlineMode() {
403
- return this.bw;
403
+ return this.by;
404
404
  }
405
405
  set actualOutlineMode(a) {
406
- this.bw = a;
406
+ this.by = a;
407
407
  this.e("ActualOutlineMode");
408
408
  }
409
409
  get highlightingFadeOpacity() {
@@ -490,18 +490,18 @@ export let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
490
490
  this.y = a;
491
491
  this.e("ActualMarkerThickness");
492
492
  }
493
- get titleRef() {
494
- return this.ck;
493
+ get title() {
494
+ return this.bl;
495
495
  }
496
- set titleRef(a) {
497
- this.ck = a;
498
- this.e("TitleRef");
496
+ set title(a) {
497
+ this.bl = a;
498
+ this.e("Title");
499
499
  }
500
500
  get transitionEasingFunctionRef() {
501
- return this.cl;
501
+ return this.cm;
502
502
  }
503
503
  set transitionEasingFunctionRef(a) {
504
- this.cl = a;
504
+ this.cm = a;
505
505
  this.e("TransitionEasingFunctionRef");
506
506
  }
507
507
  get transitionDuration() {
@@ -519,17 +519,17 @@ export let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
519
519
  this.e("TransitionInDuration");
520
520
  }
521
521
  get transitionInEasingFunctionRef() {
522
- return this.cm;
522
+ return this.cn;
523
523
  }
524
524
  set transitionInEasingFunctionRef(a) {
525
- this.cm = a;
525
+ this.cn = a;
526
526
  this.e("TransitionInEasingFunctionRef");
527
527
  }
528
528
  get transitionInMode() {
529
- return this.cn;
529
+ return this.co;
530
530
  }
531
531
  set transitionInMode(a) {
532
- this.cn = a;
532
+ this.co = a;
533
533
  this.e("TransitionInMode");
534
534
  }
535
535
  get isTransitionInEnabled() {
@@ -540,10 +540,10 @@ export let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
540
540
  this.e("IsTransitionInEnabled");
541
541
  }
542
542
  get transitionInSpeedType() {
543
- return this.co;
543
+ return this.cp;
544
544
  }
545
545
  set transitionInSpeedType(a) {
546
- this.co = a;
546
+ this.cp = a;
547
547
  this.e("TransitionInSpeedType");
548
548
  }
549
549
  get actualIsTransitionInEnabled() {
@@ -561,31 +561,31 @@ export let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
561
561
  this.e("ActualTransitionInDuration");
562
562
  }
563
563
  get actualTransitionInMode() {
564
- return this.b0;
564
+ return this.b2;
565
565
  }
566
566
  set actualTransitionInMode(a) {
567
- this.b0 = a;
567
+ this.b2 = a;
568
568
  this.e("ActualTransitionInMode");
569
569
  }
570
570
  get actualTransitionInSpeedType() {
571
- return this.b1;
571
+ return this.b3;
572
572
  }
573
573
  set actualTransitionInSpeedType(a) {
574
- this.b1 = a;
574
+ this.b3 = a;
575
575
  this.e("ActualTransitionInSpeedType");
576
576
  }
577
577
  get actualTransitionInEasingFunctionRef() {
578
- return this.bz;
578
+ return this.b1;
579
579
  }
580
580
  set actualTransitionInEasingFunctionRef(a) {
581
- this.bz = a;
581
+ this.b1 = a;
582
582
  this.e("ActualTransitionInEasingFunctionRef");
583
583
  }
584
584
  get actualTransitionEasingFunctionRef() {
585
- return this.by;
585
+ return this.b0;
586
586
  }
587
587
  set actualTransitionEasingFunctionRef(a) {
588
- this.by = a;
588
+ this.b0 = a;
589
589
  this.e("ActualTransitionEasingFunctionRef");
590
590
  }
591
591
  get actualTransitionDuration() {
@@ -596,52 +596,52 @@ export let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
596
596
  this.e("ActualTransitionDuration");
597
597
  }
598
598
  get valueMemberPath() {
599
- return this.cr;
599
+ return this.cs;
600
600
  }
601
601
  set valueMemberPath(a) {
602
- this.cr = a;
602
+ this.cs = a;
603
603
  this.e("ValueMemberPath");
604
604
  }
605
605
  get valueMemberAsLegendLabel() {
606
- return this.cp;
606
+ return this.cq;
607
607
  }
608
608
  set valueMemberAsLegendLabel(a) {
609
- this.cp = a;
609
+ this.cq = a;
610
610
  this.e("ValueMemberAsLegendLabel");
611
611
  }
612
612
  get valueMemberAsLegendUnit() {
613
- return this.cq;
613
+ return this.cr;
614
614
  }
615
615
  set valueMemberAsLegendUnit(a) {
616
- this.cq = a;
616
+ this.cr = a;
617
617
  this.e("ValueMemberAsLegendUnit");
618
618
  }
619
619
  get visibility() {
620
- return this.cs;
620
+ return this.ct;
621
621
  }
622
622
  set visibility(a) {
623
- this.cs = a;
623
+ this.ct = a;
624
624
  this.e("Visibility");
625
625
  }
626
626
  get actualVisibility() {
627
- return this.b2;
627
+ return this.b4;
628
628
  }
629
629
  set actualVisibility(a) {
630
- this.b2 = a;
630
+ this.b4 = a;
631
631
  this.e("ActualVisibility");
632
632
  }
633
633
  get parentOrLocalBrush() {
634
- return this.ch;
634
+ return this.cj;
635
635
  }
636
636
  set parentOrLocalBrush(a) {
637
- this.ch = a;
637
+ this.cj = a;
638
638
  this.e("ParentOrLocalBrush");
639
639
  }
640
640
  get propertyUpdatedRef() {
641
- return this.ci;
641
+ return this.ck;
642
642
  }
643
643
  set propertyUpdatedRef(a) {
644
- this.ci = a;
644
+ this.ck = a;
645
645
  this.e("PropertyUpdatedRef");
646
646
  }
647
647
  }
@@ -91,7 +91,7 @@ export let StackedFragmentSeriesDescriptionMetadata = /*@__PURE__*/ (() => {
91
91
  a.item("ActualThickness", "Number:double");
92
92
  a.item("MarkerThickness", "Number:double");
93
93
  a.item("ActualMarkerThickness", "Number:double");
94
- a.item("TitleRef", "(w:Title,wf:Title)DataRef");
94
+ a.item("Title", "Unknown");
95
95
  a.item("TransitionEasingFunctionRef", "(w:TransitionEasingFunction,wf:TransitionEasingFunction)MethodRef");
96
96
  a.item("TransitionDuration", "Number:int");
97
97
  a.item("TransitionInDuration", "Number:int");
@@ -16,60 +16,62 @@ export let TSCodeGeneratingComponentRendererModuleEmitter = /*@__PURE__*/ (() =>
16
16
  class TSCodeGeneratingComponentRendererModuleEmitter 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
- n() {
26
- super.n();
27
- this.r = 0;
25
+ o() {
26
+ super.o();
27
+ this.s = 0;
28
28
  }
29
- get t() {
30
- switch (this.o) {
29
+ get u() {
30
+ switch (this.p) {
31
31
  case 1: return "Igx";
32
32
  case 2: return "Igr";
33
33
  case 3: return "Igc";
34
34
  }
35
35
  return "";
36
36
  }
37
- get s() {
38
- switch (this.o) {
37
+ get t() {
38
+ switch (this.p) {
39
39
  case 1: return "angular";
40
40
  case 2: return "react";
41
41
  case 3: return "webcomponents";
42
42
  }
43
43
  return "";
44
44
  }
45
- k(a) {
46
- super.k(a);
45
+ l(a) {
46
+ super.l(a);
47
47
  if (a == "withDescriptions") {
48
- this.p = true;
48
+ this.q = true;
49
49
  return;
50
50
  }
51
- let b = "igniteui-" + this.s + "-core";
51
+ let b = "igniteui-" + this.t + "-core";
52
52
  let c = "";
53
53
  let d = a.split('/');
54
54
  if (d.length == 1) {
55
55
  c = d[0];
56
+ this.j.addPackageRef(c);
56
57
  }
57
58
  else {
58
59
  b = d[0];
59
- b = "igniteui-" + this.s + "-" + b;
60
+ this.j.addPackageRef(b);
61
+ b = "igniteui-" + this.t + "-" + b;
60
62
  c = d[1];
61
63
  }
62
- if (!this.q.containsKey(b)) {
63
- this.q.addItem(b, new List$1(String_$type, 0));
64
+ if (!this.r.containsKey(b)) {
65
+ this.r.addItem(b, new List$1(String_$type, 0));
64
66
  }
65
- let e = this.q.item(b);
66
- if (this.r > 0) {
67
+ let e = this.r.item(b);
68
+ if (this.s > 0) {
67
69
  this.d.k(",");
68
70
  }
69
- this.d.j(this.t + c);
70
- e.add(this.t + c);
71
- if (this.p) {
72
- if (this.r == 0) {
71
+ this.d.j(this.u + c);
72
+ e.add(this.u + c);
73
+ if (this.q) {
74
+ if (this.s == 0) {
73
75
  this.c.k("private _componentRenderer: ComponentRenderer = null;");
74
76
  this.c.k("public get renderer(): ComponentRenderer {");
75
77
  this.c.h();
@@ -77,31 +79,31 @@ export let TSCodeGeneratingComponentRendererModuleEmitter = /*@__PURE__*/ (() =>
77
79
  this.c.h();
78
80
  this.c.k("this._componentRenderer = new ComponentRenderer();");
79
81
  this.c.k("var context = this._componentRenderer.context;");
80
- this.g.addPackageImport("igniteui-" + this.s + "-core", "ComponentRenderer");
82
+ this.g.addPackageImport("igniteui-" + this.t + "-core", "ComponentRenderer");
81
83
  }
82
84
  let f = c;
83
85
  if (stringEndsWith(f, "Module")) {
84
86
  f = f.substr(0, f.length - ("Module").length);
85
87
  f += "DescriptionModule";
86
88
  }
87
- this.g.addPackageImport("igniteui-" + this.s + "-core", f);
89
+ this.g.addPackageImport("igniteui-" + this.t + "-core", f);
88
90
  this.c.k(f + ".register(context);");
89
91
  }
90
- this.r++;
92
+ this.s++;
91
93
  }
92
- m() {
93
- super.m();
94
- for (let a of fromEnum(this.q.keys)) {
94
+ n() {
95
+ super.n();
96
+ for (let a of fromEnum(this.r.keys)) {
95
97
  let b = a;
96
- let c = this.q.item(a);
98
+ let c = this.r.item(a);
97
99
  for (let d of fromEnum(c)) {
98
100
  this.h.addPackageImport(b, d);
99
101
  }
100
102
  }
101
- if (this.p) {
103
+ if (this.q) {
102
104
  this.c.f();
103
105
  this.c.k("}");
104
- this.c.k("return this._componentRenderer");
106
+ this.c.k("return this._componentRenderer;");
105
107
  this.c.f();
106
108
  this.c.k("}");
107
109
  }