igniteui-angular-core 13.2.0 → 14.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. package/bundles/igniteui-angular-core.umd.js +1513 -1158
  2. package/bundles/igniteui-angular-core.umd.min.js +1 -1
  3. package/esm2015/lib/BlazorCodeGeneratingComponentRendererModuleEmitter.js +9 -9
  4. package/esm2015/lib/CanvasViewRenderer.js +1 -1
  5. package/esm2015/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +382 -314
  6. package/esm2015/lib/CodeGeneratingComponentRendererDataEmitter.js +2 -2
  7. package/esm2015/lib/CodeGeneratingComponentRendererHandlerEmitter.js +2 -2
  8. package/esm2015/lib/CodeGeneratingComponentRendererModuleEmitter.js +14 -11
  9. package/esm2015/lib/CodeGeneratingRendererResult.js +56 -44
  10. package/esm2015/lib/CodeGenerationFolderTemplate.js +41 -37
  11. package/esm2015/lib/CodeGenerationTransformer.js +19 -19
  12. package/esm2015/lib/ComponentRendererAdapter.js +3 -0
  13. package/esm2015/lib/ComponentRenderer_combined.js +178 -169
  14. package/esm2015/lib/DescriptionSerializer.js +72 -58
  15. package/esm2015/lib/DescriptionTreeAction.js +10 -9
  16. package/esm2015/lib/DescriptionTreeBuilder.js +4 -4
  17. package/esm2015/lib/DescriptionTreeNode.js +64 -36
  18. package/esm2015/lib/DescriptionTreeReconciler.js +156 -141
  19. package/esm2015/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.js +24 -22
  20. package/esm2015/lib/IgcSliderBridge.js +38 -12
  21. package/esm2015/lib/NativeUIInputsFactory.js +1 -0
  22. package/esm2015/lib/NativeUISlider.js +24 -10
  23. package/esm2015/lib/StackedFragmentSeriesDescription.js +121 -121
  24. package/esm2015/lib/StackedFragmentSeriesDescriptionMetadata.js +1 -1
  25. package/esm2015/lib/TSCodeGeneratingComponentRendererModuleEmitter.js +36 -34
  26. package/esm2015/lib/TypeDescriptionPropretyTransforms.js +49 -25
  27. package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescription.js +3 -3
  28. package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +3 -1
  29. package/esm2015/lib/WebTreeSelectionOptionsEventDetailDescription.js +36 -0
  30. package/esm2015/lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata.js +38 -0
  31. package/esm2015/lib/componentUtil.js +4 -1
  32. package/esm2015/public_api.js +2 -0
  33. package/esm5/lib/BlazorCodeGeneratingComponentRendererModuleEmitter.js +9 -9
  34. package/esm5/lib/CanvasViewRenderer.js +1 -1
  35. package/esm5/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +449 -363
  36. package/esm5/lib/CodeGeneratingComponentRendererDataEmitter.js +2 -2
  37. package/esm5/lib/CodeGeneratingComponentRendererHandlerEmitter.js +2 -2
  38. package/esm5/lib/CodeGeneratingComponentRendererModuleEmitter.js +18 -11
  39. package/esm5/lib/CodeGeneratingRendererResult.js +95 -66
  40. package/esm5/lib/CodeGenerationFolderTemplate.js +40 -36
  41. package/esm5/lib/CodeGenerationTransformer.js +19 -19
  42. package/esm5/lib/ComponentRendererAdapter.js +3 -0
  43. package/esm5/lib/ComponentRenderer_combined.js +184 -175
  44. package/esm5/lib/DescriptionSerializer.js +72 -58
  45. package/esm5/lib/DescriptionTreeAction.js +10 -9
  46. package/esm5/lib/DescriptionTreeBuilder.js +4 -4
  47. package/esm5/lib/DescriptionTreeNode.js +64 -36
  48. package/esm5/lib/DescriptionTreeReconciler.js +156 -141
  49. package/esm5/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.js +24 -22
  50. package/esm5/lib/IgcSliderBridge.js +38 -12
  51. package/esm5/lib/NativeUIInputsFactory.js +1 -0
  52. package/esm5/lib/NativeUISlider.js +23 -5
  53. package/esm5/lib/StackedFragmentSeriesDescription.js +120 -120
  54. package/esm5/lib/StackedFragmentSeriesDescriptionMetadata.js +1 -1
  55. package/esm5/lib/TSCodeGeneratingComponentRendererModuleEmitter.js +36 -34
  56. package/esm5/lib/TypeDescriptionPropretyTransforms.js +49 -25
  57. package/esm5/lib/WebTreeSelectionOptionsEventArgsDescription.js +2 -2
  58. package/esm5/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +3 -1
  59. package/esm5/lib/WebTreeSelectionOptionsEventDetailDescription.js +46 -0
  60. package/esm5/lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata.js +42 -0
  61. package/esm5/lib/componentUtil.js +4 -1
  62. package/esm5/public_api.js +2 -0
  63. package/fesm2015/igniteui-angular-core.js +1385 -1085
  64. package/fesm5/igniteui-angular-core.js +1512 -1159
  65. package/lib/BlazorCodeGeneratingComponentRendererModuleEmitter.d.ts +3 -3
  66. package/lib/CodeGeneratingComponentRendererCodeEmitter_combined.d.ts +120 -114
  67. package/lib/CodeGeneratingComponentRendererModuleEmitter.d.ts +6 -5
  68. package/lib/CodeGeneratingRendererResult.d.ts +15 -12
  69. package/lib/DescriptionSerializer.d.ts +7 -6
  70. package/lib/DescriptionTreeAction.d.ts +6 -5
  71. package/lib/DescriptionTreeNode.d.ts +13 -12
  72. package/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.d.ts +7 -7
  73. package/lib/IgcSliderBridge.d.ts +7 -3
  74. package/lib/NativeUISlider.d.ts +9 -6
  75. package/lib/StackedFragmentSeriesDescription.d.ts +46 -46
  76. package/lib/TSCodeGeneratingComponentRendererModuleEmitter.d.ts +7 -7
  77. package/lib/WebTreeSelectionOptionsEventArgsDescription.d.ts +3 -3
  78. package/lib/WebTreeSelectionOptionsEventDetailDescription.d.ts +17 -0
  79. package/lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata.d.ts +13 -0
  80. package/package.json +4 -4
  81. package/public_api.d.ts +2 -0
