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.
- package/bundles/igniteui-angular-core.umd.js +960 -730
- package/bundles/igniteui-angular-core.umd.min.js +1 -1
- package/esm2015/lib/BlazorCodeGeneratingComponentRendererModuleEmitter.js +9 -9
- package/esm2015/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +382 -314
- package/esm2015/lib/CodeGeneratingComponentRendererDataEmitter.js +2 -2
- package/esm2015/lib/CodeGeneratingComponentRendererHandlerEmitter.js +2 -2
- package/esm2015/lib/CodeGeneratingComponentRendererModuleEmitter.js +14 -11
- package/esm2015/lib/CodeGeneratingRendererResult.js +56 -44
- package/esm2015/lib/CodeGenerationFolderTemplate.js +41 -37
- package/esm2015/lib/ComponentRendererAdapter.js +3 -0
- package/esm2015/lib/ComponentRenderer_combined.js +1 -1
- package/esm2015/lib/DescriptionSerializer.js +70 -56
- package/esm2015/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.js +24 -22
- package/esm2015/lib/StackedFragmentSeriesDescription.js +121 -121
- package/esm2015/lib/StackedFragmentSeriesDescriptionMetadata.js +1 -1
- package/esm2015/lib/TSCodeGeneratingComponentRendererModuleEmitter.js +36 -34
- package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescription.js +3 -3
- package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +3 -1
- package/esm2015/lib/WebTreeSelectionOptionsEventDetailDescription.js +36 -0
- package/esm2015/lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata.js +38 -0
- package/esm2015/public_api.js +2 -0
- package/esm5/lib/BlazorCodeGeneratingComponentRendererModuleEmitter.js +9 -9
- package/esm5/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +449 -363
- package/esm5/lib/CodeGeneratingComponentRendererDataEmitter.js +2 -2
- package/esm5/lib/CodeGeneratingComponentRendererHandlerEmitter.js +2 -2
- package/esm5/lib/CodeGeneratingComponentRendererModuleEmitter.js +18 -11
- package/esm5/lib/CodeGeneratingRendererResult.js +95 -66
- package/esm5/lib/CodeGenerationFolderTemplate.js +40 -36
- package/esm5/lib/ComponentRendererAdapter.js +3 -0
- package/esm5/lib/ComponentRenderer_combined.js +1 -1
- package/esm5/lib/DescriptionSerializer.js +70 -56
- package/esm5/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.js +24 -22
- package/esm5/lib/StackedFragmentSeriesDescription.js +120 -120
- package/esm5/lib/StackedFragmentSeriesDescriptionMetadata.js +1 -1
- package/esm5/lib/TSCodeGeneratingComponentRendererModuleEmitter.js +36 -34
- package/esm5/lib/WebTreeSelectionOptionsEventArgsDescription.js +2 -2
- package/esm5/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +3 -1
- package/esm5/lib/WebTreeSelectionOptionsEventDetailDescription.js +46 -0
- package/esm5/lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata.js +42 -0
- package/esm5/public_api.js +2 -0
- package/fesm2015/igniteui-angular-core.js +837 -658
- package/fesm5/igniteui-angular-core.js +959 -731
- package/lib/BlazorCodeGeneratingComponentRendererModuleEmitter.d.ts +3 -3
- package/lib/CodeGeneratingComponentRendererCodeEmitter_combined.d.ts +120 -114
- package/lib/CodeGeneratingComponentRendererModuleEmitter.d.ts +6 -5
- package/lib/CodeGeneratingRendererResult.d.ts +15 -12
- package/lib/DescriptionSerializer.d.ts +7 -6
- package/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.d.ts +7 -7
- package/lib/StackedFragmentSeriesDescription.d.ts +46 -46
- package/lib/TSCodeGeneratingComponentRendererModuleEmitter.d.ts +7 -7
- package/lib/WebTreeSelectionOptionsEventArgsDescription.d.ts +3 -3
- package/lib/WebTreeSelectionOptionsEventDetailDescription.d.ts +17 -0
- package/lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata.d.ts +13 -0
- package/package.json +1 -1
- 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.
|
|
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.
|
|
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
|
|
53276
|
-
return this.
|
|
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.
|
|
53292
|
-
this.
|
|
53298
|
+
if (!this.k.containsKey(a)) {
|
|
53299
|
+
this.k.addItem(a, new List$1(String_$type, 0));
|
|
53293
53300
|
}
|
|
53294
|
-
let c = this.
|
|
53301
|
+
let c = this.k.item(a);
|
|
53295
53302
|
c.add(b);
|
|
53296
53303
|
}
|
|
53297
53304
|
addImportResult(a, b) {
|
|
53298
|
-
if (!this.
|
|
53299
|
-
this.
|
|
53305
|
+
if (!this.m.containsKey(a)) {
|
|
53306
|
+
this.m.addItem(a, new List$1(CodeGeneratingImportManager.$, 0));
|
|
53300
53307
|
}
|
|
53301
|
-
let c = this.
|
|
53308
|
+
let c = this.m.item(a);
|
|
53302
53309
|
c.add(b);
|
|
53303
53310
|
}
|
|
53304
53311
|
addContainerNewFileResult(a, b) {
|
|
53305
|
-
if (!this.
|
|
53306
|
-
this.
|
|
53312
|
+
if (!this.j.containsKey(a)) {
|
|
53313
|
+
this.j.addItem(a, new List$1(String_$type, 0));
|
|
53307
53314
|
}
|
|
53308
|
-
let c = this.
|
|
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.
|
|
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.
|
|
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.
|
|
53340
|
+
if (!this.k.containsKey(a)) {
|
|
53327
53341
|
return "";
|
|
53328
53342
|
}
|
|
53329
|
-
let b = this.
|
|
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
|
-
|
|
53340
|
-
if (!this.
|
|
53353
|
+
q(a) {
|
|
53354
|
+
if (!this.m.containsKey(a)) {
|
|
53341
53355
|
return null;
|
|
53342
53356
|
}
|
|
53343
|
-
return this.
|
|
53357
|
+
return this.m.item(a);
|
|
53344
53358
|
}
|
|
53345
|
-
|
|
53346
|
-
if (!this.
|
|
53347
|
-
this.
|
|
53359
|
+
t(a) {
|
|
53360
|
+
if (!this.h.containsKey(a)) {
|
|
53361
|
+
this.h.item(a, 1);
|
|
53348
53362
|
}
|
|
53349
|
-
let b = this.
|
|
53363
|
+
let b = this.h.item(a);
|
|
53350
53364
|
let c = a + b;
|
|
53351
|
-
this.
|
|
53365
|
+
this.h.item(a, b + 1);
|
|
53352
53366
|
return c;
|
|
53353
53367
|
}
|
|
53354
|
-
|
|
53355
|
-
this.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
53397
|
+
return this.n.item(a);
|
|
53384
53398
|
}
|
|
53385
53399
|
trackDescriptionField(a, b) {
|
|
53386
|
-
this.
|
|
53400
|
+
this.l.item(a, b);
|
|
53387
53401
|
}
|
|
53388
53402
|
hasDescription(a) {
|
|
53389
|
-
return this.
|
|
53403
|
+
return this.l.containsKey(a);
|
|
53390
53404
|
}
|
|
53391
53405
|
getDescriptionField(a) {
|
|
53392
|
-
return this.
|
|
53406
|
+
return this.l.item(a);
|
|
53393
53407
|
}
|
|
53394
|
-
|
|
53408
|
+
u(a) {
|
|
53395
53409
|
let b = 0;
|
|
53396
|
-
if (!this.
|
|
53397
|
-
this.
|
|
53410
|
+
if (!this.i.containsKey(a)) {
|
|
53411
|
+
this.i.addItem(a, b);
|
|
53398
53412
|
}
|
|
53399
53413
|
else {
|
|
53400
|
-
b = this.
|
|
53414
|
+
b = this.i.item(a);
|
|
53401
53415
|
}
|
|
53402
53416
|
b++;
|
|
53403
|
-
this.
|
|
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.
|
|
54316
|
-
let p = this.m.
|
|
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
|
-
|
|
55477
|
+
p(a, b) {
|
|
55464
55478
|
let c = DescriptionTreeBuilder.createTree(a, b);
|
|
55465
55479
|
let d = new DescriptionSerializerBuilder();
|
|
55466
|
-
this.
|
|
55480
|
+
this.q(a, c, d);
|
|
55467
55481
|
return d.toString();
|
|
55468
55482
|
}
|
|
55469
|
-
|
|
55470
|
-
this.
|
|
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
|
-
|
|
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.
|
|
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.
|
|
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.
|
|
55602
|
+
this.v(a, h, k, l, w);
|
|
55579
55603
|
}
|
|
55580
55604
|
}
|
|
55581
55605
|
else {
|
|
55582
|
-
let
|
|
55583
|
-
if (
|
|
55584
|
-
|
|
55606
|
+
let aa = l.specificExternalType;
|
|
55607
|
+
if (aa == null && l.knownType == 3) {
|
|
55608
|
+
aa = "DateTime";
|
|
55585
55609
|
}
|
|
55586
|
-
if (
|
|
55587
|
-
|
|
55610
|
+
if (aa == null) {
|
|
55611
|
+
aa = "String";
|
|
55588
55612
|
}
|
|
55589
|
-
let
|
|
55590
|
-
let
|
|
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
|
-
|
|
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.
|
|
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
|
-
|
|
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.
|
|
55777
|
+
this.r(a, b, f, c);
|
|
55750
55778
|
}
|
|
55751
55779
|
c.h();
|
|
55752
55780
|
c.f("}");
|
|
55753
55781
|
}
|
|
55754
|
-
|
|
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
|
-
|
|
55788
|
+
r(a, b, c, d) {
|
|
55761
55789
|
if (c.c.toLowerCase() == "type") {
|
|
55762
55790
|
return;
|
|
55763
55791
|
}
|
|
55764
|
-
d.e("\"" + this.
|
|
55765
|
-
this.
|
|
55792
|
+
d.e("\"" + this.o(c.c) + "\": ");
|
|
55793
|
+
this.u(a, b, c, c.b, d);
|
|
55766
55794
|
}
|
|
55767
|
-
|
|
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.
|
|
55817
|
+
this.q(a, g[i], e);
|
|
55790
55818
|
}
|
|
55791
55819
|
else {
|
|
55792
|
-
this.
|
|
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.
|
|
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.
|
|
55840
|
+
this.q(a, k[m], e);
|
|
55813
55841
|
}
|
|
55814
55842
|
else {
|
|
55815
|
-
this.
|
|
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.
|
|
55855
|
+
this.s(a, "String", d, e);
|
|
55828
55856
|
break;
|
|
55829
55857
|
case 3:
|
|
55830
|
-
this.
|
|
55858
|
+
this.s(a, "DateTime", d, e);
|
|
55831
55859
|
break;
|
|
55832
55860
|
case 8:
|
|
55833
55861
|
if (c.a.specificExternalType.toLowerCase() == "string") {
|
|
55834
|
-
this.
|
|
55862
|
+
this.s(a, "String", d, e);
|
|
55835
55863
|
}
|
|
55836
55864
|
else {
|
|
55837
|
-
this.
|
|
55865
|
+
this.q(a, d, e);
|
|
55838
55866
|
}
|
|
55839
55867
|
break;
|
|
55840
55868
|
case 1:
|
|
55841
|
-
this.
|
|
55869
|
+
this.s(a, "Double", d, e);
|
|
55842
55870
|
break;
|
|
55843
55871
|
case 14:
|
|
55844
55872
|
case 12:
|
|
55845
55873
|
case 11:
|
|
55846
|
-
this.
|
|
55874
|
+
this.q(a, d, e);
|
|
55847
55875
|
break;
|
|
55848
55876
|
case 21:
|
|
55849
|
-
this.
|
|
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
|
-
|
|
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.
|
|
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.
|
|
58364
|
-
let c = this.e.
|
|
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.
|
|
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.
|
|
58628
|
+
this.k = a;
|
|
58601
58629
|
this.i = b;
|
|
58602
|
-
this.b = new CodeGeneratingCodeWriter(this.
|
|
58603
|
-
this.a = new CodeGeneratingCodeWriter(this.
|
|
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
|
-
|
|
58618
|
-
this.
|
|
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.
|
|
58658
|
+
this.l(f);
|
|
58628
58659
|
}
|
|
58629
58660
|
}
|
|
58630
58661
|
}
|
|
58631
58662
|
}
|
|
58632
|
-
this.
|
|
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
|
-
|
|
58669
|
+
n() {
|
|
58639
58670
|
}
|
|
58640
|
-
|
|
58671
|
+
l(a) {
|
|
58641
58672
|
}
|
|
58642
|
-
|
|
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.
|
|
58663
|
-
this.
|
|
58664
|
-
this.
|
|
58665
|
-
this.
|
|
58666
|
-
this.
|
|
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
|
-
|
|
58669
|
-
super.
|
|
58670
|
-
this.
|
|
58699
|
+
o() {
|
|
58700
|
+
super.o();
|
|
58701
|
+
this.s = 0;
|
|
58671
58702
|
}
|
|
58672
|
-
get
|
|
58673
|
-
switch (this.
|
|
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
|
|
58681
|
-
switch (this.
|
|
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
|
-
|
|
58689
|
-
super.
|
|
58719
|
+
l(a) {
|
|
58720
|
+
super.l(a);
|
|
58690
58721
|
if (a == "withDescriptions") {
|
|
58691
|
-
this.
|
|
58722
|
+
this.q = true;
|
|
58692
58723
|
return;
|
|
58693
58724
|
}
|
|
58694
|
-
let b = "igniteui-" + this.
|
|
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
|
-
|
|
58734
|
+
this.j.addPackageRef(b);
|
|
58735
|
+
b = "igniteui-" + this.t + "-" + b;
|
|
58703
58736
|
c = d[1];
|
|
58704
58737
|
}
|
|
58705
|
-
if (!this.
|
|
58706
|
-
this.
|
|
58738
|
+
if (!this.r.containsKey(b)) {
|
|
58739
|
+
this.r.addItem(b, new List$1(String_$type, 0));
|
|
58707
58740
|
}
|
|
58708
|
-
let e = this.
|
|
58709
|
-
if (this.
|
|
58741
|
+
let e = this.r.item(b);
|
|
58742
|
+
if (this.s > 0) {
|
|
58710
58743
|
this.d.k(",");
|
|
58711
58744
|
}
|
|
58712
|
-
this.d.j(this.
|
|
58713
|
-
e.add(this.
|
|
58714
|
-
if (this.
|
|
58715
|
-
if (this.
|
|
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.
|
|
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.
|
|
58763
|
+
this.g.addPackageImport("igniteui-" + this.t + "-core", f);
|
|
58731
58764
|
this.c.k(f + ".register(context);");
|
|
58732
58765
|
}
|
|
58733
|
-
this.
|
|
58766
|
+
this.s++;
|
|
58734
58767
|
}
|
|
58735
|
-
|
|
58736
|
-
super.
|
|
58737
|
-
for (let a of fromEnum(this.
|
|
58768
|
+
n() {
|
|
58769
|
+
super.n();
|
|
58770
|
+
for (let a of fromEnum(this.r.keys)) {
|
|
58738
58771
|
let b = a;
|
|
58739
|
-
let c = this.
|
|
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.
|
|
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.
|
|
58771
|
-
this.
|
|
58772
|
-
this.
|
|
58773
|
-
this.
|
|
58774
|
-
this.
|
|
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
|
|
58777
|
-
return this.
|
|
58809
|
+
get t() {
|
|
58810
|
+
return this.s;
|
|
58778
58811
|
}
|
|
58779
|
-
|
|
58780
|
-
super.
|
|
58781
|
-
this.
|
|
58812
|
+
o() {
|
|
58813
|
+
super.o();
|
|
58814
|
+
this.s = 0;
|
|
58782
58815
|
}
|
|
58783
|
-
get
|
|
58784
|
-
switch (this.
|
|
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
|
-
|
|
58792
|
-
super.
|
|
58793
|
-
if (a == "withDescriptions" && this.
|
|
58794
|
-
this.
|
|
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.
|
|
58806
|
-
if (this.
|
|
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.
|
|
58862
|
+
this.s++;
|
|
58828
58863
|
}
|
|
58829
|
-
|
|
58830
|
-
super.
|
|
58831
|
-
if (this.
|
|
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.
|
|
58895
|
+
this.v = 0;
|
|
58861
58896
|
}
|
|
58862
|
-
|
|
58863
|
-
super.
|
|
58897
|
+
o() {
|
|
58898
|
+
super.o();
|
|
58864
58899
|
}
|
|
58865
|
-
|
|
58866
|
-
super.
|
|
58867
|
-
if (this.
|
|
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.
|
|
58921
|
+
this.v++;
|
|
58887
58922
|
}
|
|
58888
|
-
|
|
58889
|
-
super.
|
|
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.
|
|
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.
|
|
59327
|
-
this.
|
|
59328
|
-
this.
|
|
59329
|
-
this.
|
|
59330
|
-
this.
|
|
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
|
-
|
|
59339
|
-
this.i.
|
|
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
|
-
|
|
59357
|
-
this.
|
|
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
|
-
|
|
59368
|
-
|
|
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
|
-
|
|
59371
|
-
this.
|
|
59410
|
+
get ae() {
|
|
59411
|
+
return this.x.d();
|
|
59372
59412
|
}
|
|
59373
|
-
|
|
59413
|
+
au(a) {
|
|
59414
|
+
this.x.h(a);
|
|
59374
59415
|
}
|
|
59375
|
-
|
|
59376
|
-
this.w.e();
|
|
59416
|
+
a7() {
|
|
59377
59417
|
}
|
|
59378
|
-
|
|
59418
|
+
a2(a) {
|
|
59419
|
+
this.x.e();
|
|
59379
59420
|
}
|
|
59380
59421
|
a0(a, b, c, d) {
|
|
59381
|
-
|
|
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
|
-
|
|
59429
|
+
am() {
|
|
59387
59430
|
return "null";
|
|
59388
59431
|
}
|
|
59389
|
-
|
|
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.
|
|
59437
|
+
a.c = this.y(a);
|
|
59395
59438
|
}
|
|
59396
59439
|
switch (a.b.knownType) {
|
|
59397
|
-
case 10: return this.
|
|
59440
|
+
case 10: return this.af(a);
|
|
59398
59441
|
case 7: return a.c ? "true" : "false";
|
|
59399
|
-
case 4: return this.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
59473
|
+
return this.ao(a);
|
|
59431
59474
|
}
|
|
59432
59475
|
if (a.c == null) {
|
|
59433
|
-
return this.
|
|
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.
|
|
59483
|
+
return this.aj(a);
|
|
59441
59484
|
}
|
|
59442
59485
|
else {
|
|
59443
|
-
return this.
|
|
59486
|
+
return this.am();
|
|
59444
59487
|
}
|
|
59445
59488
|
break;
|
|
59446
59489
|
case 8:
|
|
59447
59490
|
if (a.b.specificExternalType == "string") {
|
|
59448
|
-
return this.
|
|
59491
|
+
return this.ai(a);
|
|
59449
59492
|
}
|
|
59450
59493
|
if (a.a != null) {
|
|
59451
|
-
return this.
|
|
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.
|
|
59500
|
+
return this.al(a);
|
|
59458
59501
|
}
|
|
59459
59502
|
else {
|
|
59460
|
-
return this.
|
|
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.
|
|
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
|
-
|
|
59536
|
+
af(a) {
|
|
59494
59537
|
return "";
|
|
59495
59538
|
}
|
|
59496
|
-
|
|
59539
|
+
y(a) {
|
|
59497
59540
|
return a.c;
|
|
59498
59541
|
}
|
|
59499
|
-
|
|
59542
|
+
ao(a) {
|
|
59500
59543
|
if (!stringIsNullOrEmpty(a.a.e)) {
|
|
59501
59544
|
if (a.a.a) {
|
|
59502
|
-
return this.
|
|
59545
|
+
return this.ah(a);
|
|
59503
59546
|
}
|
|
59504
59547
|
else {
|
|
59505
|
-
return this.
|
|
59548
|
+
return this.an(a);
|
|
59506
59549
|
}
|
|
59507
59550
|
}
|
|
59508
|
-
return this.
|
|
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
|
-
|
|
59561
|
+
an(a) {
|
|
59519
59562
|
return "";
|
|
59520
59563
|
}
|
|
59521
|
-
|
|
59564
|
+
ah(a) {
|
|
59522
59565
|
return "";
|
|
59523
59566
|
}
|
|
59524
|
-
|
|
59567
|
+
ak(a) {
|
|
59525
59568
|
if (!stringIsNullOrEmpty(a.a.e)) {
|
|
59526
59569
|
return a.a.e;
|
|
59527
59570
|
}
|
|
59528
|
-
return this.
|
|
59571
|
+
return this.am();
|
|
59529
59572
|
}
|
|
59530
|
-
|
|
59573
|
+
ai(a) {
|
|
59531
59574
|
return a.c != null ? a.c.toString() : "";
|
|
59532
59575
|
}
|
|
59533
|
-
|
|
59534
|
-
return this.
|
|
59576
|
+
al(a) {
|
|
59577
|
+
return this.aj(a);
|
|
59535
59578
|
}
|
|
59536
|
-
|
|
59579
|
+
aj(a) {
|
|
59537
59580
|
if (!stringIsNullOrEmpty(a.a.e)) {
|
|
59538
|
-
this.
|
|
59581
|
+
this.a8(a);
|
|
59539
59582
|
return a.a.e;
|
|
59540
59583
|
}
|
|
59541
|
-
return this.
|
|
59584
|
+
return this.am();
|
|
59542
59585
|
}
|
|
59543
|
-
|
|
59586
|
+
get_r() {
|
|
59544
59587
|
return false;
|
|
59545
59588
|
}
|
|
59546
|
-
get
|
|
59547
|
-
return this.
|
|
59589
|
+
get r() {
|
|
59590
|
+
return this.get_r();
|
|
59548
59591
|
}
|
|
59549
|
-
|
|
59592
|
+
ac(a) {
|
|
59550
59593
|
let b = a.c;
|
|
59551
|
-
return ColorUtil.i(b, this.
|
|
59594
|
+
return ColorUtil.i(b, this.r);
|
|
59552
59595
|
}
|
|
59553
|
-
|
|
59596
|
+
ab(a) {
|
|
59554
59597
|
let b = a;
|
|
59555
|
-
return ColorUtil.i(b, this.
|
|
59598
|
+
return ColorUtil.i(b, this.r);
|
|
59556
59599
|
}
|
|
59557
|
-
|
|
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.
|
|
59605
|
+
return ColorUtil.i(b.color, this.r);
|
|
59563
59606
|
}
|
|
59564
|
-
|
|
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.
|
|
59612
|
+
return ColorUtil.i(b.color, this.r);
|
|
59570
59613
|
}
|
|
59571
|
-
|
|
59572
|
-
this.
|
|
59573
|
-
this.
|
|
59614
|
+
a6(a) {
|
|
59615
|
+
this.v.h(a);
|
|
59616
|
+
this.w.h(false);
|
|
59574
59617
|
}
|
|
59575
|
-
|
|
59576
|
-
let b = this.
|
|
59577
|
-
this.
|
|
59578
|
-
this.
|
|
59618
|
+
a5(a) {
|
|
59619
|
+
let b = this.ag(a);
|
|
59620
|
+
this.v.h(b);
|
|
59621
|
+
this.w.h(true);
|
|
59579
59622
|
}
|
|
59580
|
-
|
|
59581
|
-
let b = stringReplace(stringReplace(a, this.
|
|
59623
|
+
ag(a) {
|
|
59624
|
+
let b = stringReplace(stringReplace(a, this.ar, ""), "Component", "");
|
|
59582
59625
|
b = CodeGeneratingComponentRenderer.dp(b);
|
|
59583
|
-
return this.i.
|
|
59626
|
+
return this.i.u(b);
|
|
59584
59627
|
}
|
|
59585
|
-
|
|
59586
|
-
this.u.e();
|
|
59628
|
+
a3() {
|
|
59587
59629
|
this.v.e();
|
|
59630
|
+
this.w.e();
|
|
59588
59631
|
}
|
|
59589
|
-
|
|
59632
|
+
get_ar() {
|
|
59590
59633
|
return "";
|
|
59591
59634
|
}
|
|
59592
|
-
get
|
|
59593
|
-
return this.
|
|
59635
|
+
get ar() {
|
|
59636
|
+
return this.get_ar();
|
|
59594
59637
|
}
|
|
59595
|
-
get
|
|
59596
|
-
if (this.
|
|
59597
|
-
return this.
|
|
59638
|
+
get ad() {
|
|
59639
|
+
if (this.v.f > 0) {
|
|
59640
|
+
return this.v.d();
|
|
59598
59641
|
}
|
|
59599
|
-
let a = stringReplace(stringReplace(this.
|
|
59642
|
+
let a = stringReplace(stringReplace(this.ae, this.ar, ""), "Component", "");
|
|
59600
59643
|
return CodeGeneratingComponentRenderer.dp(a);
|
|
59601
59644
|
}
|
|
59602
|
-
get
|
|
59603
|
-
return this.
|
|
59645
|
+
get q() {
|
|
59646
|
+
return this.x.f == 1;
|
|
59604
59647
|
}
|
|
59605
59648
|
get l() {
|
|
59606
|
-
if (this.
|
|
59649
|
+
if (this.w.f == 0) {
|
|
59607
59650
|
return false;
|
|
59608
59651
|
}
|
|
59609
|
-
return this.
|
|
59652
|
+
return this.w.d();
|
|
59610
59653
|
}
|
|
59611
59654
|
get m() {
|
|
59612
|
-
if (this.
|
|
59655
|
+
if (this.v.f > 0) {
|
|
59613
59656
|
return true;
|
|
59614
59657
|
}
|
|
59615
59658
|
return false;
|
|
59616
59659
|
}
|
|
59617
|
-
|
|
59660
|
+
get_s() {
|
|
59618
59661
|
return true;
|
|
59619
59662
|
}
|
|
59620
|
-
get
|
|
59621
|
-
return this.
|
|
59663
|
+
get s() {
|
|
59664
|
+
return this.get_s();
|
|
59622
59665
|
}
|
|
59623
|
-
|
|
59624
|
-
this.
|
|
59666
|
+
a4() {
|
|
59667
|
+
this.v.e();
|
|
59625
59668
|
}
|
|
59626
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
59645
|
-
if (this.
|
|
59646
|
-
this.
|
|
59687
|
+
ax(a) {
|
|
59688
|
+
if (this.u.count > 0) {
|
|
59689
|
+
this.ay(this.u, a);
|
|
59647
59690
|
}
|
|
59648
59691
|
}
|
|
59649
|
-
|
|
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.
|
|
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
|
-
|
|
59709
|
+
get_s() {
|
|
59667
59710
|
return false;
|
|
59668
59711
|
}
|
|
59669
|
-
|
|
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
|
-
|
|
59727
|
+
af(a) {
|
|
59685
59728
|
if (a.b.specificExternalType == "string") {
|
|
59686
|
-
return this.
|
|
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
|
-
|
|
59702
|
-
super.
|
|
59744
|
+
au(a) {
|
|
59745
|
+
super.au(a);
|
|
59703
59746
|
this.h.k("<" + a + "");
|
|
59704
|
-
if (!this.
|
|
59705
|
-
this.
|
|
59706
|
-
if (!this.
|
|
59707
|
-
this.
|
|
59708
|
-
this.
|
|
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.
|
|
59753
|
+
this.f.k("private " + this.ae + " " + CodeGeneratingComponentRenderer.dp(this.ad) + ";");
|
|
59711
59754
|
if (!this.m) {
|
|
59712
|
-
if (this.
|
|
59713
|
-
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.
|
|
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.
|
|
59760
|
+
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + ";");
|
|
59718
59761
|
}
|
|
59719
59762
|
}
|
|
59720
59763
|
}
|
|
59721
|
-
|
|
59764
|
+
a7() {
|
|
59722
59765
|
this.h.k(">");
|
|
59723
59766
|
this.h.h();
|
|
59724
59767
|
}
|
|
59725
|
-
|
|
59768
|
+
a2(a) {
|
|
59726
59769
|
this.h.f();
|
|
59727
59770
|
this.h.k("</" + a + ">");
|
|
59728
|
-
super.
|
|
59771
|
+
super.a2(a);
|
|
59729
59772
|
}
|
|
59730
|
-
|
|
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.
|
|
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.
|
|
59746
|
-
if (!this.
|
|
59747
|
-
this.
|
|
59748
|
-
if (!this.
|
|
59749
|
-
this.
|
|
59750
|
-
this.
|
|
59751
|
-
}
|
|
59752
|
-
this.f.k("private " + this.
|
|
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.
|
|
59755
|
-
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.
|
|
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.
|
|
59802
|
+
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + ";");
|
|
59760
59803
|
}
|
|
59761
59804
|
}
|
|
59762
|
-
let e = CodeGeneratingComponentRenderer.dp(this.
|
|
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.
|
|
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.
|
|
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.
|
|
59829
|
+
this.h.j("@ref=\"" + CodeGeneratingComponentRenderer.dp(this.ap(c, true)) + "\"");
|
|
59787
59830
|
}
|
|
59788
59831
|
}
|
|
59789
|
-
|
|
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
|
-
|
|
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
|
-
|
|
59883
|
+
am() {
|
|
59804
59884
|
return "@null";
|
|
59805
59885
|
}
|
|
59806
|
-
|
|
59886
|
+
ah(a) {
|
|
59807
59887
|
return CodeGeneratingComponentRenderer.dp(CodeGeneratingComponentRenderer.dp(a.a.e));
|
|
59808
59888
|
}
|
|
59809
|
-
|
|
59889
|
+
bd(a) {
|
|
59810
59890
|
a = stringReplace(a, "-", "_");
|
|
59811
59891
|
return CodeGeneratingComponentRenderer.dq(a);
|
|
59812
59892
|
}
|
|
59813
|
-
|
|
59814
|
-
this.
|
|
59893
|
+
an(a) {
|
|
59894
|
+
this.a8(a);
|
|
59815
59895
|
return CodeGeneratingComponentRenderer.dq(a.a.e);
|
|
59816
59896
|
}
|
|
59817
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
59963
|
+
get_r() {
|
|
59884
59964
|
return true;
|
|
59885
59965
|
}
|
|
59886
|
-
|
|
59966
|
+
get_ar() {
|
|
59887
59967
|
return "Igr";
|
|
59888
59968
|
}
|
|
59889
|
-
|
|
59890
|
-
super.
|
|
59891
|
-
this.h.k("<" + this.
|
|
59969
|
+
au(a) {
|
|
59970
|
+
super.au(a);
|
|
59971
|
+
this.h.k("<" + this.bc(a) + "");
|
|
59892
59972
|
this.h.h();
|
|
59893
|
-
if (!this.
|
|
59894
|
-
this.
|
|
59895
|
-
|
|
59896
|
-
|
|
59897
|
-
|
|
59898
|
-
|
|
59899
|
-
this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.
|
|
59900
|
-
if (this.
|
|
59901
|
-
this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.
|
|
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.
|
|
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.
|
|
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
|
-
|
|
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
|
-
|
|
59918
|
-
if (!this.
|
|
59919
|
-
let a = this.
|
|
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
|
-
|
|
59928
|
-
let a = CodeGeneratingComponentRenderer.dp(stringReplace(stringReplace(this.
|
|
59929
|
-
a = this.j.
|
|
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
|
-
|
|
60012
|
+
aj(a) {
|
|
59933
60013
|
if (!stringIsNullOrEmpty(a.a.e)) {
|
|
59934
|
-
this.
|
|
59935
|
-
if (!this.
|
|
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.
|
|
60020
|
+
return this.am();
|
|
59941
60021
|
}
|
|
59942
|
-
|
|
60022
|
+
a2(a) {
|
|
59943
60023
|
this.h.f();
|
|
59944
|
-
this.h.k("</" + this.
|
|
59945
|
-
super.
|
|
60024
|
+
this.h.k("</" + this.bc(a) + ">");
|
|
60025
|
+
super.a2(a);
|
|
59946
60026
|
}
|
|
59947
|
-
|
|
60027
|
+
a0(a, b, c, d) {
|
|
59948
60028
|
let e = CodeGeneratingComponentRenderer.dp(b);
|
|
59949
|
-
let f = this.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
60068
|
+
this.h.j("ref={this." + CodeGeneratingComponentRenderer.dp(this.ap(c, true)) + "Ref}");
|
|
59989
60069
|
}
|
|
59990
60070
|
}
|
|
59991
60071
|
}
|
|
59992
|
-
|
|
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
|
-
|
|
60082
|
+
am() {
|
|
60003
60083
|
return "null";
|
|
60004
60084
|
}
|
|
60005
|
-
|
|
60085
|
+
ah(a) {
|
|
60006
60086
|
return "this." + CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
60007
60087
|
}
|
|
60008
|
-
|
|
60088
|
+
an(a) {
|
|
60009
60089
|
return "this." + CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
60010
60090
|
}
|
|
60011
|
-
|
|
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
|
-
|
|
60031
|
-
super.
|
|
60110
|
+
ay(a, b) {
|
|
60111
|
+
super.ay(a, b);
|
|
60032
60112
|
for (let c of fromEnum(a)) {
|
|
60033
|
-
b.addPackageImport("igniteui-react-" + this.
|
|
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.
|
|
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
|
-
|
|
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
|
-
|
|
60157
|
+
get_r() {
|
|
60078
60158
|
return true;
|
|
60079
60159
|
}
|
|
60080
|
-
|
|
60081
|
-
super.
|
|
60082
|
-
this.h.k("<" + this.
|
|
60083
|
-
if (!this.
|
|
60084
|
-
this.
|
|
60085
|
-
if (!this.
|
|
60086
|
-
this.
|
|
60087
|
-
this.
|
|
60088
|
-
}
|
|
60089
|
-
this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.
|
|
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.
|
|
60092
|
-
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.
|
|
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.
|
|
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
|
-
|
|
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
|
-
|
|
60186
|
+
a7() {
|
|
60107
60187
|
this.h.k(">");
|
|
60108
60188
|
this.h.h();
|
|
60109
60189
|
}
|
|
60110
|
-
|
|
60190
|
+
a2(a) {
|
|
60111
60191
|
this.h.f();
|
|
60112
|
-
this.h.k("</" + this.
|
|
60113
|
-
super.
|
|
60192
|
+
this.h.k("</" + this.bc(a) + ">");
|
|
60193
|
+
super.a2(a);
|
|
60114
60194
|
}
|
|
60115
|
-
|
|
60195
|
+
get_ar() {
|
|
60116
60196
|
return "Igc";
|
|
60117
60197
|
}
|
|
60118
|
-
|
|
60119
|
-
super.
|
|
60198
|
+
ay(a, b) {
|
|
60199
|
+
super.ay(a, b);
|
|
60120
60200
|
for (let c of fromEnum(a)) {
|
|
60121
|
-
b.addPackageImport("igniteui-webcomponents-" + this.
|
|
60201
|
+
b.addPackageImport("igniteui-webcomponents-" + this.aq, c);
|
|
60122
60202
|
}
|
|
60123
60203
|
}
|
|
60124
|
-
|
|
60204
|
+
a0(a, b, c, d) {
|
|
60125
60205
|
let e = CodeGeneratingComponentRenderer.dp(b);
|
|
60126
60206
|
if (this.n(c)) {
|
|
60127
|
-
this.
|
|
60128
|
-
if (!this.
|
|
60129
|
-
this.
|
|
60130
|
-
if (!this.
|
|
60131
|
-
this.
|
|
60132
|
-
this.
|
|
60133
|
-
}
|
|
60134
|
-
this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.
|
|
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.
|
|
60137
|
-
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
60242
|
+
this.h.j("id =\"" + this.ap(c, true) + "\"");
|
|
60163
60243
|
}
|
|
60164
60244
|
}
|
|
60165
|
-
|
|
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
|
-
|
|
60255
|
+
am() {
|
|
60176
60256
|
return "null";
|
|
60177
60257
|
}
|
|
60178
|
-
|
|
60258
|
+
ah(a) {
|
|
60179
60259
|
return CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
60180
60260
|
}
|
|
60181
|
-
|
|
60261
|
+
an(a) {
|
|
60182
60262
|
return CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
60183
60263
|
}
|
|
60184
|
-
|
|
60264
|
+
aj(a) {
|
|
60185
60265
|
if (!stringIsNullOrEmpty(a.a.e)) {
|
|
60186
|
-
this.
|
|
60187
|
-
if (!this.
|
|
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.
|
|
60272
|
+
return this.am();
|
|
60193
60273
|
}
|
|
60194
|
-
|
|
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) + "
|
|
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) + "
|
|
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) + "
|
|
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) + "
|
|
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) + "
|
|
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
|
-
|
|
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
|
-
|
|
60619
|
+
get_r() {
|
|
60537
60620
|
return true;
|
|
60538
60621
|
}
|
|
60539
|
-
|
|
60622
|
+
get_ar() {
|
|
60540
60623
|
return "Igx";
|
|
60541
60624
|
}
|
|
60542
|
-
|
|
60543
|
-
super.
|
|
60544
|
-
this.h.k("<" + this.
|
|
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
|
-
|
|
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
|
-
|
|
60650
|
+
a7() {
|
|
60553
60651
|
this.h.k(">");
|
|
60554
60652
|
this.h.h();
|
|
60555
60653
|
}
|
|
60556
|
-
|
|
60654
|
+
a2(a) {
|
|
60557
60655
|
this.h.f();
|
|
60558
|
-
this.h.k("</" + this.
|
|
60559
|
-
super.
|
|
60656
|
+
this.h.k("</" + this.bc(a) + ">");
|
|
60657
|
+
super.a2(a);
|
|
60560
60658
|
}
|
|
60561
|
-
|
|
60659
|
+
a0(a, b, c, d) {
|
|
60562
60660
|
let e = CodeGeneratingComponentRenderer.dp(b);
|
|
60563
60661
|
if (this.n(c)) {
|
|
60564
|
-
this.
|
|
60565
|
-
|
|
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.
|
|
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.
|
|
60680
|
+
this.h.j("#" + CodeGeneratingComponentRenderer.dp(this.ap(c, true)));
|
|
60578
60681
|
}
|
|
60579
60682
|
}
|
|
60580
|
-
|
|
60683
|
+
aj(a) {
|
|
60581
60684
|
if (!stringIsNullOrEmpty(a.a.e)) {
|
|
60582
|
-
this.
|
|
60685
|
+
this.a8(a);
|
|
60583
60686
|
return "this." + CodeGeneratingComponentRenderer.dp(a.a.e) + "($event)";
|
|
60584
60687
|
}
|
|
60585
|
-
return this.
|
|
60688
|
+
return this.am();
|
|
60586
60689
|
}
|
|
60587
|
-
|
|
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
|
-
|
|
60700
|
+
am() {
|
|
60598
60701
|
return "null";
|
|
60599
60702
|
}
|
|
60600
|
-
|
|
60703
|
+
ah(a) {
|
|
60601
60704
|
return CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
60602
60705
|
}
|
|
60603
|
-
|
|
60706
|
+
an(a) {
|
|
60604
60707
|
return CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
60605
60708
|
}
|
|
60606
|
-
|
|
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
|
-
|
|
61020
|
+
get_s() {
|
|
60918
61021
|
return false;
|
|
60919
61022
|
}
|
|
60920
|
-
|
|
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
|
-
|
|
60935
|
-
super.
|
|
61037
|
+
au(a) {
|
|
61038
|
+
super.au(a);
|
|
60936
61039
|
this.h.k("<ig:" + a + "");
|
|
60937
61040
|
}
|
|
60938
|
-
|
|
61041
|
+
a7() {
|
|
60939
61042
|
this.h.k(">");
|
|
60940
61043
|
this.h.h();
|
|
60941
61044
|
}
|
|
60942
|
-
|
|
61045
|
+
a2(a) {
|
|
60943
61046
|
this.h.f();
|
|
60944
61047
|
this.h.k("</ig:" + a + ">");
|
|
60945
|
-
super.
|
|
61048
|
+
super.a2(a);
|
|
60946
61049
|
}
|
|
60947
|
-
|
|
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.
|
|
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.
|
|
61070
|
+
this.h.j(this.ap(c, true));
|
|
60968
61071
|
this.h.j("\"");
|
|
60969
61072
|
}
|
|
60970
|
-
|
|
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
|
-
|
|
61083
|
+
am() {
|
|
60981
61084
|
return "{x:Null}";
|
|
60982
61085
|
}
|
|
60983
|
-
|
|
61086
|
+
ah(a) {
|
|
60984
61087
|
return "{Binding ElementName=" + a.a.e + "}";
|
|
60985
61088
|
}
|
|
60986
|
-
|
|
61089
|
+
a9(a) {
|
|
60987
61090
|
a = stringReplace(a, "-", "_");
|
|
60988
61091
|
return CodeGeneratingComponentRenderer.dq(a);
|
|
60989
61092
|
}
|
|
60990
|
-
|
|
60991
|
-
this.
|
|
60992
|
-
return "{Binding " + this.
|
|
61093
|
+
an(a) {
|
|
61094
|
+
this.a8(a);
|
|
61095
|
+
return "{Binding " + this.a9(a.a.e) + "}";
|
|
60993
61096
|
}
|
|
60994
|
-
|
|
61097
|
+
a1(a, b, c, d) {
|
|
60995
61098
|
this.h.j("<ig:");
|
|
60996
61099
|
{
|
|
60997
|
-
this.h.j(this.
|
|
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.
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
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.
|
|
61335
|
-
i.
|
|
61336
|
-
i.
|
|
61337
|
-
i.
|
|
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.
|
|
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.
|
|
61528
|
+
a.a6(this.f.item("Name").c);
|
|
61426
61529
|
}
|
|
61427
61530
|
else if (this.f.containsKey("name")) {
|
|
61428
61531
|
e = true;
|
|
61429
|
-
a.
|
|
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.
|
|
61435
|
-
if (a.
|
|
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.
|
|
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.
|
|
61550
|
+
$ret.c = a.ad;
|
|
61448
61551
|
return $ret;
|
|
61449
61552
|
})()));
|
|
61450
61553
|
}
|
|
61451
61554
|
}
|
|
61452
61555
|
}
|
|
61453
|
-
a.
|
|
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.
|
|
61564
|
+
a.a0(g, h, i, this.c);
|
|
61462
61565
|
g++;
|
|
61463
61566
|
}
|
|
61464
61567
|
}
|
|
61465
|
-
a.
|
|
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.
|
|
61576
|
+
a.a1(j, k, l, this.c);
|
|
61474
61577
|
j++;
|
|
61475
61578
|
}
|
|
61476
61579
|
}
|
|
61477
|
-
a.
|
|
61580
|
+
a.a2(c);
|
|
61478
61581
|
if (e) {
|
|
61479
|
-
a.
|
|
61582
|
+
a.a4();
|
|
61480
61583
|
}
|
|
61481
61584
|
else {
|
|
61482
61585
|
if (f) {
|
|
61483
|
-
a.
|
|
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
|
-
|
|
62669
|
-
|
|
62670
|
-
|
|
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 =
|
|
62675
|
-
|
|
62676
|
-
|
|
62677
|
-
|
|
62678
|
-
|
|
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
|
|
62681
|
-
|
|
62682
|
-
this.c._inner[
|
|
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
|
|
62685
|
-
for (let
|
|
62686
|
-
let
|
|
62687
|
-
for (let
|
|
62688
|
-
let
|
|
62689
|
-
let
|
|
62690
|
-
|
|
62691
|
-
this.c._inner[
|
|
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
|
|
62695
|
-
for (let
|
|
62696
|
-
let
|
|
62697
|
-
for (let
|
|
62698
|
-
let
|
|
62699
|
-
|
|
62700
|
-
this.c._inner[
|
|
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
|
|
62704
|
-
let
|
|
62705
|
-
let
|
|
62706
|
-
for (let
|
|
62707
|
-
if (stringStartsWith(
|
|
62708
|
-
|
|
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(
|
|
62712
|
-
this.c.add(
|
|
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.
|
|
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.
|
|
108386
|
-
this.
|
|
108387
|
-
this.
|
|
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.
|
|
108393
|
-
this.
|
|
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.
|
|
108422
|
-
this.
|
|
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.
|
|
108428
|
-
this.
|
|
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.
|
|
108442
|
-
this.
|
|
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.
|
|
108558
|
+
this.b2 = null;
|
|
108559
|
+
this.b3 = null;
|
|
108452
108560
|
this.b1 = null;
|
|
108453
|
-
this.
|
|
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.
|
|
108461
|
-
this.
|
|
108462
|
-
this.
|
|
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.
|
|
108578
|
+
return this.b6;
|
|
108472
108579
|
}
|
|
108473
108580
|
set dataSourceRef(a) {
|
|
108474
|
-
this.
|
|
108581
|
+
this.b6 = a;
|
|
108475
108582
|
this.e("DataSourceRef");
|
|
108476
108583
|
}
|
|
108477
108584
|
get brush() {
|
|
108478
|
-
return this.
|
|
108585
|
+
return this.b5;
|
|
108479
108586
|
}
|
|
108480
108587
|
set brush(a) {
|
|
108481
|
-
this.
|
|
108588
|
+
this.b5 = a;
|
|
108482
108589
|
this.e("Brush");
|
|
108483
108590
|
}
|
|
108484
108591
|
get actualBrush() {
|
|
108485
|
-
return this.
|
|
108592
|
+
return this.bn;
|
|
108486
108593
|
}
|
|
108487
108594
|
set actualBrush(a) {
|
|
108488
|
-
this.
|
|
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.
|
|
108627
|
+
return this.cl;
|
|
108521
108628
|
}
|
|
108522
108629
|
set shadowColor(a) {
|
|
108523
|
-
this.
|
|
108630
|
+
this.cl = a;
|
|
108524
108631
|
this.e("ShadowColor");
|
|
108525
108632
|
}
|
|
108526
108633
|
get actualShadowColor() {
|
|
108527
|
-
return this.
|
|
108634
|
+
return this.bz;
|
|
108528
108635
|
}
|
|
108529
108636
|
set actualShadowColor(a) {
|
|
108530
|
-
this.
|
|
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.
|
|
108683
|
+
return this.b9;
|
|
108577
108684
|
}
|
|
108578
108685
|
set legendItemBadgeTemplateRef(a) {
|
|
108579
|
-
this.
|
|
108686
|
+
this.b9 = a;
|
|
108580
108687
|
this.e("LegendItemBadgeTemplateRef");
|
|
108581
108688
|
}
|
|
108582
108689
|
get actualLegendItemBadgeTemplateRef() {
|
|
108583
|
-
return this.
|
|
108690
|
+
return this.bq;
|
|
108584
108691
|
}
|
|
108585
108692
|
set actualLegendItemBadgeTemplateRef(a) {
|
|
108586
|
-
this.
|
|
108693
|
+
this.bq = a;
|
|
108587
108694
|
this.e("ActualLegendItemBadgeTemplateRef");
|
|
108588
108695
|
}
|
|
108589
108696
|
get legendItemTemplateRef() {
|
|
108590
|
-
return this.
|
|
108697
|
+
return this.ca;
|
|
108591
108698
|
}
|
|
108592
108699
|
set legendItemTemplateRef(a) {
|
|
108593
|
-
this.
|
|
108700
|
+
this.ca = a;
|
|
108594
108701
|
this.e("LegendItemTemplateRef");
|
|
108595
108702
|
}
|
|
108596
108703
|
get actualLegendItemTemplateRef() {
|
|
108597
|
-
return this.
|
|
108704
|
+
return this.br;
|
|
108598
108705
|
}
|
|
108599
108706
|
set actualLegendItemTemplateRef(a) {
|
|
108600
|
-
this.
|
|
108707
|
+
this.br = a;
|
|
108601
108708
|
this.e("ActualLegendItemTemplateRef");
|
|
108602
108709
|
}
|
|
108603
108710
|
get legendItemVisibility() {
|
|
108604
|
-
return this.
|
|
108711
|
+
return this.cb;
|
|
108605
108712
|
}
|
|
108606
108713
|
set legendItemVisibility(a) {
|
|
108607
|
-
this.
|
|
108714
|
+
this.cb = a;
|
|
108608
108715
|
this.e("LegendItemVisibility");
|
|
108609
108716
|
}
|
|
108610
108717
|
get actualLegendItemVisibility() {
|
|
108611
|
-
return this.
|
|
108718
|
+
return this.bs;
|
|
108612
108719
|
}
|
|
108613
108720
|
set actualLegendItemVisibility(a) {
|
|
108614
|
-
this.
|
|
108721
|
+
this.bs = a;
|
|
108615
108722
|
this.e("ActualLegendItemVisibility");
|
|
108616
108723
|
}
|
|
108617
108724
|
get legendItemBadgeShape() {
|
|
108618
|
-
return this.
|
|
108725
|
+
return this.b8;
|
|
108619
108726
|
}
|
|
108620
108727
|
set legendItemBadgeShape(a) {
|
|
108621
|
-
this.
|
|
108728
|
+
this.b8 = a;
|
|
108622
108729
|
this.e("LegendItemBadgeShape");
|
|
108623
108730
|
}
|
|
108624
108731
|
get legendItemBadgeMode() {
|
|
108625
|
-
return this.
|
|
108732
|
+
return this.b7;
|
|
108626
108733
|
}
|
|
108627
108734
|
set legendItemBadgeMode(a) {
|
|
108628
|
-
this.
|
|
108735
|
+
this.b7 = a;
|
|
108629
108736
|
this.e("LegendItemBadgeMode");
|
|
108630
108737
|
}
|
|
108631
108738
|
get actualLegendItemBadgeShape() {
|
|
108632
|
-
return this.
|
|
108739
|
+
return this.bp;
|
|
108633
108740
|
}
|
|
108634
108741
|
set actualLegendItemBadgeShape(a) {
|
|
108635
|
-
this.
|
|
108742
|
+
this.bp = a;
|
|
108636
108743
|
this.e("ActualLegendItemBadgeShape");
|
|
108637
108744
|
}
|
|
108638
108745
|
get actualLegendItemBadgeMode() {
|
|
108639
|
-
return this.
|
|
108746
|
+
return this.bo;
|
|
108640
108747
|
}
|
|
108641
108748
|
set actualLegendItemBadgeMode(a) {
|
|
108642
|
-
this.
|
|
108749
|
+
this.bo = a;
|
|
108643
108750
|
this.e("ActualLegendItemBadgeMode");
|
|
108644
108751
|
}
|
|
108645
108752
|
get markerBrush() {
|
|
108646
|
-
return this.
|
|
108753
|
+
return this.cc;
|
|
108647
108754
|
}
|
|
108648
108755
|
set markerBrush(a) {
|
|
108649
|
-
this.
|
|
108756
|
+
this.cc = a;
|
|
108650
108757
|
this.e("MarkerBrush");
|
|
108651
108758
|
}
|
|
108652
108759
|
get actualMarkerBrush() {
|
|
108653
|
-
return this.
|
|
108760
|
+
return this.bt;
|
|
108654
108761
|
}
|
|
108655
108762
|
set actualMarkerBrush(a) {
|
|
108656
|
-
this.
|
|
108763
|
+
this.bt = a;
|
|
108657
108764
|
this.e("ActualMarkerBrush");
|
|
108658
108765
|
}
|
|
108659
108766
|
get markerOutline() {
|
|
108660
|
-
return this.
|
|
108767
|
+
return this.cd;
|
|
108661
108768
|
}
|
|
108662
108769
|
set markerOutline(a) {
|
|
108663
|
-
this.
|
|
108770
|
+
this.cd = a;
|
|
108664
108771
|
this.e("MarkerOutline");
|
|
108665
108772
|
}
|
|
108666
108773
|
get actualMarkerOutline() {
|
|
108667
|
-
return this.
|
|
108774
|
+
return this.bu;
|
|
108668
108775
|
}
|
|
108669
108776
|
set actualMarkerOutline(a) {
|
|
108670
|
-
this.
|
|
108777
|
+
this.bu = a;
|
|
108671
108778
|
this.e("ActualMarkerOutline");
|
|
108672
108779
|
}
|
|
108673
108780
|
get markerTemplateRef() {
|
|
108674
|
-
return this.
|
|
108781
|
+
return this.ce;
|
|
108675
108782
|
}
|
|
108676
108783
|
set markerTemplateRef(a) {
|
|
108677
|
-
this.
|
|
108784
|
+
this.ce = a;
|
|
108678
108785
|
this.e("MarkerTemplateRef");
|
|
108679
108786
|
}
|
|
108680
108787
|
get actualMarkerTemplateRef() {
|
|
108681
|
-
return this.
|
|
108788
|
+
return this.bv;
|
|
108682
108789
|
}
|
|
108683
108790
|
set actualMarkerTemplateRef(a) {
|
|
108684
|
-
this.
|
|
108791
|
+
this.bv = a;
|
|
108685
108792
|
this.e("ActualMarkerTemplateRef");
|
|
108686
108793
|
}
|
|
108687
108794
|
get markerType() {
|
|
108688
|
-
return this.
|
|
108795
|
+
return this.cf;
|
|
108689
108796
|
}
|
|
108690
108797
|
set markerType(a) {
|
|
108691
|
-
this.
|
|
108798
|
+
this.cf = a;
|
|
108692
108799
|
this.e("MarkerType");
|
|
108693
108800
|
}
|
|
108694
108801
|
get actualMarkerType() {
|
|
108695
|
-
return this.
|
|
108802
|
+
return this.bw;
|
|
108696
108803
|
}
|
|
108697
108804
|
set actualMarkerType(a) {
|
|
108698
|
-
this.
|
|
108805
|
+
this.bw = a;
|
|
108699
108806
|
this.e("ActualMarkerType");
|
|
108700
108807
|
}
|
|
108701
108808
|
get name() {
|
|
108702
|
-
return this.
|
|
108809
|
+
return this.cg;
|
|
108703
108810
|
}
|
|
108704
108811
|
set name(a) {
|
|
108705
|
-
this.
|
|
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.
|
|
108830
|
+
return this.ch;
|
|
108724
108831
|
}
|
|
108725
108832
|
set outline(a) {
|
|
108726
|
-
this.
|
|
108833
|
+
this.ch = a;
|
|
108727
108834
|
this.e("Outline");
|
|
108728
108835
|
}
|
|
108729
108836
|
get actualOutline() {
|
|
108730
|
-
return this.
|
|
108837
|
+
return this.bx;
|
|
108731
108838
|
}
|
|
108732
108839
|
set actualOutline(a) {
|
|
108733
|
-
this.
|
|
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.
|
|
108872
|
+
return this.ci;
|
|
108766
108873
|
}
|
|
108767
108874
|
set outlineMode(a) {
|
|
108768
|
-
this.
|
|
108875
|
+
this.ci = a;
|
|
108769
108876
|
this.e("OutlineMode");
|
|
108770
108877
|
}
|
|
108771
108878
|
get actualOutlineMode() {
|
|
108772
|
-
return this.
|
|
108879
|
+
return this.by;
|
|
108773
108880
|
}
|
|
108774
108881
|
set actualOutlineMode(a) {
|
|
108775
|
-
this.
|
|
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
|
|
108863
|
-
return this.
|
|
108969
|
+
get title() {
|
|
108970
|
+
return this.bl;
|
|
108864
108971
|
}
|
|
108865
|
-
set
|
|
108866
|
-
this.
|
|
108867
|
-
this.e("
|
|
108972
|
+
set title(a) {
|
|
108973
|
+
this.bl = a;
|
|
108974
|
+
this.e("Title");
|
|
108868
108975
|
}
|
|
108869
108976
|
get transitionEasingFunctionRef() {
|
|
108870
|
-
return this.
|
|
108977
|
+
return this.cm;
|
|
108871
108978
|
}
|
|
108872
108979
|
set transitionEasingFunctionRef(a) {
|
|
108873
|
-
this.
|
|
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.
|
|
108998
|
+
return this.cn;
|
|
108892
108999
|
}
|
|
108893
109000
|
set transitionInEasingFunctionRef(a) {
|
|
108894
|
-
this.
|
|
109001
|
+
this.cn = a;
|
|
108895
109002
|
this.e("TransitionInEasingFunctionRef");
|
|
108896
109003
|
}
|
|
108897
109004
|
get transitionInMode() {
|
|
108898
|
-
return this.
|
|
109005
|
+
return this.co;
|
|
108899
109006
|
}
|
|
108900
109007
|
set transitionInMode(a) {
|
|
108901
|
-
this.
|
|
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.
|
|
109019
|
+
return this.cp;
|
|
108913
109020
|
}
|
|
108914
109021
|
set transitionInSpeedType(a) {
|
|
108915
|
-
this.
|
|
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.
|
|
109040
|
+
return this.b2;
|
|
108934
109041
|
}
|
|
108935
109042
|
set actualTransitionInMode(a) {
|
|
108936
|
-
this.
|
|
109043
|
+
this.b2 = a;
|
|
108937
109044
|
this.e("ActualTransitionInMode");
|
|
108938
109045
|
}
|
|
108939
109046
|
get actualTransitionInSpeedType() {
|
|
108940
|
-
return this.
|
|
109047
|
+
return this.b3;
|
|
108941
109048
|
}
|
|
108942
109049
|
set actualTransitionInSpeedType(a) {
|
|
108943
|
-
this.
|
|
109050
|
+
this.b3 = a;
|
|
108944
109051
|
this.e("ActualTransitionInSpeedType");
|
|
108945
109052
|
}
|
|
108946
109053
|
get actualTransitionInEasingFunctionRef() {
|
|
108947
|
-
return this.
|
|
109054
|
+
return this.b1;
|
|
108948
109055
|
}
|
|
108949
109056
|
set actualTransitionInEasingFunctionRef(a) {
|
|
108950
|
-
this.
|
|
109057
|
+
this.b1 = a;
|
|
108951
109058
|
this.e("ActualTransitionInEasingFunctionRef");
|
|
108952
109059
|
}
|
|
108953
109060
|
get actualTransitionEasingFunctionRef() {
|
|
108954
|
-
return this.
|
|
109061
|
+
return this.b0;
|
|
108955
109062
|
}
|
|
108956
109063
|
set actualTransitionEasingFunctionRef(a) {
|
|
108957
|
-
this.
|
|
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.
|
|
109075
|
+
return this.cs;
|
|
108969
109076
|
}
|
|
108970
109077
|
set valueMemberPath(a) {
|
|
108971
|
-
this.
|
|
109078
|
+
this.cs = a;
|
|
108972
109079
|
this.e("ValueMemberPath");
|
|
108973
109080
|
}
|
|
108974
109081
|
get valueMemberAsLegendLabel() {
|
|
108975
|
-
return this.
|
|
109082
|
+
return this.cq;
|
|
108976
109083
|
}
|
|
108977
109084
|
set valueMemberAsLegendLabel(a) {
|
|
108978
|
-
this.
|
|
109085
|
+
this.cq = a;
|
|
108979
109086
|
this.e("ValueMemberAsLegendLabel");
|
|
108980
109087
|
}
|
|
108981
109088
|
get valueMemberAsLegendUnit() {
|
|
108982
|
-
return this.
|
|
109089
|
+
return this.cr;
|
|
108983
109090
|
}
|
|
108984
109091
|
set valueMemberAsLegendUnit(a) {
|
|
108985
|
-
this.
|
|
109092
|
+
this.cr = a;
|
|
108986
109093
|
this.e("ValueMemberAsLegendUnit");
|
|
108987
109094
|
}
|
|
108988
109095
|
get visibility() {
|
|
108989
|
-
return this.
|
|
109096
|
+
return this.ct;
|
|
108990
109097
|
}
|
|
108991
109098
|
set visibility(a) {
|
|
108992
|
-
this.
|
|
109099
|
+
this.ct = a;
|
|
108993
109100
|
this.e("Visibility");
|
|
108994
109101
|
}
|
|
108995
109102
|
get actualVisibility() {
|
|
108996
|
-
return this.
|
|
109103
|
+
return this.b4;
|
|
108997
109104
|
}
|
|
108998
109105
|
set actualVisibility(a) {
|
|
108999
|
-
this.
|
|
109106
|
+
this.b4 = a;
|
|
109000
109107
|
this.e("ActualVisibility");
|
|
109001
109108
|
}
|
|
109002
109109
|
get parentOrLocalBrush() {
|
|
109003
|
-
return this.
|
|
109110
|
+
return this.cj;
|
|
109004
109111
|
}
|
|
109005
109112
|
set parentOrLocalBrush(a) {
|
|
109006
|
-
this.
|
|
109113
|
+
this.cj = a;
|
|
109007
109114
|
this.e("ParentOrLocalBrush");
|
|
109008
109115
|
}
|
|
109009
109116
|
get propertyUpdatedRef() {
|
|
109010
|
-
return this.
|
|
109117
|
+
return this.ck;
|
|
109011
109118
|
}
|
|
109012
109119
|
set propertyUpdatedRef(a) {
|
|
109013
|
-
this.
|
|
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("
|
|
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
|
|
147248
|
-
class
|
|
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 "
|
|
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("
|
|
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 };
|