igniteui-angular-core 14.0.0 → 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 (55) hide show
  1. package/bundles/igniteui-angular-core.umd.js +960 -730
  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 +382 -314
  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/DescriptionSerializer.js +70 -56
  13. package/esm2015/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.js +24 -22
  14. package/esm2015/lib/StackedFragmentSeriesDescription.js +121 -121
  15. package/esm2015/lib/StackedFragmentSeriesDescriptionMetadata.js +1 -1
  16. package/esm2015/lib/TSCodeGeneratingComponentRendererModuleEmitter.js +36 -34
  17. package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescription.js +3 -3
  18. package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +3 -1
  19. package/esm2015/lib/WebTreeSelectionOptionsEventDetailDescription.js +36 -0
  20. package/esm2015/lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata.js +38 -0
  21. package/esm2015/public_api.js +2 -0
  22. package/esm5/lib/BlazorCodeGeneratingComponentRendererModuleEmitter.js +9 -9
  23. package/esm5/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +449 -363
  24. package/esm5/lib/CodeGeneratingComponentRendererDataEmitter.js +2 -2
  25. package/esm5/lib/CodeGeneratingComponentRendererHandlerEmitter.js +2 -2
  26. package/esm5/lib/CodeGeneratingComponentRendererModuleEmitter.js +18 -11
  27. package/esm5/lib/CodeGeneratingRendererResult.js +95 -66
  28. package/esm5/lib/CodeGenerationFolderTemplate.js +40 -36
  29. package/esm5/lib/ComponentRendererAdapter.js +3 -0
  30. package/esm5/lib/ComponentRenderer_combined.js +1 -1
  31. package/esm5/lib/DescriptionSerializer.js +70 -56
  32. package/esm5/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.js +24 -22
  33. package/esm5/lib/StackedFragmentSeriesDescription.js +120 -120
  34. package/esm5/lib/StackedFragmentSeriesDescriptionMetadata.js +1 -1
  35. package/esm5/lib/TSCodeGeneratingComponentRendererModuleEmitter.js +36 -34
  36. package/esm5/lib/WebTreeSelectionOptionsEventArgsDescription.js +2 -2
  37. package/esm5/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +3 -1
  38. package/esm5/lib/WebTreeSelectionOptionsEventDetailDescription.js +46 -0
  39. package/esm5/lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata.js +42 -0
  40. package/esm5/public_api.js +2 -0
  41. package/fesm2015/igniteui-angular-core.js +837 -658
  42. package/fesm5/igniteui-angular-core.js +959 -731
  43. package/lib/BlazorCodeGeneratingComponentRendererModuleEmitter.d.ts +3 -3
  44. package/lib/CodeGeneratingComponentRendererCodeEmitter_combined.d.ts +120 -114
  45. package/lib/CodeGeneratingComponentRendererModuleEmitter.d.ts +6 -5
  46. package/lib/CodeGeneratingRendererResult.d.ts +15 -12
  47. package/lib/DescriptionSerializer.d.ts +7 -6
  48. package/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.d.ts +7 -7
  49. package/lib/StackedFragmentSeriesDescription.d.ts +46 -46
  50. package/lib/TSCodeGeneratingComponentRendererModuleEmitter.d.ts +7 -7
  51. package/lib/WebTreeSelectionOptionsEventArgsDescription.d.ts +3 -3
  52. package/lib/WebTreeSelectionOptionsEventDetailDescription.d.ts +17 -0
  53. package/lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata.d.ts +13 -0
  54. package/package.json +1 -1
  55. package/public_api.d.ts +2 -0
@@ -52809,6 +52809,9 @@ class ComponentRendererAdapter {
52809
52809
  if (propertyName.endsWith("Ocurred")) {
52810
52810
  propertyName = propertyName.replace("Ocurred", "");
52811
52811
  }
52812
+ if (propertyName.toLowerCase() == "selectionchanged") {
52813
+ propertyName = "selection";
52814
+ }
52812
52815
  var eventId = "igc" + TypeDescriptionMetadata.toPascal(propertyName);
52813
52816
  if (value) {
52814
52817
  target.addEventListener(eventId, value);
@@ -53261,19 +53264,20 @@ let CodeGeneratingRendererResult = /*@__PURE__*/ (() => {
53261
53264
  class CodeGeneratingRendererResult extends Base {
53262
53265
  constructor() {
53263
53266
  super(...arguments);
53264
- this.n = new List$1(CodeGenerationItemBuilderPropertyInfo.$, 0);
53267
+ this.p = new List$1(CodeGenerationItemBuilderPropertyInfo.$, 0);
53265
53268
  this._platform = 0;
53266
53269
  this._generationOptions = null;
53270
+ this.k = new Dictionary$2(String_$type, List$1.$.specialize(String_$type), 0);
53271
+ this.m = new Dictionary$2(String_$type, List$1.$.specialize(CodeGeneratingImportManager.$), 0);
53267
53272
  this.j = new Dictionary$2(String_$type, List$1.$.specialize(String_$type), 0);
53268
- this.l = new Dictionary$2(String_$type, List$1.$.specialize(CodeGeneratingImportManager.$), 0);
53269
- this.i = new Dictionary$2(String_$type, List$1.$.specialize(String_$type), 0);
53270
- this.g = new Dictionary$2(String_$type, Number_$type, 0);
53271
- this.m = new Dictionary$2(String_$type, String_$type, 0);
53272
- this.k = new Dictionary$2(String_$type, String_$type, 0);
53273
+ this.o = new HashSet$1(String_$type, 0);
53273
53274
  this.h = new Dictionary$2(String_$type, Number_$type, 0);
53275
+ this.n = new Dictionary$2(String_$type, String_$type, 0);
53276
+ this.l = new Dictionary$2(String_$type, String_$type, 0);
53277
+ this.i = new Dictionary$2(String_$type, Number_$type, 0);
53274
53278
  }
53275
- get q() {
53276
- return this.n;
53279
+ get s() {
53280
+ return this.p;
53277
53281
  }
53278
53282
  get platform() {
53279
53283
  return this._platform;
@@ -53287,46 +53291,56 @@ let CodeGeneratingRendererResult = /*@__PURE__*/ (() => {
53287
53291
  set generationOptions(a) {
53288
53292
  this._generationOptions = a;
53289
53293
  }
53294
+ addPackageRef(a) {
53295
+ this.o.add_1(a);
53296
+ }
53290
53297
  addContainerResult(a, b) {
53291
- if (!this.j.containsKey(a)) {
53292
- this.j.addItem(a, new List$1(String_$type, 0));
53298
+ if (!this.k.containsKey(a)) {
53299
+ this.k.addItem(a, new List$1(String_$type, 0));
53293
53300
  }
53294
- let c = this.j.item(a);
53301
+ let c = this.k.item(a);
53295
53302
  c.add(b);
53296
53303
  }
53297
53304
  addImportResult(a, b) {
53298
- if (!this.l.containsKey(a)) {
53299
- this.l.addItem(a, new List$1(CodeGeneratingImportManager.$, 0));
53305
+ if (!this.m.containsKey(a)) {
53306
+ this.m.addItem(a, new List$1(CodeGeneratingImportManager.$, 0));
53300
53307
  }
53301
- let c = this.l.item(a);
53308
+ let c = this.m.item(a);
53302
53309
  c.add(b);
53303
53310
  }
53304
53311
  addContainerNewFileResult(a, b) {
53305
- if (!this.i.containsKey(a)) {
53306
- this.i.addItem(a, new List$1(String_$type, 0));
53312
+ if (!this.j.containsKey(a)) {
53313
+ this.j.addItem(a, new List$1(String_$type, 0));
53307
53314
  }
53308
- let c = this.i.item(a);
53315
+ let c = this.j.item(a);
53309
53316
  c.add(b);
53310
53317
  }
53318
+ getPackages() {
53319
+ let a = new List$1(String_$type, 0);
53320
+ for (let b of fromEnum(this.o)) {
53321
+ a.add(b);
53322
+ }
53323
+ return a.toArray();
53324
+ }
53311
53325
  getKeys() {
53312
53326
  let a = new List$1(String_$type, 0);
53313
- for (let b of fromEnum(this.j.keys)) {
53327
+ for (let b of fromEnum(this.k.keys)) {
53314
53328
  a.add(b);
53315
53329
  }
53316
53330
  return a.toArray();
53317
53331
  }
53318
53332
  getImportsKeys() {
53319
53333
  let a = new List$1(String_$type, 0);
53320
- for (let b of fromEnum(this.l.keys)) {
53334
+ for (let b of fromEnum(this.m.keys)) {
53321
53335
  a.add(b);
53322
53336
  }
53323
53337
  return a.toArray();
53324
53338
  }
53325
53339
  getContentForKey(a) {
53326
- if (!this.j.containsKey(a)) {
53340
+ if (!this.k.containsKey(a)) {
53327
53341
  return "";
53328
53342
  }
53329
- let b = this.j.item(a);
53343
+ let b = this.k.item(a);
53330
53344
  if (b.count == 1) {
53331
53345
  return b._inner[0];
53332
53346
  }
@@ -53336,33 +53350,33 @@ let CodeGeneratingRendererResult = /*@__PURE__*/ (() => {
53336
53350
  }
53337
53351
  return c;
53338
53352
  }
53339
- o(a) {
53340
- if (!this.l.containsKey(a)) {
53353
+ q(a) {
53354
+ if (!this.m.containsKey(a)) {
53341
53355
  return null;
53342
53356
  }
53343
- return this.l.item(a);
53357
+ return this.m.item(a);
53344
53358
  }
53345
- r(a) {
53346
- if (!this.g.containsKey(a)) {
53347
- this.g.item(a, 1);
53359
+ t(a) {
53360
+ if (!this.h.containsKey(a)) {
53361
+ this.h.item(a, 1);
53348
53362
  }
53349
- let b = this.g.item(a);
53363
+ let b = this.h.item(a);
53350
53364
  let c = a + b;
53351
- this.g.item(a, b + 1);
53365
+ this.h.item(a, b + 1);
53352
53366
  return c;
53353
53367
  }
53354
- ab(a) {
53355
- this.n.add(a);
53368
+ ae(a) {
53369
+ this.p.add(a);
53356
53370
  }
53357
53371
  getNewFiles() {
53358
53372
  let a = new List$1(String_$type, 0);
53359
- for (let b of fromEnum(this.i.keys)) {
53373
+ for (let b of fromEnum(this.j.keys)) {
53360
53374
  a.add(b);
53361
53375
  }
53362
53376
  return a;
53363
53377
  }
53364
53378
  getNewFileContent(a) {
53365
- let b = this.i.item(a);
53379
+ let b = this.j.item(a);
53366
53380
  let c = "";
53367
53381
  for (let d of fromEnum(b)) {
53368
53382
  c += d;
@@ -53370,37 +53384,37 @@ let CodeGeneratingRendererResult = /*@__PURE__*/ (() => {
53370
53384
  return c;
53371
53385
  }
53372
53386
  defineString(a, b) {
53373
- this.m.item(a, b);
53387
+ this.n.item(a, b);
53374
53388
  }
53375
53389
  getStringNames() {
53376
53390
  let a = new List$1(String_$type, 0);
53377
- for (let b of fromEnum(this.m.keys)) {
53391
+ for (let b of fromEnum(this.n.keys)) {
53378
53392
  a.add(b);
53379
53393
  }
53380
53394
  return a.toArray();
53381
53395
  }
53382
53396
  getString(a) {
53383
- return this.m.item(a);
53397
+ return this.n.item(a);
53384
53398
  }
53385
53399
  trackDescriptionField(a, b) {
53386
- this.k.item(a, b);
53400
+ this.l.item(a, b);
53387
53401
  }
53388
53402
  hasDescription(a) {
53389
- return this.k.containsKey(a);
53403
+ return this.l.containsKey(a);
53390
53404
  }
53391
53405
  getDescriptionField(a) {
53392
- return this.k.item(a);
53406
+ return this.l.item(a);
53393
53407
  }
53394
- s(a) {
53408
+ u(a) {
53395
53409
  let b = 0;
53396
- if (!this.h.containsKey(a)) {
53397
- this.h.addItem(a, b);
53410
+ if (!this.i.containsKey(a)) {
53411
+ this.i.addItem(a, b);
53398
53412
  }
53399
53413
  else {
53400
- b = this.h.item(a);
53414
+ b = this.i.item(a);
53401
53415
  }
53402
53416
  b++;
53403
- this.h.item(a, b);
53417
+ this.i.item(a, b);
53404
53418
  return a + b;
53405
53419
  }
53406
53420
  }
@@ -54312,8 +54326,8 @@ let CodeGeneratingComponentRendererDataEmitter = /*@__PURE__*/ (() => {
54312
54326
  }
54313
54327
  }
54314
54328
  let n = new HashSet$1(String_$type, 0);
54315
- for (let o = 0; o < this.m.q.count; o++) {
54316
- let p = this.m.q._inner[o];
54329
+ for (let o = 0; o < this.m.s.count; o++) {
54330
+ let p = this.m.s._inner[o];
54317
54331
  if (p.a != null && p.c == null) {
54318
54332
  if (this.o.library != null && this.o.library.hasItem(p.a.e)) {
54319
54333
  if (n.contains(p.a.e)) {
@@ -55460,14 +55474,14 @@ let DescriptionSerializer = /*@__PURE__*/ (() => {
55460
55474
  this.i = null;
55461
55475
  this.e = false;
55462
55476
  }
55463
- o(a, b) {
55477
+ p(a, b) {
55464
55478
  let c = DescriptionTreeBuilder.createTree(a, b);
55465
55479
  let d = new DescriptionSerializerBuilder();
55466
- this.p(a, c, d);
55480
+ this.q(a, c, d);
55467
55481
  return d.toString();
55468
55482
  }
55469
- s(a, b, c) {
55470
- this.p(a, b, c);
55483
+ t(a, b, c) {
55484
+ this.q(a, b, c);
55471
55485
  }
55472
55486
  c(a, b) {
55473
55487
  let c = new JsonDictionaryParser();
@@ -55492,7 +55506,7 @@ let DescriptionSerializer = /*@__PURE__*/ (() => {
55492
55506
  this.e = false;
55493
55507
  return g;
55494
55508
  }
55495
- u(a, b, c, d, e) {
55509
+ v(a, b, c, d, e) {
55496
55510
  if (this.g) {
55497
55511
  a.w(b, c, d, e);
55498
55512
  }
@@ -55553,14 +55567,14 @@ let DescriptionSerializer = /*@__PURE__*/ (() => {
55553
55567
  break;
55554
55568
  }
55555
55569
  if (!this.e) {
55556
- this.u(a, h, k, l, q);
55570
+ this.v(a, h, k, l, q);
55557
55571
  }
55558
55572
  }
55559
55573
  else if (typeCast(JsonDictionaryObject.$, p) !== null) {
55560
55574
  let r = p;
55561
55575
  let s = this.b(a, r, l.knownType);
55562
55576
  f.e(s);
55563
- this.u(a, h, k, l, s.result);
55577
+ this.v(a, h, k, l, s.result);
55564
55578
  }
55565
55579
  else if (typeCast(JsonDictionaryArray.$, p) !== null) {
55566
55580
  let t = p;
@@ -55574,50 +55588,64 @@ let DescriptionSerializer = /*@__PURE__*/ (() => {
55574
55588
  u = l.collectionElementType;
55575
55589
  }
55576
55590
  let w = this.a(f, a, t, u);
55591
+ if (this.f) {
55592
+ if (l.propertyName.toLowerCase() == "includedproperties" || l.propertyName.toLowerCase() == "excludedproperties") {
55593
+ let x = w;
55594
+ let y = new Array(x.length);
55595
+ for (let z = 0; z < x.length; z++) {
55596
+ y[z] = this.n(x[z]);
55597
+ }
55598
+ w = y;
55599
+ }
55600
+ }
55577
55601
  if (!this.e || v) {
55578
- this.u(a, h, k, l, w);
55602
+ this.v(a, h, k, l, w);
55579
55603
  }
55580
55604
  }
55581
55605
  else {
55582
- let x = l.specificExternalType;
55583
- if (x == null && l.knownType == 3) {
55584
- x = "DateTime";
55606
+ let aa = l.specificExternalType;
55607
+ if (aa == null && l.knownType == 3) {
55608
+ aa = "DateTime";
55585
55609
  }
55586
- if (x == null) {
55587
- x = "String";
55610
+ if (aa == null) {
55611
+ aa = "String";
55588
55612
  }
55589
- let y = p;
55590
- let z = this.j(f, a, y, x);
55613
+ let ab = p;
55614
+ let ac = this.j(f, a, ab, aa);
55591
55615
  if (this.f) {
55592
- if (stringEndsWith(l.propertyName, "MemberPath") || (g != null && stringEndsWith(g, "Axis") && l.propertyName.toLowerCase() == "label")) {
55593
- let aa = z.toString();
55594
- if (this.i != null) {
55595
- z = this.i(aa);
55596
- }
55597
- else {
55598
- if (stringStartsWith(aa, "{")) {
55599
- if (!stringStartsWith(aa, "{[")) {
55600
- aa = aa.substr(1, aa.length - 2);
55601
- aa = "{[" + aa + "]}";
55602
- z = aa;
55603
- }
55604
- }
55605
- else {
55606
- if (!stringStartsWith(aa, "[")) {
55607
- aa = "[" + aa + "]";
55608
- z = aa;
55609
- }
55610
- }
55611
- }
55616
+ if (stringEndsWith(l.propertyName, "MemberPath") || stringEndsWith(l.propertyName.toLowerCase(), "field") || (g != null && stringEndsWith(g, "Axis") && l.propertyName.toLowerCase() == "label")) {
55617
+ ac = this.n(ac);
55612
55618
  }
55613
55619
  }
55614
55620
  if (!this.e) {
55615
- this.u(a, h, k, l, z);
55621
+ this.v(a, h, k, l, ac);
55616
55622
  }
55617
55623
  }
55618
55624
  }
55619
55625
  return f;
55620
55626
  }
55627
+ n(a) {
55628
+ let b = a.toString();
55629
+ if (this.i != null) {
55630
+ a = this.i(b);
55631
+ }
55632
+ else {
55633
+ if (stringStartsWith(b, "{")) {
55634
+ if (!stringStartsWith(b, "{[")) {
55635
+ b = b.substr(1, b.length - 2);
55636
+ b = "{[" + b + "]}";
55637
+ a = b;
55638
+ }
55639
+ }
55640
+ else {
55641
+ if (!stringStartsWith(b, "[")) {
55642
+ b = "[" + b + "]";
55643
+ a = b;
55644
+ }
55645
+ }
55646
+ }
55647
+ return a;
55648
+ }
55621
55649
  k(a, b) {
55622
55650
  if (b == null) {
55623
55651
  return null;
@@ -55736,7 +55764,7 @@ let DescriptionSerializer = /*@__PURE__*/ (() => {
55736
55764
  return c.value;
55737
55765
  }
55738
55766
  }
55739
- p(a, b, c) {
55767
+ q(a, b, c) {
55740
55768
  c.f("{");
55741
55769
  c.i();
55742
55770
  c.f("\"type\": \"" + b.h + "\"");
@@ -55746,25 +55774,25 @@ let DescriptionSerializer = /*@__PURE__*/ (() => {
55746
55774
  if (e >= 0) {
55747
55775
  c.f(",");
55748
55776
  }
55749
- this.q(a, b, f, c);
55777
+ this.r(a, b, f, c);
55750
55778
  }
55751
55779
  c.h();
55752
55780
  c.f("}");
55753
55781
  }
55754
- n(a) {
55782
+ o(a) {
55755
55783
  if (a == null) {
55756
55784
  return null;
55757
55785
  }
55758
55786
  return a.substr(0, 1).toLowerCase() + a.substr(1);
55759
55787
  }
55760
- q(a, b, c, d) {
55788
+ r(a, b, c, d) {
55761
55789
  if (c.c.toLowerCase() == "type") {
55762
55790
  return;
55763
55791
  }
55764
- d.e("\"" + this.n(c.c) + "\": ");
55765
- this.t(a, b, c, c.b, d);
55792
+ d.e("\"" + this.o(c.c) + "\": ");
55793
+ this.u(a, b, c, c.b, d);
55766
55794
  }
55767
- t(a, b, c, d, e) {
55795
+ u(a, b, c, d, e) {
55768
55796
  let f = 2;
55769
55797
  if (c.a != null) {
55770
55798
  f = c.a.knownType;
@@ -55786,17 +55814,17 @@ let DescriptionSerializer = /*@__PURE__*/ (() => {
55786
55814
  }
55787
55815
  let j = h;
55788
55816
  if (typeCast(DescriptionTreeNode.$, g[i]) !== null) {
55789
- this.p(a, g[i], e);
55817
+ this.q(a, g[i], e);
55790
55818
  }
55791
55819
  else {
55792
- this.r(a, h, g[i], e);
55820
+ this.s(a, h, g[i], e);
55793
55821
  }
55794
55822
  }
55795
55823
  e.e("]");
55796
55824
  }
55797
55825
  break;
55798
55826
  case 7:
55799
- this.r(a, "Boolean", d, e);
55827
+ this.s(a, "Boolean", d, e);
55800
55828
  break;
55801
55829
  case 9:
55802
55830
  {
@@ -55809,10 +55837,10 @@ let DescriptionSerializer = /*@__PURE__*/ (() => {
55809
55837
  }
55810
55838
  let n = l;
55811
55839
  if (typeCast(DescriptionTreeNode.$, k[m]) !== null) {
55812
- this.p(a, k[m], e);
55840
+ this.q(a, k[m], e);
55813
55841
  }
55814
55842
  else {
55815
- this.r(a, l, k[m], e);
55843
+ this.s(a, l, k[m], e);
55816
55844
  }
55817
55845
  }
55818
55846
  e.e("]");
@@ -55824,29 +55852,29 @@ let DescriptionSerializer = /*@__PURE__*/ (() => {
55824
55852
  case 20:
55825
55853
  case 5:
55826
55854
  case 2:
55827
- this.r(a, "String", d, e);
55855
+ this.s(a, "String", d, e);
55828
55856
  break;
55829
55857
  case 3:
55830
- this.r(a, "DateTime", d, e);
55858
+ this.s(a, "DateTime", d, e);
55831
55859
  break;
55832
55860
  case 8:
55833
55861
  if (c.a.specificExternalType.toLowerCase() == "string") {
55834
- this.r(a, "String", d, e);
55862
+ this.s(a, "String", d, e);
55835
55863
  }
55836
55864
  else {
55837
- this.p(a, d, e);
55865
+ this.q(a, d, e);
55838
55866
  }
55839
55867
  break;
55840
55868
  case 1:
55841
- this.r(a, "Double", d, e);
55869
+ this.s(a, "Double", d, e);
55842
55870
  break;
55843
55871
  case 14:
55844
55872
  case 12:
55845
55873
  case 11:
55846
- this.p(a, d, e);
55874
+ this.q(a, d, e);
55847
55875
  break;
55848
55876
  case 21:
55849
- this.r(a, "TimeSpan", d, e);
55877
+ this.s(a, "TimeSpan", d, e);
55850
55878
  break;
55851
55879
  case 17:
55852
55880
  case 0:
@@ -55854,7 +55882,7 @@ let DescriptionSerializer = /*@__PURE__*/ (() => {
55854
55882
  case 13: throw new NotImplementedException(0);
55855
55883
  }
55856
55884
  }
55857
- r(a, b, c, d) {
55885
+ s(a, b, c, d) {
55858
55886
  switch (b.toLowerCase()) {
55859
55887
  case "string":
55860
55888
  if (c == null) {
@@ -56692,7 +56720,7 @@ let ComponentRenderer = /*@__PURE__*/ (() => {
56692
56720
  }
56693
56721
  b.e("\"" + h + "\"");
56694
56722
  b.e(": ");
56695
- c.s(this.context, g, b);
56723
+ c.t(this.context, g, b);
56696
56724
  }
56697
56725
  b.f("");
56698
56726
  b.h();
@@ -58360,8 +58388,8 @@ let CodeGeneratingComponentRendererHandlerEmitter = /*@__PURE__*/ (() => {
58360
58388
  }
58361
58389
  j() {
58362
58390
  let a = new HashSet$1(String_$type, 0);
58363
- for (let b = 0; b < this.e.q.count; b++) {
58364
- let c = this.e.q._inner[b];
58391
+ for (let b = 0; b < this.e.s.count; b++) {
58392
+ let c = this.e.s._inner[b];
58365
58393
  if (c.a != null && c.c == null) {
58366
58394
  if (this.g.library != null && this.g.library.hasItem(c.a.e)) {
58367
58395
  if (a.contains(c.a.e)) {
@@ -58591,16 +58619,19 @@ let CodeGeneratingComponentRendererModuleEmitter = /*@__PURE__*/ (() => {
58591
58619
  class CodeGeneratingComponentRendererModuleEmitter extends Base {
58592
58620
  constructor(a, b) {
58593
58621
  super();
58594
- this.j = null;
58622
+ this.k = null;
58595
58623
  this.i = null;
58596
58624
  this.b = null;
58597
58625
  this.f = new CodeGeneratingImportManager();
58598
58626
  this.e = new CodeGeneratingImportManager();
58599
58627
  this.a = null;
58600
- this.j = a;
58628
+ this.k = a;
58601
58629
  this.i = b;
58602
- this.b = new CodeGeneratingCodeWriter(this.j);
58603
- this.a = new CodeGeneratingCodeWriter(this.j);
58630
+ this.b = new CodeGeneratingCodeWriter(this.k);
58631
+ this.a = new CodeGeneratingCodeWriter(this.k);
58632
+ }
58633
+ get j() {
58634
+ return this.i;
58604
58635
  }
58605
58636
  get d() {
58606
58637
  return this.b;
@@ -58614,8 +58645,8 @@ let CodeGeneratingComponentRendererModuleEmitter = /*@__PURE__*/ (() => {
58614
58645
  get c() {
58615
58646
  return this.a;
58616
58647
  }
58617
- l(a) {
58618
- this.n();
58648
+ m(a) {
58649
+ this.o();
58619
58650
  if (typeCast(JsonDictionaryArray.$, a) !== null) {
58620
58651
  let b = a;
58621
58652
  for (let c = 0; c < b.items.length; c++) {
@@ -58624,22 +58655,22 @@ let CodeGeneratingComponentRendererModuleEmitter = /*@__PURE__*/ (() => {
58624
58655
  let e = d;
58625
58656
  if (e != null) {
58626
58657
  let f = e.value.toString();
58627
- this.k(f);
58658
+ this.l(f);
58628
58659
  }
58629
58660
  }
58630
58661
  }
58631
58662
  }
58632
- this.m();
58663
+ this.n();
58633
58664
  this.i.addImportResult("modulesImports", this.h);
58634
58665
  this.i.addContainerResult("modulesRegister", this.d.toString());
58635
58666
  this.i.addImportResult("descriptionImports", this.g);
58636
58667
  this.i.addContainerResult("descriptionRegister", this.c.toString());
58637
58668
  }
58638
- m() {
58669
+ n() {
58639
58670
  }
58640
- k(a) {
58671
+ l(a) {
58641
58672
  }
58642
- n() {
58673
+ o() {
58643
58674
  }
58644
58675
  }
58645
58676
  CodeGeneratingComponentRendererModuleEmitter.$t = markType(CodeGeneratingComponentRendererModuleEmitter, 'CodeGeneratingComponentRendererModuleEmitter');
@@ -58659,60 +58690,62 @@ let TSCodeGeneratingComponentRendererModuleEmitter = /*@__PURE__*/ (() => {
58659
58690
  class TSCodeGeneratingComponentRendererModuleEmitter extends CodeGeneratingComponentRendererModuleEmitter {
58660
58691
  constructor(a, b, c) {
58661
58692
  super(b, c);
58662
- this.o = 0;
58663
- this.r = 0;
58664
- this.p = false;
58665
- this.q = new Dictionary$2(String_$type, List$1.$.specialize(String_$type), 0);
58666
- this.o = a;
58693
+ this.p = 0;
58694
+ this.s = 0;
58695
+ this.q = false;
58696
+ this.r = new Dictionary$2(String_$type, List$1.$.specialize(String_$type), 0);
58697
+ this.p = a;
58667
58698
  }
58668
- n() {
58669
- super.n();
58670
- this.r = 0;
58699
+ o() {
58700
+ super.o();
58701
+ this.s = 0;
58671
58702
  }
58672
- get t() {
58673
- switch (this.o) {
58703
+ get u() {
58704
+ switch (this.p) {
58674
58705
  case 1: return "Igx";
58675
58706
  case 2: return "Igr";
58676
58707
  case 3: return "Igc";
58677
58708
  }
58678
58709
  return "";
58679
58710
  }
58680
- get s() {
58681
- switch (this.o) {
58711
+ get t() {
58712
+ switch (this.p) {
58682
58713
  case 1: return "angular";
58683
58714
  case 2: return "react";
58684
58715
  case 3: return "webcomponents";
58685
58716
  }
58686
58717
  return "";
58687
58718
  }
58688
- k(a) {
58689
- super.k(a);
58719
+ l(a) {
58720
+ super.l(a);
58690
58721
  if (a == "withDescriptions") {
58691
- this.p = true;
58722
+ this.q = true;
58692
58723
  return;
58693
58724
  }
58694
- let b = "igniteui-" + this.s + "-core";
58725
+ let b = "igniteui-" + this.t + "-core";
58695
58726
  let c = "";
58696
58727
  let d = a.split('/');
58697
58728
  if (d.length == 1) {
58698
58729
  c = d[0];
58730
+ this.j.addPackageRef(c);
58699
58731
  }
58700
58732
  else {
58701
58733
  b = d[0];
58702
- b = "igniteui-" + this.s + "-" + b;
58734
+ this.j.addPackageRef(b);
58735
+ b = "igniteui-" + this.t + "-" + b;
58703
58736
  c = d[1];
58704
58737
  }
58705
- if (!this.q.containsKey(b)) {
58706
- this.q.addItem(b, new List$1(String_$type, 0));
58738
+ if (!this.r.containsKey(b)) {
58739
+ this.r.addItem(b, new List$1(String_$type, 0));
58707
58740
  }
58708
- let e = this.q.item(b);
58709
- if (this.r > 0) {
58741
+ let e = this.r.item(b);
58742
+ if (this.s > 0) {
58710
58743
  this.d.k(",");
58711
58744
  }
58712
- this.d.j(this.t + c);
58713
- e.add(this.t + c);
58714
- if (this.p) {
58715
- if (this.r == 0) {
58745
+ this.d.j(this.u + c);
58746
+ e.add(this.u + c);
58747
+ if (this.q) {
58748
+ if (this.s == 0) {
58716
58749
  this.c.k("private _componentRenderer: ComponentRenderer = null;");
58717
58750
  this.c.k("public get renderer(): ComponentRenderer {");
58718
58751
  this.c.h();
@@ -58720,31 +58753,31 @@ let TSCodeGeneratingComponentRendererModuleEmitter = /*@__PURE__*/ (() => {
58720
58753
  this.c.h();
58721
58754
  this.c.k("this._componentRenderer = new ComponentRenderer();");
58722
58755
  this.c.k("var context = this._componentRenderer.context;");
58723
- this.g.addPackageImport("igniteui-" + this.s + "-core", "ComponentRenderer");
58756
+ this.g.addPackageImport("igniteui-" + this.t + "-core", "ComponentRenderer");
58724
58757
  }
58725
58758
  let f = c;
58726
58759
  if (stringEndsWith(f, "Module")) {
58727
58760
  f = f.substr(0, f.length - ("Module").length);
58728
58761
  f += "DescriptionModule";
58729
58762
  }
58730
- this.g.addPackageImport("igniteui-" + this.s + "-core", f);
58763
+ this.g.addPackageImport("igniteui-" + this.t + "-core", f);
58731
58764
  this.c.k(f + ".register(context);");
58732
58765
  }
58733
- this.r++;
58766
+ this.s++;
58734
58767
  }
58735
- m() {
58736
- super.m();
58737
- for (let a of fromEnum(this.q.keys)) {
58768
+ n() {
58769
+ super.n();
58770
+ for (let a of fromEnum(this.r.keys)) {
58738
58771
  let b = a;
58739
- let c = this.q.item(a);
58772
+ let c = this.r.item(a);
58740
58773
  for (let d of fromEnum(c)) {
58741
58774
  this.h.addPackageImport(b, d);
58742
58775
  }
58743
58776
  }
58744
- if (this.p) {
58777
+ if (this.q) {
58745
58778
  this.c.f();
58746
58779
  this.c.k("}");
58747
- this.c.k("return this._componentRenderer");
58780
+ this.c.k("return this._componentRenderer;");
58748
58781
  this.c.f();
58749
58782
  this.c.k("}");
58750
58783
  }
@@ -58767,43 +58800,45 @@ let DotNetCodeGeneratingComponentRendererModuleEmitter = /*@__PURE__*/ (() => {
58767
58800
  class DotNetCodeGeneratingComponentRendererModuleEmitter extends CodeGeneratingComponentRendererModuleEmitter {
58768
58801
  constructor(a, b, c) {
58769
58802
  super(b, c);
58770
- this.o = 0;
58771
- this.r = 0;
58772
- this.p = false;
58773
- this.q = new Dictionary$2(String_$type, List$1.$.specialize(String_$type), 0);
58774
- this.o = a;
58803
+ this.p = 0;
58804
+ this.s = 0;
58805
+ this.q = false;
58806
+ this.r = new Dictionary$2(String_$type, List$1.$.specialize(String_$type), 0);
58807
+ this.p = a;
58775
58808
  }
58776
- get s() {
58777
- return this.r;
58809
+ get t() {
58810
+ return this.s;
58778
58811
  }
58779
- n() {
58780
- super.n();
58781
- this.r = 0;
58812
+ o() {
58813
+ super.o();
58814
+ this.s = 0;
58782
58815
  }
58783
- get t() {
58784
- switch (this.o) {
58816
+ get u() {
58817
+ switch (this.p) {
58785
58818
  case 0: return "Xam";
58786
58819
  case 4: return "Ultra";
58787
58820
  case 5: return "Igb";
58788
58821
  }
58789
58822
  return "";
58790
58823
  }
58791
- k(a) {
58792
- super.k(a);
58793
- if (a == "withDescriptions" && this.o != 5) {
58794
- this.p = true;
58824
+ l(a) {
58825
+ super.l(a);
58826
+ if (a == "withDescriptions" && this.p != 5) {
58827
+ this.q = true;
58795
58828
  return;
58796
58829
  }
58797
58830
  let b = "";
58798
58831
  let c = a.split('/');
58799
58832
  if (c.length == 1) {
58800
58833
  b = c[0];
58834
+ this.j.addPackageRef(b);
58801
58835
  }
58802
58836
  else {
58837
+ this.j.addPackageRef(c[0]);
58803
58838
  b = c[1];
58804
58839
  }
58805
- if (this.p) {
58806
- if (this.r == 0) {
58840
+ if (this.q) {
58841
+ if (this.s == 0) {
58807
58842
  this.c.k("private ComponentRenderer _componentRenderer = null;");
58808
58843
  this.c.k("public ComponentRenderer Renderer");
58809
58844
  this.c.k("{");
@@ -58824,11 +58859,11 @@ let DotNetCodeGeneratingComponentRendererModuleEmitter = /*@__PURE__*/ (() => {
58824
58859
  }
58825
58860
  this.c.k(d + ".Register(context);");
58826
58861
  }
58827
- this.r++;
58862
+ this.s++;
58828
58863
  }
58829
- m() {
58830
- super.m();
58831
- if (this.p) {
58864
+ n() {
58865
+ super.n();
58866
+ if (this.q) {
58832
58867
  this.g.addUsing("using Infragistics.Controls.Description;");
58833
58868
  this.c.f();
58834
58869
  this.c.k("}");
@@ -58857,14 +58892,14 @@ let BlazorCodeGeneratingComponentRendererModuleEmitter = /*@__PURE__*/ (() => {
58857
58892
  class BlazorCodeGeneratingComponentRendererModuleEmitter extends DotNetCodeGeneratingComponentRendererModuleEmitter {
58858
58893
  constructor(a, b, c) {
58859
58894
  super(a, b, c);
58860
- this.u = 0;
58895
+ this.v = 0;
58861
58896
  }
58862
- n() {
58863
- super.n();
58897
+ o() {
58898
+ super.o();
58864
58899
  }
58865
- k(a) {
58866
- super.k(a);
58867
- if (this.u > 0) {
58900
+ l(a) {
58901
+ super.l(a);
58902
+ if (this.v > 0) {
58868
58903
  this.d.k(", ");
58869
58904
  }
58870
58905
  let b = "";
@@ -58883,10 +58918,10 @@ let BlazorCodeGeneratingComponentRendererModuleEmitter = /*@__PURE__*/ (() => {
58883
58918
  this.d.j("Igb" + b);
58884
58919
  this.d.j(")");
58885
58920
  }
58886
- this.u++;
58921
+ this.v++;
58887
58922
  }
58888
- m() {
58889
- super.m();
58923
+ n() {
58924
+ super.n();
58890
58925
  }
58891
58926
  }
58892
58927
  BlazorCodeGeneratingComponentRendererModuleEmitter.$t = markType(BlazorCodeGeneratingComponentRendererModuleEmitter, 'BlazorCodeGeneratingComponentRendererModuleEmitter', DotNetCodeGeneratingComponentRendererModuleEmitter.$);
@@ -59318,16 +59353,16 @@ let CodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
59318
59353
  super();
59319
59354
  this.k = null;
59320
59355
  this.i = null;
59321
- this.s = new List$1(CodeGenerationItemBuilderPropertyInfo.$, 0);
59356
+ this.t = new List$1(CodeGenerationItemBuilderPropertyInfo.$, 0);
59322
59357
  this.d = null;
59323
59358
  this.a = null;
59324
59359
  this.c = null;
59325
59360
  this.b = null;
59326
- this.t = new List$1(String_$type, 0);
59327
- this.w = new Stack$1(String_$type);
59328
- this.u = new Stack$1(String_$type);
59329
- this.v = new Stack$1(Boolean_$type);
59330
- this.ap = null;
59361
+ this.u = new List$1(String_$type, 0);
59362
+ this.x = new Stack$1(String_$type);
59363
+ this.v = new Stack$1(String_$type);
59364
+ this.w = new Stack$1(Boolean_$type);
59365
+ this.aq = null;
59331
59366
  this.k = a;
59332
59367
  this.i = b;
59333
59368
  this.d = new CodeGeneratingCodeWriter(this.k);
@@ -59335,8 +59370,8 @@ let CodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
59335
59370
  this.c = new CodeGeneratingCodeWriter(this.k);
59336
59371
  this.b = new CodeGeneratingCodeWriter(this.k);
59337
59372
  }
59338
- a7(a) {
59339
- this.i.ab(a);
59373
+ a8(a) {
59374
+ this.i.ae(a);
59340
59375
  }
59341
59376
  get j() {
59342
59377
  return this.i;
@@ -59353,8 +59388,8 @@ let CodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
59353
59388
  get f() {
59354
59389
  return this.b;
59355
59390
  }
59356
- as(a) {
59357
- this.t.add(a);
59391
+ at(a) {
59392
+ this.u.add(a);
59358
59393
  }
59359
59394
  n(a) {
59360
59395
  if (a.b != null && (a.b.knownType == 20 || a.b.knownType == 19 || a.b.knownType == 18)) {
@@ -59364,39 +59399,47 @@ let CodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
59364
59399
  }
59365
59400
  return false;
59366
59401
  }
59367
- get ad() {
59368
- return this.w.d();
59402
+ p(a) {
59403
+ if (a.b != null && (a.b.knownType == 19)) {
59404
+ if (a.a != null) {
59405
+ return true;
59406
+ }
59407
+ }
59408
+ return false;
59369
59409
  }
59370
- at(a) {
59371
- this.w.h(a);
59410
+ get ae() {
59411
+ return this.x.d();
59372
59412
  }
59373
- a6() {
59413
+ au(a) {
59414
+ this.x.h(a);
59374
59415
  }
59375
- a1(a) {
59376
- this.w.e();
59416
+ a7() {
59377
59417
  }
59378
- az(a, b, c, d) {
59418
+ a2(a) {
59419
+ this.x.e();
59379
59420
  }
59380
59421
  a0(a, b, c, d) {
59381
- this.az(a, b, c, d);
59422
+ }
59423
+ a1(a, b, c, d) {
59424
+ this.a0(a, b, c, d);
59382
59425
  }
59383
59426
  toString() {
59384
59427
  return this.d.toString();
59385
59428
  }
59386
- al() {
59429
+ am() {
59387
59430
  return "null";
59388
59431
  }
59389
- ao(a, b) {
59432
+ ap(a, b) {
59390
59433
  if (a.b == null) {
59391
59434
  return a.c;
59392
59435
  }
59393
59436
  if (typeCast(CodeGenerationSpecialValue.$, a.c) !== null) {
59394
- a.c = this.x(a);
59437
+ a.c = this.y(a);
59395
59438
  }
59396
59439
  switch (a.b.knownType) {
59397
- case 10: return this.ae(a);
59440
+ case 10: return this.af(a);
59398
59441
  case 7: return a.c ? "true" : "false";
59399
- case 4: return this.z(a);
59442
+ case 4: return this.aa(a);
59400
59443
  case 6:
59401
59444
  {
59402
59445
  let c = "";
@@ -59405,13 +59448,13 @@ let CodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
59405
59448
  if (e >= 1) {
59406
59449
  c += " ";
59407
59450
  }
59408
- c += this.y(d.item(e));
59451
+ c += this.z(d.item(e));
59409
59452
  }
59410
59453
  return c;
59411
59454
  }
59412
59455
  break;
59413
59456
  case 9: throw new NotSupportedException(1, "shouldn't get here");
59414
- case 5: return this.ab(a);
59457
+ case 5: return this.ac(a);
59415
59458
  case 16:
59416
59459
  {
59417
59460
  let f = "";
@@ -59420,44 +59463,44 @@ let CodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
59420
59463
  if (h >= 1) {
59421
59464
  f += " ";
59422
59465
  }
59423
- f += this.aa(g.item(h));
59466
+ f += this.ab(g.item(h));
59424
59467
  }
59425
59468
  return f;
59426
59469
  }
59427
59470
  break;
59428
59471
  case 20:
59429
59472
  if (a.a != null) {
59430
- return this.an(a);
59473
+ return this.ao(a);
59431
59474
  }
59432
59475
  if (a.c == null) {
59433
- return this.al();
59476
+ return this.am();
59434
59477
  }
59435
59478
  break;
59436
59479
  case 15: throw new NotSupportedException(1, "need to figure this out");
59437
59480
  case 3: throw new NotSupportedException(1, "need to figure this out");
59438
59481
  case 19:
59439
59482
  if (a.a != null) {
59440
- return this.ai(a);
59483
+ return this.aj(a);
59441
59484
  }
59442
59485
  else {
59443
- return this.al();
59486
+ return this.am();
59444
59487
  }
59445
59488
  break;
59446
59489
  case 8:
59447
59490
  if (a.b.specificExternalType == "string") {
59448
- return this.ah(a);
59491
+ return this.ai(a);
59449
59492
  }
59450
59493
  if (a.a != null) {
59451
- return this.aj(a);
59494
+ return this.ak(a);
59452
59495
  }
59453
59496
  throw new NotSupportedException(1, "shouldn't get here");
59454
59497
  case 13: throw new NotSupportedException(1, "shouldn't get here");
59455
59498
  case 18:
59456
59499
  if (a.a != null) {
59457
- return this.ak(a);
59500
+ return this.al(a);
59458
59501
  }
59459
59502
  else {
59460
- return this.al();
59503
+ return this.am();
59461
59504
  }
59462
59505
  break;
59463
59506
  case 1: return a.c.toString();
@@ -59476,7 +59519,7 @@ let CodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
59476
59519
  let k = a.c;
59477
59520
  return k.width + ", " + k.height;
59478
59521
  }
59479
- case 2: return a.c != null ? a.c.toString() : this.al();
59522
+ case 2: return a.c != null ? a.c.toString() : this.am();
59480
59523
  case 21: return a.c.toString();
59481
59524
  case 17:
59482
59525
  if (a.c == null) {
@@ -59490,22 +59533,22 @@ let CodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
59490
59533
  }
59491
59534
  return "";
59492
59535
  }
59493
- ae(a) {
59536
+ af(a) {
59494
59537
  return "";
59495
59538
  }
59496
- x(a) {
59539
+ y(a) {
59497
59540
  return a.c;
59498
59541
  }
59499
- an(a) {
59542
+ ao(a) {
59500
59543
  if (!stringIsNullOrEmpty(a.a.e)) {
59501
59544
  if (a.a.a) {
59502
- return this.ag(a);
59545
+ return this.ah(a);
59503
59546
  }
59504
59547
  else {
59505
- return this.am(a);
59548
+ return this.an(a);
59506
59549
  }
59507
59550
  }
59508
- return this.al();
59551
+ return this.am();
59509
59552
  }
59510
59553
  o(a) {
59511
59554
  if (a.a != null && !stringIsNullOrEmpty(a.a.e)) {
@@ -59515,138 +59558,138 @@ let CodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
59515
59558
  }
59516
59559
  return false;
59517
59560
  }
59518
- am(a) {
59561
+ an(a) {
59519
59562
  return "";
59520
59563
  }
59521
- ag(a) {
59564
+ ah(a) {
59522
59565
  return "";
59523
59566
  }
59524
- aj(a) {
59567
+ ak(a) {
59525
59568
  if (!stringIsNullOrEmpty(a.a.e)) {
59526
59569
  return a.a.e;
59527
59570
  }
59528
- return this.al();
59571
+ return this.am();
59529
59572
  }
59530
- ah(a) {
59573
+ ai(a) {
59531
59574
  return a.c != null ? a.c.toString() : "";
59532
59575
  }
59533
- ak(a) {
59534
- return this.ai(a);
59576
+ al(a) {
59577
+ return this.aj(a);
59535
59578
  }
59536
- ai(a) {
59579
+ aj(a) {
59537
59580
  if (!stringIsNullOrEmpty(a.a.e)) {
59538
- this.a7(a);
59581
+ this.a8(a);
59539
59582
  return a.a.e;
59540
59583
  }
59541
- return this.al();
59584
+ return this.am();
59542
59585
  }
59543
- get_q() {
59586
+ get_r() {
59544
59587
  return false;
59545
59588
  }
59546
- get q() {
59547
- return this.get_q();
59589
+ get r() {
59590
+ return this.get_r();
59548
59591
  }
59549
- ab(a) {
59592
+ ac(a) {
59550
59593
  let b = a.c;
59551
- return ColorUtil.i(b, this.q);
59594
+ return ColorUtil.i(b, this.r);
59552
59595
  }
59553
- aa(a) {
59596
+ ab(a) {
59554
59597
  let b = a;
59555
- return ColorUtil.i(b, this.q);
59598
+ return ColorUtil.i(b, this.r);
59556
59599
  }
59557
- z(a) {
59600
+ aa(a) {
59558
59601
  if (a.c == null) {
59559
59602
  return "";
59560
59603
  }
59561
59604
  let b = a.c;
59562
- return ColorUtil.i(b.color, this.q);
59605
+ return ColorUtil.i(b.color, this.r);
59563
59606
  }
59564
- y(a) {
59607
+ z(a) {
59565
59608
  if (a == null) {
59566
59609
  return "";
59567
59610
  }
59568
59611
  let b = a;
59569
- return ColorUtil.i(b.color, this.q);
59612
+ return ColorUtil.i(b.color, this.r);
59570
59613
  }
59571
- a5(a) {
59572
- this.u.h(a);
59573
- this.v.h(false);
59614
+ a6(a) {
59615
+ this.v.h(a);
59616
+ this.w.h(false);
59574
59617
  }
59575
- a4(a) {
59576
- let b = this.af(a);
59577
- this.u.h(b);
59578
- this.v.h(true);
59618
+ a5(a) {
59619
+ let b = this.ag(a);
59620
+ this.v.h(b);
59621
+ this.w.h(true);
59579
59622
  }
59580
- af(a) {
59581
- let b = stringReplace(stringReplace(a, this.aq, ""), "Component", "");
59623
+ ag(a) {
59624
+ let b = stringReplace(stringReplace(a, this.ar, ""), "Component", "");
59582
59625
  b = CodeGeneratingComponentRenderer.dp(b);
59583
- return this.i.s(b);
59626
+ return this.i.u(b);
59584
59627
  }
59585
- a2() {
59586
- this.u.e();
59628
+ a3() {
59587
59629
  this.v.e();
59630
+ this.w.e();
59588
59631
  }
59589
- get_aq() {
59632
+ get_ar() {
59590
59633
  return "";
59591
59634
  }
59592
- get aq() {
59593
- return this.get_aq();
59635
+ get ar() {
59636
+ return this.get_ar();
59594
59637
  }
59595
- get ac() {
59596
- if (this.u.f > 0) {
59597
- return this.u.d();
59638
+ get ad() {
59639
+ if (this.v.f > 0) {
59640
+ return this.v.d();
59598
59641
  }
59599
- let a = stringReplace(stringReplace(this.ad, this.aq, ""), "Component", "");
59642
+ let a = stringReplace(stringReplace(this.ae, this.ar, ""), "Component", "");
59600
59643
  return CodeGeneratingComponentRenderer.dp(a);
59601
59644
  }
59602
- get p() {
59603
- return this.w.f == 1;
59645
+ get q() {
59646
+ return this.x.f == 1;
59604
59647
  }
59605
59648
  get l() {
59606
- if (this.v.f == 0) {
59649
+ if (this.w.f == 0) {
59607
59650
  return false;
59608
59651
  }
59609
- return this.v.d();
59652
+ return this.w.d();
59610
59653
  }
59611
59654
  get m() {
59612
- if (this.u.f > 0) {
59655
+ if (this.v.f > 0) {
59613
59656
  return true;
59614
59657
  }
59615
59658
  return false;
59616
59659
  }
59617
- get_r() {
59660
+ get_s() {
59618
59661
  return true;
59619
59662
  }
59620
- get r() {
59621
- return this.get_r();
59663
+ get s() {
59664
+ return this.get_s();
59622
59665
  }
59623
- a3() {
59624
- this.u.e();
59666
+ a4() {
59667
+ this.v.e();
59625
59668
  }
59626
- av(a) {
59669
+ aw(a) {
59627
59670
  let b = this.f.toString();
59628
59671
  if (b.length > 0) {
59629
59672
  a.l(b);
59630
59673
  }
59631
59674
  }
59632
- ay(a) {
59675
+ az(a) {
59633
59676
  let b = this.g.toString();
59634
59677
  if (b.length > 0) {
59635
59678
  a.l(b);
59636
59679
  }
59637
59680
  }
59638
- au(a) {
59681
+ av(a) {
59639
59682
  let b = this.e.toString();
59640
59683
  if (b.length > 0) {
59641
59684
  a.l(b);
59642
59685
  }
59643
59686
  }
59644
- aw(a) {
59645
- if (this.t.count > 0) {
59646
- this.ax(this.t, a);
59687
+ ax(a) {
59688
+ if (this.u.count > 0) {
59689
+ this.ay(this.u, a);
59647
59690
  }
59648
59691
  }
59649
- ax(a, b) {
59692
+ ay(a, b) {
59650
59693
  }
59651
59694
  }
59652
59695
  CodeGeneratingComponentRendererCodeEmitter.$t = markType(CodeGeneratingComponentRendererCodeEmitter, 'CodeGeneratingComponentRendererCodeEmitter');
@@ -59659,14 +59702,14 @@ let BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() =>
59659
59702
  class BlazorRazorCodeGeneratingComponentRendererCodeEmitter extends CodeGeneratingComponentRendererCodeEmitter {
59660
59703
  constructor(a, b) {
59661
59704
  super(a, b);
59662
- this.ba = 0;
59663
- this.a8 = new HashSet$1(String_$type, 0);
59705
+ this.bb = 0;
59664
59706
  this.a9 = new HashSet$1(String_$type, 0);
59707
+ this.ba = new HashSet$1(String_$type, 0);
59665
59708
  }
59666
- get_r() {
59709
+ get_s() {
59667
59710
  return false;
59668
59711
  }
59669
- bb(a, b) {
59712
+ bc(a, b) {
59670
59713
  if (b.c == null) {
59671
59714
  return "null";
59672
59715
  }
@@ -59681,9 +59724,9 @@ let BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() =>
59681
59724
  d += " })";
59682
59725
  return d;
59683
59726
  }
59684
- ae(a) {
59727
+ af(a) {
59685
59728
  if (a.b.specificExternalType == "string") {
59686
- return this.bb(a.b.specificExternalType, a);
59729
+ return this.bc(a.b.specificExternalType, a);
59687
59730
  }
59688
59731
  if (a.c == null) {
59689
59732
  return "null";
@@ -59698,38 +59741,38 @@ let BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() =>
59698
59741
  }
59699
59742
  return c;
59700
59743
  }
59701
- at(a) {
59702
- super.at(a);
59744
+ au(a) {
59745
+ super.au(a);
59703
59746
  this.h.k("<" + a + "");
59704
- if (!this.a8.contains(this.ac)) {
59705
- this.a8.add_1(this.ac);
59706
- if (!this.a9.contains(this.ad)) {
59707
- this.a9.add_1(this.ad);
59708
- this.as(this.ad);
59747
+ if (!this.a9.contains(this.ad)) {
59748
+ this.a9.add_1(this.ad);
59749
+ if (!this.ba.contains(this.ae)) {
59750
+ this.ba.add_1(this.ae);
59751
+ this.at(this.ae);
59709
59752
  }
59710
- this.f.k("private " + this.ad + " " + CodeGeneratingComponentRenderer.dp(this.ac) + ";");
59753
+ this.f.k("private " + this.ae + " " + CodeGeneratingComponentRenderer.dp(this.ad) + ";");
59711
59754
  if (!this.m) {
59712
- if (this.p) {
59713
- this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ac) + " = this." + CodeGeneratingComponentRenderer.dp(this.ac) + ";");
59755
+ if (this.q) {
59756
+ this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + ";");
59714
59757
  }
59715
59758
  }
59716
59759
  else {
59717
- this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ac) + " = this." + CodeGeneratingComponentRenderer.dp(this.ac) + ";");
59760
+ this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + ";");
59718
59761
  }
59719
59762
  }
59720
59763
  }
59721
- a6() {
59764
+ a7() {
59722
59765
  this.h.k(">");
59723
59766
  this.h.h();
59724
59767
  }
59725
- a1(a) {
59768
+ a2(a) {
59726
59769
  this.h.f();
59727
59770
  this.h.k("</" + a + ">");
59728
- super.a1(a);
59771
+ super.a2(a);
59729
59772
  }
59730
- az(a, b, c, d) {
59773
+ a0(a, b, c, d) {
59731
59774
  if (c.b != null && d.h(c.b.owningType, CodeGeneratingComponentRenderer.dq(c.b.propertyName)) && this.n(c)) {
59732
- this.a7(c);
59775
+ this.a8(c);
59733
59776
  if (a > 0) {
59734
59777
  this.h.k("");
59735
59778
  }
@@ -59742,29 +59785,29 @@ let BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() =>
59742
59785
  return;
59743
59786
  }
59744
59787
  if (this.o(c)) {
59745
- this.a7(c);
59746
- if (!this.a8.contains(this.ac)) {
59747
- this.a8.add_1(this.ac);
59748
- if (!this.a9.contains(this.ad)) {
59749
- this.a9.add_1(this.ad);
59750
- this.as(this.ad);
59751
- }
59752
- this.f.k("private " + this.ad + " " + CodeGeneratingComponentRenderer.dp(this.ac) + ";");
59788
+ this.a8(c);
59789
+ if (!this.a9.contains(this.ad)) {
59790
+ this.a9.add_1(this.ad);
59791
+ if (!this.ba.contains(this.ae)) {
59792
+ this.ba.add_1(this.ae);
59793
+ this.at(this.ae);
59794
+ }
59795
+ this.f.k("private " + this.ae + " " + CodeGeneratingComponentRenderer.dp(this.ad) + ";");
59753
59796
  if (!this.m) {
59754
- if (this.p) {
59755
- this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ac) + " = this." + CodeGeneratingComponentRenderer.dp(this.ac) + ";");
59797
+ if (this.q) {
59798
+ this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + ";");
59756
59799
  }
59757
59800
  }
59758
59801
  else {
59759
- this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ac) + " = this." + CodeGeneratingComponentRenderer.dp(this.ac) + ";");
59802
+ this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + ";");
59760
59803
  }
59761
59804
  }
59762
- let e = CodeGeneratingComponentRenderer.dp(this.ao(c, true));
59805
+ let e = CodeGeneratingComponentRenderer.dp(this.ap(c, true));
59763
59806
  let f = e;
59764
59807
  if (f != "null" && !stringStartsWith(f, "this.")) {
59765
59808
  f = "this." + f;
59766
59809
  }
59767
- this.e.k(CodeGeneratingComponentRenderer.dp(this.ac) + "." + b + " = " + f + ";");
59810
+ this.e.k(CodeGeneratingComponentRenderer.dp(this.ad) + "." + b + " = " + f + ";");
59768
59811
  return;
59769
59812
  }
59770
59813
  if (a > 0) {
@@ -59778,19 +59821,56 @@ let BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() =>
59778
59821
  this.h.j(b);
59779
59822
  this.h.j("=");
59780
59823
  this.h.j("\"");
59781
- this.h.j(this.ao(c, true));
59824
+ this.h.j(this.ap(c, true));
59782
59825
  this.h.j("\"");
59783
59826
  }
59784
59827
  if (b == "Name") {
59785
59828
  this.h.k("");
59786
- this.h.j("@ref=\"" + CodeGeneratingComponentRenderer.dp(this.ao(c, true)) + "\"");
59829
+ this.h.j("@ref=\"" + CodeGeneratingComponentRenderer.dp(this.ap(c, true)) + "\"");
59787
59830
  }
59788
59831
  }
59789
- ah(a) {
59832
+ ai(a) {
59790
59833
  let b = a.b != null ? a.b.specificType + "." : "";
59791
59834
  return b + (a.c != null ? a.c.toString() : "");
59792
59835
  }
59793
- x(a) {
59836
+ ap(a, b) {
59837
+ if (a.b == null) {
59838
+ return a.c;
59839
+ }
59840
+ if (typeCast(CodeGenerationSpecialValue.$, a.c) !== null) {
59841
+ a.c = this.y(a);
59842
+ }
59843
+ switch (a.b.knownType) {
59844
+ case 11:
59845
+ {
59846
+ let c = a.c;
59847
+ return "@(new Point(" + c.x + ", " + c.y + "))";
59848
+ }
59849
+ case 14:
59850
+ {
59851
+ let d = a.c;
59852
+ return "@(new Rect(" + d.left + ", " + d.top + ", " + d.width + ", " + d.height + "))";
59853
+ }
59854
+ case 12:
59855
+ {
59856
+ let e = a.c;
59857
+ return "@(new Size(" + e.width + ", " + e.height + "))";
59858
+ }
59859
+ case 17:
59860
+ if (a.c == null) {
59861
+ return "null";
59862
+ }
59863
+ if (typeof a.c === 'string') {
59864
+ return "@(\"" + a.c.toString() + "\")";
59865
+ }
59866
+ if (typeCast(Boolean_$type, a.c) !== null) {
59867
+ return a.c ? "true" : "false";
59868
+ }
59869
+ return a.c.toString();
59870
+ }
59871
+ return super.ap(a, b);
59872
+ }
59873
+ y(a) {
59794
59874
  let b = a.c;
59795
59875
  switch (b.a) {
59796
59876
  case 3: return b.b;
@@ -59800,21 +59880,21 @@ let BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() =>
59800
59880
  }
59801
59881
  return b.b;
59802
59882
  }
59803
- al() {
59883
+ am() {
59804
59884
  return "@null";
59805
59885
  }
59806
- ag(a) {
59886
+ ah(a) {
59807
59887
  return CodeGeneratingComponentRenderer.dp(CodeGeneratingComponentRenderer.dp(a.a.e));
59808
59888
  }
59809
- bc(a) {
59889
+ bd(a) {
59810
59890
  a = stringReplace(a, "-", "_");
59811
59891
  return CodeGeneratingComponentRenderer.dq(a);
59812
59892
  }
59813
- am(a) {
59814
- this.a7(a);
59893
+ an(a) {
59894
+ this.a8(a);
59815
59895
  return CodeGeneratingComponentRenderer.dq(a.a.e);
59816
59896
  }
59817
- a0(a, b, c, d) {
59897
+ a1(a, b, c, d) {
59818
59898
  if (c.b.knownType == 9) {
59819
59899
  let e = typeCast(IList_$type, c.c);
59820
59900
  if (e != null) {
@@ -59833,7 +59913,7 @@ let BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() =>
59833
59913
  }
59834
59914
  }
59835
59915
  }
59836
- get_aq() {
59916
+ get_ar() {
59837
59917
  return "Igb";
59838
59918
  }
59839
59919
  }
@@ -59848,7 +59928,7 @@ let BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (
59848
59928
  constructor(a, b) {
59849
59929
  super(a, b);
59850
59930
  }
59851
- get_r() {
59931
+ get_s() {
59852
59932
  return false;
59853
59933
  }
59854
59934
  }
@@ -59862,10 +59942,10 @@ let ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() =>
59862
59942
  class ReactMarkupCodeGeneratingComponentRendererCodeEmitter extends CodeGeneratingComponentRendererCodeEmitter {
59863
59943
  constructor(a, b) {
59864
59944
  super(a, b);
59865
- this.a8 = new HashSet$1(String_$type, 0);
59866
59945
  this.a9 = new HashSet$1(String_$type, 0);
59946
+ this.ba = new HashSet$1(String_$type, 0);
59867
59947
  }
59868
- ae(a) {
59948
+ af(a) {
59869
59949
  if (a.c == null) {
59870
59950
  return "{null}";
59871
59951
  }
@@ -59880,43 +59960,43 @@ let ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() =>
59880
59960
  c += "]";
59881
59961
  return c;
59882
59962
  }
59883
- get_q() {
59963
+ get_r() {
59884
59964
  return true;
59885
59965
  }
59886
- get_aq() {
59966
+ get_ar() {
59887
59967
  return "Igr";
59888
59968
  }
59889
- at(a) {
59890
- super.at(a);
59891
- this.h.k("<" + this.bb(a) + "");
59969
+ au(a) {
59970
+ super.au(a);
59971
+ this.h.k("<" + this.bc(a) + "");
59892
59972
  this.h.h();
59893
- if (!this.a8.contains(this.ac)) {
59894
- this.a8.add_1(this.ac);
59895
- if (!this.a9.contains(this.ad)) {
59896
- this.a9.add_1(this.ad);
59897
- this.as(this.ad);
59898
- }
59899
- this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.ac) + ": " + this.ad);
59900
- if (this.p) {
59901
- this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.ac) + "Ref(r: " + this.ad + ") {");
59973
+ if (!this.ba.contains(this.ae)) {
59974
+ this.ba.add_1(this.ae);
59975
+ this.at(this.ae);
59976
+ }
59977
+ if (!this.a9.contains(this.ad)) {
59978
+ this.a9.add_1(this.ad);
59979
+ this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.ad) + ": " + this.ae);
59980
+ if (this.q) {
59981
+ this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.ad) + "Ref(r: " + this.ae + ") {");
59902
59982
  this.f.h();
59903
- this.f.k("this." + CodeGeneratingComponentRenderer.dp(this.ac) + " = r;");
59983
+ this.f.k("this." + CodeGeneratingComponentRenderer.dp(this.ad) + " = r;");
59904
59984
  this.f.k("this.setState({});");
59905
59985
  this.f.f();
59906
59986
  this.f.k("}");
59907
- this.g.k("this." + CodeGeneratingComponentRenderer.dp(this.ac) + "Ref = " + "this." + CodeGeneratingComponentRenderer.dp(this.ac) + "Ref.bind(this);");
59987
+ this.g.k("this." + CodeGeneratingComponentRenderer.dp(this.ad) + "Ref = " + "this." + CodeGeneratingComponentRenderer.dp(this.ad) + "Ref.bind(this);");
59908
59988
  }
59909
59989
  }
59910
59990
  }
59911
- bb(a) {
59991
+ bc(a) {
59912
59992
  if (stringEndsWith(a, "Component")) {
59913
59993
  a = a.substr(0, a.length - ("Component").length);
59914
59994
  }
59915
59995
  return CodeGeneratingComponentRenderer.dq(a);
59916
59996
  }
59917
- a6() {
59918
- if (!this.p && !this.m) {
59919
- let a = this.ba();
59997
+ a7() {
59998
+ if (!this.q && !this.m) {
59999
+ let a = this.bb();
59920
60000
  this.h.k("");
59921
60001
  this.h.k("name=\"" + a + "\"");
59922
60002
  }
@@ -59924,31 +60004,31 @@ let ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() =>
59924
60004
  this.h.k(">");
59925
60005
  this.h.h();
59926
60006
  }
59927
- ba() {
59928
- let a = CodeGeneratingComponentRenderer.dp(stringReplace(stringReplace(this.ad, this.aq, ""), "Component", ""));
59929
- a = this.j.r(a);
60007
+ bb() {
60008
+ let a = CodeGeneratingComponentRenderer.dp(stringReplace(stringReplace(this.ae, this.ar, ""), "Component", ""));
60009
+ a = this.j.t(a);
59930
60010
  return a;
59931
60011
  }
59932
- ai(a) {
60012
+ aj(a) {
59933
60013
  if (!stringIsNullOrEmpty(a.a.e)) {
59934
- this.a7(a);
59935
- if (!this.a8.contains(a.a.e)) {
60014
+ this.a8(a);
60015
+ if (!this.a9.contains(a.a.e)) {
59936
60016
  this.g.k("this." + CodeGeneratingComponentRenderer.dp(a.a.e) + " = " + "this." + CodeGeneratingComponentRenderer.dp(a.a.e) + ".bind(this);");
59937
60017
  }
59938
60018
  return "this." + CodeGeneratingComponentRenderer.dp(a.a.e);
59939
60019
  }
59940
- return this.al();
60020
+ return this.am();
59941
60021
  }
59942
- a1(a) {
60022
+ a2(a) {
59943
60023
  this.h.f();
59944
- this.h.k("</" + this.bb(a) + ">");
59945
- super.a1(a);
60024
+ this.h.k("</" + this.bc(a) + ">");
60025
+ super.a2(a);
59946
60026
  }
59947
- az(a, b, c, d) {
60027
+ a0(a, b, c, d) {
59948
60028
  let e = CodeGeneratingComponentRenderer.dp(b);
59949
- let f = this.ao(c, true);
60029
+ let f = this.ap(c, true);
59950
60030
  if (c.b != null && d.h(c.b.owningType, CodeGeneratingComponentRenderer.dq(c.b.propertyName)) && this.n(c)) {
59951
- this.a7(c);
60031
+ this.a8(c);
59952
60032
  if (a > 0) {
59953
60033
  this.h.k("");
59954
60034
  }
@@ -59960,10 +60040,10 @@ let ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() =>
59960
60040
  }
59961
60041
  return;
59962
60042
  }
59963
- if (!(e == "name") || !this.p) {
60043
+ if (!(e == "name") || !this.q) {
59964
60044
  let g = (c.b != null && c.b.knownType == 10);
59965
60045
  if (this.n(c) || g) {
59966
- this.a7(c);
60046
+ this.a8(c);
59967
60047
  f = "{" + f + "}";
59968
60048
  }
59969
60049
  if (a > 0) {
@@ -59981,15 +60061,15 @@ let ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() =>
59981
60061
  a++;
59982
60062
  }
59983
60063
  if (e == "name") {
59984
- if (this.p) {
60064
+ if (this.q) {
59985
60065
  if (a > 0) {
59986
60066
  this.h.k("");
59987
60067
  }
59988
- this.h.j("ref={this." + CodeGeneratingComponentRenderer.dp(this.ao(c, true)) + "Ref}");
60068
+ this.h.j("ref={this." + CodeGeneratingComponentRenderer.dp(this.ap(c, true)) + "Ref}");
59989
60069
  }
59990
60070
  }
59991
60071
  }
59992
- x(a) {
60072
+ y(a) {
59993
60073
  let b = a.c;
59994
60074
  switch (b.a) {
59995
60075
  case 3: return b.b;
@@ -59999,16 +60079,16 @@ let ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() =>
59999
60079
  }
60000
60080
  return b.b;
60001
60081
  }
60002
- al() {
60082
+ am() {
60003
60083
  return "null";
60004
60084
  }
60005
- ag(a) {
60085
+ ah(a) {
60006
60086
  return "this." + CodeGeneratingComponentRenderer.dp(a.a.e);
60007
60087
  }
60008
- am(a) {
60088
+ an(a) {
60009
60089
  return "this." + CodeGeneratingComponentRenderer.dp(a.a.e);
60010
60090
  }
60011
- a0(a, b, c, d) {
60091
+ a1(a, b, c, d) {
60012
60092
  if (c.b.knownType == 9) {
60013
60093
  let e = typeCast(IList_$type, c.c);
60014
60094
  if (e != null) {
@@ -60027,10 +60107,10 @@ let ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() =>
60027
60107
  }
60028
60108
  }
60029
60109
  }
60030
- ax(a, b) {
60031
- super.ax(a, b);
60110
+ ay(a, b) {
60111
+ super.ay(a, b);
60032
60112
  for (let c of fromEnum(a)) {
60033
- b.addPackageImport("igniteui-react-" + this.ap, c);
60113
+ b.addPackageImport("igniteui-react-" + this.aq, c);
60034
60114
  }
60035
60115
  }
60036
60116
  }
@@ -60056,11 +60136,11 @@ let WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*
60056
60136
  class WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter extends CodeGeneratingComponentRendererCodeEmitter {
60057
60137
  constructor(a, b) {
60058
60138
  super(a, b);
60059
- this.ba = 0;
60060
- this.a8 = new HashSet$1(String_$type, 0);
60139
+ this.bb = 0;
60061
60140
  this.a9 = new HashSet$1(String_$type, 0);
60141
+ this.ba = new HashSet$1(String_$type, 0);
60062
60142
  }
60063
- ae(a) {
60143
+ af(a) {
60064
60144
  if (a.c == null) {
60065
60145
  return "null";
60066
60146
  }
@@ -60074,79 +60154,79 @@ let WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*
60074
60154
  }
60075
60155
  return c;
60076
60156
  }
60077
- get_q() {
60157
+ get_r() {
60078
60158
  return true;
60079
60159
  }
60080
- at(a) {
60081
- super.at(a);
60082
- this.h.k("<" + this.bb(a) + "");
60083
- if (!this.a8.contains(this.ac)) {
60084
- this.a8.add_1(this.ac);
60085
- if (!this.a9.contains(this.ad)) {
60086
- this.a9.add_1(this.ad);
60087
- this.as(this.ad);
60088
- }
60089
- this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.ac) + ": " + this.ad);
60160
+ au(a) {
60161
+ super.au(a);
60162
+ this.h.k("<" + this.bc(a) + "");
60163
+ if (!this.a9.contains(this.ad)) {
60164
+ this.a9.add_1(this.ad);
60165
+ if (!this.ba.contains(this.ae)) {
60166
+ this.ba.add_1(this.ae);
60167
+ this.at(this.ae);
60168
+ }
60169
+ this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.ad) + ": " + this.ae);
60090
60170
  if (!this.m) {
60091
- if (this.p) {
60092
- this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ac) + " = this." + CodeGeneratingComponentRenderer.dp(this.ac) + " = document.querySelector('" + CodeGeneratingComponentRenderer.dr(stringReplace(this.ad, "Component", "")) + "') as " + this.ad + ";");
60171
+ if (this.q) {
60172
+ this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + " = document.querySelector('" + CodeGeneratingComponentRenderer.dr(stringReplace(this.ae, "Component", "")) + "') as " + this.ae + ";");
60093
60173
  }
60094
60174
  }
60095
60175
  else {
60096
- this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ac) + " = this." + CodeGeneratingComponentRenderer.dp(this.ac) + " = document.getElementById('" + this.ac + "') as " + this.ad + ";");
60176
+ this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + " = document.getElementById('" + this.ad + "') as " + this.ae + ";");
60097
60177
  }
60098
60178
  }
60099
60179
  }
60100
- bb(a) {
60180
+ bc(a) {
60101
60181
  if (stringEndsWith(a, "Component")) {
60102
60182
  a = a.substr(0, a.length - ("Component").length);
60103
60183
  }
60104
60184
  return CodeGeneratingComponentRenderer.dr(a);
60105
60185
  }
60106
- a6() {
60186
+ a7() {
60107
60187
  this.h.k(">");
60108
60188
  this.h.h();
60109
60189
  }
60110
- a1(a) {
60190
+ a2(a) {
60111
60191
  this.h.f();
60112
- this.h.k("</" + this.bb(a) + ">");
60113
- super.a1(a);
60192
+ this.h.k("</" + this.bc(a) + ">");
60193
+ super.a2(a);
60114
60194
  }
60115
- get_aq() {
60195
+ get_ar() {
60116
60196
  return "Igc";
60117
60197
  }
60118
- ax(a, b) {
60119
- super.ax(a, b);
60198
+ ay(a, b) {
60199
+ super.ay(a, b);
60120
60200
  for (let c of fromEnum(a)) {
60121
- b.addPackageImport("igniteui-webcomponents-" + this.ap, c);
60201
+ b.addPackageImport("igniteui-webcomponents-" + this.aq, c);
60122
60202
  }
60123
60203
  }
60124
- az(a, b, c, d) {
60204
+ a0(a, b, c, d) {
60125
60205
  let e = CodeGeneratingComponentRenderer.dp(b);
60126
60206
  if (this.n(c)) {
60127
- this.a7(c);
60128
- if (!this.a8.contains(this.ac)) {
60129
- this.a8.add_1(this.ac);
60130
- if (!this.a9.contains(this.ad)) {
60131
- this.a9.add_1(this.ad);
60132
- this.as(this.ad);
60133
- }
60134
- this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.ac) + ": " + this.ad);
60207
+ this.a8(c);
60208
+ if (!this.a9.contains(this.ad)) {
60209
+ this.a9.add_1(this.ad);
60210
+ if (!this.ba.contains(this.ae)) {
60211
+ this.ba.add_1(this.ae);
60212
+ this.at(this.ae);
60213
+ }
60214
+ this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.ad) + ": " + this.ae);
60135
60215
  if (!this.m) {
60136
- if (this.p) {
60137
- this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ac) + " = this." + CodeGeneratingComponentRenderer.dp(this.ac) + " = document.querySelector('" + CodeGeneratingComponentRenderer.dr(stringReplace(this.ad, "Component", "")) + "') as " + this.ad + ";");
60216
+ if (this.q) {
60217
+ this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + " = document.querySelector('" + CodeGeneratingComponentRenderer.dr(stringReplace(this.ae, "Component", "")) + "') as " + this.ae + ";");
60138
60218
  }
60139
60219
  }
60140
60220
  else {
60141
- this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ac) + " = this." + CodeGeneratingComponentRenderer.dp(this.ac) + " = document.getElementById('" + this.ac + "') as " + this.ad + ";");
60221
+ this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + " = document.getElementById('" + this.ad + "') as " + this.ae + ";");
60142
60222
  }
60143
60223
  }
60144
- let f = CodeGeneratingComponentRenderer.dp(this.ao(c, true));
60224
+ let f = CodeGeneratingComponentRenderer.dp(this.ap(c, true));
60145
60225
  let g = f;
60146
60226
  if (g != "null" && !stringStartsWith(g, "this.")) {
60147
60227
  g = "this." + g;
60148
60228
  }
60149
- this.e.k(CodeGeneratingComponentRenderer.dp(this.ac) + "." + e + " = " + g);
60229
+ this.e.k(CodeGeneratingComponentRenderer.dp(this.ad) + "." + e + " = " + g);
60150
60230
  return;
60151
60231
  }
60152
60232
  if (a > 0) {
@@ -60155,14 +60235,14 @@ let WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*
60155
60235
  this.h.j(CodeGeneratingComponentRenderer.dr(e));
60156
60236
  this.h.j("=");
60157
60237
  this.h.j("\"");
60158
- this.h.j(this.ao(c, true));
60238
+ this.h.j(this.ap(c, true));
60159
60239
  this.h.j("\"");
60160
60240
  if (e == "name") {
60161
60241
  this.h.k("");
60162
- this.h.j("id =\"" + this.ao(c, true) + "\"");
60242
+ this.h.j("id =\"" + this.ap(c, true) + "\"");
60163
60243
  }
60164
60244
  }
60165
- x(a) {
60245
+ y(a) {
60166
60246
  let b = a.c;
60167
60247
  switch (b.a) {
60168
60248
  case 3: return b.b;
@@ -60172,26 +60252,26 @@ let WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*
60172
60252
  }
60173
60253
  return b.b;
60174
60254
  }
60175
- al() {
60255
+ am() {
60176
60256
  return "null";
60177
60257
  }
60178
- ag(a) {
60258
+ ah(a) {
60179
60259
  return CodeGeneratingComponentRenderer.dp(a.a.e);
60180
60260
  }
60181
- am(a) {
60261
+ an(a) {
60182
60262
  return CodeGeneratingComponentRenderer.dp(a.a.e);
60183
60263
  }
60184
- ai(a) {
60264
+ aj(a) {
60185
60265
  if (!stringIsNullOrEmpty(a.a.e)) {
60186
- this.a7(a);
60187
- if (!this.a8.contains(a.a.e)) {
60266
+ this.a8(a);
60267
+ if (!this.a9.contains(a.a.e)) {
60188
60268
  this.g.k("this." + CodeGeneratingComponentRenderer.dp(a.a.e) + " = " + "this." + CodeGeneratingComponentRenderer.dp(a.a.e) + ".bind(this);");
60189
60269
  }
60190
60270
  return "this." + CodeGeneratingComponentRenderer.dp(a.a.e);
60191
60271
  }
60192
- return this.al();
60272
+ return this.am();
60193
60273
  }
60194
- a0(a, b, c, d) {
60274
+ a1(a, b, c, d) {
60195
60275
  if (c.b.knownType == 9) {
60196
60276
  let e = typeCast(IList_$type, c.c);
60197
60277
  if (e != null) {
@@ -60300,25 +60380,25 @@ let TSCodeGeneratingComponentRendererDataEmitter = /*@__PURE__*/ (() => {
60300
60380
  }
60301
60381
  this.g.k("private " + this.ao(a) + ": " + f + " = " + g + ";");
60302
60382
  if (b == 2 || (c != null && c.isAsync)) {
60303
- this.g.k("private " + this.ao(a) + "_fetching: boolean = false;");
60383
+ this.g.k("private " + this.ao(a) + "Fetching: boolean = false;");
60304
60384
  }
60305
60385
  this.g.k("public get " + this.u(a) + "(): " + f + " {");
60306
60386
  this.g.h();
60307
60387
  if (c != null && c.isAsync) {
60308
- this.g.k("if (this." + this.ao(a) + " == null && !this." + this.ao(a) + "_fetching)");
60388
+ this.g.k("if (this." + this.ao(a) + " == null && !this." + this.ao(a) + "Fetching)");
60309
60389
  this.g.k("{");
60310
60390
  this.g.h();
60311
- this.g.k("this." + this.ao(a) + "_fetching = true;");
60391
+ this.g.k("this." + this.ao(a) + "Fetching = true;");
60312
60392
  this.g.k("( async () => { this." + this.ao(a) + " = await (await " + this.v(a, false) + ".fetch()); " + e + " })();");
60313
60393
  this.g.f();
60314
60394
  this.g.k("}");
60315
60395
  }
60316
60396
  else {
60317
60397
  if (b == 2) {
60318
- this.g.k("if (this." + this.ao(a) + " == null && !this." + this.ao(a) + "_fetching)");
60398
+ this.g.k("if (this." + this.ao(a) + " == null && !this." + this.ao(a) + "Fetching)");
60319
60399
  this.g.k("{");
60320
60400
  this.g.h();
60321
- this.g.k(this.ao(a) + "_fetching = true;");
60401
+ this.g.k(this.ao(a) + "Fetching = true;");
60322
60402
  this.g.k("( async () => { this." + this.ao(a) + " = await (await fetch('" + d + "')).json(); " + e + " })();");
60323
60403
  this.g.f();
60324
60404
  this.g.k("}");
@@ -60518,8 +60598,11 @@ let AngularTemplateCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ ((
60518
60598
  class AngularTemplateCodeGeneratingComponentRendererCodeEmitter extends CodeGeneratingComponentRendererCodeEmitter {
60519
60599
  constructor(a, b) {
60520
60600
  super(a, b);
60601
+ this.bb = 0;
60602
+ this.a9 = new HashSet$1(String_$type, 0);
60603
+ this.ba = new HashSet$1(String_$type, 0);
60521
60604
  }
60522
- ae(a) {
60605
+ af(a) {
60523
60606
  if (a.c == null) {
60524
60607
  return "null";
60525
60608
  }
@@ -60533,36 +60616,56 @@ let AngularTemplateCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ ((
60533
60616
  }
60534
60617
  return c;
60535
60618
  }
60536
- get_q() {
60619
+ get_r() {
60537
60620
  return true;
60538
60621
  }
60539
- get_aq() {
60622
+ get_ar() {
60540
60623
  return "Igx";
60541
60624
  }
60542
- at(a) {
60543
- super.at(a);
60544
- this.h.k("<" + this.a8(a) + "");
60625
+ au(a) {
60626
+ super.au(a);
60627
+ this.h.k("<" + this.bc(a) + "");
60628
+ if (!this.a9.contains(this.ad)) {
60629
+ this.a9.add_1(this.ad);
60630
+ if (!this.ba.contains(this.ae)) {
60631
+ this.ba.add_1(this.ae);
60632
+ this.at(this.ae);
60633
+ }
60634
+ this.f.k("@ViewChild(\"" + CodeGeneratingComponentRenderer.dp(this.ad) + "\", { static: true } )");
60635
+ this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.ad) + ": " + this.ae);
60636
+ }
60545
60637
  }
60546
- a8(a) {
60638
+ ay(a, b) {
60639
+ super.ay(a, b);
60640
+ for (let c of fromEnum(a)) {
60641
+ b.addPackageImport("igniteui-angular-" + this.aq, c);
60642
+ }
60643
+ }
60644
+ bc(a) {
60547
60645
  if (stringEndsWith(a, "Component")) {
60548
60646
  a = a.substr(0, a.length - ("Component").length);
60549
60647
  }
60550
60648
  return CodeGeneratingComponentRenderer.dr(a);
60551
60649
  }
60552
- a6() {
60650
+ a7() {
60553
60651
  this.h.k(">");
60554
60652
  this.h.h();
60555
60653
  }
60556
- a1(a) {
60654
+ a2(a) {
60557
60655
  this.h.f();
60558
- this.h.k("</" + this.a8(a) + ">");
60559
- super.a1(a);
60656
+ this.h.k("</" + this.bc(a) + ">");
60657
+ super.a2(a);
60560
60658
  }
60561
- az(a, b, c, d) {
60659
+ a0(a, b, c, d) {
60562
60660
  let e = CodeGeneratingComponentRenderer.dp(b);
60563
60661
  if (this.n(c)) {
60564
- this.a7(c);
60565
- e = "[" + e + "]";
60662
+ this.a8(c);
60663
+ if (this.p(c)) {
60664
+ e = "(" + e + ")";
60665
+ }
60666
+ else {
60667
+ e = "[" + e + "]";
60668
+ }
60566
60669
  }
60567
60670
  if (a > 0) {
60568
60671
  this.h.k("");
@@ -60570,21 +60673,21 @@ let AngularTemplateCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ ((
60570
60673
  this.h.j(e);
60571
60674
  this.h.j("=");
60572
60675
  this.h.j("\"");
60573
- this.h.j(this.ao(c, true));
60676
+ this.h.j(this.ap(c, true));
60574
60677
  this.h.j("\"");
60575
60678
  if (e == "name") {
60576
60679
  this.h.k("");
60577
- this.h.j("#" + CodeGeneratingComponentRenderer.dp(this.ao(c, true)));
60680
+ this.h.j("#" + CodeGeneratingComponentRenderer.dp(this.ap(c, true)));
60578
60681
  }
60579
60682
  }
60580
- ai(a) {
60683
+ aj(a) {
60581
60684
  if (!stringIsNullOrEmpty(a.a.e)) {
60582
- this.a7(a);
60685
+ this.a8(a);
60583
60686
  return "this." + CodeGeneratingComponentRenderer.dp(a.a.e) + "($event)";
60584
60687
  }
60585
- return this.al();
60688
+ return this.am();
60586
60689
  }
60587
- x(a) {
60690
+ y(a) {
60588
60691
  let b = a.c;
60589
60692
  switch (b.a) {
60590
60693
  case 3: return b.b;
@@ -60594,16 +60697,16 @@ let AngularTemplateCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ ((
60594
60697
  }
60595
60698
  return b.b;
60596
60699
  }
60597
- al() {
60700
+ am() {
60598
60701
  return "null";
60599
60702
  }
60600
- ag(a) {
60703
+ ah(a) {
60601
60704
  return CodeGeneratingComponentRenderer.dp(a.a.e);
60602
60705
  }
60603
- am(a) {
60706
+ an(a) {
60604
60707
  return CodeGeneratingComponentRenderer.dp(a.a.e);
60605
60708
  }
60606
- a0(a, b, c, d) {
60709
+ a1(a, b, c, d) {
60607
60710
  if (c.b.knownType == 9) {
60608
60711
  let e = typeCast(IList_$type, c.c);
60609
60712
  if (e != null) {
@@ -60914,10 +61017,10 @@ let WPFXamlCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
60914
61017
  constructor(a, b) {
60915
61018
  super(a, b);
60916
61019
  }
60917
- get_r() {
61020
+ get_s() {
60918
61021
  return false;
60919
61022
  }
60920
- ae(a) {
61023
+ af(a) {
60921
61024
  if (a.c == null) {
60922
61025
  return "null";
60923
61026
  }
@@ -60931,20 +61034,20 @@ let WPFXamlCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
60931
61034
  }
60932
61035
  return c;
60933
61036
  }
60934
- at(a) {
60935
- super.at(a);
61037
+ au(a) {
61038
+ super.au(a);
60936
61039
  this.h.k("<ig:" + a + "");
60937
61040
  }
60938
- a6() {
61041
+ a7() {
60939
61042
  this.h.k(">");
60940
61043
  this.h.h();
60941
61044
  }
60942
- a1(a) {
61045
+ a2(a) {
60943
61046
  this.h.f();
60944
61047
  this.h.k("</ig:" + a + ">");
60945
- super.a1(a);
61048
+ super.a2(a);
60946
61049
  }
60947
- az(a, b, c, d) {
61050
+ a0(a, b, c, d) {
60948
61051
  if (b == "Label" && c.b != null && stringContains(c.b.owningType, "Axis")) {
60949
61052
  if (c.c != null && stringContains(c.c, "{")) {
60950
61053
  if (a > 0) {
@@ -60953,7 +61056,7 @@ let WPFXamlCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
60953
61056
  this.h.j(b);
60954
61057
  this.h.j("=");
60955
61058
  this.h.j("\"");
60956
- this.h.j("{}" + this.ao(c, true));
61059
+ this.h.j("{}" + this.ap(c, true));
60957
61060
  this.h.j("\"");
60958
61061
  return;
60959
61062
  }
@@ -60964,10 +61067,10 @@ let WPFXamlCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
60964
61067
  this.h.j(b);
60965
61068
  this.h.j("=");
60966
61069
  this.h.j("\"");
60967
- this.h.j(this.ao(c, true));
61070
+ this.h.j(this.ap(c, true));
60968
61071
  this.h.j("\"");
60969
61072
  }
60970
- x(a) {
61073
+ y(a) {
60971
61074
  let b = a.c;
60972
61075
  switch (b.a) {
60973
61076
  case 3: return b.b;
@@ -60977,24 +61080,24 @@ let WPFXamlCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
60977
61080
  }
60978
61081
  return b.b;
60979
61082
  }
60980
- al() {
61083
+ am() {
60981
61084
  return "{x:Null}";
60982
61085
  }
60983
- ag(a) {
61086
+ ah(a) {
60984
61087
  return "{Binding ElementName=" + a.a.e + "}";
60985
61088
  }
60986
- a8(a) {
61089
+ a9(a) {
60987
61090
  a = stringReplace(a, "-", "_");
60988
61091
  return CodeGeneratingComponentRenderer.dq(a);
60989
61092
  }
60990
- am(a) {
60991
- this.a7(a);
60992
- return "{Binding " + this.a8(a.a.e) + "}";
61093
+ an(a) {
61094
+ this.a8(a);
61095
+ return "{Binding " + this.a9(a.a.e) + "}";
60993
61096
  }
60994
- a0(a, b, c, d) {
61097
+ a1(a, b, c, d) {
60995
61098
  this.h.j("<ig:");
60996
61099
  {
60997
- this.h.j(this.ad);
61100
+ this.h.j(this.ae);
60998
61101
  this.h.j(".");
60999
61102
  }
61000
61103
  this.h.j(b);
@@ -61020,13 +61123,13 @@ let WPFXamlCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
61020
61123
  this.h.f();
61021
61124
  this.h.j("</ig:");
61022
61125
  {
61023
- this.h.j(this.ad);
61126
+ this.h.j(this.ae);
61024
61127
  this.h.j(".");
61025
61128
  }
61026
61129
  this.h.j(b);
61027
61130
  this.h.k(">");
61028
61131
  }
61029
- get_aq() {
61132
+ get_ar() {
61030
61133
  return "Xam";
61031
61134
  }
61032
61135
  }
@@ -61041,7 +61144,7 @@ let WPFCodeBehindCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (()
61041
61144
  constructor(a, b) {
61042
61145
  super(a, b);
61043
61146
  }
61044
- get_r() {
61147
+ get_s() {
61045
61148
  return false;
61046
61149
  }
61047
61150
  }
@@ -61236,7 +61339,7 @@ let CodeGeneratingComponentRenderer = /*@__PURE__*/ (() => {
61236
61339
  }
61237
61340
  if (this.dk != null) {
61238
61341
  let i = this.dg(this.di, b);
61239
- i.l(this.dk);
61342
+ i.m(this.dk);
61240
61343
  }
61241
61344
  if (this.dm != null) {
61242
61345
  if (typeCast(JsonDictionaryObject.$, this.dm) !== null) {
@@ -61331,10 +61434,10 @@ let CodeGenerationContainer = /*@__PURE__*/ (() => {
61331
61434
  h.p(i, true);
61332
61435
  let j = i.toString();
61333
61436
  a.addContainerResult(this.id, j);
61334
- i.av(d);
61335
- i.ay(e);
61336
- i.au(f);
61337
- i.aw(g);
61437
+ i.aw(d);
61438
+ i.az(e);
61439
+ i.av(f);
61440
+ i.ax(g);
61338
61441
  }
61339
61442
  a.addContainerResult("bindingFields", d.toString());
61340
61443
  a.addContainerResult("bindingInit", e.toString());
@@ -61416,27 +61519,27 @@ let CodeGenerationItemBuilder = /*@__PURE__*/ (() => {
61416
61519
  let c = this.m();
61417
61520
  if (b) {
61418
61521
  let d = this.n();
61419
- a.ap = d;
61522
+ a.aq = d;
61420
61523
  }
61421
61524
  let e = false;
61422
61525
  let f = false;
61423
61526
  if (this.f.containsKey("Name")) {
61424
61527
  e = true;
61425
- a.a5(this.f.item("Name").c);
61528
+ a.a6(this.f.item("Name").c);
61426
61529
  }
61427
61530
  else if (this.f.containsKey("name")) {
61428
61531
  e = true;
61429
- a.a5(this.f.item("name").c);
61532
+ a.a6(this.f.item("name").c);
61430
61533
  }
61431
61534
  else {
61432
61535
  if (this.e(a)) {
61433
61536
  f = true;
61434
- a.a4(c);
61435
- if (a.r) {
61537
+ a.a5(c);
61538
+ if (a.s) {
61436
61539
  this.g.add("name");
61437
61540
  this.f.addItem("name", ((() => {
61438
61541
  let $ret = new CodeGenerationItemBuilderPropertyInfo();
61439
- $ret.c = a.ac;
61542
+ $ret.c = a.ad;
61440
61543
  return $ret;
61441
61544
  })()));
61442
61545
  }
@@ -61444,13 +61547,13 @@ let CodeGenerationItemBuilder = /*@__PURE__*/ (() => {
61444
61547
  this.g.add("Name");
61445
61548
  this.f.addItem("Name", ((() => {
61446
61549
  let $ret = new CodeGenerationItemBuilderPropertyInfo();
61447
- $ret.c = a.ac;
61550
+ $ret.c = a.ad;
61448
61551
  return $ret;
61449
61552
  })()));
61450
61553
  }
61451
61554
  }
61452
61555
  }
61453
- a.at(c);
61556
+ a.au(c);
61454
61557
  let g = 0;
61455
61558
  for (let h of fromEnum(this.g)) {
61456
61559
  let i = this.f.item(h);
@@ -61458,11 +61561,11 @@ let CodeGenerationItemBuilder = /*@__PURE__*/ (() => {
61458
61561
  continue;
61459
61562
  }
61460
61563
  if (this.d(h, i)) {
61461
- a.az(g, h, i, this.c);
61564
+ a.a0(g, h, i, this.c);
61462
61565
  g++;
61463
61566
  }
61464
61567
  }
61465
- a.a6();
61568
+ a.a7();
61466
61569
  let j = 0;
61467
61570
  for (let k of fromEnum(this.g)) {
61468
61571
  let l = this.f.item(k);
@@ -61470,17 +61573,17 @@ let CodeGenerationItemBuilder = /*@__PURE__*/ (() => {
61470
61573
  continue;
61471
61574
  }
61472
61575
  if (!this.d(k, l)) {
61473
- a.a0(j, k, l, this.c);
61576
+ a.a1(j, k, l, this.c);
61474
61577
  j++;
61475
61578
  }
61476
61579
  }
61477
- a.a1(c);
61580
+ a.a2(c);
61478
61581
  if (e) {
61479
- a.a3();
61582
+ a.a4();
61480
61583
  }
61481
61584
  else {
61482
61585
  if (f) {
61483
- a.a2();
61586
+ a.a3();
61484
61587
  }
61485
61588
  }
61486
61589
  }
@@ -62665,51 +62768,55 @@ let CodeGenerationFolderTemplate = /*@__PURE__*/ (() => {
62665
62768
  for (let i = 0; i < h.length; i++) {
62666
62769
  d.add_1(h[i]);
62667
62770
  }
62668
- for (let j = 0; j < this.b.count; j++) {
62669
- let k = this.c._inner[j];
62670
- k = this.h(k, d);
62671
- this.c._inner[j] = k;
62771
+ let j = a.getPackages();
62772
+ for (let k = 0; k < j.length; k++) {
62773
+ d.add_1(j[k]);
62672
62774
  }
62673
62775
  for (let l = 0; l < this.b.count; l++) {
62674
- let m = new List$1(String_$type, 0);
62675
- let p = a.getImportsKeys();
62676
- for (let o = 0; o < p.length; o++) {
62677
- let n = p[o];
62678
- m.add(n);
62776
+ let m = this.c._inner[l];
62777
+ m = this.h(m, d);
62778
+ this.c._inner[l] = m;
62779
+ }
62780
+ for (let n = 0; n < this.b.count; n++) {
62781
+ let o = new List$1(String_$type, 0);
62782
+ let r = a.getImportsKeys();
62783
+ for (let q = 0; q < r.length; q++) {
62784
+ let p = r[q];
62785
+ o.add(p);
62679
62786
  }
62680
- let q = this.c._inner[l];
62681
- q = this.j(q, m.toArray(), a);
62682
- this.c._inner[l] = q;
62787
+ let s = this.c._inner[n];
62788
+ s = this.j(s, o.toArray(), a);
62789
+ this.c._inner[n] = s;
62683
62790
  }
62684
- let t = a.getKeys();
62685
- for (let s = 0; s < t.length; s++) {
62686
- let r = t[s];
62687
- for (let u = 0; u < this.b.count; u++) {
62688
- let v = this.c._inner[u];
62689
- let w = a.getContentForKey(r);
62690
- v = this.i(v, r, w, a);
62691
- this.c._inner[u] = v;
62791
+ let v = a.getKeys();
62792
+ for (let u = 0; u < v.length; u++) {
62793
+ let t = v[u];
62794
+ for (let w = 0; w < this.b.count; w++) {
62795
+ let x = this.c._inner[w];
62796
+ let y = a.getContentForKey(t);
62797
+ x = this.i(x, t, y, a);
62798
+ this.c._inner[w] = x;
62692
62799
  }
62693
62800
  }
62694
- let z = a.getStringNames();
62695
- for (let y = 0; y < z.length; y++) {
62696
- let x = z[y];
62697
- for (let aa = 0; aa < this.b.count; aa++) {
62698
- let ab = this.c._inner[aa];
62699
- ab = stringReplace(ab, "$$" + x, a.getString(x));
62700
- this.c._inner[aa] = ab;
62801
+ let ab = a.getStringNames();
62802
+ for (let aa = 0; aa < ab.length; aa++) {
62803
+ let z = ab[aa];
62804
+ for (let ac = 0; ac < this.b.count; ac++) {
62805
+ let ad = this.c._inner[ac];
62806
+ ad = stringReplace(ad, "$$" + z, a.getString(z));
62807
+ this.c._inner[ac] = ad;
62701
62808
  }
62702
62809
  }
62703
- for (let ac of fromEnum(a.getNewFiles())) {
62704
- let ad = a.getNewFileContent(ac);
62705
- let ae = "";
62706
- for (let af of fromEnum(this.d)) {
62707
- if (stringStartsWith(af, "src")) {
62708
- ae = "src/";
62810
+ for (let ae of fromEnum(a.getNewFiles())) {
62811
+ let af = a.getNewFileContent(ae);
62812
+ let ag = "";
62813
+ for (let ah of fromEnum(this.d)) {
62814
+ if (stringStartsWith(ah, "src")) {
62815
+ ag = "src/";
62709
62816
  }
62710
62817
  }
62711
- this.d.add(ae + ac);
62712
- this.c.add(ad);
62818
+ this.d.add(ag + ae);
62819
+ this.c.add(af);
62713
62820
  }
62714
62821
  }
62715
62822
  h(a, b) {
@@ -62721,7 +62828,7 @@ let CodeGenerationFolderTemplate = /*@__PURE__*/ (() => {
62721
62828
  let e = b[f];
62722
62829
  let g = new CodeGeneratingRegexHelper("(?:(<!--)|(\\/\\/))\\s*insert " + e + "(?:(\\s*-->)?)[\\w\\W\\r\\n]*?(?:(<!--)|(\\/\\/))\\s*end " + e + "(?:(\\s*-->)?)((\\r\\n)|(\\n))");
62723
62830
  a = g.b(a, (h, i, j) => {
62724
- let k = c.o(e);
62831
+ let k = c.q(e);
62725
62832
  let l = new CodeGeneratingImportManager();
62726
62833
  for (let m of fromEnum(k)) {
62727
62834
  l = CodeGeneratingImportManager.merge(l, m);
@@ -108382,50 +108489,50 @@ let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
108382
108489
  class StackedFragmentSeriesDescription extends Description {
108383
108490
  constructor() {
108384
108491
  super();
108385
- this.b4 = null;
108386
- this.b3 = null;
108387
- this.bl = null;
108492
+ this.b6 = null;
108493
+ this.b5 = null;
108494
+ this.bn = null;
108388
108495
  this.j = false;
108389
108496
  this.f = false;
108390
108497
  this.an = 0;
108391
108498
  this.ac = 0;
108392
- this.cj = null;
108393
- this.bx = null;
108499
+ this.cl = null;
108500
+ this.bz = null;
108394
108501
  this.m = false;
108395
108502
  this.i = false;
108396
108503
  this.ao = 0;
108397
108504
  this.ad = 0;
108398
108505
  this.ap = 0;
108399
108506
  this.ae = 0;
108400
- this.b7 = null;
108401
- this.bo = null;
108402
- this.b8 = null;
108403
- this.bp = null;
108404
108507
  this.b9 = null;
108405
108508
  this.bq = null;
108406
- this.b6 = null;
108407
- this.b5 = null;
108408
- this.bn = null;
108409
- this.bm = null;
108410
108509
  this.ca = null;
108411
108510
  this.br = null;
108412
108511
  this.cb = null;
108413
108512
  this.bs = null;
108513
+ this.b8 = null;
108514
+ this.b7 = null;
108515
+ this.bp = null;
108516
+ this.bo = null;
108414
108517
  this.cc = null;
108415
108518
  this.bt = null;
108416
108519
  this.cd = null;
108417
108520
  this.bu = null;
108418
108521
  this.ce = null;
108522
+ this.bv = null;
108523
+ this.cf = null;
108524
+ this.bw = null;
108525
+ this.cg = null;
108419
108526
  this.ak = 0;
108420
108527
  this.z = 0;
108421
- this.cf = null;
108422
- this.bv = null;
108528
+ this.ch = null;
108529
+ this.bx = null;
108423
108530
  this.ag = 0;
108424
108531
  this.v = 0;
108425
108532
  this.ai = 0;
108426
108533
  this.x = 0;
108427
- this.cg = null;
108428
- this.bw = null;
108534
+ this.ci = null;
108535
+ this.by = null;
108429
108536
  this.ah = 0;
108430
108537
  this.w = 0;
108431
108538
  this.al = 0;
@@ -108438,28 +108545,28 @@ let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
108438
108545
  this.af = 0;
108439
108546
  this.aj = 0;
108440
108547
  this.y = 0;
108441
- this.ck = null;
108442
- this.cl = null;
108548
+ this.bl = null;
108549
+ this.cm = null;
108443
108550
  this.bf = 0;
108444
108551
  this.bg = 0;
108445
- this.cm = null;
108446
108552
  this.cn = null;
108447
- this.l = false;
108448
108553
  this.co = null;
108554
+ this.l = false;
108555
+ this.cp = null;
108449
108556
  this.h = false;
108450
108557
  this.be = 0;
108451
- this.b0 = null;
108558
+ this.b2 = null;
108559
+ this.b3 = null;
108452
108560
  this.b1 = null;
108453
- this.bz = null;
108454
- this.by = null;
108561
+ this.b0 = null;
108455
108562
  this.bd = 0;
108456
- this.cr = null;
108457
- this.cp = null;
108458
- this.cq = null;
108459
108563
  this.cs = null;
108460
- this.b2 = null;
108461
- this.ch = null;
108462
- this.ci = null;
108564
+ this.cq = null;
108565
+ this.cr = null;
108566
+ this.ct = null;
108567
+ this.b4 = null;
108568
+ this.cj = null;
108569
+ this.ck = null;
108463
108570
  }
108464
108571
  get_type() {
108465
108572
  return "StackedFragmentSeries";
@@ -108468,24 +108575,24 @@ let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
108468
108575
  return this.get_type();
108469
108576
  }
108470
108577
  get dataSourceRef() {
108471
- return this.b4;
108578
+ return this.b6;
108472
108579
  }
108473
108580
  set dataSourceRef(a) {
108474
- this.b4 = a;
108581
+ this.b6 = a;
108475
108582
  this.e("DataSourceRef");
108476
108583
  }
108477
108584
  get brush() {
108478
- return this.b3;
108585
+ return this.b5;
108479
108586
  }
108480
108587
  set brush(a) {
108481
- this.b3 = a;
108588
+ this.b5 = a;
108482
108589
  this.e("Brush");
108483
108590
  }
108484
108591
  get actualBrush() {
108485
- return this.bl;
108592
+ return this.bn;
108486
108593
  }
108487
108594
  set actualBrush(a) {
108488
- this.bl = a;
108595
+ this.bn = a;
108489
108596
  this.e("ActualBrush");
108490
108597
  }
108491
108598
  get isDropShadowEnabled() {
@@ -108517,17 +108624,17 @@ let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
108517
108624
  this.e("ActualShadowBlur");
108518
108625
  }
108519
108626
  get shadowColor() {
108520
- return this.cj;
108627
+ return this.cl;
108521
108628
  }
108522
108629
  set shadowColor(a) {
108523
- this.cj = a;
108630
+ this.cl = a;
108524
108631
  this.e("ShadowColor");
108525
108632
  }
108526
108633
  get actualShadowColor() {
108527
- return this.bx;
108634
+ return this.bz;
108528
108635
  }
108529
108636
  set actualShadowColor(a) {
108530
- this.bx = a;
108637
+ this.bz = a;
108531
108638
  this.e("ActualShadowColor");
108532
108639
  }
108533
108640
  get useSingleShadow() {
@@ -108573,136 +108680,136 @@ let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
108573
108680
  this.e("ActualShadowOffsetY");
108574
108681
  }
108575
108682
  get legendItemBadgeTemplateRef() {
108576
- return this.b7;
108683
+ return this.b9;
108577
108684
  }
108578
108685
  set legendItemBadgeTemplateRef(a) {
108579
- this.b7 = a;
108686
+ this.b9 = a;
108580
108687
  this.e("LegendItemBadgeTemplateRef");
108581
108688
  }
108582
108689
  get actualLegendItemBadgeTemplateRef() {
108583
- return this.bo;
108690
+ return this.bq;
108584
108691
  }
108585
108692
  set actualLegendItemBadgeTemplateRef(a) {
108586
- this.bo = a;
108693
+ this.bq = a;
108587
108694
  this.e("ActualLegendItemBadgeTemplateRef");
108588
108695
  }
108589
108696
  get legendItemTemplateRef() {
108590
- return this.b8;
108697
+ return this.ca;
108591
108698
  }
108592
108699
  set legendItemTemplateRef(a) {
108593
- this.b8 = a;
108700
+ this.ca = a;
108594
108701
  this.e("LegendItemTemplateRef");
108595
108702
  }
108596
108703
  get actualLegendItemTemplateRef() {
108597
- return this.bp;
108704
+ return this.br;
108598
108705
  }
108599
108706
  set actualLegendItemTemplateRef(a) {
108600
- this.bp = a;
108707
+ this.br = a;
108601
108708
  this.e("ActualLegendItemTemplateRef");
108602
108709
  }
108603
108710
  get legendItemVisibility() {
108604
- return this.b9;
108711
+ return this.cb;
108605
108712
  }
108606
108713
  set legendItemVisibility(a) {
108607
- this.b9 = a;
108714
+ this.cb = a;
108608
108715
  this.e("LegendItemVisibility");
108609
108716
  }
108610
108717
  get actualLegendItemVisibility() {
108611
- return this.bq;
108718
+ return this.bs;
108612
108719
  }
108613
108720
  set actualLegendItemVisibility(a) {
108614
- this.bq = a;
108721
+ this.bs = a;
108615
108722
  this.e("ActualLegendItemVisibility");
108616
108723
  }
108617
108724
  get legendItemBadgeShape() {
108618
- return this.b6;
108725
+ return this.b8;
108619
108726
  }
108620
108727
  set legendItemBadgeShape(a) {
108621
- this.b6 = a;
108728
+ this.b8 = a;
108622
108729
  this.e("LegendItemBadgeShape");
108623
108730
  }
108624
108731
  get legendItemBadgeMode() {
108625
- return this.b5;
108732
+ return this.b7;
108626
108733
  }
108627
108734
  set legendItemBadgeMode(a) {
108628
- this.b5 = a;
108735
+ this.b7 = a;
108629
108736
  this.e("LegendItemBadgeMode");
108630
108737
  }
108631
108738
  get actualLegendItemBadgeShape() {
108632
- return this.bn;
108739
+ return this.bp;
108633
108740
  }
108634
108741
  set actualLegendItemBadgeShape(a) {
108635
- this.bn = a;
108742
+ this.bp = a;
108636
108743
  this.e("ActualLegendItemBadgeShape");
108637
108744
  }
108638
108745
  get actualLegendItemBadgeMode() {
108639
- return this.bm;
108746
+ return this.bo;
108640
108747
  }
108641
108748
  set actualLegendItemBadgeMode(a) {
108642
- this.bm = a;
108749
+ this.bo = a;
108643
108750
  this.e("ActualLegendItemBadgeMode");
108644
108751
  }
108645
108752
  get markerBrush() {
108646
- return this.ca;
108753
+ return this.cc;
108647
108754
  }
108648
108755
  set markerBrush(a) {
108649
- this.ca = a;
108756
+ this.cc = a;
108650
108757
  this.e("MarkerBrush");
108651
108758
  }
108652
108759
  get actualMarkerBrush() {
108653
- return this.br;
108760
+ return this.bt;
108654
108761
  }
108655
108762
  set actualMarkerBrush(a) {
108656
- this.br = a;
108763
+ this.bt = a;
108657
108764
  this.e("ActualMarkerBrush");
108658
108765
  }
108659
108766
  get markerOutline() {
108660
- return this.cb;
108767
+ return this.cd;
108661
108768
  }
108662
108769
  set markerOutline(a) {
108663
- this.cb = a;
108770
+ this.cd = a;
108664
108771
  this.e("MarkerOutline");
108665
108772
  }
108666
108773
  get actualMarkerOutline() {
108667
- return this.bs;
108774
+ return this.bu;
108668
108775
  }
108669
108776
  set actualMarkerOutline(a) {
108670
- this.bs = a;
108777
+ this.bu = a;
108671
108778
  this.e("ActualMarkerOutline");
108672
108779
  }
108673
108780
  get markerTemplateRef() {
108674
- return this.cc;
108781
+ return this.ce;
108675
108782
  }
108676
108783
  set markerTemplateRef(a) {
108677
- this.cc = a;
108784
+ this.ce = a;
108678
108785
  this.e("MarkerTemplateRef");
108679
108786
  }
108680
108787
  get actualMarkerTemplateRef() {
108681
- return this.bt;
108788
+ return this.bv;
108682
108789
  }
108683
108790
  set actualMarkerTemplateRef(a) {
108684
- this.bt = a;
108791
+ this.bv = a;
108685
108792
  this.e("ActualMarkerTemplateRef");
108686
108793
  }
108687
108794
  get markerType() {
108688
- return this.cd;
108795
+ return this.cf;
108689
108796
  }
108690
108797
  set markerType(a) {
108691
- this.cd = a;
108798
+ this.cf = a;
108692
108799
  this.e("MarkerType");
108693
108800
  }
108694
108801
  get actualMarkerType() {
108695
- return this.bu;
108802
+ return this.bw;
108696
108803
  }
108697
108804
  set actualMarkerType(a) {
108698
- this.bu = a;
108805
+ this.bw = a;
108699
108806
  this.e("ActualMarkerType");
108700
108807
  }
108701
108808
  get name() {
108702
- return this.ce;
108809
+ return this.cg;
108703
108810
  }
108704
108811
  set name(a) {
108705
- this.ce = a;
108812
+ this.cg = a;
108706
108813
  this.e("Name");
108707
108814
  }
108708
108815
  get opacity() {
@@ -108720,17 +108827,17 @@ let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
108720
108827
  this.e("ActualOpacity");
108721
108828
  }
108722
108829
  get outline() {
108723
- return this.cf;
108830
+ return this.ch;
108724
108831
  }
108725
108832
  set outline(a) {
108726
- this.cf = a;
108833
+ this.ch = a;
108727
108834
  this.e("Outline");
108728
108835
  }
108729
108836
  get actualOutline() {
108730
- return this.bv;
108837
+ return this.bx;
108731
108838
  }
108732
108839
  set actualOutline(a) {
108733
- this.bv = a;
108840
+ this.bx = a;
108734
108841
  this.e("ActualOutline");
108735
108842
  }
108736
108843
  get areaFillOpacity() {
@@ -108762,17 +108869,17 @@ let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
108762
108869
  this.e("ActualMarkerFillOpacity");
108763
108870
  }
108764
108871
  get outlineMode() {
108765
- return this.cg;
108872
+ return this.ci;
108766
108873
  }
108767
108874
  set outlineMode(a) {
108768
- this.cg = a;
108875
+ this.ci = a;
108769
108876
  this.e("OutlineMode");
108770
108877
  }
108771
108878
  get actualOutlineMode() {
108772
- return this.bw;
108879
+ return this.by;
108773
108880
  }
108774
108881
  set actualOutlineMode(a) {
108775
- this.bw = a;
108882
+ this.by = a;
108776
108883
  this.e("ActualOutlineMode");
108777
108884
  }
108778
108885
  get highlightingFadeOpacity() {
@@ -108859,18 +108966,18 @@ let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
108859
108966
  this.y = a;
108860
108967
  this.e("ActualMarkerThickness");
108861
108968
  }
108862
- get titleRef() {
108863
- return this.ck;
108969
+ get title() {
108970
+ return this.bl;
108864
108971
  }
108865
- set titleRef(a) {
108866
- this.ck = a;
108867
- this.e("TitleRef");
108972
+ set title(a) {
108973
+ this.bl = a;
108974
+ this.e("Title");
108868
108975
  }
108869
108976
  get transitionEasingFunctionRef() {
108870
- return this.cl;
108977
+ return this.cm;
108871
108978
  }
108872
108979
  set transitionEasingFunctionRef(a) {
108873
- this.cl = a;
108980
+ this.cm = a;
108874
108981
  this.e("TransitionEasingFunctionRef");
108875
108982
  }
108876
108983
  get transitionDuration() {
@@ -108888,17 +108995,17 @@ let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
108888
108995
  this.e("TransitionInDuration");
108889
108996
  }
108890
108997
  get transitionInEasingFunctionRef() {
108891
- return this.cm;
108998
+ return this.cn;
108892
108999
  }
108893
109000
  set transitionInEasingFunctionRef(a) {
108894
- this.cm = a;
109001
+ this.cn = a;
108895
109002
  this.e("TransitionInEasingFunctionRef");
108896
109003
  }
108897
109004
  get transitionInMode() {
108898
- return this.cn;
109005
+ return this.co;
108899
109006
  }
108900
109007
  set transitionInMode(a) {
108901
- this.cn = a;
109008
+ this.co = a;
108902
109009
  this.e("TransitionInMode");
108903
109010
  }
108904
109011
  get isTransitionInEnabled() {
@@ -108909,10 +109016,10 @@ let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
108909
109016
  this.e("IsTransitionInEnabled");
108910
109017
  }
108911
109018
  get transitionInSpeedType() {
108912
- return this.co;
109019
+ return this.cp;
108913
109020
  }
108914
109021
  set transitionInSpeedType(a) {
108915
- this.co = a;
109022
+ this.cp = a;
108916
109023
  this.e("TransitionInSpeedType");
108917
109024
  }
108918
109025
  get actualIsTransitionInEnabled() {
@@ -108930,31 +109037,31 @@ let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
108930
109037
  this.e("ActualTransitionInDuration");
108931
109038
  }
108932
109039
  get actualTransitionInMode() {
108933
- return this.b0;
109040
+ return this.b2;
108934
109041
  }
108935
109042
  set actualTransitionInMode(a) {
108936
- this.b0 = a;
109043
+ this.b2 = a;
108937
109044
  this.e("ActualTransitionInMode");
108938
109045
  }
108939
109046
  get actualTransitionInSpeedType() {
108940
- return this.b1;
109047
+ return this.b3;
108941
109048
  }
108942
109049
  set actualTransitionInSpeedType(a) {
108943
- this.b1 = a;
109050
+ this.b3 = a;
108944
109051
  this.e("ActualTransitionInSpeedType");
108945
109052
  }
108946
109053
  get actualTransitionInEasingFunctionRef() {
108947
- return this.bz;
109054
+ return this.b1;
108948
109055
  }
108949
109056
  set actualTransitionInEasingFunctionRef(a) {
108950
- this.bz = a;
109057
+ this.b1 = a;
108951
109058
  this.e("ActualTransitionInEasingFunctionRef");
108952
109059
  }
108953
109060
  get actualTransitionEasingFunctionRef() {
108954
- return this.by;
109061
+ return this.b0;
108955
109062
  }
108956
109063
  set actualTransitionEasingFunctionRef(a) {
108957
- this.by = a;
109064
+ this.b0 = a;
108958
109065
  this.e("ActualTransitionEasingFunctionRef");
108959
109066
  }
108960
109067
  get actualTransitionDuration() {
@@ -108965,52 +109072,52 @@ let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
108965
109072
  this.e("ActualTransitionDuration");
108966
109073
  }
108967
109074
  get valueMemberPath() {
108968
- return this.cr;
109075
+ return this.cs;
108969
109076
  }
108970
109077
  set valueMemberPath(a) {
108971
- this.cr = a;
109078
+ this.cs = a;
108972
109079
  this.e("ValueMemberPath");
108973
109080
  }
108974
109081
  get valueMemberAsLegendLabel() {
108975
- return this.cp;
109082
+ return this.cq;
108976
109083
  }
108977
109084
  set valueMemberAsLegendLabel(a) {
108978
- this.cp = a;
109085
+ this.cq = a;
108979
109086
  this.e("ValueMemberAsLegendLabel");
108980
109087
  }
108981
109088
  get valueMemberAsLegendUnit() {
108982
- return this.cq;
109089
+ return this.cr;
108983
109090
  }
108984
109091
  set valueMemberAsLegendUnit(a) {
108985
- this.cq = a;
109092
+ this.cr = a;
108986
109093
  this.e("ValueMemberAsLegendUnit");
108987
109094
  }
108988
109095
  get visibility() {
108989
- return this.cs;
109096
+ return this.ct;
108990
109097
  }
108991
109098
  set visibility(a) {
108992
- this.cs = a;
109099
+ this.ct = a;
108993
109100
  this.e("Visibility");
108994
109101
  }
108995
109102
  get actualVisibility() {
108996
- return this.b2;
109103
+ return this.b4;
108997
109104
  }
108998
109105
  set actualVisibility(a) {
108999
- this.b2 = a;
109106
+ this.b4 = a;
109000
109107
  this.e("ActualVisibility");
109001
109108
  }
109002
109109
  get parentOrLocalBrush() {
109003
- return this.ch;
109110
+ return this.cj;
109004
109111
  }
109005
109112
  set parentOrLocalBrush(a) {
109006
- this.ch = a;
109113
+ this.cj = a;
109007
109114
  this.e("ParentOrLocalBrush");
109008
109115
  }
109009
109116
  get propertyUpdatedRef() {
109010
- return this.ci;
109117
+ return this.ck;
109011
109118
  }
109012
109119
  set propertyUpdatedRef(a) {
109013
- this.ci = a;
109120
+ this.ck = a;
109014
109121
  this.e("PropertyUpdatedRef");
109015
109122
  }
109016
109123
  }
@@ -109107,7 +109214,7 @@ let StackedFragmentSeriesDescriptionMetadata = /*@__PURE__*/ (() => {
109107
109214
  a.item("ActualThickness", "Number:double");
109108
109215
  a.item("MarkerThickness", "Number:double");
109109
109216
  a.item("ActualMarkerThickness", "Number:double");
109110
- a.item("TitleRef", "(w:Title,wf:Title)DataRef");
109217
+ a.item("Title", "Unknown");
109111
109218
  a.item("TransitionEasingFunctionRef", "(w:TransitionEasingFunction,wf:TransitionEasingFunction)MethodRef");
109112
109219
  a.item("TransitionDuration", "Number:int");
109113
109220
  a.item("TransitionInDuration", "Number:int");
@@ -147244,14 +147351,14 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
147244
147351
  /**
147245
147352
  * @hidden
147246
147353
  */
147247
- let WebTreeSelectionOptionsEventArgsDescription = /*@__PURE__*/ (() => {
147248
- class WebTreeSelectionOptionsEventArgsDescription extends Description {
147354
+ let WebTreeSelectionOptionsEventDetailDescription = /*@__PURE__*/ (() => {
147355
+ class WebTreeSelectionOptionsEventDetailDescription extends Description {
147249
147356
  constructor() {
147250
147357
  super();
147251
147358
  this.f = null;
147252
147359
  }
147253
147360
  get_type() {
147254
- return "WebTreeSelectionOptionsEventArgs";
147361
+ return "WebTreeSelectionOptionsEventDetail";
147255
147362
  }
147256
147363
  get type() {
147257
147364
  return this.get_type();
@@ -147264,6 +147371,77 @@ let WebTreeSelectionOptionsEventArgsDescription = /*@__PURE__*/ (() => {
147264
147371
  this.e("NewSelection");
147265
147372
  }
147266
147373
  }
147374
+ WebTreeSelectionOptionsEventDetailDescription.$t = markType(WebTreeSelectionOptionsEventDetailDescription, 'WebTreeSelectionOptionsEventDetailDescription', Description.$);
147375
+ WebTreeSelectionOptionsEventDetailDescription.__marshalByValue = true;
147376
+ WebTreeSelectionOptionsEventDetailDescription.__marshalByValueAlias = "TreeSelectionOptionsEventDetail";
147377
+ return WebTreeSelectionOptionsEventDetailDescription;
147378
+ })();
147379
+
147380
+ /*
147381
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
147382
+ https://www.infragistics.com/legal/license/igultimate-la
147383
+ https://www.infragistics.com/legal/license/igultimate-eula
147384
+ 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.
147385
+ */
147386
+ /**
147387
+ * @hidden
147388
+ */
147389
+ let WebTreeSelectionOptionsEventDetailDescriptionMetadata = /*@__PURE__*/ (() => {
147390
+ class WebTreeSelectionOptionsEventDetailDescriptionMetadata extends Base {
147391
+ static b(a) {
147392
+ if (WebTreeSelectionOptionsEventDetailDescriptionMetadata.a == null) {
147393
+ WebTreeSelectionOptionsEventDetailDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
147394
+ WebTreeSelectionOptionsEventDetailDescriptionMetadata.c(WebTreeSelectionOptionsEventDetailDescriptionMetadata.a);
147395
+ }
147396
+ if (a.g(WebTreeSelectionOptionsEventDetailDescriptionMetadata.a)) {
147397
+ return;
147398
+ }
147399
+ a.s(WebTreeSelectionOptionsEventDetailDescriptionMetadata.a);
147400
+ }
147401
+ static c(a) {
147402
+ a.item("__qualifiedNameTS", "String:TreeSelectionOptionsEventDetail");
147403
+ a.item("NewSelection", "Collection:WebTreeItem:WebTreeItemCollection:WebTreeItem");
147404
+ }
147405
+ static d(a) {
147406
+ WebTreeSelectionOptionsEventDetailDescriptionMetadata.b(a);
147407
+ a.u("WebTreeSelectionOptionsEventDetail", () => new WebTreeSelectionOptionsEventDetailDescription());
147408
+ a.t("WebTreeSelectionOptionsEventDetail", WebTreeSelectionOptionsEventDetailDescriptionMetadata.a);
147409
+ }
147410
+ }
147411
+ WebTreeSelectionOptionsEventDetailDescriptionMetadata.$t = markType(WebTreeSelectionOptionsEventDetailDescriptionMetadata, 'WebTreeSelectionOptionsEventDetailDescriptionMetadata');
147412
+ WebTreeSelectionOptionsEventDetailDescriptionMetadata.a = null;
147413
+ return WebTreeSelectionOptionsEventDetailDescriptionMetadata;
147414
+ })();
147415
+
147416
+ /*
147417
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
147418
+ https://www.infragistics.com/legal/license/igultimate-la
147419
+ https://www.infragistics.com/legal/license/igultimate-eula
147420
+ 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.
147421
+ */
147422
+ /**
147423
+ * @hidden
147424
+ */
147425
+ let WebTreeSelectionOptionsEventArgsDescription = /*@__PURE__*/ (() => {
147426
+ class WebTreeSelectionOptionsEventArgsDescription extends Description {
147427
+ constructor() {
147428
+ super();
147429
+ this.f = null;
147430
+ }
147431
+ get_type() {
147432
+ return "WebTreeSelectionOptionsEventArgs";
147433
+ }
147434
+ get type() {
147435
+ return this.get_type();
147436
+ }
147437
+ get detail() {
147438
+ return this.f;
147439
+ }
147440
+ set detail(a) {
147441
+ this.f = a;
147442
+ this.e("Detail");
147443
+ }
147444
+ }
147267
147445
  WebTreeSelectionOptionsEventArgsDescription.$t = markType(WebTreeSelectionOptionsEventArgsDescription, 'WebTreeSelectionOptionsEventArgsDescription', Description.$);
147268
147446
  return WebTreeSelectionOptionsEventArgsDescription;
147269
147447
  })();
@@ -147288,10 +147466,11 @@ let WebTreeSelectionOptionsEventArgsDescriptionMetadata = /*@__PURE__*/ (() => {
147288
147466
  return;
147289
147467
  }
147290
147468
  a.s(WebTreeSelectionOptionsEventArgsDescriptionMetadata.a);
147469
+ WebTreeSelectionOptionsEventDetailDescriptionMetadata.d(a);
147291
147470
  }
147292
147471
  static c(a) {
147293
147472
  a.item("__qualifiedNameTS", "String:TreeSelectionOptionsEventArgs");
147294
- a.item("NewSelection", "Collection:WebTreeItem:WebTreeItemCollection:WebTreeItem");
147473
+ a.item("Detail", "ExportedType:WebTreeSelectionOptionsEventDetail");
147295
147474
  }
147296
147475
  static d(a) {
147297
147476
  WebTreeSelectionOptionsEventArgsDescriptionMetadata.b(a);
@@ -183825,4 +184004,4 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
183825
184004
  * Generated bundle index. Do not edit.
183826
184005
  */
183827
184006
 
183828
- export { APIFactory, AbsoluteVolumeOscillatorIndicatorDescription, AbsoluteVolumeOscillatorIndicatorDescriptionMetadata, AbsoluteVolumeOscillatorIndicatorDescriptionModule, AbstractEnumerable, AbstractEnumerator, AccumulationDistributionIndicatorDescription, AccumulationDistributionIndicatorDescriptionMetadata, AccumulationDistributionIndicatorDescriptionModule, Activator, AggregateException, AlignLinearGraphLabelEventArgsDescription, AlignLinearGraphLabelEventArgsDescriptionMetadata, AlignRadialGaugeLabelEventArgsDescription, AlignRadialGaugeLabelEventArgsDescriptionMetadata, AnchoredCategorySeriesDescription, AnchoredCategorySeriesDescriptionMetadata, AnchoredRadialSeriesDescription, AnchoredRadialSeriesDescriptionMetadata, AngleSimplifier, AngularCodeBehindCodeGeneratingComponentRendererCodeEmitter, AngularRenderer, AngularTemplateCodeGeneratingComponentRendererCodeEmitter, AngularWrapper, AnimationBrowserTickProvider, AnimationKeyFrame, AnimationKeyFrameEffect, AnimationKeyFrameEffectTargetType_$type, AnimationKeyFrameEffectTiming, AnimationKeyFrameProperty, AnimationManager, AnimationState, AnnotationLayerDescription, AnnotationLayerDescriptionMetadata, AnnotationLayerProxyDescriptionModule, AppearanceHelper, ApplyButtonClickEventArgsDescription, ApplyButtonClickEventArgsDescriptionMetadata, ArcGISOnlineMapImageryDescription, ArcGISOnlineMapImageryDescriptionMetadata, ArcGISOnlineMapImageryDescriptionModule, ArcGISOnlineTileSource, ArcSegment, ArcSegmentData, AreaFragmentDescription, AreaFragmentDescriptionMetadata, AreaFragmentDescriptionModule, AreaSeriesDescription, AreaSeriesDescriptionMetadata, AreaSeriesDescriptionModule, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ArrayAccessHelper, ArrayBox$1, ArrayExtension, Array_$type, AsciiEncoding, AssigningCategoryMarkerStyleEventArgsDescription, AssigningCategoryMarkerStyleEventArgsDescriptionMetadata, AssigningCategoryStyleEventArgsBaseDescription, AssigningCategoryStyleEventArgsBaseDescriptionMetadata, AssigningCategoryStyleEventArgsDescription, AssigningCategoryStyleEventArgsDescriptionMetadata, AssigningPolarMarkerStyleEventArgsDescription, AssigningPolarMarkerStyleEventArgsDescriptionMetadata, AssigningPolarStyleEventArgsBaseDescription, AssigningPolarStyleEventArgsBaseDescriptionMetadata, AssigningPolarStyleEventArgsDescription, AssigningPolarStyleEventArgsDescriptionMetadata, AssigningRadialMarkerStyleEventArgsDescription, AssigningRadialMarkerStyleEventArgsDescriptionMetadata, AssigningRadialStyleEventArgsBaseDescription, AssigningRadialStyleEventArgsBaseDescriptionMetadata, AssigningRadialStyleEventArgsDescription, AssigningRadialStyleEventArgsDescriptionMetadata, AssigningScatterMarkerStyleEventArgsDescription, AssigningScatterMarkerStyleEventArgsDescriptionMetadata, AssigningScatterStyleEventArgsBaseDescription, AssigningScatterStyleEventArgsBaseDescriptionMetadata, AssigningScatterStyleEventArgsDescription, AssigningScatterStyleEventArgsDescriptionMetadata, AssigningSeriesShapeStyleEventArgsBaseDescription, AssigningSeriesShapeStyleEventArgsBaseDescriptionMetadata, AssigningSeriesStyleEventArgsBaseDescription, AssigningSeriesStyleEventArgsBaseDescriptionMetadata, AssigningShapeMarkerStyleEventArgsDescription, AssigningShapeMarkerStyleEventArgsDescriptionMetadata, AssigningShapeStyleEventArgsBaseDescription, AssigningShapeStyleEventArgsBaseDescriptionMetadata, AssigningShapeStyleEventArgsDescription, AssigningShapeStyleEventArgsDescriptionMetadata, AsyncCompletedEventArgs, AsyncCompletedEventArgsDescription, AsyncCompletedEventArgsDescriptionMetadata, AsyncDataSourcePageRequest, AsyncDataSourcePageTaskHolder, AsyncVirtualDataSourceDataProviderWorkerSettings, AsyncVirtualDataSourceProviderTaskDataHolder, AsyncVirtualDataSourceProviderWorker, AsyncVirtualDataTask, AverageDirectionalIndexIndicatorDescription, AverageDirectionalIndexIndicatorDescriptionMetadata, AverageDirectionalIndexIndicatorDescriptionModule, AverageSummaryCalculator, AverageTrueRangeIndicatorDescription, AverageTrueRangeIndicatorDescriptionMetadata, AverageTrueRangeIndicatorDescriptionModule, AxisAnnotationDescription, AxisAnnotationDescriptionMetadata, AxisDescription, AxisDescriptionMetadata, AxisRangeChangedEventArgsDescription, AxisRangeChangedEventArgsDescriptionMetadata, BarFragmentDescription, BarFragmentDescriptionMetadata, BarFragmentDescriptionModule, BarSeriesDescription, BarSeriesDescriptionMetadata, BarSeriesDescriptionModule, Base, BaseControlTheme, BaseControlTheme_$type, BaseDOMEventProxy, BaseDataSource, BaseDataSourceDescription, BaseDataSourceDescriptionMetadata, BaseError, BaseTransactionService, BezierSegment, BezierSegmentData, BinaryFileDownloader, BinaryReader, BinaryUtil, BinaryWriter, Binding, BindingFormatter, BingMapsMapImageryDescription, BingMapsMapImageryDescriptionMetadata, BingMapsMapImageryDescriptionModule, BingMapsTileSource, BitArray, BitConverter, BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter, BlazorCodeGeneratingComponentRendererModuleEmitter, BlazorRazorCodeGeneratingComponentRendererCodeEmitter, BollingerBandWidthIndicatorDescription, BollingerBandWidthIndicatorDescriptionMetadata, BollingerBandWidthIndicatorDescriptionModule, BollingerBandsOverlayDescription, BollingerBandsOverlayDescriptionMetadata, BollingerBandsOverlayDescriptionModule, Boolean_$type, BottomClipper, Brush, BrushAppearanceData, BrushCollection, BrushCollectionUtil, BrushScaleDescription, BrushScaleDescriptionMetadata, BrushScaleDescriptionModule, BrushUtil, BrushUtilCore, BubbleSeriesDescription, BubbleSeriesDescriptionMetadata, BubbleSeriesDescriptionModule, Buffer, BulletGraphCoreDescriptionModule, BulletGraphDescription, BulletGraphDescriptionMetadata, BulletGraphDescriptionModule, ButtonClickEventArgsDescription, ButtonClickEventArgsDescriptionMetadata, ButtonDescription, ButtonDescriptionMetadata, ButtonDescriptionModule, ButtonGroupDescription, ButtonGroupDescriptionMetadata, ButtonGroupDescriptionModule, ButtonGroupSelectionChangedEventArgsDescription, ButtonGroupSelectionChangedEventArgsDescriptionMetadata, CalculatedColumnDescription, CalculatedColumnDescriptionMetadata, Calendar, CalendarDateDescription, CalendarDateDescriptionMetadata, CalendarDescription, CalendarDescriptionMetadata, CalendarDescriptionModule, CalendarFormatOptionsDescription, CalendarFormatOptionsDescriptionMetadata, CalendarResourceStringsDescription, CalendarResourceStringsDescriptionMetadata, CalendarWeekRule_$type, CalloutAnnotationDescription, CalloutAnnotationDescriptionMetadata, CalloutContentUpdatingEventArgsDescription, CalloutContentUpdatingEventArgsDescriptionMetadata, CalloutLabelUpdatingEventArgsDescription, CalloutLabelUpdatingEventArgsDescriptionMetadata, CalloutLayerDescription, CalloutLayerDescriptionMetadata, CalloutLayerDescriptionModule, CalloutRenderStyleUpdatingEventArgsDescription, CalloutRenderStyleUpdatingEventArgsDescriptionMetadata, CalloutSeriesSelectingEventArgsDescription, CalloutSeriesSelectingEventArgsDescriptionMetadata, CalloutStyleUpdatingEventArgsDescription, CalloutStyleUpdatingEventArgsDescriptionMetadata, CancelBehavior, CancelBehavior_$type, CancelButtonClickEventArgsDescription, CancelButtonClickEventArgsDescriptionMetadata, CancelEventArgs, CancelEventArgsDescription, CancelEventArgsDescriptionMetadata, CancellingMultiScaleImageEventArgs, CancellingMultiScaleImageEventArgsDescription, CancellingMultiScaleImageEventArgsDescriptionMetadata, Canvas, CanvasGestureDOMEventProxy, CanvasRenderScheduler, CanvasViewRenderer, Capture, CategoryAngleAxisDescription, CategoryAngleAxisDescriptionMetadata, CategoryAngleAxisDescriptionModule, CategoryAxisBaseDescription, CategoryAxisBaseDescriptionMetadata, CategoryChartCoreDescriptionModule, CategoryChartDescription, CategoryChartDescriptionMetadata, CategoryChartDescriptionModule, CategoryDateTimeXAxisDescription, CategoryDateTimeXAxisDescriptionMetadata, CategoryDateTimeXAxisDescriptionModule, CategoryHighlightLayerDescription, CategoryHighlightLayerDescriptionMetadata, CategoryHighlightLayerDescriptionModule, CategoryItemHighlightLayerDescription, CategoryItemHighlightLayerDescriptionMetadata, CategoryItemHighlightLayerDescriptionModule, CategorySeriesDescription, CategorySeriesDescriptionMetadata, CategoryToolTipLayerDescription, CategoryToolTipLayerDescriptionMetadata, CategoryToolTipLayerDescriptionModule, CategoryXAxisDescription, CategoryXAxisDescriptionMetadata, CategoryXAxisDescriptionModule, CategoryYAxisDescription, CategoryYAxisDescriptionMetadata, CategoryYAxisDescriptionModule, CellActionManagerDescription, CellActionManagerDescriptionMetadata, CellInfoDescription, CellInfoDescriptionMetadata, CellKeyDescription, CellKeyDescriptionMetadata, CellKeyDescriptionModule, CellRangeDescription, CellRangeDescriptionMetadata, CellRangeDescriptionModule, CellStyleRequestedEventArgsDescription, CellStyleRequestedEventArgsDescriptionMetadata, ChaikinOscillatorIndicatorDescription, ChaikinOscillatorIndicatorDescriptionMetadata, ChaikinOscillatorIndicatorDescriptionModule, ChaikinVolatilityIndicatorDescription, ChaikinVolatilityIndicatorDescriptionMetadata, ChaikinVolatilityIndicatorDescriptionModule, ChartCursorEventArgsDescription, ChartCursorEventArgsDescriptionMetadata, ChartMouseEventArgsDescription, ChartMouseEventArgsDescriptionMetadata, ChartSeriesEventArgsDescription, ChartSeriesEventArgsDescriptionMetadata, CheckboxChangeEventArgsDescription, CheckboxChangeEventArgsDescriptionMetadata, CheckboxDescription, CheckboxDescriptionMetadata, CheckboxDescriptionModule, CheckboxListDescription, CheckboxListDescriptionMetadata, CheckboxListDescriptionModule, CheckedChangedEventArgsDescription, CheckedChangedEventArgsDescriptionMetadata, ChildContentDescriptionModule, ChildContentExtendedDescriptionModule, Clipboard, Clipper, CodeGeneratingCodeWriter, CodeGeneratingComponentRenderer, CodeGeneratingComponentRendererCodeEmitter, CodeGeneratingComponentRendererDataEmitter, CodeGeneratingComponentRendererDataEmitterItemType, CodeGeneratingComponentRendererDataEmitterPropertyType, CodeGeneratingComponentRendererHandlerEmitter, CodeGeneratingComponentRendererModuleEmitter, CodeGeneratingImportManager, CodeGeneratingRegexHelper, CodeGeneratingRendererResult, CodeGenerationContainer, CodeGenerationFolderTemplate, CodeGenerationItemBuilder, CodeGenerationItemBuilderPropertyInfo, CodeGenerationLibrary, CodeGenerationLibraryItem, CodeGenerationLibraryItemContent, CodeGenerationLibraryItemContentConfiguration, CodeGenerationLibraryItemContentLocation, CodeGenerationLibraryItemContentLocation_$type, CodeGenerationLibraryItemPlatform, CodeGenerationLibraryItemPlatform_$type, CodeGenerationLibraryItemType, CodeGenerationLibraryItemType_$type, CodeGenerationRendererAdapter, CodeGenerationRendererOptions, CodeGenerationSpecialValue, CodeGenerationSpecialValueType_$type, CodeGenerationTargetPlatforms, CodeGenerationTargetPlatforms_$type, CodeGenerationTransformer, Collection$1, CollectionAdapter, Color, ColorCollectionUtil, ColorData, ColorScaleDescription, ColorScaleDescriptionMetadata, ColorUtil, ColumnChooserDescription, ColumnChooserDescriptionMetadata, ColumnChooserDescriptionModule, ColumnComparisonFilterConditionDescription, ColumnComparisonFilterConditionDescriptionMetadata, ColumnCustomFilterConditionDescription, ColumnCustomFilterConditionDescriptionMetadata, ColumnDescription, ColumnDescriptionMetadata, ColumnExchangerDescription, ColumnExchangerDescriptionMetadata, ColumnFilterConditionDescription, ColumnFilterConditionDescriptionMetadata, ColumnFilterConditionGroupDescription, ColumnFilterConditionGroupDescriptionMetadata, ColumnFragmentDescription, ColumnFragmentDescriptionMetadata, ColumnFragmentDescriptionModule, ColumnGroupDescriptionDescription, ColumnGroupDescriptionDescriptionMetadata, ColumnGroupDescriptionDescriptionModule, ColumnGroupingDescription, ColumnGroupingDescriptionMetadata, ColumnGroupingDescriptionModule, ColumnHiddenChangedEventArgsDescription, ColumnHiddenChangedEventArgsDescriptionMetadata, ColumnMovingSeparatorDescription, ColumnMovingSeparatorDescriptionMetadata, ColumnMovingSeparatorDescriptionModule, ColumnPinnedChangedEventArgsDescription, ColumnPinnedChangedEventArgsDescriptionMetadata, ColumnPinningDescription, ColumnPinningDescriptionMetadata, ColumnPinningDescriptionModule, ColumnPropertySetterDescription, ColumnPropertySetterDescriptionMetadata, ColumnReference, ColumnResizingSeparatorDescription, ColumnResizingSeparatorDescriptionMetadata, ColumnResizingSeparatorDescriptionModule, ColumnSeriesDescription, ColumnSeriesDescriptionMetadata, ColumnSeriesDescriptionModule, ColumnSortDescriptionDescription, ColumnSortDescriptionDescriptionMetadata, ColumnSortDescriptionDescriptionModule, ColumnSummaryDescriptionDescription, ColumnSummaryDescriptionDescriptionMetadata, ColumnSummaryDescriptionDescriptionModule, ColumnSupportingCalculationDescription, ColumnSupportingCalculationDescriptionMetadata, ColumnWidthDescription, ColumnWidthDescriptionMetadata, ColumnWidthDescriptionModule, ComboBoxColumnDescription, ComboBoxColumnDescriptionMetadata, ComboBoxColumnDescriptionModule, CommodityChannelIndexIndicatorDescription, CommodityChannelIndexIndicatorDescriptionMetadata, CommodityChannelIndexIndicatorDescriptionModule, CompareInfo, CompareUtil, Comparer$1, CompletedSinkImpl, ComponentRenderer, ComponentRendererAdapter, ContainerState, ContentChildCollection, ContentControl, ContourValueResolverDescription, ContourValueResolverDescriptionMetadata, Control, ControlDisplayDensity, ControlDisplayDensity_$type, Convert, ConvertUtil, CoreGeometryUtil, CornerRadius, CountSummaryCalculator, CrosshairLayerDescription, CrosshairLayerDescriptionMetadata, CrosshairLayerDescriptionModule, CssColorPropertyAccessor, CssCornerRadiusPropertyAccessor, CssFloatPropertyAccessor, CssGradientUtil, CssHelper, CssLengthArrayPropertyAccessor, CssLengthPropertyAccessor, CssPixelsPropertyAccessor, CssThicknessPropertyAccessor, CssTransformPropertyAccessor, CultureInfo, CustomContourValueResolverDescription, CustomContourValueResolverDescriptionMetadata, CustomContourValueResolverDescriptionModule, CustomContourValueResolverEventArgsDescription, CustomContourValueResolverEventArgsDescriptionMetadata, CustomIndicatorDescription, CustomIndicatorDescriptionMetadata, CustomIndicatorDescriptionModule, CustomMapImageryDescription, CustomMapImageryDescriptionMetadata, CustomMapImageryDescriptionModule, CustomMapTileSource, CustomPaletteBrushScaleDescription, CustomPaletteBrushScaleDescriptionMetadata, CustomPaletteBrushScaleDescriptionModule, CustomPaletteColorScaleDescription, CustomPaletteColorScaleDescriptionMetadata, CustomPaletteColorScaleDescriptionModule, DOMEventProxy, DOMExecutionContext, DTDObjectModel, DVContainer, DVInteractivityDescriptionModule, DVSR, DataAbbreviationMode, DataAbbreviationMode_$type, DataBindingEventArgsDescription, DataBindingEventArgsDescriptionMetadata, DataChartAnnotationDescriptionModule, DataChartCategoryCoreDescriptionModule, DataChartCategoryDescriptionModule, DataChartCategoryTrendLineDescriptionModule, DataChartCoreDescriptionModule, DataChartDefaultTooltipsDescriptionMetadata, DataChartDefaultTooltipsExtendedDescriptionMetadata, DataChartDescription, DataChartDescriptionMetadata, DataChartExtendedAxesDescriptionModule, DataChartFinancialCoreDescriptionModule, DataChartFinancialDescriptionModule, DataChartFinancialIndicatorsDescriptionModule, DataChartFinancialOverlaysDescriptionModule, DataChartInteractivityDescriptionModule, DataChartMouseButtonEventArgsDescription, DataChartMouseButtonEventArgsDescriptionMetadata, DataChartPolarCoreDescriptionModule, DataChartPolarDescriptionModule, DataChartRadialCoreDescriptionModule, DataChartRadialDescriptionModule, DataChartScatterCoreDescriptionModule, DataChartScatterDescriptionModule, DataChartShapeCoreDescriptionModule, DataChartShapeDescriptionModule, DataChartStackedDescriptionModule, DataChartVerticalCategoryCoreDescriptionModule, DataChartVerticalCategoryDescriptionModule, DataChartVisualDataDescriptionModule, DataContext, DataContextDescription, DataContextDescriptionMetadata, DataFormats, DataGridAllColumnsDescriptionModule, DataGridComparisonOperatorSelectorDescription, DataGridComparisonOperatorSelectorDescriptionMetadata, DataGridCoreDescriptionModule, DataGridDescription, DataGridDescriptionMetadata, DataGridDescriptionModule, DataGridExpansionIndicatorDescription, DataGridExpansionIndicatorDescriptionMetadata, DataGridFilterDialogDescription, DataGridFilterDialogDescriptionMetadata, DataGridPagerDescription, DataGridPagerDescriptionMetadata, DataGridPagerDescriptionModule, DataGridSortIndicatorDescription, DataGridSortIndicatorDescriptionMetadata, DataGridToolbarDescription, DataGridToolbarDescriptionMetadata, DataGridToolbarDescriptionModule, DataLegendDescription, DataLegendDescriptionMetadata, DataLegendDescriptionModule, DataLegendHeaderDateMode, DataLegendHeaderDateMode_$type, DataLegendHeaderTimeMode, DataLegendHeaderTimeMode_$type, DataLegendLabelMode, DataLegendLabelMode_$type, DataLegendSeriesContext, DataLegendSeriesContextDescription, DataLegendSeriesContextDescriptionMetadata, DataLegendSeriesGroup, DataLegendSeriesGroup_$type, DataLegendSeriesValueInfo, DataLegendSeriesValueInfoDescription, DataLegendSeriesValueInfoDescriptionMetadata, DataLegendSeriesValueType, DataLegendSeriesValueType_$type, DataLegendStylingColumnEventArgsDescription, DataLegendStylingColumnEventArgsDescriptionMetadata, DataLegendStylingRowEventArgsDescription, DataLegendStylingRowEventArgsDescriptionMetadata, DataLegendSummaryColumn, DataLegendSummaryColumnDescription, DataLegendSummaryColumnDescriptionMetadata, DataLegendSummaryEventArgsDescription, DataLegendSummaryEventArgsDescriptionMetadata, DataLegendSummaryType, DataLegendSummaryType_$type, DataLegendUnitsMode, DataLegendUnitsMode_$type, DataLegendValueMode, DataLegendValueMode_$type, DataObject, DataSeries, DataSeriesAdapter, DataSeriesAdapterImplementation, DataSeriesAdapterRemovingDuplicatesEventArgs, DataSeriesAdapterRuleCollection, DataSeriesAdapterRunContext, DataSeriesAdapterRunEventArgs, DataSeriesAdapterUpdateNotifier, DataSeriesAxisType, DataSeriesAxisType_$type, DataSeriesCollection, DataSeriesDataProviderAnalyzer, DataSeriesIntent, DataSeriesIntent_$type, DataSeriesMarker, DataSeriesMarker_$type, DataSeriesMemberPathHint, DataSeriesType, DataSeriesType_$type, DataSourceAggregatedResult, DataSourceAggregatedResultDescription, DataSourceAggregatedResultDescriptionMetadata, DataSourceBatchCompletedEventArgs, DataSourceBatchStartedEventArgs, DataSourceDataCommittedEventArgs, DataSourceDataProviderSchemaChangedEventArgs, DataSourceDataProviderSchemaChangedEventArgsDescription, DataSourceDataProviderSchemaChangedEventArgsDescriptionMetadata, DataSourceExecutionContext, DataSourceLocalDataProvider, DataSourcePageRequestPriority, DataSourcePageRequestPriority_$type, DataSourcePropertiesComparer, DataSourceRowExpansionChangedEventArgs, DataSourceRowExpansionChangedEventArgsDescription, DataSourceRowExpansionChangedEventArgsDescriptionMetadata, DataSourceRowType, DataSourceRowType_$type, DataSourceSchemaChangedEventArgs, DataSourceSchemaChangedEventArgsDescription, DataSourceSchemaChangedEventArgsDescriptionMetadata, DataSourceSchemaPropertyType, DataSourceSchemaPropertyType_$type, DataSourceSectionHeaderDisplayMode, DataSourceSectionHeaderDisplayMode_$type, DataSourceSpecialRow, DataSourceSpecialRowDescription, DataSourceSpecialRowDescriptionMetadata, DataSourceSummaryScope, DataSourceSummaryScope_$type, DataSourceSupportingCalculationDescription, DataSourceSupportingCalculationDescriptionMetadata, DataSourceVelocityReading, DataSourceVelocityTracker, DataTemplate, DataTemplateMeasureInfo, DataTemplatePassInfo, DataTemplateRenderInfo, DataToolTipLayerDescription, DataToolTipLayerDescriptionMetadata, DataToolTipLayerDescriptionModule, DataToolTipLayerGroupingMode, DataToolTipLayerGroupingMode_$type, DataTooltipGroupedPositionX, DataTooltipGroupedPositionX_$type, DataTooltipGroupedPositionY, DataTooltipGroupedPositionY_$type, DataVisualizationLocaleCs, DataVisualizationLocaleDa, DataVisualizationLocaleDe, DataVisualizationLocaleEn, DataVisualizationLocaleEs, DataVisualizationLocaleFr, DataVisualizationLocaleHu, DataVisualizationLocaleIt, DataVisualizationLocaleJa, DataVisualizationLocaleKo, DataVisualizationLocaleNb, DataVisualizationLocaleNl, DataVisualizationLocalePl, DataVisualizationLocalePt, DataVisualizationLocaleRo, DataVisualizationLocaleSv, DataVisualizationLocaleTr, DataVisualizationLocaleZhHans, DataVisualizationLocaleZhHant, DatePickerDescription, DatePickerDescriptionMetadata, DatePickerDescriptionModule, DateRangeDescriptorDescription, DateRangeDescriptorDescriptionMetadata, DateTimeCellInfoDescription, DateTimeCellInfoDescriptionMetadata, DateTimeColumnDescription, DateTimeColumnDescriptionMetadata, DateTimeColumnDescriptionModule, DateTimeFormat, DateTimeFormatSpecifier, DateTimeFormatSpecifierDescription, DateTimeFormatSpecifierDescriptionMetadata, DateTimeFormatSpecifierDescriptionModule, DateTimeKind_$type, Date_$type, DayOfWeek, DayOfWeek_$type, Debug, Decoder, DecoderExceptionFallback, DecoderExceptionFallbackBuffer, DecoderFallback, DecoderFallbackBuffer, DecoderFallbackException, DecoderReplacementFallback, DecoderReplacementFallbackBuffer, DefaultComparer$1, DefaultDataSourceDataProviderUpdateNotifier, DefaultDataSourceSchema, DefaultDecoder, DefaultEqualityComparer$1, DefaultODataLiteralEmitter, DefaultSectionInformation, DefaultSummaryResult, DefinitionBaseDescription, DefinitionBaseDescriptionMetadata, Delegate_$type, DependencyObject, DependencyObjectNotifier, DependencyPropertiesCollection, DependencyProperty, DependencyPropertyChangedEventArgs, Description, DescriptionJsonValidator, DescriptionPropertyValue, DescriptionRef, DescriptionRefValueChangedEventArgs, DescriptionResult, DescriptionSerializer, DescriptionSerializerBuilder, DescriptionTreeAction, DescriptionTreeActionType_$type, DescriptionTreeBuilder, DescriptionTreeNode, DescriptionTreeReconciler, DescriptionTreeReconciler_TreeModeData, DetrendedPriceOscillatorIndicatorDescription, DetrendedPriceOscillatorIndicatorDescriptionMetadata, DetrendedPriceOscillatorIndicatorDescriptionModule, DeviceUtils, Dictionary$2, DictionaryUtil, Dictionary_EnumerableCollection$3, DiffApplyInfo, DivBridge, DomPortal_$type, DomRenderer_$type, DomWrapper_$type, DomainChartDescription, DomainChartDescriptionMetadata, DomainChartSeriesPointerEventArgsDescription, DomainChartSeriesPointerEventArgsDescriptionMetadata, DotNetCodeGeneratingComponentRendererDataEmitter, DotNetCodeGeneratingComponentRendererHandlerEmitter, DotNetCodeGeneratingComponentRendererModuleEmitter, DoubleAnimator, DoubleCollection, DoubleValueChangedEventArgs, DoubleValueChangedEventArgsDescription, DoubleValueChangedEventArgsDescriptionMetadata, DoughnutChartCoreDescriptionModule, DoughnutChartDefaultTooltipsDescriptionMetadata, DoughnutChartDefaultTooltipsExtendedDescriptionMetadata, DoughnutChartDescription, DoughnutChartDescriptionMetadata, DoughnutChartDescriptionModule, DoughnutChartInteractivityDescriptionModule, DownloadingMultiScaleImageEventArgs, DownloadingMultiScaleImageEventArgsDescription, DownloadingMultiScaleImageEventArgsDescriptionMetadata, EaseOfMovementIndicatorDescription, EaseOfMovementIndicatorDescriptionMetadata, EaseOfMovementIndicatorDescriptionModule, EasingFunctions, EdgeClipper, EdgeComparer, EditRowDefinitionDescription, EditRowDefinitionDescriptionMetadata, EditRowDefinitionDescriptionModule, EditorCellInfoDescription, EditorCellInfoDescriptionMetadata, EditorDefinitionDescription, EditorDefinitionDescriptionMetadata, EditorDefinitionDescriptionModule, EditorRowCellInfoDescription, EditorRowCellInfoDescriptionMetadata, ElevationHelper, ElevationMode, ElevationMode_$type, EllipseGeometry, EllipseGeometryData, EmbeddedRefDescription, Encoding, EntityHandling, EntityHandling_$type, Enum, EnumUtil, Enumerable, EnumerableWrapper, EnumerableWrapperObject, EnumeratorWrapper, EnumeratorWrapperObject, Environment, EqualityComparer$1, ErrorBarCalculatorReference, ErrorBarCalculatorReference_$type, ErrorBarCalculatorType, ErrorBarCalculatorType_$type, ErrorMessageDisplayingEventArgs, EventArgs, EventProxy, ExpansionPanelDescription, ExpansionPanelDescriptionMetadata, ExpansionPanelDescriptionModule, ExpressionSyntax, Extensions, FastFlattener, FastItemColumn, FastItemDateTimeColumn, FastItemIntColumn, FastItemObjectColumn, FastItemsSource, FastItemsSourceEventAction, FastItemsSourceEventAction_$type, FastItemsSourceEventArgs, FastItemsSourceReference, FastIterationDictionary$2, FastReflectionHelper, FastStochasticOscillatorIndicatorDescription, FastStochasticOscillatorIndicatorDescriptionMetadata, FastStochasticOscillatorIndicatorDescriptionModule, FaultCode, FaultException, FaultException$1, FaultReason, FillRule, FillRule_$type, FilterApplyButtonClickEventArgsDescription, FilterApplyButtonClickEventArgsDescriptionMetadata, FilterCancelButtonClickEventArgsDescription, FilterCancelButtonClickEventArgsDescriptionMetadata, FilterCellInfoDescription, FilterCellInfoDescriptionMetadata, FilterDialogRenderCompletedEventArgsDescription, FilterDialogRenderCompletedEventArgsDescriptionMetadata, FilterExpression, FilterExpressionCollection, FilterExpressionDescription, FilterExpressionDescriptionMetadata, FilterExpressionFunctionType, FilterExpressionFunctionType_$type, FilterExpressionOperatorType, FilterExpressionOperatorType_$type, FilterExpressionVisitor, FilterExpressionWrapperType, FilterExpressionWrapperType_$type, FilterFactory, FilterOperandDescription, FilterOperandDescriptionMetadata, FilterOperandDescriptionModule, FilterRowDefinitionDescription, FilterRowDefinitionDescriptionMetadata, FilterRowDefinitionDescriptionModule, FinalValueLayerDescription, FinalValueLayerDescriptionMetadata, FinalValueLayerDescriptionModule, FinancialCalculationDataSourceDescription, FinancialCalculationDataSourceDescriptionMetadata, FinancialCalculationSupportingCalculationsDescription, FinancialCalculationSupportingCalculationsDescriptionMetadata, FinancialChartCoreDescriptionModule, FinancialChartCustomIndicatorArgsDescription, FinancialChartCustomIndicatorArgsDescriptionMetadata, FinancialChartDefaultTemplatesDescriptionMetadata, FinancialChartDefaultTemplatesExtendedDescriptionMetadata, FinancialChartDescription, FinancialChartDescriptionMetadata, FinancialChartDescriptionModule, FinancialDataAdapter, FinancialEventArgsDescription, FinancialEventArgsDescriptionMetadata, FinancialIndicatorDescription, FinancialIndicatorDescriptionMetadata, FinancialLegendDescription, FinancialLegendDescriptionMetadata, FinancialLegendDescriptionModule, FinancialOverlayDescription, FinancialOverlayDescriptionMetadata, FinancialPriceSeriesDescription, FinancialPriceSeriesDescriptionMetadata, FinancialPriceSeriesDescriptionModule, FinancialSeriesDescription, FinancialSeriesDescriptionMetadata, Flattener, FlattenerSettings, FocusOptionsDescription, FocusOptionsDescriptionMetadata, FontDefaults, FontInfo, FontUtil, ForceIndexIndicatorDescription, ForceIndexIndicatorDescriptionMetadata, ForceIndexIndicatorDescriptionModule, FormatException, FormatException2, FormatGroupTextEventArgsDescription, FormatGroupTextEventArgsDescriptionMetadata, FormatLinearGraphLabelEventArgsDescription, FormatLinearGraphLabelEventArgsDescriptionMetadata, FormatRadialGaugeLabelEventArgsDescription, FormatRadialGaugeLabelEventArgsDescriptionMetadata, FormatSpecifier, FormatSpecifierCollection, FormatSpecifierDescription, FormatSpecifierDescriptionMetadata, FormatSpecifierDescriptionModule, FormatSummaryTextEventArgsDescription, FormatSummaryTextEventArgsDescriptionMetadata, Formatting, Formatting_$type, FragmentBaseDescription, FragmentBaseDescriptionMetadata, FrameworkElement, FrameworkElementExtensions, FullStochasticOscillatorIndicatorDescription, FullStochasticOscillatorIndicatorDescriptionMetadata, FullStochasticOscillatorIndicatorDescriptionModule, FunctionFilterExpression, FunctionFilterExpressionDescription, FunctionFilterExpressionDescriptionMetadata, FunnelChartCoreDescriptionModule, FunnelChartDescription, FunnelChartDescriptionMetadata, FunnelChartDescriptionModule, FunnelDataContextDescription, FunnelDataContextDescriptionMetadata, FunnelSliceClickedEventArgsDescription, FunnelSliceClickedEventArgsDescriptionMetadata, FunnelSliceDataContextDescription, FunnelSliceDataContextDescriptionMetadata, FunnelSliceEventArgsDescription, FunnelSliceEventArgsDescriptionMetadata, GC, GenericEnumerable$1, GenericEnumerator$1, GeographicContourLineSeriesDescription, GeographicContourLineSeriesDescriptionMetadata, GeographicContourLineSeriesDescriptionModule, GeographicHighDensityScatterSeriesDescription, GeographicHighDensityScatterSeriesDescriptionMetadata, GeographicHighDensityScatterSeriesDescriptionModule, GeographicMapCoreDescriptionModule, GeographicMapDescription, GeographicMapDescriptionMetadata, GeographicMapDescriptionModule, GeographicMapImageryDescription, GeographicMapImageryDescriptionMetadata, GeographicMapSeriesHostDescription, GeographicMapSeriesHostDescriptionMetadata, GeographicMarkerSeriesBaseDescription, GeographicMarkerSeriesBaseDescriptionMetadata, GeographicMarkerSeriesDescription, GeographicMarkerSeriesDescriptionMetadata, GeographicPolylineSeriesDescription, GeographicPolylineSeriesDescriptionMetadata, GeographicPolylineSeriesDescriptionModule, GeographicProportionalSymbolSeriesBaseDescription, GeographicProportionalSymbolSeriesBaseDescriptionMetadata, GeographicProportionalSymbolSeriesDescription, GeographicProportionalSymbolSeriesDescriptionMetadata, GeographicProportionalSymbolSeriesDescriptionModule, GeographicScatterAreaSeriesDescription, GeographicScatterAreaSeriesDescriptionMetadata, GeographicScatterAreaSeriesDescriptionModule, GeographicShapeSeriesBaseBaseDescription, GeographicShapeSeriesBaseBaseDescriptionMetadata, GeographicShapeSeriesBaseDescription, GeographicShapeSeriesBaseDescriptionMetadata, GeographicShapeSeriesDescription, GeographicShapeSeriesDescriptionMetadata, GeographicShapeSeriesDescriptionModule, GeographicSymbolSeriesBaseDescription, GeographicSymbolSeriesBaseDescriptionMetadata, GeographicSymbolSeriesDescription, GeographicSymbolSeriesDescriptionMetadata, GeographicSymbolSeriesDescriptionModule, GeographicTileSeriesDescription, GeographicTileSeriesDescriptionMetadata, GeographicTileSeriesDescriptionModule, GeographicXYTriangulatingSeriesBaseDescription, GeographicXYTriangulatingSeriesBaseDescriptionMetadata, GeographicXYTriangulatingSeriesDescription, GeographicXYTriangulatingSeriesDescriptionMetadata, Geometry, GeometryCollection, GeometryData, GeometryGroup, GeometryType, GeometryType_$type, GeometryUtil, GetPointsSettings, GetTileImageUriArgs, GetTileImageUriArgsDescription, GetTileImageUriArgsDescriptionMetadata, GotFocusEventArgsDescription, GotFocusEventArgsDescriptionMetadata, GradientDirection, GradientDirection_$type, GradientStop, GradientStopAppearanceData, GridActiveCellChangedEventArgsDescription, GridActiveCellChangedEventArgsDescriptionMetadata, GridAnimationPhaseSettingsDescription, GridAnimationPhaseSettingsDescriptionMetadata, GridAnimationSettingsDescription, GridAnimationSettingsDescriptionMetadata, GridBridge, GridBridgeColumnDefinition, GridBridgeRowDefinition, GridCellEditEndedEventArgsDescription, GridCellEditEndedEventArgsDescriptionMetadata, GridCellEditEventArgsDescription, GridCellEditEventArgsDescriptionMetadata, GridCellEditStartedEventArgsDescription, GridCellEditStartedEventArgsDescriptionMetadata, GridCellEventArgsDescription, GridCellEventArgsDescriptionMetadata, GridCellPositionDescription, GridCellPositionDescriptionMetadata, GridCellPositionDescriptionModule, GridCellValueChangedEventArgsDescription, GridCellValueChangedEventArgsDescriptionMetadata, GridCellValueChangingEventArgsDescription, GridCellValueChangingEventArgsDescriptionMetadata, GridColumnAnimationSettingsDescription, GridColumnAnimationSettingsDescriptionMetadata, GridColumnButtonOptionsDescription, GridColumnButtonOptionsDescriptionMetadata, GridColumnButtonOptionsDescriptionModule, GridColumnFilterOptionsDescription, GridColumnFilterOptionsDescriptionMetadata, GridColumnFilterOptionsDescriptionModule, GridColumnGroupOptionsDescription, GridColumnGroupOptionsDescriptionMetadata, GridColumnGroupOptionsDescriptionModule, GridColumnHideOptionsDescription, GridColumnHideOptionsDescriptionMetadata, GridColumnHideOptionsDescriptionModule, GridColumnMoveOptionsDescription, GridColumnMoveOptionsDescriptionMetadata, GridColumnMoveOptionsDescriptionModule, GridColumnOptionsBaseDescription, GridColumnOptionsBaseDescriptionMetadata, GridColumnOptionsDescription, GridColumnOptionsDescriptionMetadata, GridColumnOptionsDescriptionModule, GridColumnOptionsSectionBaseDescription, GridColumnOptionsSectionBaseDescriptionMetadata, GridColumnOptionsSimpleSectionBaseDescription, GridColumnOptionsSimpleSectionBaseDescriptionMetadata, GridColumnPinOptionsDescription, GridColumnPinOptionsDescriptionMetadata, GridColumnPinOptionsDescriptionModule, GridColumnSortOptionsDescription, GridColumnSortOptionsDescriptionMetadata, GridColumnSortOptionsDescriptionModule, GridColumnSummaryOptionsDescription, GridColumnSummaryOptionsDescriptionMetadata, GridColumnSummaryOptionsDescriptionModule, GridColumnWidthChangedEventArgsDescription, GridColumnWidthChangedEventArgsDescriptionMetadata, GridColumnsAutoGeneratedEventArgsDescription, GridColumnsAutoGeneratedEventArgsDescriptionMetadata, GridColumnsChangedEventArgsDescription, GridColumnsChangedEventArgsDescriptionMetadata, GridCommitCompletedEventArgsDescription, GridCommitCompletedEventArgsDescriptionMetadata, GridCustomFilterRequestedEventArgsDescription, GridCustomFilterRequestedEventArgsDescriptionMetadata, GridDataCommittedEventArgsDescription, GridDataCommittedEventArgsDescriptionMetadata, GridDataCommittingEventArgsDescription, GridDataCommittingEventArgsDescriptionMetadata, GridFilterDialogFilterChangeEventArgsDescription, GridFilterDialogFilterChangeEventArgsDescriptionMetadata, GridFilterDialogOpeningEventArgsDescription, GridFilterDialogOpeningEventArgsDescriptionMetadata, GridFilterDialogViewModelDescription, GridFilterDialogViewModelDescriptionMetadata, GridFilterDialogViewModelGroupingDescription, GridFilterDialogViewModelGroupingDescriptionMetadata, GridFilterDialogViewModelRowDescription, GridFilterDialogViewModelRowDescriptionMetadata, GridFilterExpressionsEventArgsDescription, GridFilterExpressionsEventArgsDescriptionMetadata, GridGroupDescriptionsChangedEventArgsDescription, GridGroupDescriptionsChangedEventArgsDescriptionMetadata, GridRowEditEndedEventArgsDescription, GridRowEditEndedEventArgsDescriptionMetadata, GridRowEditStartedEventArgsDescription, GridRowEditStartedEventArgsDescriptionMetadata, GridSelectedCellRangesChangedEventArgsDescription, GridSelectedCellRangesChangedEventArgsDescriptionMetadata, GridSelectedCellsChangedEventArgsDescription, GridSelectedCellsChangedEventArgsDescriptionMetadata, GridSelectedItemsChangedEventArgsDescription, GridSelectedItemsChangedEventArgsDescriptionMetadata, GridSelectedKeysChangedEventArgsDescription, GridSelectedKeysChangedEventArgsDescriptionMetadata, GridSelectionChangedEventArgsDescription, GridSelectionChangedEventArgsDescriptionMetadata, GridSizeChangedEventArgsDescription, GridSizeChangedEventArgsDescriptionMetadata, GridSortDescriptionsChangedEventArgsDescription, GridSortDescriptionsChangedEventArgsDescriptionMetadata, GridSummaryDescriptionsChangedEventArgsDescription, GridSummaryDescriptionsChangedEventArgsDescriptionMetadata, Group, GroupCollection, GroupDataDescription, GroupDataDescriptionMetadata, Guid, Guid_GuidParseThrowStyle_$type, Guid_GuidResult, Guid_GuidStyles_$type, Guid_ParseFailureKind_$type, HalfEdge, HalfEdgeSet, HashPool$2, HashSet$1, Hashtable, Header, HeaderDescription, HeaderDescriptionMetadata, HeaderRowSeparatorDescription, HeaderRowSeparatorDescriptionMetadata, HeaderRowSeparatorDescriptionModule, HeaderSeparatorDescription, HeaderSeparatorDescriptionMetadata, HeaderSeparatorDescriptionModule, HeatTileGenerator, HeatTileGeneratorDescription, HeatTileGeneratorDescriptionMetadata, HeatTileGeneratorDescriptionModule, HeatTileGeneratorWebWorker, HeatTileGeneratorWorker, HeatTileGeneratorWorkerManager, HeatTileImageCreatedEventArgs, HeatTileScaler, HierarchicalRingSeriesDescription, HierarchicalRingSeriesDescriptionMetadata, HierarchicalRingSeriesDescriptionModule, HighDensityScatterSeriesDescription, HighDensityScatterSeriesDescriptionMetadata, HighDensityScatterSeriesDescriptionModule, HighlightingInfoDescription, HighlightingInfoDescriptionMetadata, HoleDimensionsChangedEventArgsDescription, HoleDimensionsChangedEventArgsDescriptionMetadata, HorizontalAlignment, HorizontalAlignment_$type, HorizontalAnchoredCategorySeriesDescription, HorizontalAnchoredCategorySeriesDescriptionMetadata, HorizontalAnchoredCategorySeriesProxyDescriptionModule, HorizontalRangeCategorySeriesDescription, HorizontalRangeCategorySeriesDescriptionMetadata, HorizontalRangeCategorySeriesProxyDescriptionModule, HorizontalStackedSeriesBaseDescription, HorizontalStackedSeriesBaseDescriptionMetadata, HttpRequestUtil, IArrayList_$type, IArray_$type, IChartItemLegend_$type, IChartLegend_$type, IChartScaleLegend_$type, ICodeGenerationRendererTemplate_$type, ICollection$1_$type, ICollection_$type, IComparable$1_$type, IComparable_$type, IComparer$1_$type, IComparer_$type, IComponentRendererAdapter_$type, IConvertible_$type, ICredentials_$type, IDataLegendSeries_$type, IDataLegendTarget_$type, IDataLegend_$type, IDataObject_$type, IDataSeriesAdapterRule_$type, IDataSourceDataProviderUpdateNotifier_$type, IDataSourceDataProvider_$type, IDataSourceExecutionContext_$type, IDataSourceLocalDataProvider_$type, IDataSourcePage_$type, IDataSourceSchema_$type, IDataSourceSupportsCount_$type, IDataSourceSupportsIndexedAccess_$type, IDataSourceUpdateNotifier_$type, IDataSourceVirtualDataProvider_$type, IDataSource_$type, IDependentRenderer_$type, IDictionary$2_$type, IDictionary_$type, IDisposable_$type, IEasingFunction_$type, IEditableDataSource_$type, IEnumerable$1_$type, IEnumerable_$type, IEnumerator$1_$type, IEnumerator_$type, IEqualityComparer$1_$type, IEqualityComparer_$type, IEquatable$1_$type, IErrorBarCalculator_$type, IExecutionContext_$type, IExternalDataSeriesAdapter_$type, IExternalDataSource_$type, IExternalLocalDataSource_$type, IExternalVirtualDataSource_$type, IFastItemColumn$1_$type, IFastItemColumnInternal_$type, IFastItemColumnPropertyName_$type, IFastItemsSourceProvider_$type, IFastItemsSource_$type, IFilterExpression_$type, IFormatProvider_$type, IFormattable_$type, IFunctionFilterExpression_$type, IGetItemAtIndex_$type, IGrouping$2_$type, IHashPool$2_$type, IIcon_$type, IIndexedPool$1_$type, IInternalLegendOwner_$type, IKeyFrameAnimation_$type, ILegendContext_$type, ILegendOwner_$type, ILegendSeriesInternal_$type, ILegendSeries_$type, ILegendTemplateProvider_$type, IList$1_$type, IList_$type, ILiteralFilterExpression_$type, IMapRenderDeferralHandler_$type, INativeUIContainerBridge_$type, INativeUIContentBridge_$type, INativeUIElementBridge_$type, INativeUIElementFactory_$type, INativeUIGridBridge_$type, INotifyCollectionChanged_$type, INotifyPropertyChanged_$type, IOPath, IOnDemandRender_$type, IOperationFilterExpression_$type, IOrderedEnumerable$1_$type, IOverviewPlusDetailControl_$type, IOverviewPlusDetailPane_$type, IPageCandidatesSink_$type, IPermission_$type, IPool$1_$type, IPropertyReferenceFilterExpression_$type, IQueryProvider_$type, IQueryable$1_$type, IQueryable_$type, IRenderer_$type, IScaleLegendSeries_$type, ISchedulableRender_$type, IScrollerKeyboardListener_$type, IScrollerView_$type, ISectionInformation_$type, ISmartPlaceable_$type, ISummaryResult_$type, ISupportsDataChangeNotifications_$type, ISupportsExpansionChangeNotifications_$type, ITickProvider_$type, ITileGenerator_$type, ITileWorkCompletedSink_$type, ITypeDescriptionPropertyTransforms_$type, IUnknownValuePlotting_$type, IVisualData_$type, IXmlLineInfo_$type, IXmlNamespaceResolver_$type, IZoomSlider_$type, IconDescription, IconDescriptionMetadata, IconDescriptionModule, IgCollection, IgEvent, IgcButtonBridge, IgcCheckboxBridge, IgcDropdownBridge, IgcInputBridge, IgcSliderBridge, IgxAsyncCompletedEventArgs, IgxCancelEventArgs, IgxCancellingMultiScaleImageEventArgs, IgxChildContentComponent, IgxChildContentDynamicModule, IgxChildContentModule, IgxComponentRendererContainerComponent, IgxComponentRendererContainerModule, IgxContentChildCollection, IgxDVInteractivityDynamicModule, IgxDVInteractivityModule, IgxDataContext, IgxDataLegendSeriesContext, IgxDataLegendSeriesValueInfo, IgxDataLegendSummaryColumn, IgxDataSeriesCollection, IgxDataSourceDataProviderSchemaChangedEventArgs, IgxDataSourceRowExpansionChangedEventArgs, IgxDataSourceSchemaChangedEventArgs, IgxDataVisualizationLocaleCsModule, IgxDataVisualizationLocaleDaModule, IgxDataVisualizationLocaleDeModule, IgxDataVisualizationLocaleEnModule, IgxDataVisualizationLocaleEsModule, IgxDataVisualizationLocaleFrModule, IgxDataVisualizationLocaleHuModule, IgxDataVisualizationLocaleItModule, IgxDataVisualizationLocaleJaModule, IgxDataVisualizationLocaleKoModule, IgxDataVisualizationLocaleNbModule, IgxDataVisualizationLocaleNlModule, IgxDataVisualizationLocalePlModule, IgxDataVisualizationLocalePtModule, IgxDataVisualizationLocaleRoModule, IgxDataVisualizationLocaleSvModule, IgxDataVisualizationLocaleTrModule, IgxDataVisualizationLocaleZhHansModule, IgxDataVisualizationLocaleZhHantModule, IgxDateTimeFormatSpecifier, IgxDateTimeFormatSpecifierDynamicModule, IgxDateTimeFormatSpecifierModule, IgxDoubleValueChangedEventArgs, IgxDownloadingMultiScaleImageEventArgs, IgxFilterExpressionCollection, IgxFormatSpecifier, IgxFormatSpecifierCollection, IgxFormatSpecifierDynamicModule, IgxFormatSpecifierModule, IgxGetTileImageUriArgs, IgxHeatTileGenerator, IgxHeatTileGeneratorDynamicModule, IgxHeatTileGeneratorModule, IgxKeyEventArgs, IgxLocalDataSourceDynamicModule, IgxLocalDataSourceModule, IgxNumberFormatSpecifier, IgxNumberFormatSpecifierDynamicModule, IgxNumberFormatSpecifierModule, IgxObjectCollection, IgxPropertyUpdatedEventArgs, IgxProvideCalculatorEventArgs, IgxRectChangedEventArgs, IgxShapeDataSource, IgxShapeDataSourceDynamicModule, IgxShapeDataSourceModule, IgxShapeFilterRecordEventArgs, IgxShapefileRecord, IgxSimpleDefaultTooltipComponent, IgxStockChangedEventArgs, IgxStyle, IgxTemplateContentComponent, IgxTemplateContentDynamicModule, IgxTemplateContentModule, IgxTooltipContainerComponent, IgxTooltipContainerDynamicModule, IgxTooltipContainerModule, IgxTransactionState, IgxTriangulationDataSource, IgxTriangulationStatusEventArgs, IgxUploadDataCompletedEventArgs, IgxUploadStringCompletedEventArgs, Image, ImageCellInfoDescription, ImageCellInfoDescriptionMetadata, ImageColumnDescription, ImageColumnDescriptionMetadata, ImageColumnDescriptionModule, ImageTilesReadyEventArgsDescription, ImageTilesReadyEventArgsDescriptionMetadata, ImagesChangedEventArgsDescription, ImagesChangedEventArgsDescriptionMetadata, IndexOutOfRangeException, IndicatorProxyDescriptionModule, IndicatorsDescriptionModule, InputChangeEventArgsDescription, InputChangeEventArgsDescriptionMetadata, InputDescription, InputDescriptionMetadata, InputDescriptionModule, InputGroupDescription, InputGroupDescriptionMetadata, InputGroupDescriptionModule, InputGroupItemDescription, InputGroupItemDescriptionMetadata, InteractionState, InteractionState_$type, InterpolationMode, InterpolationMode_$type, InterpolationUtil, InvalidOperationException, ItemLegendDescription, ItemLegendDescriptionMetadata, ItemLegendDescriptionModule, ItemToolTipLayerDescription, ItemToolTipLayerDescriptionMetadata, ItemToolTipLayerDescriptionModule, ItemwiseStrategyBasedIndicatorDescription, ItemwiseStrategyBasedIndicatorDescriptionMetadata, IterableWrapper, IteratorWrapper, ItfConverter, JavaScriptSerializer, JsonDictionaryArray, JsonDictionaryItem, JsonDictionaryObject, JsonDictionaryParser, JsonDictionaryValue, JsonDictionaryValueType_$type, JsonWriter, Key, KeyEventArgs, KeyEventArgsDescription, KeyEventArgsDescriptionMetadata, KeyFrameAnimationDirect, KeyFrameAnimationEffectPhase_$type, KeyFrameAnimationFactory, KeyFrameAnimationFill_$type, KeyFrameAnimationPlayState_$type, KeyFrameAnimationTimeline, KeyFrameEffectEasing_$type, KeyFrameEffectTimingDirection_$type, KeyValuePair$2, Key_$type, LRUCache$2, LRUCacheItem$2, LabelAppearanceData, LabelAppearanceDataList, LabelClickEventArgsDescription, LabelClickEventArgsDescriptionMetadata, LabelCollisionInfo, LabelCollisionManager, LabelCollisionManagerCollisionMode_$type, LabelCollisionPlacementPositions_$type, LabelDescription, LabelDescriptionMetadata, LabelDescriptionModule, LambdaExpression, LastMonthExpression, LastMonthExpressionDescription, LastMonthExpressionDescriptionMetadata, LastQuarterExpression, LastQuarterExpressionDescription, LastQuarterExpressionDescriptionMetadata, LastWeekExpression, LastWeekExpressionDescription, LastWeekExpressionDescriptionMetadata, LastYearExpression, LastYearExpressionDescription, LastYearExpressionDescriptionMetadata, LeastSquaresFit, LeftClipper, LegendBaseDescription, LegendBaseDescriptionMetadata, LegendDescription, LegendDescriptionMetadata, LegendDescriptionModule, LegendItemBadgeMode, LegendItemBadgeMode_$type, LegendItemBadgeShape, LegendItemBadgeShape_$type, LegendItemHelper, LegendMouseButtonEventArgsDescription, LegendMouseButtonEventArgsDescriptionMetadata, LegendMouseEventArgsDescription, LegendMouseEventArgsDescriptionMetadata, Line, LineFragmentDescription, LineFragmentDescriptionMetadata, LineFragmentDescriptionModule, LineGeometry, LineGeometryData, LineSegment, LineSegmentData, LineSeriesDescription, LineSeriesDescriptionMetadata, LineSeriesDescriptionModule, LineVisualData, LinearContourValueResolverDescription, LinearContourValueResolverDescriptionMetadata, LinearContourValueResolverDescriptionModule, LinearGaugeCoreDescriptionModule, LinearGaugeDescription, LinearGaugeDescriptionMetadata, LinearGaugeDescriptionModule, LinearGradientBrush, LinearGradientBrushAppearanceData, LinearGraphRangeDescription, LinearGraphRangeDescriptionMetadata, LinearGraphRangeDescriptionModule, LinkedList$1, LinkedListNode$1, List$1, ListSortDirection, ListSortDirection_$type, LiteralFilterExpression, LiteralFilterExpressionDescription, LiteralFilterExpressionDescriptionMetadata, LocalDataSource, LocalDataSourceDescription, LocalDataSourceDescriptionMetadata, LocalDataSourceDescriptionModule, LocalDataSourceViewExpansionNotifier, LocalDataSourceViewUpdateNotifier, Locale, Localization, LostFocusEventArgsDescription, LostFocusEventArgsDescriptionMetadata, MapTileSource, MarkerSeriesDescription, MarkerSeriesDescriptionMetadata, MarketFacilitationIndexIndicatorDescription, MarketFacilitationIndexIndicatorDescriptionMetadata, MarketFacilitationIndexIndicatorDescriptionModule, MarshalByRefObject, MassIndexIndicatorDescription, MassIndexIndicatorDescriptionMetadata, MassIndexIndicatorDescriptionModule, Match, Matcher, MathUtil, MathUtilExtended, Matrix, MatrixTransform, MaxSummaryCalculator, MedianPriceIndicatorDescription, MedianPriceIndicatorDescriptionMetadata, MedianPriceIndicatorDescriptionModule, MemberExpression, MemoryStream, MethodCallExpression, MinSummaryCalculator, ModifierKeys, ModifierKeys_$type, MoneyFlowIndexIndicatorDescription, MoneyFlowIndexIndicatorDescriptionMetadata, MoneyFlowIndexIndicatorDescriptionModule, MouseButton, MouseButtonEventArgs, MouseButton_$type, MouseEventArgs, MovingAverageConvergenceDivergenceIndicatorDescription, MovingAverageConvergenceDivergenceIndicatorDescriptionMetadata, MovingAverageConvergenceDivergenceIndicatorDescriptionModule, MultiColumnComboBoxDescription, MultiColumnComboBoxDescriptionMetadata, MultiColumnComboBoxDescriptionModule, MultiColumnComboBoxTextChangedEventArgsDescription, MultiColumnComboBoxTextChangedEventArgsDescriptionMetadata, MultiColumnComboBoxValueChangedEventArgsDescription, MultiColumnComboBoxValueChangedEventArgsDescriptionMetadata, NamePatcher, NameTable, NameTable_Entry, NameValueCollection, NamespaceHandling_$type, NativeUI, NativeUIBuiltInEvents_$type, NativeUIBuiltInProperties_$type, NativeUIButton, NativeUIButtonClickedEventArgs, NativeUICheckbox, NativeUICheckboxChangeEventArgs, NativeUIChildren, NativeUIComponent, NativeUIComponentBuiltInType_$type, NativeUIComponentHorizontalAlignment_$type, NativeUIComponentVerticalAlignment_$type, NativeUIContainer, NativeUIContent, NativeUIDisplayDensity_$type, NativeUIDropDown, NativeUIDropDownSelectedValueChangedEventArgs, NativeUIElementBridge, NativeUIGrid, NativeUIGridHeightType_$type, NativeUIGridWidthType_$type, NativeUIInput, NativeUIInputChangingEventArgs, NativeUIInputDisplayType_$type, NativeUIInputsFactory, NativeUILabel, NativeUISlider, NativeUISliderValueChangedEventArgs, NegativeVolumeIndexIndicatorDescription, NegativeVolumeIndexIndicatorDescriptionMetadata, NegativeVolumeIndexIndicatorDescriptionModule, NetworkCredential, NewLineHandling_$type, NextMonthExpression, NextMonthExpressionDescription, NextMonthExpressionDescriptionMetadata, NextQuarterExpression, NextQuarterExpressionDescription, NextQuarterExpressionDescriptionMetadata, NextWeekExpression, NextWeekExpressionDescription, NextWeekExpressionDescriptionMetadata, NextYearExpression, NextYearExpressionDescription, NextYearExpressionDescriptionMetadata, NonBlockingStreamReader, NotImplementedException, NotSupportedException, NotifyCollectionChangedAction, NotifyCollectionChangedAction_$type, NotifyCollectionChangedEventArgs, NullReferenceException, NullStream, Nullable, Nullable$1, NumberAbbreviatorDescriptionModule, NumberFormatInfo, NumberFormatSpecifier, NumberFormatSpecifierDescription, NumberFormatSpecifierDescriptionMetadata, NumberFormatSpecifierDescriptionModule, Number_$type, Numeric, NumericAngleAxisDescription, NumericAngleAxisDescriptionMetadata, NumericAngleAxisDescriptionModule, NumericAxisBaseDescription, NumericAxisBaseDescriptionMetadata, NumericCellInfoDescription, NumericCellInfoDescriptionMetadata, NumericColumnDescription, NumericColumnDescriptionMetadata, NumericColumnDescriptionModule, NumericRadiusAxisDescription, NumericRadiusAxisDescriptionMetadata, NumericRadiusAxisDescriptionModule, NumericXAxisDescription, NumericXAxisDescriptionMetadata, NumericXAxisDescriptionModule, NumericYAxisDescription, NumericYAxisDescriptionMetadata, NumericYAxisDescriptionModule, ODataDataSourceFilterExpressionVisitor, ODataDataSourceSchema, ODataLiteralEmitter_$type, ObjectCollection, ObjectDisposedException, ObservableCollection$1, ObservableColorCollection, OffsettableWeekExpression, OffsettableWeekExpressionDescription, OffsettableWeekExpressionDescriptionMetadata, OnBalanceVolumeIndicatorDescription, OnBalanceVolumeIndicatorDescriptionMetadata, OnBalanceVolumeIndicatorDescriptionModule, OnClosedEventArgsDescription, OnClosedEventArgsDescriptionMetadata, OnCollapsedEventArgsDescription, OnCollapsedEventArgsDescriptionMetadata, OnExpandedEventArgsDescription, OnExpandedEventArgsDescriptionMetadata, OnPopupEventArgsDescription, OnPopupEventArgsDescriptionMetadata, OpenStreetMapImageryDescription, OpenStreetMapImageryDescriptionMetadata, OpenStreetMapImageryDescriptionModule, OpenStreetMapTileSource, OperationFilterExpression, OperationFilterExpressionDescription, OperationFilterExpressionDescriptionMetadata, OperatorSelectorClosingEventArgsDescription, OperatorSelectorClosingEventArgsDescriptionMetadata, OperatorSelectorOpeningEventArgsDescription, OperatorSelectorOpeningEventArgsDescriptionMetadata, OperatorSelectorValueChangedEventArgsDescription, OperatorSelectorValueChangedEventArgsDescriptionMetadata, OrdinalTimeXAxisDescription, OrdinalTimeXAxisDescriptionMetadata, OrdinalTimeXAxisDescriptionModule, OverlayProxyDescriptionModule, OverlaysDescriptionModule, PageChangedEventArgsDescription, PageChangedEventArgsDescriptionMetadata, PagePredictionEngine, PagedDataSource, PagedDataSourceDescription, PagedDataSourceDescriptionMetadata, Pair$2, Panel, ParameterExpression, Path, PathFigure, PathFigureCollection, PathFigureData, PathFigureUtil, PathGeometry, PathGeometryData, PathMarkupParser, PathMarkupToken, PathMarkupTokenType_$type, PathSegment, PathSegmentCollection, PathSegmentType, PathSegmentType_$type, PathVisualData, PenLineCap, PenLineCap_$type, PenLineJoin, PenLineJoin_$type, PercentChangeYAxisDescription, PercentChangeYAxisDescriptionMetadata, PercentChangeYAxisDescriptionModule, PercentagePriceOscillatorIndicatorDescription, PercentagePriceOscillatorIndicatorDescriptionMetadata, PercentagePriceOscillatorIndicatorDescriptionModule, PercentageVolumeOscillatorIndicatorDescription, PercentageVolumeOscillatorIndicatorDescriptionMetadata, PercentageVolumeOscillatorIndicatorDescriptionModule, PermissionSet, PermissionState, PermissionState_$type, PieChartBaseDescription, PieChartBaseDescriptionMetadata, PieChartCoreDescriptionModule, PieChartDescription, PieChartDescriptionMetadata, PieChartDescriptionModule, PieSliceDataContextDescription, PieSliceDataContextDescriptionMetadata, PieSliceOthersContextDescription, PieSliceOthersContextDescriptionMetadata, PinnedAreaSeparatorDescription, PinnedAreaSeparatorDescriptionMetadata, PinnedAreaSeparatorDescriptionModule, PlatformConstants, PlatformFormatter, PlatformKeyFrameAnimationFactory, PlatformSpecifierType_$type, PlatformUIElementPropertyAccessorFactory, PlotAreaMouseButtonEventArgsDescription, PlotAreaMouseButtonEventArgsDescriptionMetadata, PlotAreaMouseEventArgsDescription, PlotAreaMouseEventArgsDescriptionMetadata, PointCollection, PointCollectionUtil, PointComparer, PointData, PointDescription, PointSeriesDescription, PointSeriesDescriptionMetadata, PointSeriesDescriptionModule, PointTester, PointUtil, Point_$type, PolarAreaSeriesDescription, PolarAreaSeriesDescriptionMetadata, PolarAreaSeriesDescriptionModule, PolarBaseDescription, PolarBaseDescriptionMetadata, PolarLineSeriesBaseDescription, PolarLineSeriesBaseDescriptionMetadata, PolarLineSeriesDescription, PolarLineSeriesDescriptionMetadata, PolarLineSeriesDescriptionModule, PolarScatterSeriesDescription, PolarScatterSeriesDescriptionMetadata, PolarScatterSeriesDescriptionModule, PolarSplineAreaSeriesDescription, PolarSplineAreaSeriesDescriptionMetadata, PolarSplineAreaSeriesDescriptionModule, PolarSplineSeriesDescription, PolarSplineSeriesDescriptionMetadata, PolarSplineSeriesDescriptionModule, PolyBezierSegment, PolyBezierSegmentData, PolyLineSegment, PolyLineVisualData, PolySimplification, Polygon, PolygonUtil, PolygonVisualData, Polyline, PolylineSegmentData, Pool$1, PopupDescription, PopupDescriptionMetadata, PopupDescriptionModule, PortalManager, PositiveVolumeIndexIndicatorDescription, PositiveVolumeIndexIndicatorDescriptionMetadata, PositiveVolumeIndexIndicatorDescriptionModule, PredictionEnginePageCandidate, PrefixDescription, PrefixDescriptionMetadata, PrefixDescriptionModule, PriceChannelOverlayDescription, PriceChannelOverlayDescriptionMetadata, PriceChannelOverlayDescriptionModule, PriceVolumeTrendIndicatorDescription, PriceVolumeTrendIndicatorDescriptionMetadata, PriceVolumeTrendIndicatorDescriptionModule, PrimaryKeyValueDescription, PrimaryKeyValueDescriptionMetadata, PrimaryKeyValueDescriptionModule, PrimitiveAppearanceData, PrimitiveVisualData, PrimitiveVisualDataList, ProgressiveLoadStatusEventArgsDescription, ProgressiveLoadStatusEventArgsDescriptionMetadata, PromiseFactory, PromiseWrapper, PropertyChangedEventArgs, PropertyChangedEventArgs$1, PropertyEditorDataSourceDescription, PropertyEditorDataSourceDescriptionMetadata, PropertyEditorDescription, PropertyEditorDescriptionMetadata, PropertyEditorDescriptionModule, PropertyEditorDescriptionObjectDescription, PropertyEditorDescriptionObjectDescriptionMetadata, PropertyEditorPanelDescription, PropertyEditorPanelDescriptionMetadata, PropertyEditorPanelDescriptionModule, PropertyEditorPropertyDescriptionButtonClickEventArgsDescription, PropertyEditorPropertyDescriptionButtonClickEventArgsDescriptionMetadata, PropertyEditorPropertyDescriptionChangedEventArgsDescription, PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata, PropertyEditorPropertyDescriptionDescription, PropertyEditorPropertyDescriptionDescriptionMetadata, PropertyEditorPropertyDescriptionDescriptionModule, PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescription, PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescriptionMetadata, PropertyMetadata, PropertyPath, PropertyReferenceFilterExpression, PropertyReferenceFilterExpressionDescription, PropertyReferenceFilterExpressionDescriptionMetadata, PropertyUpdatedEventArgs, PropertyUpdatedEventArgsDescription, PropertyUpdatedEventArgsDescriptionMetadata, ProvideCalculatorEventArgs, ProvideCalculatorEventArgsDescription, ProvideCalculatorEventArgsDescriptionMetadata, Q1Expression, Q1ExpressionDescription, Q1ExpressionDescriptionMetadata, Q2Expression, Q2ExpressionDescription, Q2ExpressionDescriptionMetadata, Q3Expression, Q3ExpressionDescription, Q3ExpressionDescriptionMetadata, Q4Expression, Q4ExpressionDescription, Q4ExpressionDescriptionMetadata, QuadTree, QuadTreeBoundingBox, QuadTreeForceVector, QuadTreeNode, Queryable, Queue$1, RadialAreaSeriesDescription, RadialAreaSeriesDescriptionMetadata, RadialAreaSeriesDescriptionModule, RadialBaseDescription, RadialBaseDescriptionMetadata, RadialColumnSeriesDescription, RadialColumnSeriesDescriptionMetadata, RadialColumnSeriesDescriptionModule, RadialGaugeCoreDescriptionModule, RadialGaugeDescription, RadialGaugeDescriptionMetadata, RadialGaugeDescriptionModule, RadialGaugeRangeDescription, RadialGaugeRangeDescriptionMetadata, RadialGaugeRangeDescriptionModule, RadialLineSeriesDescription, RadialLineSeriesDescriptionMetadata, RadialLineSeriesDescriptionModule, RadialPieSeriesDescription, RadialPieSeriesDescriptionMetadata, RadialPieSeriesDescriptionModule, Random, RangeAreaSeriesDescription, RangeAreaSeriesDescriptionMetadata, RangeAreaSeriesDescriptionModule, RangeCategorySeriesDescription, RangeCategorySeriesDescriptionMetadata, RangeColumnSeriesDescription, RangeColumnSeriesDescriptionMetadata, RangeColumnSeriesDescriptionModule, RateOfChangeAndMomentumIndicatorDescription, RateOfChangeAndMomentumIndicatorDescriptionMetadata, RateOfChangeAndMomentumIndicatorDescriptionModule, ReactCodeBehindCodeGeneratingComponentRendererCodeEmitter, ReactMarkupCodeGeneratingComponentRendererCodeEmitter, ReadOnlyCollection$1, ReadOnlyObservableCollection$1, ReadState, ReadState_$type, RearrangedList$1, RearrangedListView, Rect, RectChangedEventArgs, RectChangedEventArgsDescription, RectChangedEventArgsDescriptionMetadata, RectData, RectDescription, RectUtil, Rectangle, RectangleGeometry, RectangleGeometryData, RectangleVisualData, RefValueChangedTarget, ReflectionUtil, RefreshCompletedEventArgsDescription, RefreshCompletedEventArgsDescriptionMetadata, Regex, RegexOptions, RegexOptions_$type, RelativeStrengthIndexIndicatorDescription, RelativeStrengthIndexIndicatorDescriptionMetadata, RelativeStrengthIndexIndicatorDescriptionModule, RemovedShiftedRowInfo, RenderRequestedEventArgsDescription, RenderRequestedEventArgsDescriptionMetadata, RenderingContext, ResponsivePhaseDescription, ResponsivePhaseDescriptionMetadata, ResponsiveStateDescription, ResponsiveStateDescriptionMetadata, ResponsiveStateEnteredEventArgsDescription, ResponsiveStateEnteredEventArgsDescriptionMetadata, ResponsiveStateEnteringEventArgsDescription, ResponsiveStateEnteringEventArgsDescriptionMetadata, ResponsiveStateExitedEventArgsDescription, ResponsiveStateExitedEventArgsDescriptionMetadata, ReverseArrayEnumerator$1, RightClipper, RingDescription, RingDescriptionMetadata, RingSeriesBaseDescription, RingSeriesBaseDescriptionMetadata, RingSeriesDescription, RingSeriesDescriptionMetadata, RingSeriesDescriptionModule, RippleDescription, RippleDescriptionMetadata, RippleDescriptionModule, RotateTransform, RowSeparatorDescription, RowSeparatorDescriptionMetadata, RowSeparatorDescriptionModule, RowSeparatorInfoDescription, RowSeparatorInfoDescriptionMetadata, SRProvider, ScaleLegendDescription, ScaleLegendDescriptionMetadata, ScaleLegendDescriptionModule, ScaleTransform, ScalerParamsDescription, ScalerParamsDescriptionMetadata, ScalerVisibleBounds, ScatterAreaSeriesDescription, ScatterAreaSeriesDescriptionMetadata, ScatterAreaSeriesDescriptionModule, ScatterBaseDescription, ScatterBaseDescriptionMetadata, ScatterContourSeriesDescription, ScatterContourSeriesDescriptionMetadata, ScatterContourSeriesDescriptionModule, ScatterLineSeriesDescription, ScatterLineSeriesDescriptionMetadata, ScatterLineSeriesDescriptionModule, ScatterPolygonSeriesDescription, ScatterPolygonSeriesDescriptionMetadata, ScatterPolygonSeriesDescriptionModule, ScatterPolylineSeriesDescription, ScatterPolylineSeriesDescriptionMetadata, ScatterPolylineSeriesDescriptionModule, ScatterSeriesDescription, ScatterSeriesDescriptionMetadata, ScatterSeriesDescriptionModule, ScatterSplineSeriesDescription, ScatterSplineSeriesDescriptionMetadata, ScatterSplineSeriesDescriptionModule, ScatterTriangulationSeriesDescription, ScatterTriangulationSeriesDescriptionMetadata, SchedulableRenderWrapper, ScrollbarStyle_$type, Scroller, ScrollerScrollingEventArgs, ScrollerView, SectionData, SectionDataStartIndexComparer, SectionDataUndisplacedStartIndexComparer, SectionFooterDescription, SectionFooterDescriptionMetadata, SectionFooterDescriptionModule, SectionHeaderCellInfoDescription, SectionHeaderCellInfoDescriptionMetadata, SectionHeaderDescription, SectionHeaderDescriptionMetadata, SectionHeaderDescriptionModule, SectionInformationDescription, SectionInformationDescriptionMetadata, SectionMap, SectionSearchData, SecurityAction, SecurityAction_$type, SeekOrigin, SegmentData, SelectAllCheckboxChangedEventArgsDescription, SelectAllCheckboxChangedEventArgsDescriptionMetadata, SelectedItemChangedEventArgsDescription, SelectedItemChangedEventArgsDescriptionMetadata, SelectedItemChangingEventArgsDescription, SelectedItemChangingEventArgsDescriptionMetadata, SelectedItemsChangedEventArgsDescription, SelectedItemsChangedEventArgsDescriptionMetadata, SelectedItemsChangingEventArgsDescription, SelectedItemsChangingEventArgsDescriptionMetadata, SelectedValueChangedEventArgsDescription, SelectedValueChangedEventArgsDescriptionMetadata, SelectionChangedEventArgsDescription, SelectionChangedEventArgsDescriptionMetadata, SeriesDescription, SeriesDescriptionMetadata, SeriesViewerDescription, SeriesViewerDescriptionMetadata, SeriesViewerManipulationEventArgsDescription, SeriesViewerManipulationEventArgsDescriptionMetadata, Shape, ShapeDataSourceDescription, ShapeDataSourceDescriptionMetadata, ShapeDataSourceDescriptionModule, ShapeFileUtil, ShapeFilterRecordEventArgs, ShapeFilterRecordEventArgsDescription, ShapeFilterRecordEventArgsDescriptionMetadata, ShapeSeriesBaseDescription, ShapeSeriesBaseDescriptionMetadata, ShapeTags, ShapeType, ShapeType_$type, ShapefileConverter, ShapefileRecord, ShapefileRecordDescription, ShapefileRecordDescriptionMetadata, SimpleCategorySeriesRule, SimpleDefaultTooltipDescriptionMetadata, SimpleDefaultTooltipExtendedDescriptionMetadata, SimpleFinancialPriceSeriesRule, SimpleScatterSeriesRule, Size, SizeData, SizeDescription, SizeScaleDescription, SizeScaleDescriptionMetadata, SizeScaleDescriptionModule, SliceClickEventArgsDescription, SliceClickEventArgsDescriptionMetadata, SliceEventArgsDescription, SliceEventArgsDescriptionMetadata, SlowStochasticOscillatorIndicatorDescription, SlowStochasticOscillatorIndicatorDescriptionMetadata, SlowStochasticOscillatorIndicatorDescriptionModule, SmartPlaceableWrapper$1, SmartPlacer, SmartPosition, SmartPosition_$type, SolidBrushAppearanceData, SortDescription, SortDescriptionCollection, SortDescriptionDescription, SortDescriptionDescriptionMetadata, SortIndicatorRenderCompletedEventArgsDescription, SortIndicatorRenderCompletedEventArgsDescriptionMetadata, SortedList$1, SpanBridge, SparklineCoreDescriptionModule, SparklineDescription, SparklineDescriptionMetadata, SparklineDescriptionModule, SpiralFlattener, SpiralTodo, SplineAreaFragmentDescription, SplineAreaFragmentDescriptionMetadata, SplineAreaFragmentDescriptionModule, SplineAreaSeriesDescription, SplineAreaSeriesDescriptionMetadata, SplineAreaSeriesDescriptionModule, SplineFragmentBaseDescription, SplineFragmentBaseDescriptionMetadata, SplineFragmentDescription, SplineFragmentDescriptionMetadata, SplineFragmentDescriptionModule, SplineSeriesBaseDescription, SplineSeriesBaseDescriptionMetadata, SplineSeriesDescription, SplineSeriesDescriptionMetadata, SplineSeriesDescriptionModule, Stack$1, StackPool$1, Stacked100AreaSeriesDescription, Stacked100AreaSeriesDescriptionMetadata, Stacked100AreaSeriesDescriptionModule, Stacked100BarSeriesDescription, Stacked100BarSeriesDescriptionMetadata, Stacked100BarSeriesDescriptionModule, Stacked100ColumnSeriesDescription, Stacked100ColumnSeriesDescriptionMetadata, Stacked100ColumnSeriesDescriptionModule, Stacked100LineSeriesDescription, Stacked100LineSeriesDescriptionMetadata, Stacked100LineSeriesDescriptionModule, Stacked100SplineAreaSeriesDescription, Stacked100SplineAreaSeriesDescriptionMetadata, Stacked100SplineAreaSeriesDescriptionModule, Stacked100SplineSeriesDescription, Stacked100SplineSeriesDescriptionMetadata, Stacked100SplineSeriesDescriptionModule, StackedAreaSeriesDescription, StackedAreaSeriesDescriptionMetadata, StackedAreaSeriesDescriptionModule, StackedBarSeriesDescription, StackedBarSeriesDescriptionMetadata, StackedBarSeriesDescriptionModule, StackedColumnSeriesDescription, StackedColumnSeriesDescriptionMetadata, StackedColumnSeriesDescriptionModule, StackedFragmentSeriesDescription, StackedFragmentSeriesDescriptionMetadata, StackedFragmentSeriesDescriptionModule, StackedLineSeriesDescription, StackedLineSeriesDescriptionMetadata, StackedLineSeriesDescriptionModule, StackedSeriesBaseDescription, StackedSeriesBaseDescriptionMetadata, StackedSeriesCreatedEventArgsDescription, StackedSeriesCreatedEventArgsDescriptionMetadata, StackedSplineAreaSeriesDescription, StackedSplineAreaSeriesDescriptionMetadata, StackedSplineAreaSeriesDescriptionModule, StackedSplineSeriesDescription, StackedSplineSeriesDescriptionMetadata, StackedSplineSeriesDescriptionModule, StandardDeviationIndicatorDescription, StandardDeviationIndicatorDescriptionMetadata, StandardDeviationIndicatorDescriptionModule, StandardLegendItems_$type, StepAreaSeriesDescription, StepAreaSeriesDescriptionMetadata, StepAreaSeriesDescriptionModule, StepLineSeriesDescription, StepLineSeriesDescriptionMetadata, StepLineSeriesDescriptionModule, StochRSIIndicatorDescription, StochRSIIndicatorDescriptionMetadata, StochRSIIndicatorDescriptionModule, StockChangedEventArgs, StockChangedEventArgsDescription, StockChangedEventArgsDescriptionMetadata, StockDataGenerator, StockDataLookup, StockDetails, StockInfo, StockPopulateEventArgsDescription, StockPopulateEventArgsDescriptionMetadata, StockPosition, StockPriceHistory, StockPricePoint, StraightNumericAxisBaseDescription, StraightNumericAxisBaseDescriptionMetadata, StrategyBasedIndicatorDescription, StrategyBasedIndicatorDescriptionMetadata, Stream, StreamReader, StreamWriter, Stretch, Stretch_$type, StringBuilder, StringComparer, StringReader, StringWriter, String_$type, Style, StyleDescription, StyleDescriptionMetadata, StyleSelectorDescription, StyleSelectorDescriptionMetadata, StyleShapeEventArgsDescription, StyleShapeEventArgsDescriptionMetadata, SubCollectionsRule, SuffixDescription, SuffixDescriptionMetadata, SumSummaryCalculator, SummaryCalculator, SummaryCellInfoDescription, SummaryCellInfoDescriptionMetadata, SummaryChangedEventArgsDescription, SummaryChangedEventArgsDescriptionMetadata, SummaryChooserDescriptionModule, SummaryDataDescription, SummaryDataDescriptionMetadata, SummaryDescription, SummaryDescriptionCollection, SummaryGroup, SummaryOperand, SummaryOperand_$type, SummaryResultDescription, SummaryResultDescriptionMetadata, SummaryRowDescription, SummaryRowDescriptionMetadata, SummaryRowRootDescription, SummaryRowRootDescriptionMetadata, SummaryRowRootDescriptionModule, SummaryRowSectionDescription, SummaryRowSectionDescriptionMetadata, SummaryRowSectionDescriptionModule, SweepDirection, SweepDirection_$type, SyncableObservableCollection$1, SyncableObservableCollection$2, SyncableObservableCollectionChangedListener_$type, SynchronizedReader, SynchronizedWriter, SystemException, TRIXIndicatorDescription, TRIXIndicatorDescriptionMetadata, TRIXIndicatorDescriptionModule, TSCodeGeneratingComponentRendererDataEmitter, TSCodeGeneratingComponentRendererHandlerEmitter, TSCodeGeneratingComponentRendererModuleEmitter, Task, Task$1, TaskCompletionSource$1, TaskFactory, TaskStatus, TaskStatus_$type, TemplateCellInfoDescription, TemplateCellInfoDescriptionMetadata, TemplateCellUpdatingEventArgsDescription, TemplateCellUpdatingEventArgsDescriptionMetadata, TemplateColumnDescription, TemplateColumnDescriptionMetadata, TemplateColumnDescriptionModule, TemplateContentDescriptionModule, TemplateContentExtendedDescriptionModule, TemplateHeaderCellInfoDescription, TemplateHeaderCellInfoDescriptionMetadata, TemplateHeaderCellUpdatingEventArgsDescription, TemplateHeaderCellUpdatingEventArgsDescriptionMetadata, TemplateHeaderDescription, TemplateHeaderDescriptionMetadata, TemplateHeaderDescriptionModule, TemplateSectionHeaderCellInfoDescription, TemplateSectionHeaderCellInfoDescriptionMetadata, TemplateSectionHeaderCellUpdatingEventArgsDescription, TemplateSectionHeaderCellUpdatingEventArgsDescriptionMetadata, TemplateSectionHeaderDescription, TemplateSectionHeaderDescriptionMetadata, TemplateSectionHeaderDescriptionModule, TextBlock, TextCellInfoDescription, TextCellInfoDescriptionMetadata, TextChangedEventArgsDescription, TextChangedEventArgsDescriptionMetadata, TextColumnDescription, TextColumnDescriptionMetadata, TextColumnDescriptionModule, TextFontMetrics, TextHeaderCellInfoDescription, TextHeaderCellInfoDescriptionMetadata, TextHeaderDescription, TextHeaderDescriptionMetadata, TextHeaderDescriptionModule, TextReader, TextReader_NullTextReader, TextWriter, TextWriter_NullTextWriter, Thickness, ThisMonthExpression, ThisMonthExpressionDescription, ThisMonthExpressionDescriptionMetadata, ThisQuarterExpression, ThisQuarterExpressionDescription, ThisQuarterExpressionDescriptionMetadata, ThisWeekExpression, ThisWeekExpressionDescription, ThisWeekExpressionDescriptionMetadata, ThisYearExpression, ThisYearExpressionDescription, ThisYearExpressionDescriptionMetadata, Thread, Tile, TileGeneratorDescription, TileGeneratorDescriptionMetadata, TileGeneratorMapImageryDescription, TileGeneratorMapImageryDescriptionMetadata, TileGeneratorMapImageryDescriptionModule, TileGeneratorTileSource, TileImageCreatedEventArgs, TileImageZoomChangingEventArgs, TilePositionComparer, TileSeriesDescription, TileSeriesDescriptionMetadata, TileSeriesDescriptionModule, TileWorkCompletedSink, TileWorkSettings, TimeAxisBaseDescription, TimeAxisBaseDescriptionMetadata, TimeAxisBreakDescription, TimeAxisBreakDescriptionMetadata, TimeAxisBreakDescriptionModule, TimeAxisIntervalDescription, TimeAxisIntervalDescriptionMetadata, TimeAxisIntervalDescriptionModule, TimeAxisLabelFormatDescription, TimeAxisLabelFormatDescriptionMetadata, TimeAxisLabelFormatDescriptionModule, TimeXAxisDescription, TimeXAxisDescriptionMetadata, TimeXAxisDescriptionModule, TodayExpression, TodayExpressionDescription, TodayExpressionDescriptionMetadata, TomorrowExpression, TomorrowExpressionDescription, TomorrowExpressionDescriptionMetadata, TooltipContainerDescriptionModule, TooltipContainerExtendedDescriptionModule, TopClipper, TouchGestureEventArgs, TouchGestureRecognizer, TouchGestureState_$type, TouchHistoryItem, TouchPointInfo, TouchVelocityReading, TouchVelocityTracker, Transaction, TransactionCommit, TransactionEvent, TransactionEvent_$type, TransactionHistory, TransactionKeyEqualityComparer, TransactionPendingState, TransactionPendingState_$type, TransactionService, TransactionState, TransactionStateDescription, TransactionStateDescriptionMetadata, TransactionType, TransactionType_$type, Transform, TransformCollection, TransformGroup, TransformMatrixHelpler, TranslateTransform, TreemapDescription, TreemapDescriptionMetadata, TreemapDescriptionModule, TreemapNodePointerEventArgsDescription, TreemapNodePointerEventArgsDescriptionMetadata, TreemapNodeStyleDescription, TreemapNodeStyleDescriptionMetadata, TreemapNodeStyleDescriptionModule, TreemapNodeStyleMappingDescription, TreemapNodeStyleMappingDescriptionMetadata, TreemapNodeStyleMappingDescriptionModule, TreemapNodeStylingEventArgsDescription, TreemapNodeStylingEventArgsDescriptionMetadata, TrendCalculators, TrendLineType, TrendLineType_$type, Triangle, TriangulationDataSourceDescription, TriangulationDataSourceDescriptionMetadata, TriangulationSource, TriangulationSourcePointRecord, TriangulationStatusEventArgs, TriangulationStatusEventArgsDescription, TriangulationStatusEventArgsDescriptionMetadata, Triangulator, TriangulatorContext, Tuple, Tuple$2, Tuple$3, Type, TypeDescriptionCleanups, TypeDescriptionContext, TypeDescriptionMetadata, TypeDescriptionPlatform, TypeDescriptionPlatform_$type, TypeDescriptionPropretyTransforms, TypeDescriptionWellKnownType, TypeDescriptionWellKnownType_$type, TypeRegistrar, TypicalPriceIndicatorDescription, TypicalPriceIndicatorDescriptionMetadata, TypicalPriceIndicatorDescriptionModule, UIElement, UIElementCollection, UIElementPropertyAccessor, UIElementPropertyAccessorFactory, UIElementPropertyId_$type, UTF8Encoding, UTF8Encoding_UTF8Decoder, UltimateOscillatorIndicatorDescription, UltimateOscillatorIndicatorDescriptionMetadata, UltimateOscillatorIndicatorDescriptionModule, UnicodeEncoding, UnknownValuePlotting, UnknownValuePlotting_$type, UnsetValue, UploadDataCompletedEventArgs, UploadDataCompletedEventArgsDescription, UploadDataCompletedEventArgsDescriptionMetadata, UploadStringCompletedEventArgs, UploadStringCompletedEventArgsDescription, UploadStringCompletedEventArgsDescriptionMetadata, Uri, UriKind, UriKind_$type, UriParser, ValueBrushScaleDescription, ValueBrushScaleDescriptionMetadata, ValueBrushScaleDescriptionModule, ValueOverlayDescription, ValueOverlayDescriptionMetadata, ValueOverlayDescriptionModule, ValueType, VerticalAlignment, VerticalAlignment_$type, VerticalAnchoredCategorySeriesDescription, VerticalAnchoredCategorySeriesDescriptionMetadata, VerticalSeparatorCellInfoDescription, VerticalSeparatorCellInfoDescriptionMetadata, VerticalStackedSeriesBaseDescription, VerticalStackedSeriesBaseDescriptionMetadata, VirtualDataSource, VirtualDataSourceDescription, VirtualDataSourceDescriptionMetadata, Visibility, Visibility_$type, VisualDataPixelScalingOptions, VoidEventArgsDescription, VoidEventArgsDescriptionMetadata, Void_$type, WPFCodeBehindCodeGeneratingComponentRendererCodeEmitter, WPFXamlCodeGeneratingComponentRendererCodeEmitter, WaterfallSeriesDescription, WaterfallSeriesDescriptionMetadata, WaterfallSeriesDescriptionModule, WeakReference, WebActivePaneEventArgsDescription, WebActivePaneEventArgsDescriptionMetadata, WebAvatarDescription, WebAvatarDescriptionMetadata, WebAvatarDescriptionModule, WebBadgeDescription, WebBadgeDescriptionMetadata, WebBadgeDescriptionModule, WebButtonBaseDescription, WebButtonBaseDescriptionMetadata, WebButtonBaseDescriptionModule, WebButtonDescription, WebButtonDescriptionMetadata, WebButtonDescriptionModule, WebCalendarBaseDescription, WebCalendarBaseDescriptionMetadata, WebCalendarBaseDescriptionModule, WebCalendarDateEventArgsDescription, WebCalendarDateEventArgsDescriptionMetadata, WebCalendarDescription, WebCalendarDescriptionMetadata, WebCalendarDescriptionModule, WebCardActionsDescription, WebCardActionsDescriptionMetadata, WebCardActionsDescriptionModule, WebCardContentDescription, WebCardContentDescriptionMetadata, WebCardContentDescriptionModule, WebCardDescription, WebCardDescriptionMetadata, WebCardDescriptionModule, WebCardHeaderDescription, WebCardHeaderDescriptionMetadata, WebCardHeaderDescriptionModule, WebCardMediaDescription, WebCardMediaDescriptionMetadata, WebCardMediaDescriptionModule, WebCheckboxBaseDescription, WebCheckboxBaseDescriptionMetadata, WebCheckboxBaseDescriptionModule, WebCheckboxDescription, WebCheckboxDescriptionMetadata, WebCheckboxDescriptionModule, WebChipDescription, WebChipDescriptionMetadata, WebChipDescriptionModule, WebCircularGradientDescription, WebCircularGradientDescriptionMetadata, WebCircularGradientDescriptionModule, WebCircularProgressDescription, WebCircularProgressDescriptionMetadata, WebCircularProgressDescriptionModule, WebClient, WebComponentBoolValueChangedEventArgsDescription, WebComponentBoolValueChangedEventArgsDescriptionMetadata, WebComponentDataValueChangedEventArgsDescription, WebComponentDataValueChangedEventArgsDescriptionMetadata, WebComponentDateValueChangedEventArgsDescription, WebComponentDateValueChangedEventArgsDescriptionMetadata, WebComponentValueChangedEventArgsDescription, WebComponentValueChangedEventArgsDescriptionMetadata, WebComponentsCodeBehindCodeGeneratingComponentRendererCodeEmitter, WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter, WebContentPaneDescription, WebContentPaneDescriptionMetadata, WebContentPaneDescriptionModule, WebDockManagerDescription, WebDockManagerDescriptionMetadata, WebDockManagerDescriptionModule, WebDockManagerLayoutDescription, WebDockManagerLayoutDescriptionMetadata, WebDockManagerLayoutDescriptionModule, WebDockManagerPaneDescription, WebDockManagerPaneDescriptionMetadata, WebDockManagerPaneDescriptionModule, WebDockManagerPointDescription, WebDockManagerPointDescriptionMetadata, WebDockManagerPointDescriptionModule, WebDockManagerResourceStringsDescription, WebDockManagerResourceStringsDescriptionMetadata, WebDockPaneActionDescription, WebDockPaneActionDescriptionMetadata, WebDockingIndicatorDescription, WebDockingIndicatorDescriptionMetadata, WebDocumentHostDescription, WebDocumentHostDescriptionMetadata, WebDocumentHostDescriptionModule, WebDropdownDescription, WebDropdownDescriptionMetadata, WebDropdownDescriptionModule, WebDropdownGroupDescription, WebDropdownGroupDescriptionMetadata, WebDropdownGroupDescriptionModule, WebDropdownHeaderDescription, WebDropdownHeaderDescriptionMetadata, WebDropdownHeaderDescriptionModule, WebDropdownItemComponentEventArgsDescription, WebDropdownItemComponentEventArgsDescriptionMetadata, WebDropdownItemDescription, WebDropdownItemDescriptionMetadata, WebDropdownItemDescriptionModule, WebExpansionPanelComponentEventArgsDescription, WebExpansionPanelComponentEventArgsDescriptionMetadata, WebExpansionPanelDescription, WebExpansionPanelDescriptionMetadata, WebExpansionPanelDescriptionModule, WebFloatPaneActionDescription, WebFloatPaneActionDescriptionMetadata, WebFloatingPaneResizeEventArgsDescription, WebFloatingPaneResizeEventArgsDescriptionMetadata, WebFloatingPaneResizeMoveEventArgsDescription, WebFloatingPaneResizeMoveEventArgsDescriptionMetadata, WebFormDataDescription, WebFormDataDescriptionMetadata, WebFormDataEventArgsDescription, WebFormDataEventArgsDescriptionMetadata, WebFormDescription, WebFormDescriptionMetadata, WebFormDescriptionModule, WebHeaderCollection, WebIconButtonDescription, WebIconButtonDescriptionMetadata, WebIconButtonDescriptionModule, WebIconDescription, WebIconDescriptionMetadata, WebIconDescriptionModule, WebInputBaseDescription, WebInputBaseDescriptionMetadata, WebInputBaseDescriptionModule, WebInputDescription, WebInputDescriptionMetadata, WebInputDescriptionModule, WebLinearProgressDescription, WebLinearProgressDescriptionMetadata, WebLinearProgressDescriptionModule, WebListDescription, WebListDescriptionMetadata, WebListDescriptionModule, WebListHeaderDescription, WebListHeaderDescriptionMetadata, WebListHeaderDescriptionModule, WebListItemDescription, WebListItemDescriptionMetadata, WebListItemDescriptionModule, WebMaskInputDescription, WebMaskInputDescriptionMetadata, WebMaskInputDescriptionModule, WebMoveFloatingPaneActionDescription, WebMoveFloatingPaneActionDescriptionMetadata, WebMoveTabActionDescription, WebMoveTabActionDescriptionMetadata, WebNavDrawerDescription, WebNavDrawerDescriptionMetadata, WebNavDrawerDescriptionModule, WebNavDrawerHeaderItemDescription, WebNavDrawerHeaderItemDescriptionMetadata, WebNavDrawerHeaderItemDescriptionModule, WebNavDrawerItemDescription, WebNavDrawerItemDescriptionMetadata, WebNavDrawerItemDescriptionModule, WebNavbarDescription, WebNavbarDescriptionMetadata, WebNavbarDescriptionModule, WebNumberEventArgsDescription, WebNumberEventArgsDescriptionMetadata, WebPaneCloseEventArgsDescription, WebPaneCloseEventArgsDescriptionMetadata, WebPaneDragActionDescription, WebPaneDragActionDescriptionMetadata, WebPaneDragEndEventArgsDescription, WebPaneDragEndEventArgsDescriptionMetadata, WebPaneDragOverEventArgsDescription, WebPaneDragOverEventArgsDescriptionMetadata, WebPaneDragStartEventArgsDescription, WebPaneDragStartEventArgsDescriptionMetadata, WebPaneHeaderConnectionEventArgsDescription, WebPaneHeaderConnectionEventArgsDescriptionMetadata, WebPaneHeaderElementDescription, WebPaneHeaderElementDescriptionMetadata, WebPanePinnedEventArgsDescription, WebPanePinnedEventArgsDescriptionMetadata, WebProgressBaseDescription, WebProgressBaseDescriptionMetadata, WebProgressBaseDescriptionModule, WebRadioDescription, WebRadioDescriptionMetadata, WebRadioDescriptionModule, WebRadioGroupDescription, WebRadioGroupDescriptionMetadata, WebRadioGroupDescriptionModule, WebRangeSliderDescription, WebRangeSliderDescriptionMetadata, WebRangeSliderDescriptionModule, WebRangeSliderValueDescription, WebRangeSliderValueDescriptionMetadata, WebRangeSliderValueEventArgsDescription, WebRangeSliderValueEventArgsDescriptionMetadata, WebRatingDescription, WebRatingDescriptionMetadata, WebRatingDescriptionModule, WebRatingSymbolDescription, WebRatingSymbolDescriptionMetadata, WebRatingSymbolDescriptionModule, WebRippleDescription, WebRippleDescriptionMetadata, WebRippleDescriptionModule, WebSliderBaseDescription, WebSliderBaseDescriptionMetadata, WebSliderBaseDescriptionModule, WebSliderDescription, WebSliderDescriptionMetadata, WebSliderDescriptionModule, WebSliderLabelDescription, WebSliderLabelDescriptionMetadata, WebSliderLabelDescriptionModule, WebSnackbarDescription, WebSnackbarDescriptionMetadata, WebSnackbarDescriptionModule, WebSplitPaneDescription, WebSplitPaneDescriptionMetadata, WebSplitPaneDescriptionModule, WebSwitchDescription, WebSwitchDescriptionMetadata, WebSwitchDescriptionModule, WebTabGroupPaneDescription, WebTabGroupPaneDescriptionMetadata, WebTabGroupPaneDescriptionModule, WebTabHeaderConnectionEventArgsDescription, WebTabHeaderConnectionEventArgsDescriptionMetadata, WebTabHeaderElementDescription, WebTabHeaderElementDescriptionMetadata, WebThemeControllerDescription, WebThemeControllerDescriptionMetadata, WebToastDescription, WebToastDescriptionMetadata, WebToastDescriptionModule, WebTreeDescription, WebTreeDescriptionMetadata, WebTreeDescriptionModule, WebTreeItemComponentEventArgsDescription, WebTreeItemComponentEventArgsDescriptionMetadata, WebTreeItemDescription, WebTreeItemDescriptionMetadata, WebTreeItemDescriptionModule, WebTreeSelectionOptionsEventArgsDescription, WebTreeSelectionOptionsEventArgsDescriptionMetadata, WebValueChangedEventArgsDescription, WebValueChangedEventArgsDescriptionMetadata, WeightedCloseIndicatorDescription, WeightedCloseIndicatorDescriptionMetadata, WeightedCloseIndicatorDescriptionModule, WhitespaceHandling, WhitespaceHandling_$type, WilliamsPercentRIndicatorDescription, WilliamsPercentRIndicatorDescriptionMetadata, WilliamsPercentRIndicatorDescriptionModule, WrapperExpression, WrapperExpressionDescription, WrapperExpressionDescriptionMetadata, WriteState, WriteState_$type, WriteableBitmap, XAttribute, XBaseDataType, XBaseDataType_$type, XBaseField, XContainer, XDocument, XElement, XName, XNamespace, XNode, XObject, XYChartDescription, XYChartDescriptionMetadata, XamMultiScaleImage, XamMultiScaleImageView, XamMultiScaleTileSource, XmlAttribute_$type, XmlChar, XmlConvert, XmlDocument_$type, XmlElement_$type, XmlException, XmlInputStream, XmlLinkedNode_$type, XmlNameTable, XmlNamedNodeMap_$type, XmlNamespaceManager, XmlNamespaceManager_NsDecl, XmlNamespaceManager_NsScope, XmlNamespaceScope_$type, XmlNodeList_$type, XmlNodeType, XmlNodeType_$type, XmlNode_$type, XmlParserContext, XmlParserContext_ContextItem, XmlReader, XmlResolver, XmlSpace, XmlSpace_$type, XmlStreamReader, XmlTextReader, XmlTextReader_DtdInputStateStack, XmlTextReader_DtdInputState_$type, XmlTextReader_TagName, XmlTextReader_XmlAttributeTokenInfo, XmlTextReader_XmlTokenInfo, XmlTextWriter, XmlTextWriter_StringUtil, XmlTextWriter_XmlDeclState_$type, XmlTextWriter_XmlNodeInfo, XmlUrlResolver, XmlUtils, XmlWriter, YearToDateExpression, YearToDateExpressionDescription, YearToDateExpressionDescriptionMetadata, YesterdayExpression, YesterdayExpressionDescription, YesterdayExpressionDescriptionMetadata, ZoomSliderDescription, ZoomSliderDescriptionMetadata, ZoomSliderDescriptionModule, ZoomSliderResolvingAxisValueEventArgsDescription, ZoomSliderResolvingAxisValueEventArgsDescriptionMetadata, a$, addBrushPaletteThemeEntry, addPaletteThemeEntry, addTextThemeEntry, arrayClear, arrayClear1, arrayContains, arrayCopy, arrayCopy1, arrayCopy2, arrayCopyTo, arrayFindByName, arrayGetLength, arrayGetRank, arrayGetValue, arrayIndexOf1, arrayInsert, arrayInsertRange, arrayInsertRange1, arrayLast, arrayListCreate, arrayRemoveAt, arrayRemoveItem, arrayResize, arrayShallowClone, b$, b64toUint8Array, boolCompare, boolToDecimal, boolToDouble, boolToInt16, boolToInt32, boolToInt64, boolToSingle, boolToString, boolToUInt16, boolToUInt32, boolToUInt64, boxArray$1, brushCollectionToString, brushToString, callStaticConstructors, ceil10, charMaxValue, charMinValue, colorCollectionToString, colorToString, compareTo, createGuid, d$, dateAdd, dateAddDays, dateAddHours, dateAddMinutes, dateAddMonths, dateAddSeconds, dateAddYears, dateEquals, dateFromFileTime, dateFromFileTimeUtc, dateFromMilliseconds, dateFromTicks, dateFromValues, dateGetDate, dateGetMonth, dateGetTimeOfDay, dateIsDST, dateIsLeapYear, dateKind, dateMaxValue, dateMinValue, dateNow, dateParse, dateParseExact, dateStdTimezoneOffset, dateSubtract, dateToFileTime, dateToString, dateToStringFormat, dateToday, dateTryParse, daysInMonth, decimalAdjust, defaultDVDateParse, delegateCombine, delegateRemove, endsWith1, ensureBool, ensureEnum, enumGetBox, enumToString, floor10, fromBrushCollection, fromColorCollection, fromDict, fromEn, fromEnum, fromOADate, fromPoint, fromRect, fromSize, fromSpinal, getAllPropertyNames, getBoxIfEnum, getColorStringSafe, getEn, getEnumerator, getEnumeratorObject, getInstanceType, getModifiedProps, ieeeRemainder, indexOfAny, initializePropertiesFromCss, intDivide, intSToU, intToString, intToString1, isDigit, isDigit1, isInfinity, isLetter, isLetterOrDigit, isLower, isNaN_, isNegativeInfinity, isNumber, isPoint, isPositiveInfinity, isRect, isSize, isValidProp, lastIndexOfAny, log10, logBase, markDep, markEnum, markStruct, markType, n$, netRegexToJS, nullableAdd, nullableConcat, nullableDivide, nullableEquals, nullableGreaterThan, nullableGreaterThanOrEqual, nullableIsNull, nullableLessThan, nullableLessThanOrEqual, nullableModulus, nullableMultiply, nullableNotEquals, nullableSubtract, numberToString, numberToString1, numberToString2, padLeft, padRight, parseBool, parseInt16_1, parseInt16_2, parseInt32_1, parseInt32_2, parseInt64_1, parseInt64_2, parseInt8_1, parseInt8_2, parseIntCore, parseNumber, parseNumber1, parseUInt16_1, parseUInt16_2, parseUInt32_1, parseUInt32_2, parseUInt64_1, parseUInt64_2, parseUInt8_1, parseUInt8_2, pointFromLiteral, pointToLiteral, pointToString, rectFromLiteral, rectToLiteral, rectToString, reverse, rgbToHex, round10, round10N, runOn, s$, sizeFromLiteral, sizeToLiteral, sizeToString, sleep, startsWith1, strToColor, stringCompare, stringCompare1, stringCompare2, stringCompare3, stringCompareOrdinal, stringCompareTo, stringConcat, stringContains, stringCopyToCharArray, stringCreateFromChar, stringCreateFromCharArray, stringCreateFromCharArraySlice, stringEmpty, stringEndsWith, stringEquals, stringEquals1, stringEscapeRegExp, stringFormat, stringFormat1, stringFormat2, stringInsert, stringIsDigit, stringIsNullOrEmpty, stringIsNullOrWhiteSpace, stringJoin, stringJoin1, stringRemove, stringReplace, stringSplit, stringStartsWith, stringToBrush, stringToCharArray, stringToColor, stringToLocaleLower, stringToLocaleUpper, stringToString$1, stringToString1, timeSpanDays, timeSpanFromDays, timeSpanFromHours, timeSpanFromMilliseconds, timeSpanFromMinutes, timeSpanFromSeconds, timeSpanFromTicks, timeSpanHours, timeSpanInit1, timeSpanInit2, timeSpanInit3, timeSpanMilliseconds, timeSpanMinutes, timeSpanNegate, timeSpanSeconds, timeSpanTicks, timeSpanTotalDays, timeSpanTotalHours, timeSpanTotalMilliseconds, timeSpanTotalMinutes, timeSpanTotalSeconds, toBoolean, toBrushCollection, toColorCollection, toDecimal, toDouble, toEn, toEnum, toLocalTime, toLongDateString, toLongTimeString, toNullable, toOADate, toPoint, toRect, toSize, toSpinal, toString1, toUniversalTime, trim, trimEnd, trimStart, truncate, tryParseBool, tryParseInt16_1, tryParseInt16_2, tryParseInt32_1, tryParseInt32_2, tryParseInt64_1, tryParseInt64_2, tryParseInt8_1, tryParseInt8_2, tryParseIntCore, tryParseNumber, tryParseNumber1, tryParseUInt16_1, tryParseUInt16_2, tryParseUInt32_1, tryParseUInt32_2, tryParseUInt64_1, tryParseUInt64_2, tryParseUInt8_1, tryParseUInt8_2, typeCast, typeCastObjTo$t, typeGetValue, u32BitwiseAnd, u32BitwiseOr, u32BitwiseXor, u32LS, uint8ArraytoB64, unboxArray, unicode_hack, unwrapNullable, v$, wellKnownColors, wrapNullable };
184007
+ export { APIFactory, AbsoluteVolumeOscillatorIndicatorDescription, AbsoluteVolumeOscillatorIndicatorDescriptionMetadata, AbsoluteVolumeOscillatorIndicatorDescriptionModule, AbstractEnumerable, AbstractEnumerator, AccumulationDistributionIndicatorDescription, AccumulationDistributionIndicatorDescriptionMetadata, AccumulationDistributionIndicatorDescriptionModule, Activator, AggregateException, AlignLinearGraphLabelEventArgsDescription, AlignLinearGraphLabelEventArgsDescriptionMetadata, AlignRadialGaugeLabelEventArgsDescription, AlignRadialGaugeLabelEventArgsDescriptionMetadata, AnchoredCategorySeriesDescription, AnchoredCategorySeriesDescriptionMetadata, AnchoredRadialSeriesDescription, AnchoredRadialSeriesDescriptionMetadata, AngleSimplifier, AngularCodeBehindCodeGeneratingComponentRendererCodeEmitter, AngularRenderer, AngularTemplateCodeGeneratingComponentRendererCodeEmitter, AngularWrapper, AnimationBrowserTickProvider, AnimationKeyFrame, AnimationKeyFrameEffect, AnimationKeyFrameEffectTargetType_$type, AnimationKeyFrameEffectTiming, AnimationKeyFrameProperty, AnimationManager, AnimationState, AnnotationLayerDescription, AnnotationLayerDescriptionMetadata, AnnotationLayerProxyDescriptionModule, AppearanceHelper, ApplyButtonClickEventArgsDescription, ApplyButtonClickEventArgsDescriptionMetadata, ArcGISOnlineMapImageryDescription, ArcGISOnlineMapImageryDescriptionMetadata, ArcGISOnlineMapImageryDescriptionModule, ArcGISOnlineTileSource, ArcSegment, ArcSegmentData, AreaFragmentDescription, AreaFragmentDescriptionMetadata, AreaFragmentDescriptionModule, AreaSeriesDescription, AreaSeriesDescriptionMetadata, AreaSeriesDescriptionModule, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ArrayAccessHelper, ArrayBox$1, ArrayExtension, Array_$type, AsciiEncoding, AssigningCategoryMarkerStyleEventArgsDescription, AssigningCategoryMarkerStyleEventArgsDescriptionMetadata, AssigningCategoryStyleEventArgsBaseDescription, AssigningCategoryStyleEventArgsBaseDescriptionMetadata, AssigningCategoryStyleEventArgsDescription, AssigningCategoryStyleEventArgsDescriptionMetadata, AssigningPolarMarkerStyleEventArgsDescription, AssigningPolarMarkerStyleEventArgsDescriptionMetadata, AssigningPolarStyleEventArgsBaseDescription, AssigningPolarStyleEventArgsBaseDescriptionMetadata, AssigningPolarStyleEventArgsDescription, AssigningPolarStyleEventArgsDescriptionMetadata, AssigningRadialMarkerStyleEventArgsDescription, AssigningRadialMarkerStyleEventArgsDescriptionMetadata, AssigningRadialStyleEventArgsBaseDescription, AssigningRadialStyleEventArgsBaseDescriptionMetadata, AssigningRadialStyleEventArgsDescription, AssigningRadialStyleEventArgsDescriptionMetadata, AssigningScatterMarkerStyleEventArgsDescription, AssigningScatterMarkerStyleEventArgsDescriptionMetadata, AssigningScatterStyleEventArgsBaseDescription, AssigningScatterStyleEventArgsBaseDescriptionMetadata, AssigningScatterStyleEventArgsDescription, AssigningScatterStyleEventArgsDescriptionMetadata, AssigningSeriesShapeStyleEventArgsBaseDescription, AssigningSeriesShapeStyleEventArgsBaseDescriptionMetadata, AssigningSeriesStyleEventArgsBaseDescription, AssigningSeriesStyleEventArgsBaseDescriptionMetadata, AssigningShapeMarkerStyleEventArgsDescription, AssigningShapeMarkerStyleEventArgsDescriptionMetadata, AssigningShapeStyleEventArgsBaseDescription, AssigningShapeStyleEventArgsBaseDescriptionMetadata, AssigningShapeStyleEventArgsDescription, AssigningShapeStyleEventArgsDescriptionMetadata, AsyncCompletedEventArgs, AsyncCompletedEventArgsDescription, AsyncCompletedEventArgsDescriptionMetadata, AsyncDataSourcePageRequest, AsyncDataSourcePageTaskHolder, AsyncVirtualDataSourceDataProviderWorkerSettings, AsyncVirtualDataSourceProviderTaskDataHolder, AsyncVirtualDataSourceProviderWorker, AsyncVirtualDataTask, AverageDirectionalIndexIndicatorDescription, AverageDirectionalIndexIndicatorDescriptionMetadata, AverageDirectionalIndexIndicatorDescriptionModule, AverageSummaryCalculator, AverageTrueRangeIndicatorDescription, AverageTrueRangeIndicatorDescriptionMetadata, AverageTrueRangeIndicatorDescriptionModule, AxisAnnotationDescription, AxisAnnotationDescriptionMetadata, AxisDescription, AxisDescriptionMetadata, AxisRangeChangedEventArgsDescription, AxisRangeChangedEventArgsDescriptionMetadata, BarFragmentDescription, BarFragmentDescriptionMetadata, BarFragmentDescriptionModule, BarSeriesDescription, BarSeriesDescriptionMetadata, BarSeriesDescriptionModule, Base, BaseControlTheme, BaseControlTheme_$type, BaseDOMEventProxy, BaseDataSource, BaseDataSourceDescription, BaseDataSourceDescriptionMetadata, BaseError, BaseTransactionService, BezierSegment, BezierSegmentData, BinaryFileDownloader, BinaryReader, BinaryUtil, BinaryWriter, Binding, BindingFormatter, BingMapsMapImageryDescription, BingMapsMapImageryDescriptionMetadata, BingMapsMapImageryDescriptionModule, BingMapsTileSource, BitArray, BitConverter, BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter, BlazorCodeGeneratingComponentRendererModuleEmitter, BlazorRazorCodeGeneratingComponentRendererCodeEmitter, BollingerBandWidthIndicatorDescription, BollingerBandWidthIndicatorDescriptionMetadata, BollingerBandWidthIndicatorDescriptionModule, BollingerBandsOverlayDescription, BollingerBandsOverlayDescriptionMetadata, BollingerBandsOverlayDescriptionModule, Boolean_$type, BottomClipper, Brush, BrushAppearanceData, BrushCollection, BrushCollectionUtil, BrushScaleDescription, BrushScaleDescriptionMetadata, BrushScaleDescriptionModule, BrushUtil, BrushUtilCore, BubbleSeriesDescription, BubbleSeriesDescriptionMetadata, BubbleSeriesDescriptionModule, Buffer, BulletGraphCoreDescriptionModule, BulletGraphDescription, BulletGraphDescriptionMetadata, BulletGraphDescriptionModule, ButtonClickEventArgsDescription, ButtonClickEventArgsDescriptionMetadata, ButtonDescription, ButtonDescriptionMetadata, ButtonDescriptionModule, ButtonGroupDescription, ButtonGroupDescriptionMetadata, ButtonGroupDescriptionModule, ButtonGroupSelectionChangedEventArgsDescription, ButtonGroupSelectionChangedEventArgsDescriptionMetadata, CalculatedColumnDescription, CalculatedColumnDescriptionMetadata, Calendar, CalendarDateDescription, CalendarDateDescriptionMetadata, CalendarDescription, CalendarDescriptionMetadata, CalendarDescriptionModule, CalendarFormatOptionsDescription, CalendarFormatOptionsDescriptionMetadata, CalendarResourceStringsDescription, CalendarResourceStringsDescriptionMetadata, CalendarWeekRule_$type, CalloutAnnotationDescription, CalloutAnnotationDescriptionMetadata, CalloutContentUpdatingEventArgsDescription, CalloutContentUpdatingEventArgsDescriptionMetadata, CalloutLabelUpdatingEventArgsDescription, CalloutLabelUpdatingEventArgsDescriptionMetadata, CalloutLayerDescription, CalloutLayerDescriptionMetadata, CalloutLayerDescriptionModule, CalloutRenderStyleUpdatingEventArgsDescription, CalloutRenderStyleUpdatingEventArgsDescriptionMetadata, CalloutSeriesSelectingEventArgsDescription, CalloutSeriesSelectingEventArgsDescriptionMetadata, CalloutStyleUpdatingEventArgsDescription, CalloutStyleUpdatingEventArgsDescriptionMetadata, CancelBehavior, CancelBehavior_$type, CancelButtonClickEventArgsDescription, CancelButtonClickEventArgsDescriptionMetadata, CancelEventArgs, CancelEventArgsDescription, CancelEventArgsDescriptionMetadata, CancellingMultiScaleImageEventArgs, CancellingMultiScaleImageEventArgsDescription, CancellingMultiScaleImageEventArgsDescriptionMetadata, Canvas, CanvasGestureDOMEventProxy, CanvasRenderScheduler, CanvasViewRenderer, Capture, CategoryAngleAxisDescription, CategoryAngleAxisDescriptionMetadata, CategoryAngleAxisDescriptionModule, CategoryAxisBaseDescription, CategoryAxisBaseDescriptionMetadata, CategoryChartCoreDescriptionModule, CategoryChartDescription, CategoryChartDescriptionMetadata, CategoryChartDescriptionModule, CategoryDateTimeXAxisDescription, CategoryDateTimeXAxisDescriptionMetadata, CategoryDateTimeXAxisDescriptionModule, CategoryHighlightLayerDescription, CategoryHighlightLayerDescriptionMetadata, CategoryHighlightLayerDescriptionModule, CategoryItemHighlightLayerDescription, CategoryItemHighlightLayerDescriptionMetadata, CategoryItemHighlightLayerDescriptionModule, CategorySeriesDescription, CategorySeriesDescriptionMetadata, CategoryToolTipLayerDescription, CategoryToolTipLayerDescriptionMetadata, CategoryToolTipLayerDescriptionModule, CategoryXAxisDescription, CategoryXAxisDescriptionMetadata, CategoryXAxisDescriptionModule, CategoryYAxisDescription, CategoryYAxisDescriptionMetadata, CategoryYAxisDescriptionModule, CellActionManagerDescription, CellActionManagerDescriptionMetadata, CellInfoDescription, CellInfoDescriptionMetadata, CellKeyDescription, CellKeyDescriptionMetadata, CellKeyDescriptionModule, CellRangeDescription, CellRangeDescriptionMetadata, CellRangeDescriptionModule, CellStyleRequestedEventArgsDescription, CellStyleRequestedEventArgsDescriptionMetadata, ChaikinOscillatorIndicatorDescription, ChaikinOscillatorIndicatorDescriptionMetadata, ChaikinOscillatorIndicatorDescriptionModule, ChaikinVolatilityIndicatorDescription, ChaikinVolatilityIndicatorDescriptionMetadata, ChaikinVolatilityIndicatorDescriptionModule, ChartCursorEventArgsDescription, ChartCursorEventArgsDescriptionMetadata, ChartMouseEventArgsDescription, ChartMouseEventArgsDescriptionMetadata, ChartSeriesEventArgsDescription, ChartSeriesEventArgsDescriptionMetadata, CheckboxChangeEventArgsDescription, CheckboxChangeEventArgsDescriptionMetadata, CheckboxDescription, CheckboxDescriptionMetadata, CheckboxDescriptionModule, CheckboxListDescription, CheckboxListDescriptionMetadata, CheckboxListDescriptionModule, CheckedChangedEventArgsDescription, CheckedChangedEventArgsDescriptionMetadata, ChildContentDescriptionModule, ChildContentExtendedDescriptionModule, Clipboard, Clipper, CodeGeneratingCodeWriter, CodeGeneratingComponentRenderer, CodeGeneratingComponentRendererCodeEmitter, CodeGeneratingComponentRendererDataEmitter, CodeGeneratingComponentRendererDataEmitterItemType, CodeGeneratingComponentRendererDataEmitterPropertyType, CodeGeneratingComponentRendererHandlerEmitter, CodeGeneratingComponentRendererModuleEmitter, CodeGeneratingImportManager, CodeGeneratingRegexHelper, CodeGeneratingRendererResult, CodeGenerationContainer, CodeGenerationFolderTemplate, CodeGenerationItemBuilder, CodeGenerationItemBuilderPropertyInfo, CodeGenerationLibrary, CodeGenerationLibraryItem, CodeGenerationLibraryItemContent, CodeGenerationLibraryItemContentConfiguration, CodeGenerationLibraryItemContentLocation, CodeGenerationLibraryItemContentLocation_$type, CodeGenerationLibraryItemPlatform, CodeGenerationLibraryItemPlatform_$type, CodeGenerationLibraryItemType, CodeGenerationLibraryItemType_$type, CodeGenerationRendererAdapter, CodeGenerationRendererOptions, CodeGenerationSpecialValue, CodeGenerationSpecialValueType_$type, CodeGenerationTargetPlatforms, CodeGenerationTargetPlatforms_$type, CodeGenerationTransformer, Collection$1, CollectionAdapter, Color, ColorCollectionUtil, ColorData, ColorScaleDescription, ColorScaleDescriptionMetadata, ColorUtil, ColumnChooserDescription, ColumnChooserDescriptionMetadata, ColumnChooserDescriptionModule, ColumnComparisonFilterConditionDescription, ColumnComparisonFilterConditionDescriptionMetadata, ColumnCustomFilterConditionDescription, ColumnCustomFilterConditionDescriptionMetadata, ColumnDescription, ColumnDescriptionMetadata, ColumnExchangerDescription, ColumnExchangerDescriptionMetadata, ColumnFilterConditionDescription, ColumnFilterConditionDescriptionMetadata, ColumnFilterConditionGroupDescription, ColumnFilterConditionGroupDescriptionMetadata, ColumnFragmentDescription, ColumnFragmentDescriptionMetadata, ColumnFragmentDescriptionModule, ColumnGroupDescriptionDescription, ColumnGroupDescriptionDescriptionMetadata, ColumnGroupDescriptionDescriptionModule, ColumnGroupingDescription, ColumnGroupingDescriptionMetadata, ColumnGroupingDescriptionModule, ColumnHiddenChangedEventArgsDescription, ColumnHiddenChangedEventArgsDescriptionMetadata, ColumnMovingSeparatorDescription, ColumnMovingSeparatorDescriptionMetadata, ColumnMovingSeparatorDescriptionModule, ColumnPinnedChangedEventArgsDescription, ColumnPinnedChangedEventArgsDescriptionMetadata, ColumnPinningDescription, ColumnPinningDescriptionMetadata, ColumnPinningDescriptionModule, ColumnPropertySetterDescription, ColumnPropertySetterDescriptionMetadata, ColumnReference, ColumnResizingSeparatorDescription, ColumnResizingSeparatorDescriptionMetadata, ColumnResizingSeparatorDescriptionModule, ColumnSeriesDescription, ColumnSeriesDescriptionMetadata, ColumnSeriesDescriptionModule, ColumnSortDescriptionDescription, ColumnSortDescriptionDescriptionMetadata, ColumnSortDescriptionDescriptionModule, ColumnSummaryDescriptionDescription, ColumnSummaryDescriptionDescriptionMetadata, ColumnSummaryDescriptionDescriptionModule, ColumnSupportingCalculationDescription, ColumnSupportingCalculationDescriptionMetadata, ColumnWidthDescription, ColumnWidthDescriptionMetadata, ColumnWidthDescriptionModule, ComboBoxColumnDescription, ComboBoxColumnDescriptionMetadata, ComboBoxColumnDescriptionModule, CommodityChannelIndexIndicatorDescription, CommodityChannelIndexIndicatorDescriptionMetadata, CommodityChannelIndexIndicatorDescriptionModule, CompareInfo, CompareUtil, Comparer$1, CompletedSinkImpl, ComponentRenderer, ComponentRendererAdapter, ContainerState, ContentChildCollection, ContentControl, ContourValueResolverDescription, ContourValueResolverDescriptionMetadata, Control, ControlDisplayDensity, ControlDisplayDensity_$type, Convert, ConvertUtil, CoreGeometryUtil, CornerRadius, CountSummaryCalculator, CrosshairLayerDescription, CrosshairLayerDescriptionMetadata, CrosshairLayerDescriptionModule, CssColorPropertyAccessor, CssCornerRadiusPropertyAccessor, CssFloatPropertyAccessor, CssGradientUtil, CssHelper, CssLengthArrayPropertyAccessor, CssLengthPropertyAccessor, CssPixelsPropertyAccessor, CssThicknessPropertyAccessor, CssTransformPropertyAccessor, CultureInfo, CustomContourValueResolverDescription, CustomContourValueResolverDescriptionMetadata, CustomContourValueResolverDescriptionModule, CustomContourValueResolverEventArgsDescription, CustomContourValueResolverEventArgsDescriptionMetadata, CustomIndicatorDescription, CustomIndicatorDescriptionMetadata, CustomIndicatorDescriptionModule, CustomMapImageryDescription, CustomMapImageryDescriptionMetadata, CustomMapImageryDescriptionModule, CustomMapTileSource, CustomPaletteBrushScaleDescription, CustomPaletteBrushScaleDescriptionMetadata, CustomPaletteBrushScaleDescriptionModule, CustomPaletteColorScaleDescription, CustomPaletteColorScaleDescriptionMetadata, CustomPaletteColorScaleDescriptionModule, DOMEventProxy, DOMExecutionContext, DTDObjectModel, DVContainer, DVInteractivityDescriptionModule, DVSR, DataAbbreviationMode, DataAbbreviationMode_$type, DataBindingEventArgsDescription, DataBindingEventArgsDescriptionMetadata, DataChartAnnotationDescriptionModule, DataChartCategoryCoreDescriptionModule, DataChartCategoryDescriptionModule, DataChartCategoryTrendLineDescriptionModule, DataChartCoreDescriptionModule, DataChartDefaultTooltipsDescriptionMetadata, DataChartDefaultTooltipsExtendedDescriptionMetadata, DataChartDescription, DataChartDescriptionMetadata, DataChartExtendedAxesDescriptionModule, DataChartFinancialCoreDescriptionModule, DataChartFinancialDescriptionModule, DataChartFinancialIndicatorsDescriptionModule, DataChartFinancialOverlaysDescriptionModule, DataChartInteractivityDescriptionModule, DataChartMouseButtonEventArgsDescription, DataChartMouseButtonEventArgsDescriptionMetadata, DataChartPolarCoreDescriptionModule, DataChartPolarDescriptionModule, DataChartRadialCoreDescriptionModule, DataChartRadialDescriptionModule, DataChartScatterCoreDescriptionModule, DataChartScatterDescriptionModule, DataChartShapeCoreDescriptionModule, DataChartShapeDescriptionModule, DataChartStackedDescriptionModule, DataChartVerticalCategoryCoreDescriptionModule, DataChartVerticalCategoryDescriptionModule, DataChartVisualDataDescriptionModule, DataContext, DataContextDescription, DataContextDescriptionMetadata, DataFormats, DataGridAllColumnsDescriptionModule, DataGridComparisonOperatorSelectorDescription, DataGridComparisonOperatorSelectorDescriptionMetadata, DataGridCoreDescriptionModule, DataGridDescription, DataGridDescriptionMetadata, DataGridDescriptionModule, DataGridExpansionIndicatorDescription, DataGridExpansionIndicatorDescriptionMetadata, DataGridFilterDialogDescription, DataGridFilterDialogDescriptionMetadata, DataGridPagerDescription, DataGridPagerDescriptionMetadata, DataGridPagerDescriptionModule, DataGridSortIndicatorDescription, DataGridSortIndicatorDescriptionMetadata, DataGridToolbarDescription, DataGridToolbarDescriptionMetadata, DataGridToolbarDescriptionModule, DataLegendDescription, DataLegendDescriptionMetadata, DataLegendDescriptionModule, DataLegendHeaderDateMode, DataLegendHeaderDateMode_$type, DataLegendHeaderTimeMode, DataLegendHeaderTimeMode_$type, DataLegendLabelMode, DataLegendLabelMode_$type, DataLegendSeriesContext, DataLegendSeriesContextDescription, DataLegendSeriesContextDescriptionMetadata, DataLegendSeriesGroup, DataLegendSeriesGroup_$type, DataLegendSeriesValueInfo, DataLegendSeriesValueInfoDescription, DataLegendSeriesValueInfoDescriptionMetadata, DataLegendSeriesValueType, DataLegendSeriesValueType_$type, DataLegendStylingColumnEventArgsDescription, DataLegendStylingColumnEventArgsDescriptionMetadata, DataLegendStylingRowEventArgsDescription, DataLegendStylingRowEventArgsDescriptionMetadata, DataLegendSummaryColumn, DataLegendSummaryColumnDescription, DataLegendSummaryColumnDescriptionMetadata, DataLegendSummaryEventArgsDescription, DataLegendSummaryEventArgsDescriptionMetadata, DataLegendSummaryType, DataLegendSummaryType_$type, DataLegendUnitsMode, DataLegendUnitsMode_$type, DataLegendValueMode, DataLegendValueMode_$type, DataObject, DataSeries, DataSeriesAdapter, DataSeriesAdapterImplementation, DataSeriesAdapterRemovingDuplicatesEventArgs, DataSeriesAdapterRuleCollection, DataSeriesAdapterRunContext, DataSeriesAdapterRunEventArgs, DataSeriesAdapterUpdateNotifier, DataSeriesAxisType, DataSeriesAxisType_$type, DataSeriesCollection, DataSeriesDataProviderAnalyzer, DataSeriesIntent, DataSeriesIntent_$type, DataSeriesMarker, DataSeriesMarker_$type, DataSeriesMemberPathHint, DataSeriesType, DataSeriesType_$type, DataSourceAggregatedResult, DataSourceAggregatedResultDescription, DataSourceAggregatedResultDescriptionMetadata, DataSourceBatchCompletedEventArgs, DataSourceBatchStartedEventArgs, DataSourceDataCommittedEventArgs, DataSourceDataProviderSchemaChangedEventArgs, DataSourceDataProviderSchemaChangedEventArgsDescription, DataSourceDataProviderSchemaChangedEventArgsDescriptionMetadata, DataSourceExecutionContext, DataSourceLocalDataProvider, DataSourcePageRequestPriority, DataSourcePageRequestPriority_$type, DataSourcePropertiesComparer, DataSourceRowExpansionChangedEventArgs, DataSourceRowExpansionChangedEventArgsDescription, DataSourceRowExpansionChangedEventArgsDescriptionMetadata, DataSourceRowType, DataSourceRowType_$type, DataSourceSchemaChangedEventArgs, DataSourceSchemaChangedEventArgsDescription, DataSourceSchemaChangedEventArgsDescriptionMetadata, DataSourceSchemaPropertyType, DataSourceSchemaPropertyType_$type, DataSourceSectionHeaderDisplayMode, DataSourceSectionHeaderDisplayMode_$type, DataSourceSpecialRow, DataSourceSpecialRowDescription, DataSourceSpecialRowDescriptionMetadata, DataSourceSummaryScope, DataSourceSummaryScope_$type, DataSourceSupportingCalculationDescription, DataSourceSupportingCalculationDescriptionMetadata, DataSourceVelocityReading, DataSourceVelocityTracker, DataTemplate, DataTemplateMeasureInfo, DataTemplatePassInfo, DataTemplateRenderInfo, DataToolTipLayerDescription, DataToolTipLayerDescriptionMetadata, DataToolTipLayerDescriptionModule, DataToolTipLayerGroupingMode, DataToolTipLayerGroupingMode_$type, DataTooltipGroupedPositionX, DataTooltipGroupedPositionX_$type, DataTooltipGroupedPositionY, DataTooltipGroupedPositionY_$type, DataVisualizationLocaleCs, DataVisualizationLocaleDa, DataVisualizationLocaleDe, DataVisualizationLocaleEn, DataVisualizationLocaleEs, DataVisualizationLocaleFr, DataVisualizationLocaleHu, DataVisualizationLocaleIt, DataVisualizationLocaleJa, DataVisualizationLocaleKo, DataVisualizationLocaleNb, DataVisualizationLocaleNl, DataVisualizationLocalePl, DataVisualizationLocalePt, DataVisualizationLocaleRo, DataVisualizationLocaleSv, DataVisualizationLocaleTr, DataVisualizationLocaleZhHans, DataVisualizationLocaleZhHant, DatePickerDescription, DatePickerDescriptionMetadata, DatePickerDescriptionModule, DateRangeDescriptorDescription, DateRangeDescriptorDescriptionMetadata, DateTimeCellInfoDescription, DateTimeCellInfoDescriptionMetadata, DateTimeColumnDescription, DateTimeColumnDescriptionMetadata, DateTimeColumnDescriptionModule, DateTimeFormat, DateTimeFormatSpecifier, DateTimeFormatSpecifierDescription, DateTimeFormatSpecifierDescriptionMetadata, DateTimeFormatSpecifierDescriptionModule, DateTimeKind_$type, Date_$type, DayOfWeek, DayOfWeek_$type, Debug, Decoder, DecoderExceptionFallback, DecoderExceptionFallbackBuffer, DecoderFallback, DecoderFallbackBuffer, DecoderFallbackException, DecoderReplacementFallback, DecoderReplacementFallbackBuffer, DefaultComparer$1, DefaultDataSourceDataProviderUpdateNotifier, DefaultDataSourceSchema, DefaultDecoder, DefaultEqualityComparer$1, DefaultODataLiteralEmitter, DefaultSectionInformation, DefaultSummaryResult, DefinitionBaseDescription, DefinitionBaseDescriptionMetadata, Delegate_$type, DependencyObject, DependencyObjectNotifier, DependencyPropertiesCollection, DependencyProperty, DependencyPropertyChangedEventArgs, Description, DescriptionJsonValidator, DescriptionPropertyValue, DescriptionRef, DescriptionRefValueChangedEventArgs, DescriptionResult, DescriptionSerializer, DescriptionSerializerBuilder, DescriptionTreeAction, DescriptionTreeActionType_$type, DescriptionTreeBuilder, DescriptionTreeNode, DescriptionTreeReconciler, DescriptionTreeReconciler_TreeModeData, DetrendedPriceOscillatorIndicatorDescription, DetrendedPriceOscillatorIndicatorDescriptionMetadata, DetrendedPriceOscillatorIndicatorDescriptionModule, DeviceUtils, Dictionary$2, DictionaryUtil, Dictionary_EnumerableCollection$3, DiffApplyInfo, DivBridge, DomPortal_$type, DomRenderer_$type, DomWrapper_$type, DomainChartDescription, DomainChartDescriptionMetadata, DomainChartSeriesPointerEventArgsDescription, DomainChartSeriesPointerEventArgsDescriptionMetadata, DotNetCodeGeneratingComponentRendererDataEmitter, DotNetCodeGeneratingComponentRendererHandlerEmitter, DotNetCodeGeneratingComponentRendererModuleEmitter, DoubleAnimator, DoubleCollection, DoubleValueChangedEventArgs, DoubleValueChangedEventArgsDescription, DoubleValueChangedEventArgsDescriptionMetadata, DoughnutChartCoreDescriptionModule, DoughnutChartDefaultTooltipsDescriptionMetadata, DoughnutChartDefaultTooltipsExtendedDescriptionMetadata, DoughnutChartDescription, DoughnutChartDescriptionMetadata, DoughnutChartDescriptionModule, DoughnutChartInteractivityDescriptionModule, DownloadingMultiScaleImageEventArgs, DownloadingMultiScaleImageEventArgsDescription, DownloadingMultiScaleImageEventArgsDescriptionMetadata, EaseOfMovementIndicatorDescription, EaseOfMovementIndicatorDescriptionMetadata, EaseOfMovementIndicatorDescriptionModule, EasingFunctions, EdgeClipper, EdgeComparer, EditRowDefinitionDescription, EditRowDefinitionDescriptionMetadata, EditRowDefinitionDescriptionModule, EditorCellInfoDescription, EditorCellInfoDescriptionMetadata, EditorDefinitionDescription, EditorDefinitionDescriptionMetadata, EditorDefinitionDescriptionModule, EditorRowCellInfoDescription, EditorRowCellInfoDescriptionMetadata, ElevationHelper, ElevationMode, ElevationMode_$type, EllipseGeometry, EllipseGeometryData, EmbeddedRefDescription, Encoding, EntityHandling, EntityHandling_$type, Enum, EnumUtil, Enumerable, EnumerableWrapper, EnumerableWrapperObject, EnumeratorWrapper, EnumeratorWrapperObject, Environment, EqualityComparer$1, ErrorBarCalculatorReference, ErrorBarCalculatorReference_$type, ErrorBarCalculatorType, ErrorBarCalculatorType_$type, ErrorMessageDisplayingEventArgs, EventArgs, EventProxy, ExpansionPanelDescription, ExpansionPanelDescriptionMetadata, ExpansionPanelDescriptionModule, ExpressionSyntax, Extensions, FastFlattener, FastItemColumn, FastItemDateTimeColumn, FastItemIntColumn, FastItemObjectColumn, FastItemsSource, FastItemsSourceEventAction, FastItemsSourceEventAction_$type, FastItemsSourceEventArgs, FastItemsSourceReference, FastIterationDictionary$2, FastReflectionHelper, FastStochasticOscillatorIndicatorDescription, FastStochasticOscillatorIndicatorDescriptionMetadata, FastStochasticOscillatorIndicatorDescriptionModule, FaultCode, FaultException, FaultException$1, FaultReason, FillRule, FillRule_$type, FilterApplyButtonClickEventArgsDescription, FilterApplyButtonClickEventArgsDescriptionMetadata, FilterCancelButtonClickEventArgsDescription, FilterCancelButtonClickEventArgsDescriptionMetadata, FilterCellInfoDescription, FilterCellInfoDescriptionMetadata, FilterDialogRenderCompletedEventArgsDescription, FilterDialogRenderCompletedEventArgsDescriptionMetadata, FilterExpression, FilterExpressionCollection, FilterExpressionDescription, FilterExpressionDescriptionMetadata, FilterExpressionFunctionType, FilterExpressionFunctionType_$type, FilterExpressionOperatorType, FilterExpressionOperatorType_$type, FilterExpressionVisitor, FilterExpressionWrapperType, FilterExpressionWrapperType_$type, FilterFactory, FilterOperandDescription, FilterOperandDescriptionMetadata, FilterOperandDescriptionModule, FilterRowDefinitionDescription, FilterRowDefinitionDescriptionMetadata, FilterRowDefinitionDescriptionModule, FinalValueLayerDescription, FinalValueLayerDescriptionMetadata, FinalValueLayerDescriptionModule, FinancialCalculationDataSourceDescription, FinancialCalculationDataSourceDescriptionMetadata, FinancialCalculationSupportingCalculationsDescription, FinancialCalculationSupportingCalculationsDescriptionMetadata, FinancialChartCoreDescriptionModule, FinancialChartCustomIndicatorArgsDescription, FinancialChartCustomIndicatorArgsDescriptionMetadata, FinancialChartDefaultTemplatesDescriptionMetadata, FinancialChartDefaultTemplatesExtendedDescriptionMetadata, FinancialChartDescription, FinancialChartDescriptionMetadata, FinancialChartDescriptionModule, FinancialDataAdapter, FinancialEventArgsDescription, FinancialEventArgsDescriptionMetadata, FinancialIndicatorDescription, FinancialIndicatorDescriptionMetadata, FinancialLegendDescription, FinancialLegendDescriptionMetadata, FinancialLegendDescriptionModule, FinancialOverlayDescription, FinancialOverlayDescriptionMetadata, FinancialPriceSeriesDescription, FinancialPriceSeriesDescriptionMetadata, FinancialPriceSeriesDescriptionModule, FinancialSeriesDescription, FinancialSeriesDescriptionMetadata, Flattener, FlattenerSettings, FocusOptionsDescription, FocusOptionsDescriptionMetadata, FontDefaults, FontInfo, FontUtil, ForceIndexIndicatorDescription, ForceIndexIndicatorDescriptionMetadata, ForceIndexIndicatorDescriptionModule, FormatException, FormatException2, FormatGroupTextEventArgsDescription, FormatGroupTextEventArgsDescriptionMetadata, FormatLinearGraphLabelEventArgsDescription, FormatLinearGraphLabelEventArgsDescriptionMetadata, FormatRadialGaugeLabelEventArgsDescription, FormatRadialGaugeLabelEventArgsDescriptionMetadata, FormatSpecifier, FormatSpecifierCollection, FormatSpecifierDescription, FormatSpecifierDescriptionMetadata, FormatSpecifierDescriptionModule, FormatSummaryTextEventArgsDescription, FormatSummaryTextEventArgsDescriptionMetadata, Formatting, Formatting_$type, FragmentBaseDescription, FragmentBaseDescriptionMetadata, FrameworkElement, FrameworkElementExtensions, FullStochasticOscillatorIndicatorDescription, FullStochasticOscillatorIndicatorDescriptionMetadata, FullStochasticOscillatorIndicatorDescriptionModule, FunctionFilterExpression, FunctionFilterExpressionDescription, FunctionFilterExpressionDescriptionMetadata, FunnelChartCoreDescriptionModule, FunnelChartDescription, FunnelChartDescriptionMetadata, FunnelChartDescriptionModule, FunnelDataContextDescription, FunnelDataContextDescriptionMetadata, FunnelSliceClickedEventArgsDescription, FunnelSliceClickedEventArgsDescriptionMetadata, FunnelSliceDataContextDescription, FunnelSliceDataContextDescriptionMetadata, FunnelSliceEventArgsDescription, FunnelSliceEventArgsDescriptionMetadata, GC, GenericEnumerable$1, GenericEnumerator$1, GeographicContourLineSeriesDescription, GeographicContourLineSeriesDescriptionMetadata, GeographicContourLineSeriesDescriptionModule, GeographicHighDensityScatterSeriesDescription, GeographicHighDensityScatterSeriesDescriptionMetadata, GeographicHighDensityScatterSeriesDescriptionModule, GeographicMapCoreDescriptionModule, GeographicMapDescription, GeographicMapDescriptionMetadata, GeographicMapDescriptionModule, GeographicMapImageryDescription, GeographicMapImageryDescriptionMetadata, GeographicMapSeriesHostDescription, GeographicMapSeriesHostDescriptionMetadata, GeographicMarkerSeriesBaseDescription, GeographicMarkerSeriesBaseDescriptionMetadata, GeographicMarkerSeriesDescription, GeographicMarkerSeriesDescriptionMetadata, GeographicPolylineSeriesDescription, GeographicPolylineSeriesDescriptionMetadata, GeographicPolylineSeriesDescriptionModule, GeographicProportionalSymbolSeriesBaseDescription, GeographicProportionalSymbolSeriesBaseDescriptionMetadata, GeographicProportionalSymbolSeriesDescription, GeographicProportionalSymbolSeriesDescriptionMetadata, GeographicProportionalSymbolSeriesDescriptionModule, GeographicScatterAreaSeriesDescription, GeographicScatterAreaSeriesDescriptionMetadata, GeographicScatterAreaSeriesDescriptionModule, GeographicShapeSeriesBaseBaseDescription, GeographicShapeSeriesBaseBaseDescriptionMetadata, GeographicShapeSeriesBaseDescription, GeographicShapeSeriesBaseDescriptionMetadata, GeographicShapeSeriesDescription, GeographicShapeSeriesDescriptionMetadata, GeographicShapeSeriesDescriptionModule, GeographicSymbolSeriesBaseDescription, GeographicSymbolSeriesBaseDescriptionMetadata, GeographicSymbolSeriesDescription, GeographicSymbolSeriesDescriptionMetadata, GeographicSymbolSeriesDescriptionModule, GeographicTileSeriesDescription, GeographicTileSeriesDescriptionMetadata, GeographicTileSeriesDescriptionModule, GeographicXYTriangulatingSeriesBaseDescription, GeographicXYTriangulatingSeriesBaseDescriptionMetadata, GeographicXYTriangulatingSeriesDescription, GeographicXYTriangulatingSeriesDescriptionMetadata, Geometry, GeometryCollection, GeometryData, GeometryGroup, GeometryType, GeometryType_$type, GeometryUtil, GetPointsSettings, GetTileImageUriArgs, GetTileImageUriArgsDescription, GetTileImageUriArgsDescriptionMetadata, GotFocusEventArgsDescription, GotFocusEventArgsDescriptionMetadata, GradientDirection, GradientDirection_$type, GradientStop, GradientStopAppearanceData, GridActiveCellChangedEventArgsDescription, GridActiveCellChangedEventArgsDescriptionMetadata, GridAnimationPhaseSettingsDescription, GridAnimationPhaseSettingsDescriptionMetadata, GridAnimationSettingsDescription, GridAnimationSettingsDescriptionMetadata, GridBridge, GridBridgeColumnDefinition, GridBridgeRowDefinition, GridCellEditEndedEventArgsDescription, GridCellEditEndedEventArgsDescriptionMetadata, GridCellEditEventArgsDescription, GridCellEditEventArgsDescriptionMetadata, GridCellEditStartedEventArgsDescription, GridCellEditStartedEventArgsDescriptionMetadata, GridCellEventArgsDescription, GridCellEventArgsDescriptionMetadata, GridCellPositionDescription, GridCellPositionDescriptionMetadata, GridCellPositionDescriptionModule, GridCellValueChangedEventArgsDescription, GridCellValueChangedEventArgsDescriptionMetadata, GridCellValueChangingEventArgsDescription, GridCellValueChangingEventArgsDescriptionMetadata, GridColumnAnimationSettingsDescription, GridColumnAnimationSettingsDescriptionMetadata, GridColumnButtonOptionsDescription, GridColumnButtonOptionsDescriptionMetadata, GridColumnButtonOptionsDescriptionModule, GridColumnFilterOptionsDescription, GridColumnFilterOptionsDescriptionMetadata, GridColumnFilterOptionsDescriptionModule, GridColumnGroupOptionsDescription, GridColumnGroupOptionsDescriptionMetadata, GridColumnGroupOptionsDescriptionModule, GridColumnHideOptionsDescription, GridColumnHideOptionsDescriptionMetadata, GridColumnHideOptionsDescriptionModule, GridColumnMoveOptionsDescription, GridColumnMoveOptionsDescriptionMetadata, GridColumnMoveOptionsDescriptionModule, GridColumnOptionsBaseDescription, GridColumnOptionsBaseDescriptionMetadata, GridColumnOptionsDescription, GridColumnOptionsDescriptionMetadata, GridColumnOptionsDescriptionModule, GridColumnOptionsSectionBaseDescription, GridColumnOptionsSectionBaseDescriptionMetadata, GridColumnOptionsSimpleSectionBaseDescription, GridColumnOptionsSimpleSectionBaseDescriptionMetadata, GridColumnPinOptionsDescription, GridColumnPinOptionsDescriptionMetadata, GridColumnPinOptionsDescriptionModule, GridColumnSortOptionsDescription, GridColumnSortOptionsDescriptionMetadata, GridColumnSortOptionsDescriptionModule, GridColumnSummaryOptionsDescription, GridColumnSummaryOptionsDescriptionMetadata, GridColumnSummaryOptionsDescriptionModule, GridColumnWidthChangedEventArgsDescription, GridColumnWidthChangedEventArgsDescriptionMetadata, GridColumnsAutoGeneratedEventArgsDescription, GridColumnsAutoGeneratedEventArgsDescriptionMetadata, GridColumnsChangedEventArgsDescription, GridColumnsChangedEventArgsDescriptionMetadata, GridCommitCompletedEventArgsDescription, GridCommitCompletedEventArgsDescriptionMetadata, GridCustomFilterRequestedEventArgsDescription, GridCustomFilterRequestedEventArgsDescriptionMetadata, GridDataCommittedEventArgsDescription, GridDataCommittedEventArgsDescriptionMetadata, GridDataCommittingEventArgsDescription, GridDataCommittingEventArgsDescriptionMetadata, GridFilterDialogFilterChangeEventArgsDescription, GridFilterDialogFilterChangeEventArgsDescriptionMetadata, GridFilterDialogOpeningEventArgsDescription, GridFilterDialogOpeningEventArgsDescriptionMetadata, GridFilterDialogViewModelDescription, GridFilterDialogViewModelDescriptionMetadata, GridFilterDialogViewModelGroupingDescription, GridFilterDialogViewModelGroupingDescriptionMetadata, GridFilterDialogViewModelRowDescription, GridFilterDialogViewModelRowDescriptionMetadata, GridFilterExpressionsEventArgsDescription, GridFilterExpressionsEventArgsDescriptionMetadata, GridGroupDescriptionsChangedEventArgsDescription, GridGroupDescriptionsChangedEventArgsDescriptionMetadata, GridRowEditEndedEventArgsDescription, GridRowEditEndedEventArgsDescriptionMetadata, GridRowEditStartedEventArgsDescription, GridRowEditStartedEventArgsDescriptionMetadata, GridSelectedCellRangesChangedEventArgsDescription, GridSelectedCellRangesChangedEventArgsDescriptionMetadata, GridSelectedCellsChangedEventArgsDescription, GridSelectedCellsChangedEventArgsDescriptionMetadata, GridSelectedItemsChangedEventArgsDescription, GridSelectedItemsChangedEventArgsDescriptionMetadata, GridSelectedKeysChangedEventArgsDescription, GridSelectedKeysChangedEventArgsDescriptionMetadata, GridSelectionChangedEventArgsDescription, GridSelectionChangedEventArgsDescriptionMetadata, GridSizeChangedEventArgsDescription, GridSizeChangedEventArgsDescriptionMetadata, GridSortDescriptionsChangedEventArgsDescription, GridSortDescriptionsChangedEventArgsDescriptionMetadata, GridSummaryDescriptionsChangedEventArgsDescription, GridSummaryDescriptionsChangedEventArgsDescriptionMetadata, Group, GroupCollection, GroupDataDescription, GroupDataDescriptionMetadata, Guid, Guid_GuidParseThrowStyle_$type, Guid_GuidResult, Guid_GuidStyles_$type, Guid_ParseFailureKind_$type, HalfEdge, HalfEdgeSet, HashPool$2, HashSet$1, Hashtable, Header, HeaderDescription, HeaderDescriptionMetadata, HeaderRowSeparatorDescription, HeaderRowSeparatorDescriptionMetadata, HeaderRowSeparatorDescriptionModule, HeaderSeparatorDescription, HeaderSeparatorDescriptionMetadata, HeaderSeparatorDescriptionModule, HeatTileGenerator, HeatTileGeneratorDescription, HeatTileGeneratorDescriptionMetadata, HeatTileGeneratorDescriptionModule, HeatTileGeneratorWebWorker, HeatTileGeneratorWorker, HeatTileGeneratorWorkerManager, HeatTileImageCreatedEventArgs, HeatTileScaler, HierarchicalRingSeriesDescription, HierarchicalRingSeriesDescriptionMetadata, HierarchicalRingSeriesDescriptionModule, HighDensityScatterSeriesDescription, HighDensityScatterSeriesDescriptionMetadata, HighDensityScatterSeriesDescriptionModule, HighlightingInfoDescription, HighlightingInfoDescriptionMetadata, HoleDimensionsChangedEventArgsDescription, HoleDimensionsChangedEventArgsDescriptionMetadata, HorizontalAlignment, HorizontalAlignment_$type, HorizontalAnchoredCategorySeriesDescription, HorizontalAnchoredCategorySeriesDescriptionMetadata, HorizontalAnchoredCategorySeriesProxyDescriptionModule, HorizontalRangeCategorySeriesDescription, HorizontalRangeCategorySeriesDescriptionMetadata, HorizontalRangeCategorySeriesProxyDescriptionModule, HorizontalStackedSeriesBaseDescription, HorizontalStackedSeriesBaseDescriptionMetadata, HttpRequestUtil, IArrayList_$type, IArray_$type, IChartItemLegend_$type, IChartLegend_$type, IChartScaleLegend_$type, ICodeGenerationRendererTemplate_$type, ICollection$1_$type, ICollection_$type, IComparable$1_$type, IComparable_$type, IComparer$1_$type, IComparer_$type, IComponentRendererAdapter_$type, IConvertible_$type, ICredentials_$type, IDataLegendSeries_$type, IDataLegendTarget_$type, IDataLegend_$type, IDataObject_$type, IDataSeriesAdapterRule_$type, IDataSourceDataProviderUpdateNotifier_$type, IDataSourceDataProvider_$type, IDataSourceExecutionContext_$type, IDataSourceLocalDataProvider_$type, IDataSourcePage_$type, IDataSourceSchema_$type, IDataSourceSupportsCount_$type, IDataSourceSupportsIndexedAccess_$type, IDataSourceUpdateNotifier_$type, IDataSourceVirtualDataProvider_$type, IDataSource_$type, IDependentRenderer_$type, IDictionary$2_$type, IDictionary_$type, IDisposable_$type, IEasingFunction_$type, IEditableDataSource_$type, IEnumerable$1_$type, IEnumerable_$type, IEnumerator$1_$type, IEnumerator_$type, IEqualityComparer$1_$type, IEqualityComparer_$type, IEquatable$1_$type, IErrorBarCalculator_$type, IExecutionContext_$type, IExternalDataSeriesAdapter_$type, IExternalDataSource_$type, IExternalLocalDataSource_$type, IExternalVirtualDataSource_$type, IFastItemColumn$1_$type, IFastItemColumnInternal_$type, IFastItemColumnPropertyName_$type, IFastItemsSourceProvider_$type, IFastItemsSource_$type, IFilterExpression_$type, IFormatProvider_$type, IFormattable_$type, IFunctionFilterExpression_$type, IGetItemAtIndex_$type, IGrouping$2_$type, IHashPool$2_$type, IIcon_$type, IIndexedPool$1_$type, IInternalLegendOwner_$type, IKeyFrameAnimation_$type, ILegendContext_$type, ILegendOwner_$type, ILegendSeriesInternal_$type, ILegendSeries_$type, ILegendTemplateProvider_$type, IList$1_$type, IList_$type, ILiteralFilterExpression_$type, IMapRenderDeferralHandler_$type, INativeUIContainerBridge_$type, INativeUIContentBridge_$type, INativeUIElementBridge_$type, INativeUIElementFactory_$type, INativeUIGridBridge_$type, INotifyCollectionChanged_$type, INotifyPropertyChanged_$type, IOPath, IOnDemandRender_$type, IOperationFilterExpression_$type, IOrderedEnumerable$1_$type, IOverviewPlusDetailControl_$type, IOverviewPlusDetailPane_$type, IPageCandidatesSink_$type, IPermission_$type, IPool$1_$type, IPropertyReferenceFilterExpression_$type, IQueryProvider_$type, IQueryable$1_$type, IQueryable_$type, IRenderer_$type, IScaleLegendSeries_$type, ISchedulableRender_$type, IScrollerKeyboardListener_$type, IScrollerView_$type, ISectionInformation_$type, ISmartPlaceable_$type, ISummaryResult_$type, ISupportsDataChangeNotifications_$type, ISupportsExpansionChangeNotifications_$type, ITickProvider_$type, ITileGenerator_$type, ITileWorkCompletedSink_$type, ITypeDescriptionPropertyTransforms_$type, IUnknownValuePlotting_$type, IVisualData_$type, IXmlLineInfo_$type, IXmlNamespaceResolver_$type, IZoomSlider_$type, IconDescription, IconDescriptionMetadata, IconDescriptionModule, IgCollection, IgEvent, IgcButtonBridge, IgcCheckboxBridge, IgcDropdownBridge, IgcInputBridge, IgcSliderBridge, IgxAsyncCompletedEventArgs, IgxCancelEventArgs, IgxCancellingMultiScaleImageEventArgs, IgxChildContentComponent, IgxChildContentDynamicModule, IgxChildContentModule, IgxComponentRendererContainerComponent, IgxComponentRendererContainerModule, IgxContentChildCollection, IgxDVInteractivityDynamicModule, IgxDVInteractivityModule, IgxDataContext, IgxDataLegendSeriesContext, IgxDataLegendSeriesValueInfo, IgxDataLegendSummaryColumn, IgxDataSeriesCollection, IgxDataSourceDataProviderSchemaChangedEventArgs, IgxDataSourceRowExpansionChangedEventArgs, IgxDataSourceSchemaChangedEventArgs, IgxDataVisualizationLocaleCsModule, IgxDataVisualizationLocaleDaModule, IgxDataVisualizationLocaleDeModule, IgxDataVisualizationLocaleEnModule, IgxDataVisualizationLocaleEsModule, IgxDataVisualizationLocaleFrModule, IgxDataVisualizationLocaleHuModule, IgxDataVisualizationLocaleItModule, IgxDataVisualizationLocaleJaModule, IgxDataVisualizationLocaleKoModule, IgxDataVisualizationLocaleNbModule, IgxDataVisualizationLocaleNlModule, IgxDataVisualizationLocalePlModule, IgxDataVisualizationLocalePtModule, IgxDataVisualizationLocaleRoModule, IgxDataVisualizationLocaleSvModule, IgxDataVisualizationLocaleTrModule, IgxDataVisualizationLocaleZhHansModule, IgxDataVisualizationLocaleZhHantModule, IgxDateTimeFormatSpecifier, IgxDateTimeFormatSpecifierDynamicModule, IgxDateTimeFormatSpecifierModule, IgxDoubleValueChangedEventArgs, IgxDownloadingMultiScaleImageEventArgs, IgxFilterExpressionCollection, IgxFormatSpecifier, IgxFormatSpecifierCollection, IgxFormatSpecifierDynamicModule, IgxFormatSpecifierModule, IgxGetTileImageUriArgs, IgxHeatTileGenerator, IgxHeatTileGeneratorDynamicModule, IgxHeatTileGeneratorModule, IgxKeyEventArgs, IgxLocalDataSourceDynamicModule, IgxLocalDataSourceModule, IgxNumberFormatSpecifier, IgxNumberFormatSpecifierDynamicModule, IgxNumberFormatSpecifierModule, IgxObjectCollection, IgxPropertyUpdatedEventArgs, IgxProvideCalculatorEventArgs, IgxRectChangedEventArgs, IgxShapeDataSource, IgxShapeDataSourceDynamicModule, IgxShapeDataSourceModule, IgxShapeFilterRecordEventArgs, IgxShapefileRecord, IgxSimpleDefaultTooltipComponent, IgxStockChangedEventArgs, IgxStyle, IgxTemplateContentComponent, IgxTemplateContentDynamicModule, IgxTemplateContentModule, IgxTooltipContainerComponent, IgxTooltipContainerDynamicModule, IgxTooltipContainerModule, IgxTransactionState, IgxTriangulationDataSource, IgxTriangulationStatusEventArgs, IgxUploadDataCompletedEventArgs, IgxUploadStringCompletedEventArgs, Image, ImageCellInfoDescription, ImageCellInfoDescriptionMetadata, ImageColumnDescription, ImageColumnDescriptionMetadata, ImageColumnDescriptionModule, ImageTilesReadyEventArgsDescription, ImageTilesReadyEventArgsDescriptionMetadata, ImagesChangedEventArgsDescription, ImagesChangedEventArgsDescriptionMetadata, IndexOutOfRangeException, IndicatorProxyDescriptionModule, IndicatorsDescriptionModule, InputChangeEventArgsDescription, InputChangeEventArgsDescriptionMetadata, InputDescription, InputDescriptionMetadata, InputDescriptionModule, InputGroupDescription, InputGroupDescriptionMetadata, InputGroupDescriptionModule, InputGroupItemDescription, InputGroupItemDescriptionMetadata, InteractionState, InteractionState_$type, InterpolationMode, InterpolationMode_$type, InterpolationUtil, InvalidOperationException, ItemLegendDescription, ItemLegendDescriptionMetadata, ItemLegendDescriptionModule, ItemToolTipLayerDescription, ItemToolTipLayerDescriptionMetadata, ItemToolTipLayerDescriptionModule, ItemwiseStrategyBasedIndicatorDescription, ItemwiseStrategyBasedIndicatorDescriptionMetadata, IterableWrapper, IteratorWrapper, ItfConverter, JavaScriptSerializer, JsonDictionaryArray, JsonDictionaryItem, JsonDictionaryObject, JsonDictionaryParser, JsonDictionaryValue, JsonDictionaryValueType_$type, JsonWriter, Key, KeyEventArgs, KeyEventArgsDescription, KeyEventArgsDescriptionMetadata, KeyFrameAnimationDirect, KeyFrameAnimationEffectPhase_$type, KeyFrameAnimationFactory, KeyFrameAnimationFill_$type, KeyFrameAnimationPlayState_$type, KeyFrameAnimationTimeline, KeyFrameEffectEasing_$type, KeyFrameEffectTimingDirection_$type, KeyValuePair$2, Key_$type, LRUCache$2, LRUCacheItem$2, LabelAppearanceData, LabelAppearanceDataList, LabelClickEventArgsDescription, LabelClickEventArgsDescriptionMetadata, LabelCollisionInfo, LabelCollisionManager, LabelCollisionManagerCollisionMode_$type, LabelCollisionPlacementPositions_$type, LabelDescription, LabelDescriptionMetadata, LabelDescriptionModule, LambdaExpression, LastMonthExpression, LastMonthExpressionDescription, LastMonthExpressionDescriptionMetadata, LastQuarterExpression, LastQuarterExpressionDescription, LastQuarterExpressionDescriptionMetadata, LastWeekExpression, LastWeekExpressionDescription, LastWeekExpressionDescriptionMetadata, LastYearExpression, LastYearExpressionDescription, LastYearExpressionDescriptionMetadata, LeastSquaresFit, LeftClipper, LegendBaseDescription, LegendBaseDescriptionMetadata, LegendDescription, LegendDescriptionMetadata, LegendDescriptionModule, LegendItemBadgeMode, LegendItemBadgeMode_$type, LegendItemBadgeShape, LegendItemBadgeShape_$type, LegendItemHelper, LegendMouseButtonEventArgsDescription, LegendMouseButtonEventArgsDescriptionMetadata, LegendMouseEventArgsDescription, LegendMouseEventArgsDescriptionMetadata, Line, LineFragmentDescription, LineFragmentDescriptionMetadata, LineFragmentDescriptionModule, LineGeometry, LineGeometryData, LineSegment, LineSegmentData, LineSeriesDescription, LineSeriesDescriptionMetadata, LineSeriesDescriptionModule, LineVisualData, LinearContourValueResolverDescription, LinearContourValueResolverDescriptionMetadata, LinearContourValueResolverDescriptionModule, LinearGaugeCoreDescriptionModule, LinearGaugeDescription, LinearGaugeDescriptionMetadata, LinearGaugeDescriptionModule, LinearGradientBrush, LinearGradientBrushAppearanceData, LinearGraphRangeDescription, LinearGraphRangeDescriptionMetadata, LinearGraphRangeDescriptionModule, LinkedList$1, LinkedListNode$1, List$1, ListSortDirection, ListSortDirection_$type, LiteralFilterExpression, LiteralFilterExpressionDescription, LiteralFilterExpressionDescriptionMetadata, LocalDataSource, LocalDataSourceDescription, LocalDataSourceDescriptionMetadata, LocalDataSourceDescriptionModule, LocalDataSourceViewExpansionNotifier, LocalDataSourceViewUpdateNotifier, Locale, Localization, LostFocusEventArgsDescription, LostFocusEventArgsDescriptionMetadata, MapTileSource, MarkerSeriesDescription, MarkerSeriesDescriptionMetadata, MarketFacilitationIndexIndicatorDescription, MarketFacilitationIndexIndicatorDescriptionMetadata, MarketFacilitationIndexIndicatorDescriptionModule, MarshalByRefObject, MassIndexIndicatorDescription, MassIndexIndicatorDescriptionMetadata, MassIndexIndicatorDescriptionModule, Match, Matcher, MathUtil, MathUtilExtended, Matrix, MatrixTransform, MaxSummaryCalculator, MedianPriceIndicatorDescription, MedianPriceIndicatorDescriptionMetadata, MedianPriceIndicatorDescriptionModule, MemberExpression, MemoryStream, MethodCallExpression, MinSummaryCalculator, ModifierKeys, ModifierKeys_$type, MoneyFlowIndexIndicatorDescription, MoneyFlowIndexIndicatorDescriptionMetadata, MoneyFlowIndexIndicatorDescriptionModule, MouseButton, MouseButtonEventArgs, MouseButton_$type, MouseEventArgs, MovingAverageConvergenceDivergenceIndicatorDescription, MovingAverageConvergenceDivergenceIndicatorDescriptionMetadata, MovingAverageConvergenceDivergenceIndicatorDescriptionModule, MultiColumnComboBoxDescription, MultiColumnComboBoxDescriptionMetadata, MultiColumnComboBoxDescriptionModule, MultiColumnComboBoxTextChangedEventArgsDescription, MultiColumnComboBoxTextChangedEventArgsDescriptionMetadata, MultiColumnComboBoxValueChangedEventArgsDescription, MultiColumnComboBoxValueChangedEventArgsDescriptionMetadata, NamePatcher, NameTable, NameTable_Entry, NameValueCollection, NamespaceHandling_$type, NativeUI, NativeUIBuiltInEvents_$type, NativeUIBuiltInProperties_$type, NativeUIButton, NativeUIButtonClickedEventArgs, NativeUICheckbox, NativeUICheckboxChangeEventArgs, NativeUIChildren, NativeUIComponent, NativeUIComponentBuiltInType_$type, NativeUIComponentHorizontalAlignment_$type, NativeUIComponentVerticalAlignment_$type, NativeUIContainer, NativeUIContent, NativeUIDisplayDensity_$type, NativeUIDropDown, NativeUIDropDownSelectedValueChangedEventArgs, NativeUIElementBridge, NativeUIGrid, NativeUIGridHeightType_$type, NativeUIGridWidthType_$type, NativeUIInput, NativeUIInputChangingEventArgs, NativeUIInputDisplayType_$type, NativeUIInputsFactory, NativeUILabel, NativeUISlider, NativeUISliderValueChangedEventArgs, NegativeVolumeIndexIndicatorDescription, NegativeVolumeIndexIndicatorDescriptionMetadata, NegativeVolumeIndexIndicatorDescriptionModule, NetworkCredential, NewLineHandling_$type, NextMonthExpression, NextMonthExpressionDescription, NextMonthExpressionDescriptionMetadata, NextQuarterExpression, NextQuarterExpressionDescription, NextQuarterExpressionDescriptionMetadata, NextWeekExpression, NextWeekExpressionDescription, NextWeekExpressionDescriptionMetadata, NextYearExpression, NextYearExpressionDescription, NextYearExpressionDescriptionMetadata, NonBlockingStreamReader, NotImplementedException, NotSupportedException, NotifyCollectionChangedAction, NotifyCollectionChangedAction_$type, NotifyCollectionChangedEventArgs, NullReferenceException, NullStream, Nullable, Nullable$1, NumberAbbreviatorDescriptionModule, NumberFormatInfo, NumberFormatSpecifier, NumberFormatSpecifierDescription, NumberFormatSpecifierDescriptionMetadata, NumberFormatSpecifierDescriptionModule, Number_$type, Numeric, NumericAngleAxisDescription, NumericAngleAxisDescriptionMetadata, NumericAngleAxisDescriptionModule, NumericAxisBaseDescription, NumericAxisBaseDescriptionMetadata, NumericCellInfoDescription, NumericCellInfoDescriptionMetadata, NumericColumnDescription, NumericColumnDescriptionMetadata, NumericColumnDescriptionModule, NumericRadiusAxisDescription, NumericRadiusAxisDescriptionMetadata, NumericRadiusAxisDescriptionModule, NumericXAxisDescription, NumericXAxisDescriptionMetadata, NumericXAxisDescriptionModule, NumericYAxisDescription, NumericYAxisDescriptionMetadata, NumericYAxisDescriptionModule, ODataDataSourceFilterExpressionVisitor, ODataDataSourceSchema, ODataLiteralEmitter_$type, ObjectCollection, ObjectDisposedException, ObservableCollection$1, ObservableColorCollection, OffsettableWeekExpression, OffsettableWeekExpressionDescription, OffsettableWeekExpressionDescriptionMetadata, OnBalanceVolumeIndicatorDescription, OnBalanceVolumeIndicatorDescriptionMetadata, OnBalanceVolumeIndicatorDescriptionModule, OnClosedEventArgsDescription, OnClosedEventArgsDescriptionMetadata, OnCollapsedEventArgsDescription, OnCollapsedEventArgsDescriptionMetadata, OnExpandedEventArgsDescription, OnExpandedEventArgsDescriptionMetadata, OnPopupEventArgsDescription, OnPopupEventArgsDescriptionMetadata, OpenStreetMapImageryDescription, OpenStreetMapImageryDescriptionMetadata, OpenStreetMapImageryDescriptionModule, OpenStreetMapTileSource, OperationFilterExpression, OperationFilterExpressionDescription, OperationFilterExpressionDescriptionMetadata, OperatorSelectorClosingEventArgsDescription, OperatorSelectorClosingEventArgsDescriptionMetadata, OperatorSelectorOpeningEventArgsDescription, OperatorSelectorOpeningEventArgsDescriptionMetadata, OperatorSelectorValueChangedEventArgsDescription, OperatorSelectorValueChangedEventArgsDescriptionMetadata, OrdinalTimeXAxisDescription, OrdinalTimeXAxisDescriptionMetadata, OrdinalTimeXAxisDescriptionModule, OverlayProxyDescriptionModule, OverlaysDescriptionModule, PageChangedEventArgsDescription, PageChangedEventArgsDescriptionMetadata, PagePredictionEngine, PagedDataSource, PagedDataSourceDescription, PagedDataSourceDescriptionMetadata, Pair$2, Panel, ParameterExpression, Path, PathFigure, PathFigureCollection, PathFigureData, PathFigureUtil, PathGeometry, PathGeometryData, PathMarkupParser, PathMarkupToken, PathMarkupTokenType_$type, PathSegment, PathSegmentCollection, PathSegmentType, PathSegmentType_$type, PathVisualData, PenLineCap, PenLineCap_$type, PenLineJoin, PenLineJoin_$type, PercentChangeYAxisDescription, PercentChangeYAxisDescriptionMetadata, PercentChangeYAxisDescriptionModule, PercentagePriceOscillatorIndicatorDescription, PercentagePriceOscillatorIndicatorDescriptionMetadata, PercentagePriceOscillatorIndicatorDescriptionModule, PercentageVolumeOscillatorIndicatorDescription, PercentageVolumeOscillatorIndicatorDescriptionMetadata, PercentageVolumeOscillatorIndicatorDescriptionModule, PermissionSet, PermissionState, PermissionState_$type, PieChartBaseDescription, PieChartBaseDescriptionMetadata, PieChartCoreDescriptionModule, PieChartDescription, PieChartDescriptionMetadata, PieChartDescriptionModule, PieSliceDataContextDescription, PieSliceDataContextDescriptionMetadata, PieSliceOthersContextDescription, PieSliceOthersContextDescriptionMetadata, PinnedAreaSeparatorDescription, PinnedAreaSeparatorDescriptionMetadata, PinnedAreaSeparatorDescriptionModule, PlatformConstants, PlatformFormatter, PlatformKeyFrameAnimationFactory, PlatformSpecifierType_$type, PlatformUIElementPropertyAccessorFactory, PlotAreaMouseButtonEventArgsDescription, PlotAreaMouseButtonEventArgsDescriptionMetadata, PlotAreaMouseEventArgsDescription, PlotAreaMouseEventArgsDescriptionMetadata, PointCollection, PointCollectionUtil, PointComparer, PointData, PointDescription, PointSeriesDescription, PointSeriesDescriptionMetadata, PointSeriesDescriptionModule, PointTester, PointUtil, Point_$type, PolarAreaSeriesDescription, PolarAreaSeriesDescriptionMetadata, PolarAreaSeriesDescriptionModule, PolarBaseDescription, PolarBaseDescriptionMetadata, PolarLineSeriesBaseDescription, PolarLineSeriesBaseDescriptionMetadata, PolarLineSeriesDescription, PolarLineSeriesDescriptionMetadata, PolarLineSeriesDescriptionModule, PolarScatterSeriesDescription, PolarScatterSeriesDescriptionMetadata, PolarScatterSeriesDescriptionModule, PolarSplineAreaSeriesDescription, PolarSplineAreaSeriesDescriptionMetadata, PolarSplineAreaSeriesDescriptionModule, PolarSplineSeriesDescription, PolarSplineSeriesDescriptionMetadata, PolarSplineSeriesDescriptionModule, PolyBezierSegment, PolyBezierSegmentData, PolyLineSegment, PolyLineVisualData, PolySimplification, Polygon, PolygonUtil, PolygonVisualData, Polyline, PolylineSegmentData, Pool$1, PopupDescription, PopupDescriptionMetadata, PopupDescriptionModule, PortalManager, PositiveVolumeIndexIndicatorDescription, PositiveVolumeIndexIndicatorDescriptionMetadata, PositiveVolumeIndexIndicatorDescriptionModule, PredictionEnginePageCandidate, PrefixDescription, PrefixDescriptionMetadata, PrefixDescriptionModule, PriceChannelOverlayDescription, PriceChannelOverlayDescriptionMetadata, PriceChannelOverlayDescriptionModule, PriceVolumeTrendIndicatorDescription, PriceVolumeTrendIndicatorDescriptionMetadata, PriceVolumeTrendIndicatorDescriptionModule, PrimaryKeyValueDescription, PrimaryKeyValueDescriptionMetadata, PrimaryKeyValueDescriptionModule, PrimitiveAppearanceData, PrimitiveVisualData, PrimitiveVisualDataList, ProgressiveLoadStatusEventArgsDescription, ProgressiveLoadStatusEventArgsDescriptionMetadata, PromiseFactory, PromiseWrapper, PropertyChangedEventArgs, PropertyChangedEventArgs$1, PropertyEditorDataSourceDescription, PropertyEditorDataSourceDescriptionMetadata, PropertyEditorDescription, PropertyEditorDescriptionMetadata, PropertyEditorDescriptionModule, PropertyEditorDescriptionObjectDescription, PropertyEditorDescriptionObjectDescriptionMetadata, PropertyEditorPanelDescription, PropertyEditorPanelDescriptionMetadata, PropertyEditorPanelDescriptionModule, PropertyEditorPropertyDescriptionButtonClickEventArgsDescription, PropertyEditorPropertyDescriptionButtonClickEventArgsDescriptionMetadata, PropertyEditorPropertyDescriptionChangedEventArgsDescription, PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata, PropertyEditorPropertyDescriptionDescription, PropertyEditorPropertyDescriptionDescriptionMetadata, PropertyEditorPropertyDescriptionDescriptionModule, PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescription, PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescriptionMetadata, PropertyMetadata, PropertyPath, PropertyReferenceFilterExpression, PropertyReferenceFilterExpressionDescription, PropertyReferenceFilterExpressionDescriptionMetadata, PropertyUpdatedEventArgs, PropertyUpdatedEventArgsDescription, PropertyUpdatedEventArgsDescriptionMetadata, ProvideCalculatorEventArgs, ProvideCalculatorEventArgsDescription, ProvideCalculatorEventArgsDescriptionMetadata, Q1Expression, Q1ExpressionDescription, Q1ExpressionDescriptionMetadata, Q2Expression, Q2ExpressionDescription, Q2ExpressionDescriptionMetadata, Q3Expression, Q3ExpressionDescription, Q3ExpressionDescriptionMetadata, Q4Expression, Q4ExpressionDescription, Q4ExpressionDescriptionMetadata, QuadTree, QuadTreeBoundingBox, QuadTreeForceVector, QuadTreeNode, Queryable, Queue$1, RadialAreaSeriesDescription, RadialAreaSeriesDescriptionMetadata, RadialAreaSeriesDescriptionModule, RadialBaseDescription, RadialBaseDescriptionMetadata, RadialColumnSeriesDescription, RadialColumnSeriesDescriptionMetadata, RadialColumnSeriesDescriptionModule, RadialGaugeCoreDescriptionModule, RadialGaugeDescription, RadialGaugeDescriptionMetadata, RadialGaugeDescriptionModule, RadialGaugeRangeDescription, RadialGaugeRangeDescriptionMetadata, RadialGaugeRangeDescriptionModule, RadialLineSeriesDescription, RadialLineSeriesDescriptionMetadata, RadialLineSeriesDescriptionModule, RadialPieSeriesDescription, RadialPieSeriesDescriptionMetadata, RadialPieSeriesDescriptionModule, Random, RangeAreaSeriesDescription, RangeAreaSeriesDescriptionMetadata, RangeAreaSeriesDescriptionModule, RangeCategorySeriesDescription, RangeCategorySeriesDescriptionMetadata, RangeColumnSeriesDescription, RangeColumnSeriesDescriptionMetadata, RangeColumnSeriesDescriptionModule, RateOfChangeAndMomentumIndicatorDescription, RateOfChangeAndMomentumIndicatorDescriptionMetadata, RateOfChangeAndMomentumIndicatorDescriptionModule, ReactCodeBehindCodeGeneratingComponentRendererCodeEmitter, ReactMarkupCodeGeneratingComponentRendererCodeEmitter, ReadOnlyCollection$1, ReadOnlyObservableCollection$1, ReadState, ReadState_$type, RearrangedList$1, RearrangedListView, Rect, RectChangedEventArgs, RectChangedEventArgsDescription, RectChangedEventArgsDescriptionMetadata, RectData, RectDescription, RectUtil, Rectangle, RectangleGeometry, RectangleGeometryData, RectangleVisualData, RefValueChangedTarget, ReflectionUtil, RefreshCompletedEventArgsDescription, RefreshCompletedEventArgsDescriptionMetadata, Regex, RegexOptions, RegexOptions_$type, RelativeStrengthIndexIndicatorDescription, RelativeStrengthIndexIndicatorDescriptionMetadata, RelativeStrengthIndexIndicatorDescriptionModule, RemovedShiftedRowInfo, RenderRequestedEventArgsDescription, RenderRequestedEventArgsDescriptionMetadata, RenderingContext, ResponsivePhaseDescription, ResponsivePhaseDescriptionMetadata, ResponsiveStateDescription, ResponsiveStateDescriptionMetadata, ResponsiveStateEnteredEventArgsDescription, ResponsiveStateEnteredEventArgsDescriptionMetadata, ResponsiveStateEnteringEventArgsDescription, ResponsiveStateEnteringEventArgsDescriptionMetadata, ResponsiveStateExitedEventArgsDescription, ResponsiveStateExitedEventArgsDescriptionMetadata, ReverseArrayEnumerator$1, RightClipper, RingDescription, RingDescriptionMetadata, RingSeriesBaseDescription, RingSeriesBaseDescriptionMetadata, RingSeriesDescription, RingSeriesDescriptionMetadata, RingSeriesDescriptionModule, RippleDescription, RippleDescriptionMetadata, RippleDescriptionModule, RotateTransform, RowSeparatorDescription, RowSeparatorDescriptionMetadata, RowSeparatorDescriptionModule, RowSeparatorInfoDescription, RowSeparatorInfoDescriptionMetadata, SRProvider, ScaleLegendDescription, ScaleLegendDescriptionMetadata, ScaleLegendDescriptionModule, ScaleTransform, ScalerParamsDescription, ScalerParamsDescriptionMetadata, ScalerVisibleBounds, ScatterAreaSeriesDescription, ScatterAreaSeriesDescriptionMetadata, ScatterAreaSeriesDescriptionModule, ScatterBaseDescription, ScatterBaseDescriptionMetadata, ScatterContourSeriesDescription, ScatterContourSeriesDescriptionMetadata, ScatterContourSeriesDescriptionModule, ScatterLineSeriesDescription, ScatterLineSeriesDescriptionMetadata, ScatterLineSeriesDescriptionModule, ScatterPolygonSeriesDescription, ScatterPolygonSeriesDescriptionMetadata, ScatterPolygonSeriesDescriptionModule, ScatterPolylineSeriesDescription, ScatterPolylineSeriesDescriptionMetadata, ScatterPolylineSeriesDescriptionModule, ScatterSeriesDescription, ScatterSeriesDescriptionMetadata, ScatterSeriesDescriptionModule, ScatterSplineSeriesDescription, ScatterSplineSeriesDescriptionMetadata, ScatterSplineSeriesDescriptionModule, ScatterTriangulationSeriesDescription, ScatterTriangulationSeriesDescriptionMetadata, SchedulableRenderWrapper, ScrollbarStyle_$type, Scroller, ScrollerScrollingEventArgs, ScrollerView, SectionData, SectionDataStartIndexComparer, SectionDataUndisplacedStartIndexComparer, SectionFooterDescription, SectionFooterDescriptionMetadata, SectionFooterDescriptionModule, SectionHeaderCellInfoDescription, SectionHeaderCellInfoDescriptionMetadata, SectionHeaderDescription, SectionHeaderDescriptionMetadata, SectionHeaderDescriptionModule, SectionInformationDescription, SectionInformationDescriptionMetadata, SectionMap, SectionSearchData, SecurityAction, SecurityAction_$type, SeekOrigin, SegmentData, SelectAllCheckboxChangedEventArgsDescription, SelectAllCheckboxChangedEventArgsDescriptionMetadata, SelectedItemChangedEventArgsDescription, SelectedItemChangedEventArgsDescriptionMetadata, SelectedItemChangingEventArgsDescription, SelectedItemChangingEventArgsDescriptionMetadata, SelectedItemsChangedEventArgsDescription, SelectedItemsChangedEventArgsDescriptionMetadata, SelectedItemsChangingEventArgsDescription, SelectedItemsChangingEventArgsDescriptionMetadata, SelectedValueChangedEventArgsDescription, SelectedValueChangedEventArgsDescriptionMetadata, SelectionChangedEventArgsDescription, SelectionChangedEventArgsDescriptionMetadata, SeriesDescription, SeriesDescriptionMetadata, SeriesViewerDescription, SeriesViewerDescriptionMetadata, SeriesViewerManipulationEventArgsDescription, SeriesViewerManipulationEventArgsDescriptionMetadata, Shape, ShapeDataSourceDescription, ShapeDataSourceDescriptionMetadata, ShapeDataSourceDescriptionModule, ShapeFileUtil, ShapeFilterRecordEventArgs, ShapeFilterRecordEventArgsDescription, ShapeFilterRecordEventArgsDescriptionMetadata, ShapeSeriesBaseDescription, ShapeSeriesBaseDescriptionMetadata, ShapeTags, ShapeType, ShapeType_$type, ShapefileConverter, ShapefileRecord, ShapefileRecordDescription, ShapefileRecordDescriptionMetadata, SimpleCategorySeriesRule, SimpleDefaultTooltipDescriptionMetadata, SimpleDefaultTooltipExtendedDescriptionMetadata, SimpleFinancialPriceSeriesRule, SimpleScatterSeriesRule, Size, SizeData, SizeDescription, SizeScaleDescription, SizeScaleDescriptionMetadata, SizeScaleDescriptionModule, SliceClickEventArgsDescription, SliceClickEventArgsDescriptionMetadata, SliceEventArgsDescription, SliceEventArgsDescriptionMetadata, SlowStochasticOscillatorIndicatorDescription, SlowStochasticOscillatorIndicatorDescriptionMetadata, SlowStochasticOscillatorIndicatorDescriptionModule, SmartPlaceableWrapper$1, SmartPlacer, SmartPosition, SmartPosition_$type, SolidBrushAppearanceData, SortDescription, SortDescriptionCollection, SortDescriptionDescription, SortDescriptionDescriptionMetadata, SortIndicatorRenderCompletedEventArgsDescription, SortIndicatorRenderCompletedEventArgsDescriptionMetadata, SortedList$1, SpanBridge, SparklineCoreDescriptionModule, SparklineDescription, SparklineDescriptionMetadata, SparklineDescriptionModule, SpiralFlattener, SpiralTodo, SplineAreaFragmentDescription, SplineAreaFragmentDescriptionMetadata, SplineAreaFragmentDescriptionModule, SplineAreaSeriesDescription, SplineAreaSeriesDescriptionMetadata, SplineAreaSeriesDescriptionModule, SplineFragmentBaseDescription, SplineFragmentBaseDescriptionMetadata, SplineFragmentDescription, SplineFragmentDescriptionMetadata, SplineFragmentDescriptionModule, SplineSeriesBaseDescription, SplineSeriesBaseDescriptionMetadata, SplineSeriesDescription, SplineSeriesDescriptionMetadata, SplineSeriesDescriptionModule, Stack$1, StackPool$1, Stacked100AreaSeriesDescription, Stacked100AreaSeriesDescriptionMetadata, Stacked100AreaSeriesDescriptionModule, Stacked100BarSeriesDescription, Stacked100BarSeriesDescriptionMetadata, Stacked100BarSeriesDescriptionModule, Stacked100ColumnSeriesDescription, Stacked100ColumnSeriesDescriptionMetadata, Stacked100ColumnSeriesDescriptionModule, Stacked100LineSeriesDescription, Stacked100LineSeriesDescriptionMetadata, Stacked100LineSeriesDescriptionModule, Stacked100SplineAreaSeriesDescription, Stacked100SplineAreaSeriesDescriptionMetadata, Stacked100SplineAreaSeriesDescriptionModule, Stacked100SplineSeriesDescription, Stacked100SplineSeriesDescriptionMetadata, Stacked100SplineSeriesDescriptionModule, StackedAreaSeriesDescription, StackedAreaSeriesDescriptionMetadata, StackedAreaSeriesDescriptionModule, StackedBarSeriesDescription, StackedBarSeriesDescriptionMetadata, StackedBarSeriesDescriptionModule, StackedColumnSeriesDescription, StackedColumnSeriesDescriptionMetadata, StackedColumnSeriesDescriptionModule, StackedFragmentSeriesDescription, StackedFragmentSeriesDescriptionMetadata, StackedFragmentSeriesDescriptionModule, StackedLineSeriesDescription, StackedLineSeriesDescriptionMetadata, StackedLineSeriesDescriptionModule, StackedSeriesBaseDescription, StackedSeriesBaseDescriptionMetadata, StackedSeriesCreatedEventArgsDescription, StackedSeriesCreatedEventArgsDescriptionMetadata, StackedSplineAreaSeriesDescription, StackedSplineAreaSeriesDescriptionMetadata, StackedSplineAreaSeriesDescriptionModule, StackedSplineSeriesDescription, StackedSplineSeriesDescriptionMetadata, StackedSplineSeriesDescriptionModule, StandardDeviationIndicatorDescription, StandardDeviationIndicatorDescriptionMetadata, StandardDeviationIndicatorDescriptionModule, StandardLegendItems_$type, StepAreaSeriesDescription, StepAreaSeriesDescriptionMetadata, StepAreaSeriesDescriptionModule, StepLineSeriesDescription, StepLineSeriesDescriptionMetadata, StepLineSeriesDescriptionModule, StochRSIIndicatorDescription, StochRSIIndicatorDescriptionMetadata, StochRSIIndicatorDescriptionModule, StockChangedEventArgs, StockChangedEventArgsDescription, StockChangedEventArgsDescriptionMetadata, StockDataGenerator, StockDataLookup, StockDetails, StockInfo, StockPopulateEventArgsDescription, StockPopulateEventArgsDescriptionMetadata, StockPosition, StockPriceHistory, StockPricePoint, StraightNumericAxisBaseDescription, StraightNumericAxisBaseDescriptionMetadata, StrategyBasedIndicatorDescription, StrategyBasedIndicatorDescriptionMetadata, Stream, StreamReader, StreamWriter, Stretch, Stretch_$type, StringBuilder, StringComparer, StringReader, StringWriter, String_$type, Style, StyleDescription, StyleDescriptionMetadata, StyleSelectorDescription, StyleSelectorDescriptionMetadata, StyleShapeEventArgsDescription, StyleShapeEventArgsDescriptionMetadata, SubCollectionsRule, SuffixDescription, SuffixDescriptionMetadata, SumSummaryCalculator, SummaryCalculator, SummaryCellInfoDescription, SummaryCellInfoDescriptionMetadata, SummaryChangedEventArgsDescription, SummaryChangedEventArgsDescriptionMetadata, SummaryChooserDescriptionModule, SummaryDataDescription, SummaryDataDescriptionMetadata, SummaryDescription, SummaryDescriptionCollection, SummaryGroup, SummaryOperand, SummaryOperand_$type, SummaryResultDescription, SummaryResultDescriptionMetadata, SummaryRowDescription, SummaryRowDescriptionMetadata, SummaryRowRootDescription, SummaryRowRootDescriptionMetadata, SummaryRowRootDescriptionModule, SummaryRowSectionDescription, SummaryRowSectionDescriptionMetadata, SummaryRowSectionDescriptionModule, SweepDirection, SweepDirection_$type, SyncableObservableCollection$1, SyncableObservableCollection$2, SyncableObservableCollectionChangedListener_$type, SynchronizedReader, SynchronizedWriter, SystemException, TRIXIndicatorDescription, TRIXIndicatorDescriptionMetadata, TRIXIndicatorDescriptionModule, TSCodeGeneratingComponentRendererDataEmitter, TSCodeGeneratingComponentRendererHandlerEmitter, TSCodeGeneratingComponentRendererModuleEmitter, Task, Task$1, TaskCompletionSource$1, TaskFactory, TaskStatus, TaskStatus_$type, TemplateCellInfoDescription, TemplateCellInfoDescriptionMetadata, TemplateCellUpdatingEventArgsDescription, TemplateCellUpdatingEventArgsDescriptionMetadata, TemplateColumnDescription, TemplateColumnDescriptionMetadata, TemplateColumnDescriptionModule, TemplateContentDescriptionModule, TemplateContentExtendedDescriptionModule, TemplateHeaderCellInfoDescription, TemplateHeaderCellInfoDescriptionMetadata, TemplateHeaderCellUpdatingEventArgsDescription, TemplateHeaderCellUpdatingEventArgsDescriptionMetadata, TemplateHeaderDescription, TemplateHeaderDescriptionMetadata, TemplateHeaderDescriptionModule, TemplateSectionHeaderCellInfoDescription, TemplateSectionHeaderCellInfoDescriptionMetadata, TemplateSectionHeaderCellUpdatingEventArgsDescription, TemplateSectionHeaderCellUpdatingEventArgsDescriptionMetadata, TemplateSectionHeaderDescription, TemplateSectionHeaderDescriptionMetadata, TemplateSectionHeaderDescriptionModule, TextBlock, TextCellInfoDescription, TextCellInfoDescriptionMetadata, TextChangedEventArgsDescription, TextChangedEventArgsDescriptionMetadata, TextColumnDescription, TextColumnDescriptionMetadata, TextColumnDescriptionModule, TextFontMetrics, TextHeaderCellInfoDescription, TextHeaderCellInfoDescriptionMetadata, TextHeaderDescription, TextHeaderDescriptionMetadata, TextHeaderDescriptionModule, TextReader, TextReader_NullTextReader, TextWriter, TextWriter_NullTextWriter, Thickness, ThisMonthExpression, ThisMonthExpressionDescription, ThisMonthExpressionDescriptionMetadata, ThisQuarterExpression, ThisQuarterExpressionDescription, ThisQuarterExpressionDescriptionMetadata, ThisWeekExpression, ThisWeekExpressionDescription, ThisWeekExpressionDescriptionMetadata, ThisYearExpression, ThisYearExpressionDescription, ThisYearExpressionDescriptionMetadata, Thread, Tile, TileGeneratorDescription, TileGeneratorDescriptionMetadata, TileGeneratorMapImageryDescription, TileGeneratorMapImageryDescriptionMetadata, TileGeneratorMapImageryDescriptionModule, TileGeneratorTileSource, TileImageCreatedEventArgs, TileImageZoomChangingEventArgs, TilePositionComparer, TileSeriesDescription, TileSeriesDescriptionMetadata, TileSeriesDescriptionModule, TileWorkCompletedSink, TileWorkSettings, TimeAxisBaseDescription, TimeAxisBaseDescriptionMetadata, TimeAxisBreakDescription, TimeAxisBreakDescriptionMetadata, TimeAxisBreakDescriptionModule, TimeAxisIntervalDescription, TimeAxisIntervalDescriptionMetadata, TimeAxisIntervalDescriptionModule, TimeAxisLabelFormatDescription, TimeAxisLabelFormatDescriptionMetadata, TimeAxisLabelFormatDescriptionModule, TimeXAxisDescription, TimeXAxisDescriptionMetadata, TimeXAxisDescriptionModule, TodayExpression, TodayExpressionDescription, TodayExpressionDescriptionMetadata, TomorrowExpression, TomorrowExpressionDescription, TomorrowExpressionDescriptionMetadata, TooltipContainerDescriptionModule, TooltipContainerExtendedDescriptionModule, TopClipper, TouchGestureEventArgs, TouchGestureRecognizer, TouchGestureState_$type, TouchHistoryItem, TouchPointInfo, TouchVelocityReading, TouchVelocityTracker, Transaction, TransactionCommit, TransactionEvent, TransactionEvent_$type, TransactionHistory, TransactionKeyEqualityComparer, TransactionPendingState, TransactionPendingState_$type, TransactionService, TransactionState, TransactionStateDescription, TransactionStateDescriptionMetadata, TransactionType, TransactionType_$type, Transform, TransformCollection, TransformGroup, TransformMatrixHelpler, TranslateTransform, TreemapDescription, TreemapDescriptionMetadata, TreemapDescriptionModule, TreemapNodePointerEventArgsDescription, TreemapNodePointerEventArgsDescriptionMetadata, TreemapNodeStyleDescription, TreemapNodeStyleDescriptionMetadata, TreemapNodeStyleDescriptionModule, TreemapNodeStyleMappingDescription, TreemapNodeStyleMappingDescriptionMetadata, TreemapNodeStyleMappingDescriptionModule, TreemapNodeStylingEventArgsDescription, TreemapNodeStylingEventArgsDescriptionMetadata, TrendCalculators, TrendLineType, TrendLineType_$type, Triangle, TriangulationDataSourceDescription, TriangulationDataSourceDescriptionMetadata, TriangulationSource, TriangulationSourcePointRecord, TriangulationStatusEventArgs, TriangulationStatusEventArgsDescription, TriangulationStatusEventArgsDescriptionMetadata, Triangulator, TriangulatorContext, Tuple, Tuple$2, Tuple$3, Type, TypeDescriptionCleanups, TypeDescriptionContext, TypeDescriptionMetadata, TypeDescriptionPlatform, TypeDescriptionPlatform_$type, TypeDescriptionPropretyTransforms, TypeDescriptionWellKnownType, TypeDescriptionWellKnownType_$type, TypeRegistrar, TypicalPriceIndicatorDescription, TypicalPriceIndicatorDescriptionMetadata, TypicalPriceIndicatorDescriptionModule, UIElement, UIElementCollection, UIElementPropertyAccessor, UIElementPropertyAccessorFactory, UIElementPropertyId_$type, UTF8Encoding, UTF8Encoding_UTF8Decoder, UltimateOscillatorIndicatorDescription, UltimateOscillatorIndicatorDescriptionMetadata, UltimateOscillatorIndicatorDescriptionModule, UnicodeEncoding, UnknownValuePlotting, UnknownValuePlotting_$type, UnsetValue, UploadDataCompletedEventArgs, UploadDataCompletedEventArgsDescription, UploadDataCompletedEventArgsDescriptionMetadata, UploadStringCompletedEventArgs, UploadStringCompletedEventArgsDescription, UploadStringCompletedEventArgsDescriptionMetadata, Uri, UriKind, UriKind_$type, UriParser, ValueBrushScaleDescription, ValueBrushScaleDescriptionMetadata, ValueBrushScaleDescriptionModule, ValueOverlayDescription, ValueOverlayDescriptionMetadata, ValueOverlayDescriptionModule, ValueType, VerticalAlignment, VerticalAlignment_$type, VerticalAnchoredCategorySeriesDescription, VerticalAnchoredCategorySeriesDescriptionMetadata, VerticalSeparatorCellInfoDescription, VerticalSeparatorCellInfoDescriptionMetadata, VerticalStackedSeriesBaseDescription, VerticalStackedSeriesBaseDescriptionMetadata, VirtualDataSource, VirtualDataSourceDescription, VirtualDataSourceDescriptionMetadata, Visibility, Visibility_$type, VisualDataPixelScalingOptions, VoidEventArgsDescription, VoidEventArgsDescriptionMetadata, Void_$type, WPFCodeBehindCodeGeneratingComponentRendererCodeEmitter, WPFXamlCodeGeneratingComponentRendererCodeEmitter, WaterfallSeriesDescription, WaterfallSeriesDescriptionMetadata, WaterfallSeriesDescriptionModule, WeakReference, WebActivePaneEventArgsDescription, WebActivePaneEventArgsDescriptionMetadata, WebAvatarDescription, WebAvatarDescriptionMetadata, WebAvatarDescriptionModule, WebBadgeDescription, WebBadgeDescriptionMetadata, WebBadgeDescriptionModule, WebButtonBaseDescription, WebButtonBaseDescriptionMetadata, WebButtonBaseDescriptionModule, WebButtonDescription, WebButtonDescriptionMetadata, WebButtonDescriptionModule, WebCalendarBaseDescription, WebCalendarBaseDescriptionMetadata, WebCalendarBaseDescriptionModule, WebCalendarDateEventArgsDescription, WebCalendarDateEventArgsDescriptionMetadata, WebCalendarDescription, WebCalendarDescriptionMetadata, WebCalendarDescriptionModule, WebCardActionsDescription, WebCardActionsDescriptionMetadata, WebCardActionsDescriptionModule, WebCardContentDescription, WebCardContentDescriptionMetadata, WebCardContentDescriptionModule, WebCardDescription, WebCardDescriptionMetadata, WebCardDescriptionModule, WebCardHeaderDescription, WebCardHeaderDescriptionMetadata, WebCardHeaderDescriptionModule, WebCardMediaDescription, WebCardMediaDescriptionMetadata, WebCardMediaDescriptionModule, WebCheckboxBaseDescription, WebCheckboxBaseDescriptionMetadata, WebCheckboxBaseDescriptionModule, WebCheckboxDescription, WebCheckboxDescriptionMetadata, WebCheckboxDescriptionModule, WebChipDescription, WebChipDescriptionMetadata, WebChipDescriptionModule, WebCircularGradientDescription, WebCircularGradientDescriptionMetadata, WebCircularGradientDescriptionModule, WebCircularProgressDescription, WebCircularProgressDescriptionMetadata, WebCircularProgressDescriptionModule, WebClient, WebComponentBoolValueChangedEventArgsDescription, WebComponentBoolValueChangedEventArgsDescriptionMetadata, WebComponentDataValueChangedEventArgsDescription, WebComponentDataValueChangedEventArgsDescriptionMetadata, WebComponentDateValueChangedEventArgsDescription, WebComponentDateValueChangedEventArgsDescriptionMetadata, WebComponentValueChangedEventArgsDescription, WebComponentValueChangedEventArgsDescriptionMetadata, WebComponentsCodeBehindCodeGeneratingComponentRendererCodeEmitter, WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter, WebContentPaneDescription, WebContentPaneDescriptionMetadata, WebContentPaneDescriptionModule, WebDockManagerDescription, WebDockManagerDescriptionMetadata, WebDockManagerDescriptionModule, WebDockManagerLayoutDescription, WebDockManagerLayoutDescriptionMetadata, WebDockManagerLayoutDescriptionModule, WebDockManagerPaneDescription, WebDockManagerPaneDescriptionMetadata, WebDockManagerPaneDescriptionModule, WebDockManagerPointDescription, WebDockManagerPointDescriptionMetadata, WebDockManagerPointDescriptionModule, WebDockManagerResourceStringsDescription, WebDockManagerResourceStringsDescriptionMetadata, WebDockPaneActionDescription, WebDockPaneActionDescriptionMetadata, WebDockingIndicatorDescription, WebDockingIndicatorDescriptionMetadata, WebDocumentHostDescription, WebDocumentHostDescriptionMetadata, WebDocumentHostDescriptionModule, WebDropdownDescription, WebDropdownDescriptionMetadata, WebDropdownDescriptionModule, WebDropdownGroupDescription, WebDropdownGroupDescriptionMetadata, WebDropdownGroupDescriptionModule, WebDropdownHeaderDescription, WebDropdownHeaderDescriptionMetadata, WebDropdownHeaderDescriptionModule, WebDropdownItemComponentEventArgsDescription, WebDropdownItemComponentEventArgsDescriptionMetadata, WebDropdownItemDescription, WebDropdownItemDescriptionMetadata, WebDropdownItemDescriptionModule, WebExpansionPanelComponentEventArgsDescription, WebExpansionPanelComponentEventArgsDescriptionMetadata, WebExpansionPanelDescription, WebExpansionPanelDescriptionMetadata, WebExpansionPanelDescriptionModule, WebFloatPaneActionDescription, WebFloatPaneActionDescriptionMetadata, WebFloatingPaneResizeEventArgsDescription, WebFloatingPaneResizeEventArgsDescriptionMetadata, WebFloatingPaneResizeMoveEventArgsDescription, WebFloatingPaneResizeMoveEventArgsDescriptionMetadata, WebFormDataDescription, WebFormDataDescriptionMetadata, WebFormDataEventArgsDescription, WebFormDataEventArgsDescriptionMetadata, WebFormDescription, WebFormDescriptionMetadata, WebFormDescriptionModule, WebHeaderCollection, WebIconButtonDescription, WebIconButtonDescriptionMetadata, WebIconButtonDescriptionModule, WebIconDescription, WebIconDescriptionMetadata, WebIconDescriptionModule, WebInputBaseDescription, WebInputBaseDescriptionMetadata, WebInputBaseDescriptionModule, WebInputDescription, WebInputDescriptionMetadata, WebInputDescriptionModule, WebLinearProgressDescription, WebLinearProgressDescriptionMetadata, WebLinearProgressDescriptionModule, WebListDescription, WebListDescriptionMetadata, WebListDescriptionModule, WebListHeaderDescription, WebListHeaderDescriptionMetadata, WebListHeaderDescriptionModule, WebListItemDescription, WebListItemDescriptionMetadata, WebListItemDescriptionModule, WebMaskInputDescription, WebMaskInputDescriptionMetadata, WebMaskInputDescriptionModule, WebMoveFloatingPaneActionDescription, WebMoveFloatingPaneActionDescriptionMetadata, WebMoveTabActionDescription, WebMoveTabActionDescriptionMetadata, WebNavDrawerDescription, WebNavDrawerDescriptionMetadata, WebNavDrawerDescriptionModule, WebNavDrawerHeaderItemDescription, WebNavDrawerHeaderItemDescriptionMetadata, WebNavDrawerHeaderItemDescriptionModule, WebNavDrawerItemDescription, WebNavDrawerItemDescriptionMetadata, WebNavDrawerItemDescriptionModule, WebNavbarDescription, WebNavbarDescriptionMetadata, WebNavbarDescriptionModule, WebNumberEventArgsDescription, WebNumberEventArgsDescriptionMetadata, WebPaneCloseEventArgsDescription, WebPaneCloseEventArgsDescriptionMetadata, WebPaneDragActionDescription, WebPaneDragActionDescriptionMetadata, WebPaneDragEndEventArgsDescription, WebPaneDragEndEventArgsDescriptionMetadata, WebPaneDragOverEventArgsDescription, WebPaneDragOverEventArgsDescriptionMetadata, WebPaneDragStartEventArgsDescription, WebPaneDragStartEventArgsDescriptionMetadata, WebPaneHeaderConnectionEventArgsDescription, WebPaneHeaderConnectionEventArgsDescriptionMetadata, WebPaneHeaderElementDescription, WebPaneHeaderElementDescriptionMetadata, WebPanePinnedEventArgsDescription, WebPanePinnedEventArgsDescriptionMetadata, WebProgressBaseDescription, WebProgressBaseDescriptionMetadata, WebProgressBaseDescriptionModule, WebRadioDescription, WebRadioDescriptionMetadata, WebRadioDescriptionModule, WebRadioGroupDescription, WebRadioGroupDescriptionMetadata, WebRadioGroupDescriptionModule, WebRangeSliderDescription, WebRangeSliderDescriptionMetadata, WebRangeSliderDescriptionModule, WebRangeSliderValueDescription, WebRangeSliderValueDescriptionMetadata, WebRangeSliderValueEventArgsDescription, WebRangeSliderValueEventArgsDescriptionMetadata, WebRatingDescription, WebRatingDescriptionMetadata, WebRatingDescriptionModule, WebRatingSymbolDescription, WebRatingSymbolDescriptionMetadata, WebRatingSymbolDescriptionModule, WebRippleDescription, WebRippleDescriptionMetadata, WebRippleDescriptionModule, WebSliderBaseDescription, WebSliderBaseDescriptionMetadata, WebSliderBaseDescriptionModule, WebSliderDescription, WebSliderDescriptionMetadata, WebSliderDescriptionModule, WebSliderLabelDescription, WebSliderLabelDescriptionMetadata, WebSliderLabelDescriptionModule, WebSnackbarDescription, WebSnackbarDescriptionMetadata, WebSnackbarDescriptionModule, WebSplitPaneDescription, WebSplitPaneDescriptionMetadata, WebSplitPaneDescriptionModule, WebSwitchDescription, WebSwitchDescriptionMetadata, WebSwitchDescriptionModule, WebTabGroupPaneDescription, WebTabGroupPaneDescriptionMetadata, WebTabGroupPaneDescriptionModule, WebTabHeaderConnectionEventArgsDescription, WebTabHeaderConnectionEventArgsDescriptionMetadata, WebTabHeaderElementDescription, WebTabHeaderElementDescriptionMetadata, WebThemeControllerDescription, WebThemeControllerDescriptionMetadata, WebToastDescription, WebToastDescriptionMetadata, WebToastDescriptionModule, WebTreeDescription, WebTreeDescriptionMetadata, WebTreeDescriptionModule, WebTreeItemComponentEventArgsDescription, WebTreeItemComponentEventArgsDescriptionMetadata, WebTreeItemDescription, WebTreeItemDescriptionMetadata, WebTreeItemDescriptionModule, WebTreeSelectionOptionsEventArgsDescription, WebTreeSelectionOptionsEventArgsDescriptionMetadata, WebTreeSelectionOptionsEventDetailDescription, WebTreeSelectionOptionsEventDetailDescriptionMetadata, WebValueChangedEventArgsDescription, WebValueChangedEventArgsDescriptionMetadata, WeightedCloseIndicatorDescription, WeightedCloseIndicatorDescriptionMetadata, WeightedCloseIndicatorDescriptionModule, WhitespaceHandling, WhitespaceHandling_$type, WilliamsPercentRIndicatorDescription, WilliamsPercentRIndicatorDescriptionMetadata, WilliamsPercentRIndicatorDescriptionModule, WrapperExpression, WrapperExpressionDescription, WrapperExpressionDescriptionMetadata, WriteState, WriteState_$type, WriteableBitmap, XAttribute, XBaseDataType, XBaseDataType_$type, XBaseField, XContainer, XDocument, XElement, XName, XNamespace, XNode, XObject, XYChartDescription, XYChartDescriptionMetadata, XamMultiScaleImage, XamMultiScaleImageView, XamMultiScaleTileSource, XmlAttribute_$type, XmlChar, XmlConvert, XmlDocument_$type, XmlElement_$type, XmlException, XmlInputStream, XmlLinkedNode_$type, XmlNameTable, XmlNamedNodeMap_$type, XmlNamespaceManager, XmlNamespaceManager_NsDecl, XmlNamespaceManager_NsScope, XmlNamespaceScope_$type, XmlNodeList_$type, XmlNodeType, XmlNodeType_$type, XmlNode_$type, XmlParserContext, XmlParserContext_ContextItem, XmlReader, XmlResolver, XmlSpace, XmlSpace_$type, XmlStreamReader, XmlTextReader, XmlTextReader_DtdInputStateStack, XmlTextReader_DtdInputState_$type, XmlTextReader_TagName, XmlTextReader_XmlAttributeTokenInfo, XmlTextReader_XmlTokenInfo, XmlTextWriter, XmlTextWriter_StringUtil, XmlTextWriter_XmlDeclState_$type, XmlTextWriter_XmlNodeInfo, XmlUrlResolver, XmlUtils, XmlWriter, YearToDateExpression, YearToDateExpressionDescription, YearToDateExpressionDescriptionMetadata, YesterdayExpression, YesterdayExpressionDescription, YesterdayExpressionDescriptionMetadata, ZoomSliderDescription, ZoomSliderDescriptionMetadata, ZoomSliderDescriptionModule, ZoomSliderResolvingAxisValueEventArgsDescription, ZoomSliderResolvingAxisValueEventArgsDescriptionMetadata, a$, addBrushPaletteThemeEntry, addPaletteThemeEntry, addTextThemeEntry, arrayClear, arrayClear1, arrayContains, arrayCopy, arrayCopy1, arrayCopy2, arrayCopyTo, arrayFindByName, arrayGetLength, arrayGetRank, arrayGetValue, arrayIndexOf1, arrayInsert, arrayInsertRange, arrayInsertRange1, arrayLast, arrayListCreate, arrayRemoveAt, arrayRemoveItem, arrayResize, arrayShallowClone, b$, b64toUint8Array, boolCompare, boolToDecimal, boolToDouble, boolToInt16, boolToInt32, boolToInt64, boolToSingle, boolToString, boolToUInt16, boolToUInt32, boolToUInt64, boxArray$1, brushCollectionToString, brushToString, callStaticConstructors, ceil10, charMaxValue, charMinValue, colorCollectionToString, colorToString, compareTo, createGuid, d$, dateAdd, dateAddDays, dateAddHours, dateAddMinutes, dateAddMonths, dateAddSeconds, dateAddYears, dateEquals, dateFromFileTime, dateFromFileTimeUtc, dateFromMilliseconds, dateFromTicks, dateFromValues, dateGetDate, dateGetMonth, dateGetTimeOfDay, dateIsDST, dateIsLeapYear, dateKind, dateMaxValue, dateMinValue, dateNow, dateParse, dateParseExact, dateStdTimezoneOffset, dateSubtract, dateToFileTime, dateToString, dateToStringFormat, dateToday, dateTryParse, daysInMonth, decimalAdjust, defaultDVDateParse, delegateCombine, delegateRemove, endsWith1, ensureBool, ensureEnum, enumGetBox, enumToString, floor10, fromBrushCollection, fromColorCollection, fromDict, fromEn, fromEnum, fromOADate, fromPoint, fromRect, fromSize, fromSpinal, getAllPropertyNames, getBoxIfEnum, getColorStringSafe, getEn, getEnumerator, getEnumeratorObject, getInstanceType, getModifiedProps, ieeeRemainder, indexOfAny, initializePropertiesFromCss, intDivide, intSToU, intToString, intToString1, isDigit, isDigit1, isInfinity, isLetter, isLetterOrDigit, isLower, isNaN_, isNegativeInfinity, isNumber, isPoint, isPositiveInfinity, isRect, isSize, isValidProp, lastIndexOfAny, log10, logBase, markDep, markEnum, markStruct, markType, n$, netRegexToJS, nullableAdd, nullableConcat, nullableDivide, nullableEquals, nullableGreaterThan, nullableGreaterThanOrEqual, nullableIsNull, nullableLessThan, nullableLessThanOrEqual, nullableModulus, nullableMultiply, nullableNotEquals, nullableSubtract, numberToString, numberToString1, numberToString2, padLeft, padRight, parseBool, parseInt16_1, parseInt16_2, parseInt32_1, parseInt32_2, parseInt64_1, parseInt64_2, parseInt8_1, parseInt8_2, parseIntCore, parseNumber, parseNumber1, parseUInt16_1, parseUInt16_2, parseUInt32_1, parseUInt32_2, parseUInt64_1, parseUInt64_2, parseUInt8_1, parseUInt8_2, pointFromLiteral, pointToLiteral, pointToString, rectFromLiteral, rectToLiteral, rectToString, reverse, rgbToHex, round10, round10N, runOn, s$, sizeFromLiteral, sizeToLiteral, sizeToString, sleep, startsWith1, strToColor, stringCompare, stringCompare1, stringCompare2, stringCompare3, stringCompareOrdinal, stringCompareTo, stringConcat, stringContains, stringCopyToCharArray, stringCreateFromChar, stringCreateFromCharArray, stringCreateFromCharArraySlice, stringEmpty, stringEndsWith, stringEquals, stringEquals1, stringEscapeRegExp, stringFormat, stringFormat1, stringFormat2, stringInsert, stringIsDigit, stringIsNullOrEmpty, stringIsNullOrWhiteSpace, stringJoin, stringJoin1, stringRemove, stringReplace, stringSplit, stringStartsWith, stringToBrush, stringToCharArray, stringToColor, stringToLocaleLower, stringToLocaleUpper, stringToString$1, stringToString1, timeSpanDays, timeSpanFromDays, timeSpanFromHours, timeSpanFromMilliseconds, timeSpanFromMinutes, timeSpanFromSeconds, timeSpanFromTicks, timeSpanHours, timeSpanInit1, timeSpanInit2, timeSpanInit3, timeSpanMilliseconds, timeSpanMinutes, timeSpanNegate, timeSpanSeconds, timeSpanTicks, timeSpanTotalDays, timeSpanTotalHours, timeSpanTotalMilliseconds, timeSpanTotalMinutes, timeSpanTotalSeconds, toBoolean, toBrushCollection, toColorCollection, toDecimal, toDouble, toEn, toEnum, toLocalTime, toLongDateString, toLongTimeString, toNullable, toOADate, toPoint, toRect, toSize, toSpinal, toString1, toUniversalTime, trim, trimEnd, trimStart, truncate, tryParseBool, tryParseInt16_1, tryParseInt16_2, tryParseInt32_1, tryParseInt32_2, tryParseInt64_1, tryParseInt64_2, tryParseInt8_1, tryParseInt8_2, tryParseIntCore, tryParseNumber, tryParseNumber1, tryParseUInt16_1, tryParseUInt16_2, tryParseUInt32_1, tryParseUInt32_2, tryParseUInt64_1, tryParseUInt64_2, tryParseUInt8_1, tryParseUInt8_2, typeCast, typeCastObjTo$t, typeGetValue, u32BitwiseAnd, u32BitwiseOr, u32BitwiseXor, u32LS, uint8ArraytoB64, unboxArray, unicode_hack, unwrapNullable, v$, wellKnownColors, wrapNullable };