@@ -14,50 +14,50 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
14
14
  __extends(StackedFragmentSeriesDescription, _super);
15
15
  function StackedFragmentSeriesDescription() {
16
16
  var _this = _super.call(this) || this;
17
- _this.b4 = null;
18
- _this.b3 = null;
19
- _this.bl = null;
17
+ _this.b6 = null;
18
+ _this.b5 = null;
19
+ _this.bn = null;
20
20
  _this.j = false;
21
21
  _this.f = false;
22
22
  _this.an = 0;
23
23
  _this.ac = 0;
24
- _this.cj = null;
25
- _this.bx = null;
24
+ _this.cl = null;
25
+ _this.bz = null;
26
26
  _this.m = false;
27
27
  _this.i = false;
28
28
  _this.ao = 0;
29
29
  _this.ad = 0;
30
30
  _this.ap = 0;
31
31
  _this.ae = 0;
32
- _this.b7 = null;
33
- _this.bo = null;
34
- _this.b8 = null;
35
- _this.bp = null;
36
32
  _this.b9 = null;
37
33
  _this.bq = null;
38
- _this.b6 = null;
39
- _this.b5 = null;
40
- _this.bn = null;
41
- _this.bm = null;
42
34
  _this.ca = null;
43
35
  _this.br = null;
44
36
  _this.cb = null;
45
37
  _this.bs = null;
38
+ _this.b8 = null;
39
+ _this.b7 = null;
40
+ _this.bp = null;
41
+ _this.bo = null;
46
42
  _this.cc = null;
47
43
  _this.bt = null;
48
44
  _this.cd = null;
49
45
  _this.bu = null;
50
46
  _this.ce = null;
47
+ _this.bv = null;
48
+ _this.cf = null;
49
+ _this.bw = null;
50
+ _this.cg = null;
51
51
  _this.ak = 0;
52
52
  _this.z = 0;
53
- _this.cf = null;
54
- _this.bv = null;
53
+ _this.ch = null;
54
+ _this.bx = null;
55
55
  _this.ag = 0;
56
56
  _this.v = 0;
57
57
  _this.ai = 0;
58
58
  _this.x = 0;
59
- _this.cg = null;
60
- _this.bw = null;
59
+ _this.ci = null;
60
+ _this.by = null;
61
61
  _this.ah = 0;
62
62
  _this.w = 0;
63
63
  _this.al = 0;
@@ -70,28 +70,28 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
70
70
  _this.af = 0;
71
71
  _this.aj = 0;
72
72
  _this.y = 0;
73
- _this.ck = null;
74
- _this.cl = null;
73
+ _this.bl = null;
74
+ _this.cm = null;
75
75
  _this.bf = 0;
76
76
  _this.bg = 0;
77
- _this.cm = null;
78
77
  _this.cn = null;
79
- _this.l = false;
80
78
  _this.co = null;
79
+ _this.l = false;
80
+ _this.cp = null;
81
81
  _this.h = false;
82
82
  _this.be = 0;
83
- _this.b0 = null;
83
+ _this.b2 = null;
84
+ _this.b3 = null;
84
85
  _this.b1 = null;
85
- _this.bz = null;
86
- _this.by = null;
86
+ _this.b0 = null;
87
87
  _this.bd = 0;
88
- _this.cr = null;
89
- _this.cp = null;
90
- _this.cq = null;
91
88
  _this.cs = null;
92
- _this.b2 = null;
93
- _this.ch = null;
94
- _this.ci = null;
89
+ _this.cq = null;
90
+ _this.cr = null;
91
+ _this.ct = null;
92
+ _this.b4 = null;
93
+ _this.cj = null;
94
+ _this.ck = null;
95
95
  return _this;
96
96
  }
97
97
  StackedFragmentSeriesDescription.prototype.get_type = function () {
@@ -106,10 +106,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
106
106
  });
107
107
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "dataSourceRef", {
108
108
  get: function () {
109
- return this.b4;
109
+ return this.b6;
110
110
  },
111
111
  set: function (a) {
112
- this.b4 = a;
112
+ this.b6 = a;
113
113
  this.e("DataSourceRef");
114
114
  },
115
115
  enumerable: false,
@@ -117,10 +117,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
117
117
  });
118
118
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "brush", {
119
119
  get: function () {
120
- return this.b3;
120
+ return this.b5;
121
121
  },
122
122
  set: function (a) {
123
- this.b3 = a;
123
+ this.b5 = a;
124
124
  this.e("Brush");
125
125
  },
126
126
  enumerable: false,
@@ -128,10 +128,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
128
128
  });
129
129
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualBrush", {
130
130
  get: function () {
131
- return this.bl;
131
+ return this.bn;
132
132
  },
133
133
  set: function (a) {
134
- this.bl = a;
134
+ this.bn = a;
135
135
  this.e("ActualBrush");
136
136
  },
137
137
  enumerable: false,
@@ -183,10 +183,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
183
183
  });
184
184
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "shadowColor", {
185
185
  get: function () {
186
- return this.cj;
186
+ return this.cl;
187
187
  },
188
188
  set: function (a) {
189
- this.cj = a;
189
+ this.cl = a;
190
190
  this.e("ShadowColor");
191
191
  },
192
192
  enumerable: false,
@@ -194,10 +194,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
194
194
  });
195
195
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualShadowColor", {
196
196
  get: function () {
197
- return this.bx;
197
+ return this.bz;
198
198
  },
199
199
  set: function (a) {
200
- this.bx = a;
200
+ this.bz = a;
201
201
  this.e("ActualShadowColor");
202
202
  },
203
203
  enumerable: false,
@@ -271,10 +271,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
271
271
  });
272
272
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "legendItemBadgeTemplateRef", {
273
273
  get: function () {
274
- return this.b7;
274
+ return this.b9;
275
275
  },
276
276
  set: function (a) {
277
- this.b7 = a;
277
+ this.b9 = a;
278
278
  this.e("LegendItemBadgeTemplateRef");
279
279
  },
280
280
  enumerable: false,
@@ -282,10 +282,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
282
282
  });
283
283
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualLegendItemBadgeTemplateRef", {
284
284
  get: function () {
285
- return this.bo;
285
+ return this.bq;
286
286
  },
287
287
  set: function (a) {
288
- this.bo = a;
288
+ this.bq = a;
289
289
  this.e("ActualLegendItemBadgeTemplateRef");
290
290
  },
291
291
  enumerable: false,
@@ -293,10 +293,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
293
293
  });
294
294
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "legendItemTemplateRef", {
295
295
  get: function () {
296
- return this.b8;
296
+ return this.ca;
297
297
  },
298
298
  set: function (a) {
299
- this.b8 = a;
299
+ this.ca = a;
300
300
  this.e("LegendItemTemplateRef");
301
301
  },
302
302
  enumerable: false,
@@ -304,10 +304,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
304
304
  });
305
305
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualLegendItemTemplateRef", {
306
306
  get: function () {
307
- return this.bp;
307
+ return this.br;
308
308
  },
309
309
  set: function (a) {
310
- this.bp = a;
310
+ this.br = a;
311
311
  this.e("ActualLegendItemTemplateRef");
312
312
  },
313
313
  enumerable: false,
@@ -315,10 +315,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
315
315
  });
316
316
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "legendItemVisibility", {
317
317
  get: function () {
318
- return this.b9;
318
+ return this.cb;
319
319
  },
320
320
  set: function (a) {
321
- this.b9 = a;
321
+ this.cb = a;
322
322
  this.e("LegendItemVisibility");
323
323
  },
324
324
  enumerable: false,
@@ -326,10 +326,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
326
326
  });
327
327
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualLegendItemVisibility", {
328
328
  get: function () {
329
- return this.bq;
329
+ return this.bs;
330
330
  },
331
331
  set: function (a) {
332
- this.bq = a;
332
+ this.bs = a;
333
333
  this.e("ActualLegendItemVisibility");
334
334
  },
335
335
  enumerable: false,
@@ -337,10 +337,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
337
337
  });
338
338
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "legendItemBadgeShape", {
339
339
  get: function () {
340
- return this.b6;
340
+ return this.b8;
341
341
  },
342
342
  set: function (a) {
343
- this.b6 = a;
343
+ this.b8 = a;
344
344
  this.e("LegendItemBadgeShape");
345
345
  },
346
346
  enumerable: false,
@@ -348,10 +348,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
348
348
  });
349
349
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "legendItemBadgeMode", {
350
350
  get: function () {
351
- return this.b5;
351
+ return this.b7;
352
352
  },
353
353
  set: function (a) {
354
- this.b5 = a;
354
+ this.b7 = a;
355
355
  this.e("LegendItemBadgeMode");
356
356
  },
357
357
  enumerable: false,
@@ -359,10 +359,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
359
359
  });
360
360
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualLegendItemBadgeShape", {
361
361
  get: function () {
362
- return this.bn;
362
+ return this.bp;
363
363
  },
364
364
  set: function (a) {
365
- this.bn = a;
365
+ this.bp = a;
366
366
  this.e("ActualLegendItemBadgeShape");
367
367
  },
368
368
  enumerable: false,
@@ -370,10 +370,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
370
370
  });
371
371
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualLegendItemBadgeMode", {
372
372
  get: function () {
373
- return this.bm;
373
+ return this.bo;
374
374
  },
375
375
  set: function (a) {
376
- this.bm = a;
376
+ this.bo = a;
377
377
  this.e("ActualLegendItemBadgeMode");
378
378
  },
379
379
  enumerable: false,
@@ -381,10 +381,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
381
381
  });
382
382
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "markerBrush", {
383
383
  get: function () {
384
- return this.ca;
384
+ return this.cc;
385
385
  },
386
386
  set: function (a) {
387
- this.ca = a;
387
+ this.cc = a;
388
388
  this.e("MarkerBrush");
389
389
  },
390
390
  enumerable: false,
@@ -392,10 +392,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
392
392
  });
393
393
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualMarkerBrush", {
394
394
  get: function () {
395
- return this.br;
395
+ return this.bt;
396
396
  },
397
397
  set: function (a) {
398
- this.br = a;
398
+ this.bt = a;
399
399
  this.e("ActualMarkerBrush");
400
400
  },
401
401
  enumerable: false,
@@ -403,10 +403,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
403
403
  });
404
404
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "markerOutline", {
405
405
  get: function () {
406
- return this.cb;
406
+ return this.cd;
407
407
  },
408
408
  set: function (a) {
409
- this.cb = a;
409
+ this.cd = a;
410
410
  this.e("MarkerOutline");
411
411
  },
412
412
  enumerable: false,
@@ -414,10 +414,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
414
414
  });
415
415
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualMarkerOutline", {
416
416
  get: function () {
417
- return this.bs;
417
+ return this.bu;
418
418
  },
419
419
  set: function (a) {
420
- this.bs = a;
420
+ this.bu = a;
421
421
  this.e("ActualMarkerOutline");
422
422
  },
423
423
  enumerable: false,
@@ -425,10 +425,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
425
425
  });
426
426
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "markerTemplateRef", {
427
427
  get: function () {
428
- return this.cc;
428
+ return this.ce;
429
429
  },
430
430
  set: function (a) {
431
- this.cc = a;
431
+ this.ce = a;
432
432
  this.e("MarkerTemplateRef");
433
433
  },
434
434
  enumerable: false,
@@ -436,10 +436,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
436
436
  });
437
437
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualMarkerTemplateRef", {
438
438
  get: function () {
439
- return this.bt;
439
+ return this.bv;
440
440
  },
441
441
  set: function (a) {
442
- this.bt = a;
442
+ this.bv = a;
443
443
  this.e("ActualMarkerTemplateRef");
444
444
  },
445
445
  enumerable: false,
@@ -447,10 +447,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
447
447
  });
448
448
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "markerType", {
449
449
  get: function () {
450
- return this.cd;
450
+ return this.cf;
451
451
  },
452
452
  set: function (a) {
453
- this.cd = a;
453
+ this.cf = a;
454
454
  this.e("MarkerType");
455
455
  },
456
456
  enumerable: false,
@@ -458,10 +458,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
458
458
  });
459
459
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualMarkerType", {
460
460
  get: function () {
461
- return this.bu;
461
+ return this.bw;
462
462
  },
463
463
  set: function (a) {
464
- this.bu = a;
464
+ this.bw = a;
465
465
  this.e("ActualMarkerType");
466
466
  },
467
467
  enumerable: false,
@@ -469,10 +469,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
469
469
  });
470
470
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "name", {
471
471
  get: function () {
472
- return this.ce;
472
+ return this.cg;
473
473
  },
474
474
  set: function (a) {
475
- this.ce = a;
475
+ this.cg = a;
476
476
  this.e("Name");
477
477
  },
478
478
  enumerable: false,
@@ -502,10 +502,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
502
502
  });
503
503
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "outline", {
504
504
  get: function () {
505
- return this.cf;
505
+ return this.ch;
506
506
  },
507
507
  set: function (a) {
508
- this.cf = a;
508
+ this.ch = a;
509
509
  this.e("Outline");
510
510
  },
511
511
  enumerable: false,
@@ -513,10 +513,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
513
513
  });
514
514
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualOutline", {
515
515
  get: function () {
516
- return this.bv;
516
+ return this.bx;
517
517
  },
518
518
  set: function (a) {
519
- this.bv = a;
519
+ this.bx = a;
520
520
  this.e("ActualOutline");
521
521
  },
522
522
  enumerable: false,
@@ -568,10 +568,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
568
568
  });
569
569
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "outlineMode", {
570
570
  get: function () {
571
- return this.cg;
571
+ return this.ci;
572
572
  },
573
573
  set: function (a) {
574
- this.cg = a;
574
+ this.ci = a;
575
575
  this.e("OutlineMode");
576
576
  },
577
577
  enumerable: false,
@@ -579,10 +579,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
579
579
  });
580
580
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualOutlineMode", {
581
581
  get: function () {
582
- return this.bw;
582
+ return this.by;
583
583
  },
584
584
  set: function (a) {
585
- this.bw = a;
585
+ this.by = a;
586
586
  this.e("ActualOutlineMode");
587
587
  },
588
588
  enumerable: false,
@@ -720,23 +720,23 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
720
720
  enumerable: false,
721
721
  configurable: true
722
722
  });
723
- Object.defineProperty(StackedFragmentSeriesDescription.prototype, "titleRef", {
723
+ Object.defineProperty(StackedFragmentSeriesDescription.prototype, "title", {
724
724
  get: function () {
725
- return this.ck;
725
+ return this.bl;
726
726
  },
727
727
  set: function (a) {
728
- this.ck = a;
729
- this.e("TitleRef");
728
+ this.bl = a;
729
+ this.e("Title");
730
730
  },
731
731
  enumerable: false,
732
732
  configurable: true
733
733
  });
734
734
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "transitionEasingFunctionRef", {
735
735
  get: function () {
736
- return this.cl;
736
+ return this.cm;
737
737
  },
738
738
  set: function (a) {
739
- this.cl = a;
739
+ this.cm = a;
740
740
  this.e("TransitionEasingFunctionRef");
741
741
  },
742
742
  enumerable: false,
@@ -766,10 +766,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
766
766
  });
767
767
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "transitionInEasingFunctionRef", {
768
768
  get: function () {
769
- return this.cm;
769
+ return this.cn;
770
770
  },
771
771
  set: function (a) {
772
- this.cm = a;
772
+ this.cn = a;
773
773
  this.e("TransitionInEasingFunctionRef");
774
774
  },
775
775
  enumerable: false,
@@ -777,10 +777,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
777
777
  });
778
778
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "transitionInMode", {
779
779
  get: function () {
780
- return this.cn;
780
+ return this.co;
781
781
  },
782
782
  set: function (a) {
783
- this.cn = a;
783
+ this.co = a;
784
784
  this.e("TransitionInMode");
785
785
  },
786
786
  enumerable: false,
@@ -799,10 +799,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
799
799
  });
800
800
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "transitionInSpeedType", {
801
801
  get: function () {
802
- return this.co;
802
+ return this.cp;
803
803
  },
804
804
  set: function (a) {
805
- this.co = a;
805
+ this.cp = a;
806
806
  this.e("TransitionInSpeedType");
807
807
  },
808
808
  enumerable: false,
@@ -832,10 +832,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
832
832
  });
833
833
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualTransitionInMode", {
834
834
  get: function () {
835
- return this.b0;
835
+ return this.b2;
836
836
  },
837
837
  set: function (a) {
838
- this.b0 = a;
838
+ this.b2 = a;
839
839
  this.e("ActualTransitionInMode");
840
840
  },
841
841
  enumerable: false,
@@ -843,10 +843,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
843
843
  });
844
844
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualTransitionInSpeedType", {
845
845
  get: function () {
846
- return this.b1;
846
+ return this.b3;
847
847
  },
848
848
  set: function (a) {
849
- this.b1 = a;
849
+ this.b3 = a;
850
850
  this.e("ActualTransitionInSpeedType");
851
851
  },
852
852
  enumerable: false,
@@ -854,10 +854,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
854
854
  });
855
855
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualTransitionInEasingFunctionRef", {
856
856
  get: function () {
857
- return this.bz;
857
+ return this.b1;
858
858
  },
859
859
  set: function (a) {
860
- this.bz = a;
860
+ this.b1 = a;
861
861
  this.e("ActualTransitionInEasingFunctionRef");
862
862
  },
863
863
  enumerable: false,
@@ -865,10 +865,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
865
865
  });
866
866
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualTransitionEasingFunctionRef", {
867
867
  get: function () {
868
- return this.by;
868
+ return this.b0;
869
869
  },
870
870
  set: function (a) {
871
- this.by = a;
871
+ this.b0 = a;
872
872
  this.e("ActualTransitionEasingFunctionRef");
873
873
  },
874
874
  enumerable: false,
@@ -887,10 +887,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
887
887
  });
888
888
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "valueMemberPath", {
889
889
  get: function () {
890
- return this.cr;
890
+ return this.cs;
891
891
  },
892
892
  set: function (a) {
893
- this.cr = a;
893
+ this.cs = a;
894
894
  this.e("ValueMemberPath");
895
895
  },
896
896
  enumerable: false,
@@ -898,10 +898,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
898
898
  });
899
899
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "valueMemberAsLegendLabel", {
900
900
  get: function () {
901
- return this.cp;
901
+ return this.cq;
902
902
  },
903
903
  set: function (a) {
904
- this.cp = a;
904
+ this.cq = a;
905
905
  this.e("ValueMemberAsLegendLabel");
906
906
  },
907
907
  enumerable: false,
@@ -909,10 +909,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
909
909
  });
910
910
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "valueMemberAsLegendUnit", {
911
911
  get: function () {
912
- return this.cq;
912
+ return this.cr;
913
913
  },
914
914
  set: function (a) {
915
- this.cq = a;
915
+ this.cr = a;
916
916
  this.e("ValueMemberAsLegendUnit");
917
917
  },
918
918
  enumerable: false,
@@ -920,10 +920,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
920
920
  });
921
921
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "visibility", {
922
922
  get: function () {
923
- return this.cs;
923
+ return this.ct;
924
924
  },
925
925
  set: function (a) {
926
- this.cs = a;
926
+ this.ct = a;
927
927
  this.e("Visibility");
928
928
  },
929
929
  enumerable: false,
@@ -931,10 +931,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
931
931
  });
932
932
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualVisibility", {
933
933
  get: function () {
934
- return this.b2;
934
+ return this.b4;
935
935
  },
936
936
  set: function (a) {
937
- this.b2 = a;
937
+ this.b4 = a;
938
938
  this.e("ActualVisibility");
939
939
  },
940
940
  enumerable: false,
@@ -942,10 +942,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
942
942
  });
943
943
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "parentOrLocalBrush", {
944
944
  get: function () {
945
- return this.ch;
945
+ return this.cj;
946
946
  },
947
947
  set: function (a) {
948
- this.ch = a;
948
+ this.cj = a;
949
949
  this.e("ParentOrLocalBrush");
950
950
  },
951
951
  enumerable: false,
@@ -953,10 +953,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
953
953
  });
954
954
  Object.defineProperty(StackedFragmentSeriesDescription.prototype, "propertyUpdatedRef", {
955
955
  get: function () {
956
- return this.ci;
956
+ return this.ck;
957
957
  },
958
958
  set: function (a) {
959
- this.ci = a;
959
+ this.ck = a;
960
960
  this.e("PropertyUpdatedRef");
961
961
  },
962
962
  enumerable: false,
@@ -95,7 +95,7 @@ var StackedFragmentSeriesDescriptionMetadata = /** @class */ /*@__PURE__*/ (func
95
95
  a.item("ActualThickness", "Number:double");
96
96
  a.item("MarkerThickness", "Number:double");
97
97
  a.item("ActualMarkerThickness", "Number:double");
98
- a.item("TitleRef", "(w:Title,wf:Title)DataRef");
98
+ a.item("Title", "Unknown");
99
99
  a.item("TransitionEasingFunctionRef", "(w:TransitionEasingFunction,wf:TransitionEasingFunction)MethodRef");
100
100
  a.item("TransitionDuration", "Number:int");
101
101
  a.item("TransitionInDuration", "Number:int");