igniteui-angular-core 13.2.0-beta.3 → 14.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-angular-core.umd.js +1073 -807
- package/bundles/igniteui-angular-core.umd.min.js +1 -1
- package/esm2015/lib/BlazorCodeGeneratingComponentRendererModuleEmitter.js +9 -9
- package/esm2015/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +391 -322
- 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/DataGridPagerDescriptionModule.js +2 -0
- package/esm2015/lib/DescriptionSerializer.js +70 -56
- package/esm2015/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.js +24 -22
- package/esm2015/lib/FinancialChartDescriptionModule.js +2 -0
- package/esm2015/lib/IgcSliderBridge.js +38 -12
- package/esm2015/lib/NativeUIButton.js +2 -1
- package/esm2015/lib/NativeUICheckbox.js +2 -1
- package/esm2015/lib/NativeUIDropDown.js +2 -1
- package/esm2015/lib/NativeUIInput.js +2 -1
- package/esm2015/lib/NativeUIInputsFactory.js +1 -0
- package/esm2015/lib/NativeUISlider.js +26 -11
- package/esm2015/lib/PropertyEditorPropertyDescriptionChangedEventArgsDescription.js +8 -0
- package/esm2015/lib/PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata.js +1 -0
- package/esm2015/lib/StackedFragmentSeriesDescription.js +121 -121
- package/esm2015/lib/StackedFragmentSeriesDescriptionMetadata.js +1 -1
- package/esm2015/lib/TSCodeGeneratingComponentRendererModuleEmitter.js +36 -34
- package/esm2015/lib/WebDropdownGroupDescription.js +2 -10
- package/esm2015/lib/WebDropdownGroupDescriptionMetadata.js +0 -3
- package/esm2015/lib/WebTreeDescriptionModule.js +0 -4
- package/esm2015/lib/WebTreeItemDescription.js +14 -22
- package/esm2015/lib/WebTreeItemDescriptionMetadata.js +1 -2
- 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 +458 -371
- 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/DataGridPagerDescriptionModule.js +2 -0
- package/esm5/lib/DescriptionSerializer.js +70 -56
- package/esm5/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.js +24 -22
- package/esm5/lib/FinancialChartDescriptionModule.js +2 -0
- package/esm5/lib/IgcSliderBridge.js +38 -12
- package/esm5/lib/NativeUIButton.js +2 -1
- package/esm5/lib/NativeUICheckbox.js +2 -1
- package/esm5/lib/NativeUIDropDown.js +2 -1
- package/esm5/lib/NativeUIInput.js +2 -1
- package/esm5/lib/NativeUIInputsFactory.js +1 -0
- package/esm5/lib/NativeUISlider.js +25 -6
- package/esm5/lib/PropertyEditorPropertyDescriptionChangedEventArgsDescription.js +14 -1
- package/esm5/lib/PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata.js +1 -0
- package/esm5/lib/StackedFragmentSeriesDescription.js +120 -120
- package/esm5/lib/StackedFragmentSeriesDescriptionMetadata.js +1 -1
- package/esm5/lib/TSCodeGeneratingComponentRendererModuleEmitter.js +36 -34
- package/esm5/lib/WebDropdownGroupDescription.js +1 -13
- package/esm5/lib/WebDropdownGroupDescriptionMetadata.js +0 -3
- package/esm5/lib/WebTreeDescriptionModule.js +0 -4
- package/esm5/lib/WebTreeItemDescription.js +13 -25
- package/esm5/lib/WebTreeItemDescriptionMetadata.js +1 -2
- 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 +947 -733
- package/fesm5/igniteui-angular-core.js +1072 -808
- 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/IgcSliderBridge.d.ts +7 -3
- package/lib/NativeUISlider.d.ts +9 -6
- package/lib/PropertyEditorPropertyDescriptionChangedEventArgsDescription.d.ts +3 -0
- package/lib/StackedFragmentSeriesDescription.d.ts +46 -46
- package/lib/TSCodeGeneratingComponentRendererModuleEmitter.d.ts +7 -7
- package/lib/WebDropdownGroupDescription.d.ts +0 -4
- package/lib/WebTreeItemDescription.d.ts +6 -9
- package/lib/WebTreeSelectionOptionsEventArgsDescription.d.ts +3 -3
- package/lib/WebTreeSelectionOptionsEventDetailDescription.d.ts +17 -0
- package/lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata.d.ts +13 -0
- package/package.json +4 -4
- package/public_api.d.ts +2 -0
|
@@ -27188,12 +27188,13 @@ let NativeUICheckbox = /*@__PURE__*/ (() => {
|
|
|
27188
27188
|
return this.ap;
|
|
27189
27189
|
}
|
|
27190
27190
|
set aq(a) {
|
|
27191
|
+
let b = this.ap;
|
|
27191
27192
|
this.ap = a;
|
|
27192
27193
|
if (this.ap != null) {
|
|
27193
27194
|
this.w(2, this.ap);
|
|
27194
27195
|
}
|
|
27195
27196
|
else {
|
|
27196
|
-
this.ab(2,
|
|
27197
|
+
this.ab(2, b);
|
|
27197
27198
|
}
|
|
27198
27199
|
}
|
|
27199
27200
|
}
|
|
@@ -27248,12 +27249,13 @@ let NativeUIButton = /*@__PURE__*/ (() => {
|
|
|
27248
27249
|
return this.ap;
|
|
27249
27250
|
}
|
|
27250
27251
|
set aq(a) {
|
|
27252
|
+
let b = this.ap;
|
|
27251
27253
|
this.ap = a;
|
|
27252
27254
|
if (this.ap != null) {
|
|
27253
27255
|
this.w(1, this.ap);
|
|
27254
27256
|
}
|
|
27255
27257
|
else {
|
|
27256
|
-
this.ab(1,
|
|
27258
|
+
this.ab(1, b);
|
|
27257
27259
|
}
|
|
27258
27260
|
}
|
|
27259
27261
|
}
|
|
@@ -27290,12 +27292,13 @@ let NativeUIDropDown = /*@__PURE__*/ (() => {
|
|
|
27290
27292
|
return this.aq;
|
|
27291
27293
|
}
|
|
27292
27294
|
set ar(a) {
|
|
27295
|
+
let b = this.aq;
|
|
27293
27296
|
this.aq = a;
|
|
27294
27297
|
if (this.aq != null) {
|
|
27295
27298
|
this.w(3, this.aq);
|
|
27296
27299
|
}
|
|
27297
27300
|
else {
|
|
27298
|
-
this.ab(3,
|
|
27301
|
+
this.ab(3, b);
|
|
27299
27302
|
}
|
|
27300
27303
|
}
|
|
27301
27304
|
get at() {
|
|
@@ -27331,48 +27334,63 @@ let NativeUISlider = /*@__PURE__*/ (() => {
|
|
|
27331
27334
|
constructor() {
|
|
27332
27335
|
super(...arguments);
|
|
27333
27336
|
this.ap = null;
|
|
27337
|
+
this.aq = null;
|
|
27334
27338
|
}
|
|
27335
27339
|
get_c() {
|
|
27336
27340
|
return 5;
|
|
27337
27341
|
}
|
|
27338
|
-
get
|
|
27342
|
+
get aw() {
|
|
27339
27343
|
let a = this.o(2);
|
|
27340
27344
|
return a;
|
|
27341
27345
|
}
|
|
27342
|
-
set
|
|
27346
|
+
set aw(a) {
|
|
27343
27347
|
this.ad(2, a);
|
|
27344
27348
|
}
|
|
27345
|
-
get
|
|
27349
|
+
get au() {
|
|
27346
27350
|
let a = this.o(10);
|
|
27347
27351
|
return a;
|
|
27348
27352
|
}
|
|
27349
|
-
set
|
|
27353
|
+
set au(a) {
|
|
27350
27354
|
this.ad(10, a);
|
|
27351
27355
|
}
|
|
27352
|
-
get
|
|
27356
|
+
get at() {
|
|
27353
27357
|
let a = this.o(11);
|
|
27354
27358
|
return a;
|
|
27355
27359
|
}
|
|
27356
|
-
set
|
|
27360
|
+
set at(a) {
|
|
27357
27361
|
this.ad(11, a);
|
|
27358
27362
|
}
|
|
27359
|
-
get
|
|
27363
|
+
get av() {
|
|
27360
27364
|
let a = this.o(12);
|
|
27361
27365
|
return a;
|
|
27362
27366
|
}
|
|
27363
|
-
set
|
|
27367
|
+
set av(a) {
|
|
27364
27368
|
this.ad(12, a);
|
|
27365
27369
|
}
|
|
27366
|
-
get
|
|
27370
|
+
get ar() {
|
|
27367
27371
|
return this.ap;
|
|
27368
27372
|
}
|
|
27369
|
-
set
|
|
27373
|
+
set ar(a) {
|
|
27374
|
+
let b = this.ap;
|
|
27370
27375
|
this.ap = a;
|
|
27371
27376
|
if (this.ap != null) {
|
|
27372
27377
|
this.w(4, this.ap);
|
|
27373
27378
|
}
|
|
27374
27379
|
else {
|
|
27375
|
-
this.ab(4,
|
|
27380
|
+
this.ab(4, b);
|
|
27381
|
+
}
|
|
27382
|
+
}
|
|
27383
|
+
get as() {
|
|
27384
|
+
return this.aq;
|
|
27385
|
+
}
|
|
27386
|
+
set as(a) {
|
|
27387
|
+
let b = this.aq;
|
|
27388
|
+
this.aq = a;
|
|
27389
|
+
if (this.aq != null) {
|
|
27390
|
+
this.w(0, this.aq);
|
|
27391
|
+
}
|
|
27392
|
+
else {
|
|
27393
|
+
this.ab(0, b);
|
|
27376
27394
|
}
|
|
27377
27395
|
}
|
|
27378
27396
|
}
|
|
@@ -27564,12 +27582,13 @@ let NativeUIInput = /*@__PURE__*/ (() => {
|
|
|
27564
27582
|
return this.ar;
|
|
27565
27583
|
}
|
|
27566
27584
|
set as(a) {
|
|
27585
|
+
let b = this.ar;
|
|
27567
27586
|
this.ar = a;
|
|
27568
27587
|
if (this.ar != null) {
|
|
27569
27588
|
this.w(0, this.ar);
|
|
27570
27589
|
}
|
|
27571
27590
|
else {
|
|
27572
|
-
this.ab(0,
|
|
27591
|
+
this.ab(0, b);
|
|
27573
27592
|
}
|
|
27574
27593
|
}
|
|
27575
27594
|
}
|
|
@@ -33345,24 +33364,43 @@ let IgcSliderBridge = /*@__PURE__*/ (() => {
|
|
|
33345
33364
|
class IgcSliderBridge extends NativeUIElementBridge {
|
|
33346
33365
|
constructor() {
|
|
33347
33366
|
super(...arguments);
|
|
33348
|
-
this.d = null;
|
|
33349
|
-
this.c = null;
|
|
33350
33367
|
this.e = null;
|
|
33368
|
+
this.c = null;
|
|
33369
|
+
this.g = null;
|
|
33370
|
+
this.f = null;
|
|
33371
|
+
this.d = null;
|
|
33372
|
+
this.h = null;
|
|
33351
33373
|
}
|
|
33352
33374
|
addHandler(a, b, c, d) {
|
|
33353
33375
|
switch (c) {
|
|
33376
|
+
case 0:
|
|
33377
|
+
{
|
|
33378
|
+
let e = a;
|
|
33379
|
+
this.f = e.listen("igcInput", runOn(this, this.j));
|
|
33380
|
+
this.d = d;
|
|
33381
|
+
this.h = b;
|
|
33382
|
+
}
|
|
33383
|
+
break;
|
|
33354
33384
|
case 4:
|
|
33355
|
-
|
|
33356
|
-
|
|
33357
|
-
|
|
33358
|
-
|
|
33385
|
+
{
|
|
33386
|
+
let f = a;
|
|
33387
|
+
this.e = f.listen("igcChange", runOn(this, this.i));
|
|
33388
|
+
this.c = d;
|
|
33389
|
+
this.g = b;
|
|
33390
|
+
}
|
|
33359
33391
|
break;
|
|
33360
33392
|
}
|
|
33361
33393
|
}
|
|
33362
|
-
|
|
33394
|
+
j(a) {
|
|
33395
|
+
if (this.d != null) {
|
|
33396
|
+
let b = new NativeUISliderValueChangedEventArgs();
|
|
33397
|
+
this.d(this.h, b);
|
|
33398
|
+
}
|
|
33399
|
+
}
|
|
33400
|
+
i(a) {
|
|
33363
33401
|
if (this.c != null) {
|
|
33364
33402
|
let b = new NativeUISliderValueChangedEventArgs();
|
|
33365
|
-
this.c(this.
|
|
33403
|
+
this.c(this.g, b);
|
|
33366
33404
|
}
|
|
33367
33405
|
}
|
|
33368
33406
|
getValue(a, b) {
|
|
@@ -33376,12 +33414,19 @@ let IgcSliderBridge = /*@__PURE__*/ (() => {
|
|
|
33376
33414
|
}
|
|
33377
33415
|
removeHandler(a, b, c, d) {
|
|
33378
33416
|
switch (c) {
|
|
33379
|
-
case
|
|
33380
|
-
if (this.
|
|
33381
|
-
this.
|
|
33417
|
+
case 0:
|
|
33418
|
+
if (this.f != null) {
|
|
33419
|
+
this.f();
|
|
33420
|
+
}
|
|
33421
|
+
this.d = null;
|
|
33422
|
+
this.h = null;
|
|
33423
|
+
break;
|
|
33424
|
+
case 4:
|
|
33425
|
+
if (this.e != null) {
|
|
33426
|
+
this.e();
|
|
33382
33427
|
}
|
|
33383
33428
|
this.c = null;
|
|
33384
|
-
this.
|
|
33429
|
+
this.g = null;
|
|
33385
33430
|
break;
|
|
33386
33431
|
}
|
|
33387
33432
|
}
|
|
@@ -33924,6 +33969,7 @@ let NativeUIInputsFactory = /*@__PURE__*/ (() => {
|
|
|
33924
33969
|
j(a, b) {
|
|
33925
33970
|
let c = a;
|
|
33926
33971
|
let d = c.createElement("igc-slider");
|
|
33972
|
+
d.setProperty("hideTooltip", true);
|
|
33927
33973
|
let e = new IgcSliderBridge();
|
|
33928
33974
|
let f = new NativeUISlider();
|
|
33929
33975
|
f.u = d;
|
|
@@ -52763,6 +52809,9 @@ class ComponentRendererAdapter {
|
|
|
52763
52809
|
if (propertyName.endsWith("Ocurred")) {
|
|
52764
52810
|
propertyName = propertyName.replace("Ocurred", "");
|
|
52765
52811
|
}
|
|
52812
|
+
if (propertyName.toLowerCase() == "selectionchanged") {
|
|
52813
|
+
propertyName = "selection";
|
|
52814
|
+
}
|
|
52766
52815
|
var eventId = "igc" + TypeDescriptionMetadata.toPascal(propertyName);
|
|
52767
52816
|
if (value) {
|
|
52768
52817
|
target.addEventListener(eventId, value);
|
|
@@ -53215,19 +53264,20 @@ let CodeGeneratingRendererResult = /*@__PURE__*/ (() => {
|
|
|
53215
53264
|
class CodeGeneratingRendererResult extends Base {
|
|
53216
53265
|
constructor() {
|
|
53217
53266
|
super(...arguments);
|
|
53218
|
-
this.
|
|
53267
|
+
this.p = new List$1(CodeGenerationItemBuilderPropertyInfo.$, 0);
|
|
53219
53268
|
this._platform = 0;
|
|
53220
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);
|
|
53221
53272
|
this.j = new Dictionary$2(String_$type, List$1.$.specialize(String_$type), 0);
|
|
53222
|
-
this.
|
|
53223
|
-
this.i = new Dictionary$2(String_$type, List$1.$.specialize(String_$type), 0);
|
|
53224
|
-
this.g = new Dictionary$2(String_$type, Number_$type, 0);
|
|
53225
|
-
this.m = new Dictionary$2(String_$type, String_$type, 0);
|
|
53226
|
-
this.k = new Dictionary$2(String_$type, String_$type, 0);
|
|
53273
|
+
this.o = new HashSet$1(String_$type, 0);
|
|
53227
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);
|
|
53228
53278
|
}
|
|
53229
|
-
get
|
|
53230
|
-
return this.
|
|
53279
|
+
get s() {
|
|
53280
|
+
return this.p;
|
|
53231
53281
|
}
|
|
53232
53282
|
get platform() {
|
|
53233
53283
|
return this._platform;
|
|
@@ -53241,46 +53291,56 @@ let CodeGeneratingRendererResult = /*@__PURE__*/ (() => {
|
|
|
53241
53291
|
set generationOptions(a) {
|
|
53242
53292
|
this._generationOptions = a;
|
|
53243
53293
|
}
|
|
53294
|
+
addPackageRef(a) {
|
|
53295
|
+
this.o.add_1(a);
|
|
53296
|
+
}
|
|
53244
53297
|
addContainerResult(a, b) {
|
|
53245
|
-
if (!this.
|
|
53246
|
-
this.
|
|
53298
|
+
if (!this.k.containsKey(a)) {
|
|
53299
|
+
this.k.addItem(a, new List$1(String_$type, 0));
|
|
53247
53300
|
}
|
|
53248
|
-
let c = this.
|
|
53301
|
+
let c = this.k.item(a);
|
|
53249
53302
|
c.add(b);
|
|
53250
53303
|
}
|
|
53251
53304
|
addImportResult(a, b) {
|
|
53252
|
-
if (!this.
|
|
53253
|
-
this.
|
|
53305
|
+
if (!this.m.containsKey(a)) {
|
|
53306
|
+
this.m.addItem(a, new List$1(CodeGeneratingImportManager.$, 0));
|
|
53254
53307
|
}
|
|
53255
|
-
let c = this.
|
|
53308
|
+
let c = this.m.item(a);
|
|
53256
53309
|
c.add(b);
|
|
53257
53310
|
}
|
|
53258
53311
|
addContainerNewFileResult(a, b) {
|
|
53259
|
-
if (!this.
|
|
53260
|
-
this.
|
|
53312
|
+
if (!this.j.containsKey(a)) {
|
|
53313
|
+
this.j.addItem(a, new List$1(String_$type, 0));
|
|
53261
53314
|
}
|
|
53262
|
-
let c = this.
|
|
53315
|
+
let c = this.j.item(a);
|
|
53263
53316
|
c.add(b);
|
|
53264
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
|
+
}
|
|
53265
53325
|
getKeys() {
|
|
53266
53326
|
let a = new List$1(String_$type, 0);
|
|
53267
|
-
for (let b of fromEnum(this.
|
|
53327
|
+
for (let b of fromEnum(this.k.keys)) {
|
|
53268
53328
|
a.add(b);
|
|
53269
53329
|
}
|
|
53270
53330
|
return a.toArray();
|
|
53271
53331
|
}
|
|
53272
53332
|
getImportsKeys() {
|
|
53273
53333
|
let a = new List$1(String_$type, 0);
|
|
53274
|
-
for (let b of fromEnum(this.
|
|
53334
|
+
for (let b of fromEnum(this.m.keys)) {
|
|
53275
53335
|
a.add(b);
|
|
53276
53336
|
}
|
|
53277
53337
|
return a.toArray();
|
|
53278
53338
|
}
|
|
53279
53339
|
getContentForKey(a) {
|
|
53280
|
-
if (!this.
|
|
53340
|
+
if (!this.k.containsKey(a)) {
|
|
53281
53341
|
return "";
|
|
53282
53342
|
}
|
|
53283
|
-
let b = this.
|
|
53343
|
+
let b = this.k.item(a);
|
|
53284
53344
|
if (b.count == 1) {
|
|
53285
53345
|
return b._inner[0];
|
|
53286
53346
|
}
|
|
@@ -53290,33 +53350,33 @@ let CodeGeneratingRendererResult = /*@__PURE__*/ (() => {
|
|
|
53290
53350
|
}
|
|
53291
53351
|
return c;
|
|
53292
53352
|
}
|
|
53293
|
-
|
|
53294
|
-
if (!this.
|
|
53353
|
+
q(a) {
|
|
53354
|
+
if (!this.m.containsKey(a)) {
|
|
53295
53355
|
return null;
|
|
53296
53356
|
}
|
|
53297
|
-
return this.
|
|
53357
|
+
return this.m.item(a);
|
|
53298
53358
|
}
|
|
53299
|
-
|
|
53300
|
-
if (!this.
|
|
53301
|
-
this.
|
|
53359
|
+
t(a) {
|
|
53360
|
+
if (!this.h.containsKey(a)) {
|
|
53361
|
+
this.h.item(a, 1);
|
|
53302
53362
|
}
|
|
53303
|
-
let b = this.
|
|
53363
|
+
let b = this.h.item(a);
|
|
53304
53364
|
let c = a + b;
|
|
53305
|
-
this.
|
|
53365
|
+
this.h.item(a, b + 1);
|
|
53306
53366
|
return c;
|
|
53307
53367
|
}
|
|
53308
|
-
|
|
53309
|
-
this.
|
|
53368
|
+
ae(a) {
|
|
53369
|
+
this.p.add(a);
|
|
53310
53370
|
}
|
|
53311
53371
|
getNewFiles() {
|
|
53312
53372
|
let a = new List$1(String_$type, 0);
|
|
53313
|
-
for (let b of fromEnum(this.
|
|
53373
|
+
for (let b of fromEnum(this.j.keys)) {
|
|
53314
53374
|
a.add(b);
|
|
53315
53375
|
}
|
|
53316
53376
|
return a;
|
|
53317
53377
|
}
|
|
53318
53378
|
getNewFileContent(a) {
|
|
53319
|
-
let b = this.
|
|
53379
|
+
let b = this.j.item(a);
|
|
53320
53380
|
let c = "";
|
|
53321
53381
|
for (let d of fromEnum(b)) {
|
|
53322
53382
|
c += d;
|
|
@@ -53324,37 +53384,37 @@ let CodeGeneratingRendererResult = /*@__PURE__*/ (() => {
|
|
|
53324
53384
|
return c;
|
|
53325
53385
|
}
|
|
53326
53386
|
defineString(a, b) {
|
|
53327
|
-
this.
|
|
53387
|
+
this.n.item(a, b);
|
|
53328
53388
|
}
|
|
53329
53389
|
getStringNames() {
|
|
53330
53390
|
let a = new List$1(String_$type, 0);
|
|
53331
|
-
for (let b of fromEnum(this.
|
|
53391
|
+
for (let b of fromEnum(this.n.keys)) {
|
|
53332
53392
|
a.add(b);
|
|
53333
53393
|
}
|
|
53334
53394
|
return a.toArray();
|
|
53335
53395
|
}
|
|
53336
53396
|
getString(a) {
|
|
53337
|
-
return this.
|
|
53397
|
+
return this.n.item(a);
|
|
53338
53398
|
}
|
|
53339
53399
|
trackDescriptionField(a, b) {
|
|
53340
|
-
this.
|
|
53400
|
+
this.l.item(a, b);
|
|
53341
53401
|
}
|
|
53342
53402
|
hasDescription(a) {
|
|
53343
|
-
return this.
|
|
53403
|
+
return this.l.containsKey(a);
|
|
53344
53404
|
}
|
|
53345
53405
|
getDescriptionField(a) {
|
|
53346
|
-
return this.
|
|
53406
|
+
return this.l.item(a);
|
|
53347
53407
|
}
|
|
53348
|
-
|
|
53408
|
+
u(a) {
|
|
53349
53409
|
let b = 0;
|
|
53350
|
-
if (!this.
|
|
53351
|
-
this.
|
|
53410
|
+
if (!this.i.containsKey(a)) {
|
|
53411
|
+
this.i.addItem(a, b);
|
|
53352
53412
|
}
|
|
53353
53413
|
else {
|
|
53354
|
-
b = this.
|
|
53414
|
+
b = this.i.item(a);
|
|
53355
53415
|
}
|
|
53356
53416
|
b++;
|
|
53357
|
-
this.
|
|
53417
|
+
this.i.item(a, b);
|
|
53358
53418
|
return a + b;
|
|
53359
53419
|
}
|
|
53360
53420
|
}
|
|
@@ -54266,8 +54326,8 @@ let CodeGeneratingComponentRendererDataEmitter = /*@__PURE__*/ (() => {
|
|
|
54266
54326
|
}
|
|
54267
54327
|
}
|
|
54268
54328
|
let n = new HashSet$1(String_$type, 0);
|
|
54269
|
-
for (let o = 0; o < this.m.
|
|
54270
|
-
let p = this.m.
|
|
54329
|
+
for (let o = 0; o < this.m.s.count; o++) {
|
|
54330
|
+
let p = this.m.s._inner[o];
|
|
54271
54331
|
if (p.a != null && p.c == null) {
|
|
54272
54332
|
if (this.o.library != null && this.o.library.hasItem(p.a.e)) {
|
|
54273
54333
|
if (n.contains(p.a.e)) {
|
|
@@ -55414,14 +55474,14 @@ let DescriptionSerializer = /*@__PURE__*/ (() => {
|
|
|
55414
55474
|
this.i = null;
|
|
55415
55475
|
this.e = false;
|
|
55416
55476
|
}
|
|
55417
|
-
|
|
55477
|
+
p(a, b) {
|
|
55418
55478
|
let c = DescriptionTreeBuilder.createTree(a, b);
|
|
55419
55479
|
let d = new DescriptionSerializerBuilder();
|
|
55420
|
-
this.
|
|
55480
|
+
this.q(a, c, d);
|
|
55421
55481
|
return d.toString();
|
|
55422
55482
|
}
|
|
55423
|
-
|
|
55424
|
-
this.
|
|
55483
|
+
t(a, b, c) {
|
|
55484
|
+
this.q(a, b, c);
|
|
55425
55485
|
}
|
|
55426
55486
|
c(a, b) {
|
|
55427
55487
|
let c = new JsonDictionaryParser();
|
|
@@ -55446,7 +55506,7 @@ let DescriptionSerializer = /*@__PURE__*/ (() => {
|
|
|
55446
55506
|
this.e = false;
|
|
55447
55507
|
return g;
|
|
55448
55508
|
}
|
|
55449
|
-
|
|
55509
|
+
v(a, b, c, d, e) {
|
|
55450
55510
|
if (this.g) {
|
|
55451
55511
|
a.w(b, c, d, e);
|
|
55452
55512
|
}
|
|
@@ -55507,14 +55567,14 @@ let DescriptionSerializer = /*@__PURE__*/ (() => {
|
|
|
55507
55567
|
break;
|
|
55508
55568
|
}
|
|
55509
55569
|
if (!this.e) {
|
|
55510
|
-
this.
|
|
55570
|
+
this.v(a, h, k, l, q);
|
|
55511
55571
|
}
|
|
55512
55572
|
}
|
|
55513
55573
|
else if (typeCast(JsonDictionaryObject.$, p) !== null) {
|
|
55514
55574
|
let r = p;
|
|
55515
55575
|
let s = this.b(a, r, l.knownType);
|
|
55516
55576
|
f.e(s);
|
|
55517
|
-
this.
|
|
55577
|
+
this.v(a, h, k, l, s.result);
|
|
55518
55578
|
}
|
|
55519
55579
|
else if (typeCast(JsonDictionaryArray.$, p) !== null) {
|
|
55520
55580
|
let t = p;
|
|
@@ -55528,50 +55588,64 @@ let DescriptionSerializer = /*@__PURE__*/ (() => {
|
|
|
55528
55588
|
u = l.collectionElementType;
|
|
55529
55589
|
}
|
|
55530
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
|
+
}
|
|
55531
55601
|
if (!this.e || v) {
|
|
55532
|
-
this.
|
|
55602
|
+
this.v(a, h, k, l, w);
|
|
55533
55603
|
}
|
|
55534
55604
|
}
|
|
55535
55605
|
else {
|
|
55536
|
-
let
|
|
55537
|
-
if (
|
|
55538
|
-
|
|
55606
|
+
let aa = l.specificExternalType;
|
|
55607
|
+
if (aa == null && l.knownType == 3) {
|
|
55608
|
+
aa = "DateTime";
|
|
55539
55609
|
}
|
|
55540
|
-
if (
|
|
55541
|
-
|
|
55610
|
+
if (aa == null) {
|
|
55611
|
+
aa = "String";
|
|
55542
55612
|
}
|
|
55543
|
-
let
|
|
55544
|
-
let
|
|
55613
|
+
let ab = p;
|
|
55614
|
+
let ac = this.j(f, a, ab, aa);
|
|
55545
55615
|
if (this.f) {
|
|
55546
|
-
if (stringEndsWith(l.propertyName, "MemberPath") || (g != null && stringEndsWith(g, "Axis") && l.propertyName.toLowerCase() == "label")) {
|
|
55547
|
-
|
|
55548
|
-
if (this.i != null) {
|
|
55549
|
-
z = this.i(aa);
|
|
55550
|
-
}
|
|
55551
|
-
else {
|
|
55552
|
-
if (stringStartsWith(aa, "{")) {
|
|
55553
|
-
if (!stringStartsWith(aa, "{[")) {
|
|
55554
|
-
aa = aa.substr(1, aa.length - 2);
|
|
55555
|
-
aa = "{[" + aa + "]}";
|
|
55556
|
-
z = aa;
|
|
55557
|
-
}
|
|
55558
|
-
}
|
|
55559
|
-
else {
|
|
55560
|
-
if (!stringStartsWith(aa, "[")) {
|
|
55561
|
-
aa = "[" + aa + "]";
|
|
55562
|
-
z = aa;
|
|
55563
|
-
}
|
|
55564
|
-
}
|
|
55565
|
-
}
|
|
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);
|
|
55566
55618
|
}
|
|
55567
55619
|
}
|
|
55568
55620
|
if (!this.e) {
|
|
55569
|
-
this.
|
|
55621
|
+
this.v(a, h, k, l, ac);
|
|
55570
55622
|
}
|
|
55571
55623
|
}
|
|
55572
55624
|
}
|
|
55573
55625
|
return f;
|
|
55574
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
|
+
}
|
|
55575
55649
|
k(a, b) {
|
|
55576
55650
|
if (b == null) {
|
|
55577
55651
|
return null;
|
|
@@ -55690,7 +55764,7 @@ let DescriptionSerializer = /*@__PURE__*/ (() => {
|
|
|
55690
55764
|
return c.value;
|
|
55691
55765
|
}
|
|
55692
55766
|
}
|
|
55693
|
-
|
|
55767
|
+
q(a, b, c) {
|
|
55694
55768
|
c.f("{");
|
|
55695
55769
|
c.i();
|
|
55696
55770
|
c.f("\"type\": \"" + b.h + "\"");
|
|
@@ -55700,25 +55774,25 @@ let DescriptionSerializer = /*@__PURE__*/ (() => {
|
|
|
55700
55774
|
if (e >= 0) {
|
|
55701
55775
|
c.f(",");
|
|
55702
55776
|
}
|
|
55703
|
-
this.
|
|
55777
|
+
this.r(a, b, f, c);
|
|
55704
55778
|
}
|
|
55705
55779
|
c.h();
|
|
55706
55780
|
c.f("}");
|
|
55707
55781
|
}
|
|
55708
|
-
|
|
55782
|
+
o(a) {
|
|
55709
55783
|
if (a == null) {
|
|
55710
55784
|
return null;
|
|
55711
55785
|
}
|
|
55712
55786
|
return a.substr(0, 1).toLowerCase() + a.substr(1);
|
|
55713
55787
|
}
|
|
55714
|
-
|
|
55788
|
+
r(a, b, c, d) {
|
|
55715
55789
|
if (c.c.toLowerCase() == "type") {
|
|
55716
55790
|
return;
|
|
55717
55791
|
}
|
|
55718
|
-
d.e("\"" + this.
|
|
55719
|
-
this.
|
|
55792
|
+
d.e("\"" + this.o(c.c) + "\": ");
|
|
55793
|
+
this.u(a, b, c, c.b, d);
|
|
55720
55794
|
}
|
|
55721
|
-
|
|
55795
|
+
u(a, b, c, d, e) {
|
|
55722
55796
|
let f = 2;
|
|
55723
55797
|
if (c.a != null) {
|
|
55724
55798
|
f = c.a.knownType;
|
|
@@ -55740,17 +55814,17 @@ let DescriptionSerializer = /*@__PURE__*/ (() => {
|
|
|
55740
55814
|
}
|
|
55741
55815
|
let j = h;
|
|
55742
55816
|
if (typeCast(DescriptionTreeNode.$, g[i]) !== null) {
|
|
55743
|
-
this.
|
|
55817
|
+
this.q(a, g[i], e);
|
|
55744
55818
|
}
|
|
55745
55819
|
else {
|
|
55746
|
-
this.
|
|
55820
|
+
this.s(a, h, g[i], e);
|
|
55747
55821
|
}
|
|
55748
55822
|
}
|
|
55749
55823
|
e.e("]");
|
|
55750
55824
|
}
|
|
55751
55825
|
break;
|
|
55752
55826
|
case 7:
|
|
55753
|
-
this.
|
|
55827
|
+
this.s(a, "Boolean", d, e);
|
|
55754
55828
|
break;
|
|
55755
55829
|
case 9:
|
|
55756
55830
|
{
|
|
@@ -55763,10 +55837,10 @@ let DescriptionSerializer = /*@__PURE__*/ (() => {
|
|
|
55763
55837
|
}
|
|
55764
55838
|
let n = l;
|
|
55765
55839
|
if (typeCast(DescriptionTreeNode.$, k[m]) !== null) {
|
|
55766
|
-
this.
|
|
55840
|
+
this.q(a, k[m], e);
|
|
55767
55841
|
}
|
|
55768
55842
|
else {
|
|
55769
|
-
this.
|
|
55843
|
+
this.s(a, l, k[m], e);
|
|
55770
55844
|
}
|
|
55771
55845
|
}
|
|
55772
55846
|
e.e("]");
|
|
@@ -55778,29 +55852,29 @@ let DescriptionSerializer = /*@__PURE__*/ (() => {
|
|
|
55778
55852
|
case 20:
|
|
55779
55853
|
case 5:
|
|
55780
55854
|
case 2:
|
|
55781
|
-
this.
|
|
55855
|
+
this.s(a, "String", d, e);
|
|
55782
55856
|
break;
|
|
55783
55857
|
case 3:
|
|
55784
|
-
this.
|
|
55858
|
+
this.s(a, "DateTime", d, e);
|
|
55785
55859
|
break;
|
|
55786
55860
|
case 8:
|
|
55787
55861
|
if (c.a.specificExternalType.toLowerCase() == "string") {
|
|
55788
|
-
this.
|
|
55862
|
+
this.s(a, "String", d, e);
|
|
55789
55863
|
}
|
|
55790
55864
|
else {
|
|
55791
|
-
this.
|
|
55865
|
+
this.q(a, d, e);
|
|
55792
55866
|
}
|
|
55793
55867
|
break;
|
|
55794
55868
|
case 1:
|
|
55795
|
-
this.
|
|
55869
|
+
this.s(a, "Double", d, e);
|
|
55796
55870
|
break;
|
|
55797
55871
|
case 14:
|
|
55798
55872
|
case 12:
|
|
55799
55873
|
case 11:
|
|
55800
|
-
this.
|
|
55874
|
+
this.q(a, d, e);
|
|
55801
55875
|
break;
|
|
55802
55876
|
case 21:
|
|
55803
|
-
this.
|
|
55877
|
+
this.s(a, "TimeSpan", d, e);
|
|
55804
55878
|
break;
|
|
55805
55879
|
case 17:
|
|
55806
55880
|
case 0:
|
|
@@ -55808,7 +55882,7 @@ let DescriptionSerializer = /*@__PURE__*/ (() => {
|
|
|
55808
55882
|
case 13: throw new NotImplementedException(0);
|
|
55809
55883
|
}
|
|
55810
55884
|
}
|
|
55811
|
-
|
|
55885
|
+
s(a, b, c, d) {
|
|
55812
55886
|
switch (b.toLowerCase()) {
|
|
55813
55887
|
case "string":
|
|
55814
55888
|
if (c == null) {
|
|
@@ -56646,7 +56720,7 @@ let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
56646
56720
|
}
|
|
56647
56721
|
b.e("\"" + h + "\"");
|
|
56648
56722
|
b.e(": ");
|
|
56649
|
-
c.
|
|
56723
|
+
c.t(this.context, g, b);
|
|
56650
56724
|
}
|
|
56651
56725
|
b.f("");
|
|
56652
56726
|
b.h();
|
|
@@ -58314,8 +58388,8 @@ let CodeGeneratingComponentRendererHandlerEmitter = /*@__PURE__*/ (() => {
|
|
|
58314
58388
|
}
|
|
58315
58389
|
j() {
|
|
58316
58390
|
let a = new HashSet$1(String_$type, 0);
|
|
58317
|
-
for (let b = 0; b < this.e.
|
|
58318
|
-
let c = this.e.
|
|
58391
|
+
for (let b = 0; b < this.e.s.count; b++) {
|
|
58392
|
+
let c = this.e.s._inner[b];
|
|
58319
58393
|
if (c.a != null && c.c == null) {
|
|
58320
58394
|
if (this.g.library != null && this.g.library.hasItem(c.a.e)) {
|
|
58321
58395
|
if (a.contains(c.a.e)) {
|
|
@@ -58545,16 +58619,19 @@ let CodeGeneratingComponentRendererModuleEmitter = /*@__PURE__*/ (() => {
|
|
|
58545
58619
|
class CodeGeneratingComponentRendererModuleEmitter extends Base {
|
|
58546
58620
|
constructor(a, b) {
|
|
58547
58621
|
super();
|
|
58548
|
-
this.
|
|
58622
|
+
this.k = null;
|
|
58549
58623
|
this.i = null;
|
|
58550
58624
|
this.b = null;
|
|
58551
58625
|
this.f = new CodeGeneratingImportManager();
|
|
58552
58626
|
this.e = new CodeGeneratingImportManager();
|
|
58553
58627
|
this.a = null;
|
|
58554
|
-
this.
|
|
58628
|
+
this.k = a;
|
|
58555
58629
|
this.i = b;
|
|
58556
|
-
this.b = new CodeGeneratingCodeWriter(this.
|
|
58557
|
-
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;
|
|
58558
58635
|
}
|
|
58559
58636
|
get d() {
|
|
58560
58637
|
return this.b;
|
|
@@ -58568,8 +58645,8 @@ let CodeGeneratingComponentRendererModuleEmitter = /*@__PURE__*/ (() => {
|
|
|
58568
58645
|
get c() {
|
|
58569
58646
|
return this.a;
|
|
58570
58647
|
}
|
|
58571
|
-
|
|
58572
|
-
this.
|
|
58648
|
+
m(a) {
|
|
58649
|
+
this.o();
|
|
58573
58650
|
if (typeCast(JsonDictionaryArray.$, a) !== null) {
|
|
58574
58651
|
let b = a;
|
|
58575
58652
|
for (let c = 0; c < b.items.length; c++) {
|
|
@@ -58578,22 +58655,22 @@ let CodeGeneratingComponentRendererModuleEmitter = /*@__PURE__*/ (() => {
|
|
|
58578
58655
|
let e = d;
|
|
58579
58656
|
if (e != null) {
|
|
58580
58657
|
let f = e.value.toString();
|
|
58581
|
-
this.
|
|
58658
|
+
this.l(f);
|
|
58582
58659
|
}
|
|
58583
58660
|
}
|
|
58584
58661
|
}
|
|
58585
58662
|
}
|
|
58586
|
-
this.
|
|
58663
|
+
this.n();
|
|
58587
58664
|
this.i.addImportResult("modulesImports", this.h);
|
|
58588
58665
|
this.i.addContainerResult("modulesRegister", this.d.toString());
|
|
58589
58666
|
this.i.addImportResult("descriptionImports", this.g);
|
|
58590
58667
|
this.i.addContainerResult("descriptionRegister", this.c.toString());
|
|
58591
58668
|
}
|
|
58592
|
-
|
|
58669
|
+
n() {
|
|
58593
58670
|
}
|
|
58594
|
-
|
|
58671
|
+
l(a) {
|
|
58595
58672
|
}
|
|
58596
|
-
|
|
58673
|
+
o() {
|
|
58597
58674
|
}
|
|
58598
58675
|
}
|
|
58599
58676
|
CodeGeneratingComponentRendererModuleEmitter.$t = markType(CodeGeneratingComponentRendererModuleEmitter, 'CodeGeneratingComponentRendererModuleEmitter');
|
|
@@ -58613,60 +58690,62 @@ let TSCodeGeneratingComponentRendererModuleEmitter = /*@__PURE__*/ (() => {
|
|
|
58613
58690
|
class TSCodeGeneratingComponentRendererModuleEmitter extends CodeGeneratingComponentRendererModuleEmitter {
|
|
58614
58691
|
constructor(a, b, c) {
|
|
58615
58692
|
super(b, c);
|
|
58616
|
-
this.
|
|
58617
|
-
this.
|
|
58618
|
-
this.
|
|
58619
|
-
this.
|
|
58620
|
-
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;
|
|
58621
58698
|
}
|
|
58622
|
-
|
|
58623
|
-
super.
|
|
58624
|
-
this.
|
|
58699
|
+
o() {
|
|
58700
|
+
super.o();
|
|
58701
|
+
this.s = 0;
|
|
58625
58702
|
}
|
|
58626
|
-
get
|
|
58627
|
-
switch (this.
|
|
58703
|
+
get u() {
|
|
58704
|
+
switch (this.p) {
|
|
58628
58705
|
case 1: return "Igx";
|
|
58629
58706
|
case 2: return "Igr";
|
|
58630
58707
|
case 3: return "Igc";
|
|
58631
58708
|
}
|
|
58632
58709
|
return "";
|
|
58633
58710
|
}
|
|
58634
|
-
get
|
|
58635
|
-
switch (this.
|
|
58711
|
+
get t() {
|
|
58712
|
+
switch (this.p) {
|
|
58636
58713
|
case 1: return "angular";
|
|
58637
58714
|
case 2: return "react";
|
|
58638
58715
|
case 3: return "webcomponents";
|
|
58639
58716
|
}
|
|
58640
58717
|
return "";
|
|
58641
58718
|
}
|
|
58642
|
-
|
|
58643
|
-
super.
|
|
58719
|
+
l(a) {
|
|
58720
|
+
super.l(a);
|
|
58644
58721
|
if (a == "withDescriptions") {
|
|
58645
|
-
this.
|
|
58722
|
+
this.q = true;
|
|
58646
58723
|
return;
|
|
58647
58724
|
}
|
|
58648
|
-
let b = "igniteui-" + this.
|
|
58725
|
+
let b = "igniteui-" + this.t + "-core";
|
|
58649
58726
|
let c = "";
|
|
58650
58727
|
let d = a.split('/');
|
|
58651
58728
|
if (d.length == 1) {
|
|
58652
58729
|
c = d[0];
|
|
58730
|
+
this.j.addPackageRef(c);
|
|
58653
58731
|
}
|
|
58654
58732
|
else {
|
|
58655
58733
|
b = d[0];
|
|
58656
|
-
|
|
58734
|
+
this.j.addPackageRef(b);
|
|
58735
|
+
b = "igniteui-" + this.t + "-" + b;
|
|
58657
58736
|
c = d[1];
|
|
58658
58737
|
}
|
|
58659
|
-
if (!this.
|
|
58660
|
-
this.
|
|
58738
|
+
if (!this.r.containsKey(b)) {
|
|
58739
|
+
this.r.addItem(b, new List$1(String_$type, 0));
|
|
58661
58740
|
}
|
|
58662
|
-
let e = this.
|
|
58663
|
-
if (this.
|
|
58741
|
+
let e = this.r.item(b);
|
|
58742
|
+
if (this.s > 0) {
|
|
58664
58743
|
this.d.k(",");
|
|
58665
58744
|
}
|
|
58666
|
-
this.d.j(this.
|
|
58667
|
-
e.add(this.
|
|
58668
|
-
if (this.
|
|
58669
|
-
if (this.
|
|
58745
|
+
this.d.j(this.u + c);
|
|
58746
|
+
e.add(this.u + c);
|
|
58747
|
+
if (this.q) {
|
|
58748
|
+
if (this.s == 0) {
|
|
58670
58749
|
this.c.k("private _componentRenderer: ComponentRenderer = null;");
|
|
58671
58750
|
this.c.k("public get renderer(): ComponentRenderer {");
|
|
58672
58751
|
this.c.h();
|
|
@@ -58674,31 +58753,31 @@ let TSCodeGeneratingComponentRendererModuleEmitter = /*@__PURE__*/ (() => {
|
|
|
58674
58753
|
this.c.h();
|
|
58675
58754
|
this.c.k("this._componentRenderer = new ComponentRenderer();");
|
|
58676
58755
|
this.c.k("var context = this._componentRenderer.context;");
|
|
58677
|
-
this.g.addPackageImport("igniteui-" + this.
|
|
58756
|
+
this.g.addPackageImport("igniteui-" + this.t + "-core", "ComponentRenderer");
|
|
58678
58757
|
}
|
|
58679
58758
|
let f = c;
|
|
58680
58759
|
if (stringEndsWith(f, "Module")) {
|
|
58681
58760
|
f = f.substr(0, f.length - ("Module").length);
|
|
58682
58761
|
f += "DescriptionModule";
|
|
58683
58762
|
}
|
|
58684
|
-
this.g.addPackageImport("igniteui-" + this.
|
|
58763
|
+
this.g.addPackageImport("igniteui-" + this.t + "-core", f);
|
|
58685
58764
|
this.c.k(f + ".register(context);");
|
|
58686
58765
|
}
|
|
58687
|
-
this.
|
|
58766
|
+
this.s++;
|
|
58688
58767
|
}
|
|
58689
|
-
|
|
58690
|
-
super.
|
|
58691
|
-
for (let a of fromEnum(this.
|
|
58768
|
+
n() {
|
|
58769
|
+
super.n();
|
|
58770
|
+
for (let a of fromEnum(this.r.keys)) {
|
|
58692
58771
|
let b = a;
|
|
58693
|
-
let c = this.
|
|
58772
|
+
let c = this.r.item(a);
|
|
58694
58773
|
for (let d of fromEnum(c)) {
|
|
58695
58774
|
this.h.addPackageImport(b, d);
|
|
58696
58775
|
}
|
|
58697
58776
|
}
|
|
58698
|
-
if (this.
|
|
58777
|
+
if (this.q) {
|
|
58699
58778
|
this.c.f();
|
|
58700
58779
|
this.c.k("}");
|
|
58701
|
-
this.c.k("return this._componentRenderer");
|
|
58780
|
+
this.c.k("return this._componentRenderer;");
|
|
58702
58781
|
this.c.f();
|
|
58703
58782
|
this.c.k("}");
|
|
58704
58783
|
}
|
|
@@ -58721,43 +58800,45 @@ let DotNetCodeGeneratingComponentRendererModuleEmitter = /*@__PURE__*/ (() => {
|
|
|
58721
58800
|
class DotNetCodeGeneratingComponentRendererModuleEmitter extends CodeGeneratingComponentRendererModuleEmitter {
|
|
58722
58801
|
constructor(a, b, c) {
|
|
58723
58802
|
super(b, c);
|
|
58724
|
-
this.
|
|
58725
|
-
this.
|
|
58726
|
-
this.
|
|
58727
|
-
this.
|
|
58728
|
-
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;
|
|
58729
58808
|
}
|
|
58730
|
-
get
|
|
58731
|
-
return this.
|
|
58809
|
+
get t() {
|
|
58810
|
+
return this.s;
|
|
58732
58811
|
}
|
|
58733
|
-
|
|
58734
|
-
super.
|
|
58735
|
-
this.
|
|
58812
|
+
o() {
|
|
58813
|
+
super.o();
|
|
58814
|
+
this.s = 0;
|
|
58736
58815
|
}
|
|
58737
|
-
get
|
|
58738
|
-
switch (this.
|
|
58816
|
+
get u() {
|
|
58817
|
+
switch (this.p) {
|
|
58739
58818
|
case 0: return "Xam";
|
|
58740
58819
|
case 4: return "Ultra";
|
|
58741
58820
|
case 5: return "Igb";
|
|
58742
58821
|
}
|
|
58743
58822
|
return "";
|
|
58744
58823
|
}
|
|
58745
|
-
|
|
58746
|
-
super.
|
|
58747
|
-
if (a == "withDescriptions" && this.
|
|
58748
|
-
this.
|
|
58824
|
+
l(a) {
|
|
58825
|
+
super.l(a);
|
|
58826
|
+
if (a == "withDescriptions" && this.p != 5) {
|
|
58827
|
+
this.q = true;
|
|
58749
58828
|
return;
|
|
58750
58829
|
}
|
|
58751
58830
|
let b = "";
|
|
58752
58831
|
let c = a.split('/');
|
|
58753
58832
|
if (c.length == 1) {
|
|
58754
58833
|
b = c[0];
|
|
58834
|
+
this.j.addPackageRef(b);
|
|
58755
58835
|
}
|
|
58756
58836
|
else {
|
|
58837
|
+
this.j.addPackageRef(c[0]);
|
|
58757
58838
|
b = c[1];
|
|
58758
58839
|
}
|
|
58759
|
-
if (this.
|
|
58760
|
-
if (this.
|
|
58840
|
+
if (this.q) {
|
|
58841
|
+
if (this.s == 0) {
|
|
58761
58842
|
this.c.k("private ComponentRenderer _componentRenderer = null;");
|
|
58762
58843
|
this.c.k("public ComponentRenderer Renderer");
|
|
58763
58844
|
this.c.k("{");
|
|
@@ -58778,11 +58859,11 @@ let DotNetCodeGeneratingComponentRendererModuleEmitter = /*@__PURE__*/ (() => {
|
|
|
58778
58859
|
}
|
|
58779
58860
|
this.c.k(d + ".Register(context);");
|
|
58780
58861
|
}
|
|
58781
|
-
this.
|
|
58862
|
+
this.s++;
|
|
58782
58863
|
}
|
|
58783
|
-
|
|
58784
|
-
super.
|
|
58785
|
-
if (this.
|
|
58864
|
+
n() {
|
|
58865
|
+
super.n();
|
|
58866
|
+
if (this.q) {
|
|
58786
58867
|
this.g.addUsing("using Infragistics.Controls.Description;");
|
|
58787
58868
|
this.c.f();
|
|
58788
58869
|
this.c.k("}");
|
|
@@ -58811,14 +58892,14 @@ let BlazorCodeGeneratingComponentRendererModuleEmitter = /*@__PURE__*/ (() => {
|
|
|
58811
58892
|
class BlazorCodeGeneratingComponentRendererModuleEmitter extends DotNetCodeGeneratingComponentRendererModuleEmitter {
|
|
58812
58893
|
constructor(a, b, c) {
|
|
58813
58894
|
super(a, b, c);
|
|
58814
|
-
this.
|
|
58895
|
+
this.v = 0;
|
|
58815
58896
|
}
|
|
58816
|
-
|
|
58817
|
-
super.
|
|
58897
|
+
o() {
|
|
58898
|
+
super.o();
|
|
58818
58899
|
}
|
|
58819
|
-
|
|
58820
|
-
super.
|
|
58821
|
-
if (this.
|
|
58900
|
+
l(a) {
|
|
58901
|
+
super.l(a);
|
|
58902
|
+
if (this.v > 0) {
|
|
58822
58903
|
this.d.k(", ");
|
|
58823
58904
|
}
|
|
58824
58905
|
let b = "";
|
|
@@ -58837,10 +58918,10 @@ let BlazorCodeGeneratingComponentRendererModuleEmitter = /*@__PURE__*/ (() => {
|
|
|
58837
58918
|
this.d.j("Igb" + b);
|
|
58838
58919
|
this.d.j(")");
|
|
58839
58920
|
}
|
|
58840
|
-
this.
|
|
58921
|
+
this.v++;
|
|
58841
58922
|
}
|
|
58842
|
-
|
|
58843
|
-
super.
|
|
58923
|
+
n() {
|
|
58924
|
+
super.n();
|
|
58844
58925
|
}
|
|
58845
58926
|
}
|
|
58846
58927
|
BlazorCodeGeneratingComponentRendererModuleEmitter.$t = markType(BlazorCodeGeneratingComponentRendererModuleEmitter, 'BlazorCodeGeneratingComponentRendererModuleEmitter', DotNetCodeGeneratingComponentRendererModuleEmitter.$);
|
|
@@ -59272,16 +59353,16 @@ let CodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
|
|
|
59272
59353
|
super();
|
|
59273
59354
|
this.k = null;
|
|
59274
59355
|
this.i = null;
|
|
59275
|
-
this.
|
|
59356
|
+
this.t = new List$1(CodeGenerationItemBuilderPropertyInfo.$, 0);
|
|
59276
59357
|
this.d = null;
|
|
59277
59358
|
this.a = null;
|
|
59278
59359
|
this.c = null;
|
|
59279
59360
|
this.b = null;
|
|
59280
|
-
this.
|
|
59281
|
-
this.
|
|
59282
|
-
this.
|
|
59283
|
-
this.
|
|
59284
|
-
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;
|
|
59285
59366
|
this.k = a;
|
|
59286
59367
|
this.i = b;
|
|
59287
59368
|
this.d = new CodeGeneratingCodeWriter(this.k);
|
|
@@ -59289,8 +59370,8 @@ let CodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
|
|
|
59289
59370
|
this.c = new CodeGeneratingCodeWriter(this.k);
|
|
59290
59371
|
this.b = new CodeGeneratingCodeWriter(this.k);
|
|
59291
59372
|
}
|
|
59292
|
-
|
|
59293
|
-
this.i.
|
|
59373
|
+
a8(a) {
|
|
59374
|
+
this.i.ae(a);
|
|
59294
59375
|
}
|
|
59295
59376
|
get j() {
|
|
59296
59377
|
return this.i;
|
|
@@ -59307,8 +59388,8 @@ let CodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
|
|
|
59307
59388
|
get f() {
|
|
59308
59389
|
return this.b;
|
|
59309
59390
|
}
|
|
59310
|
-
|
|
59311
|
-
this.
|
|
59391
|
+
at(a) {
|
|
59392
|
+
this.u.add(a);
|
|
59312
59393
|
}
|
|
59313
59394
|
n(a) {
|
|
59314
59395
|
if (a.b != null && (a.b.knownType == 20 || a.b.knownType == 19 || a.b.knownType == 18)) {
|
|
@@ -59318,39 +59399,47 @@ let CodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
|
|
|
59318
59399
|
}
|
|
59319
59400
|
return false;
|
|
59320
59401
|
}
|
|
59321
|
-
|
|
59322
|
-
|
|
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;
|
|
59323
59409
|
}
|
|
59324
|
-
|
|
59325
|
-
this.
|
|
59410
|
+
get ae() {
|
|
59411
|
+
return this.x.d();
|
|
59326
59412
|
}
|
|
59327
|
-
|
|
59413
|
+
au(a) {
|
|
59414
|
+
this.x.h(a);
|
|
59328
59415
|
}
|
|
59329
|
-
|
|
59330
|
-
this.w.e();
|
|
59416
|
+
a7() {
|
|
59331
59417
|
}
|
|
59332
|
-
|
|
59418
|
+
a2(a) {
|
|
59419
|
+
this.x.e();
|
|
59333
59420
|
}
|
|
59334
59421
|
a0(a, b, c, d) {
|
|
59335
|
-
|
|
59422
|
+
}
|
|
59423
|
+
a1(a, b, c, d) {
|
|
59424
|
+
this.a0(a, b, c, d);
|
|
59336
59425
|
}
|
|
59337
59426
|
toString() {
|
|
59338
59427
|
return this.d.toString();
|
|
59339
59428
|
}
|
|
59340
|
-
|
|
59429
|
+
am() {
|
|
59341
59430
|
return "null";
|
|
59342
59431
|
}
|
|
59343
|
-
|
|
59432
|
+
ap(a, b) {
|
|
59344
59433
|
if (a.b == null) {
|
|
59345
59434
|
return a.c;
|
|
59346
59435
|
}
|
|
59347
59436
|
if (typeCast(CodeGenerationSpecialValue.$, a.c) !== null) {
|
|
59348
|
-
a.c = this.
|
|
59437
|
+
a.c = this.y(a);
|
|
59349
59438
|
}
|
|
59350
59439
|
switch (a.b.knownType) {
|
|
59351
|
-
case 10: return this.
|
|
59440
|
+
case 10: return this.af(a);
|
|
59352
59441
|
case 7: return a.c ? "true" : "false";
|
|
59353
|
-
case 4: return this.
|
|
59442
|
+
case 4: return this.aa(a);
|
|
59354
59443
|
case 6:
|
|
59355
59444
|
{
|
|
59356
59445
|
let c = "";
|
|
@@ -59359,13 +59448,13 @@ let CodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
|
|
|
59359
59448
|
if (e >= 1) {
|
|
59360
59449
|
c += " ";
|
|
59361
59450
|
}
|
|
59362
|
-
c += this.
|
|
59451
|
+
c += this.z(d.item(e));
|
|
59363
59452
|
}
|
|
59364
59453
|
return c;
|
|
59365
59454
|
}
|
|
59366
59455
|
break;
|
|
59367
59456
|
case 9: throw new NotSupportedException(1, "shouldn't get here");
|
|
59368
|
-
case 5: return this.
|
|
59457
|
+
case 5: return this.ac(a);
|
|
59369
59458
|
case 16:
|
|
59370
59459
|
{
|
|
59371
59460
|
let f = "";
|
|
@@ -59374,44 +59463,44 @@ let CodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
|
|
|
59374
59463
|
if (h >= 1) {
|
|
59375
59464
|
f += " ";
|
|
59376
59465
|
}
|
|
59377
|
-
f += this.
|
|
59466
|
+
f += this.ab(g.item(h));
|
|
59378
59467
|
}
|
|
59379
59468
|
return f;
|
|
59380
59469
|
}
|
|
59381
59470
|
break;
|
|
59382
59471
|
case 20:
|
|
59383
59472
|
if (a.a != null) {
|
|
59384
|
-
return this.
|
|
59473
|
+
return this.ao(a);
|
|
59385
59474
|
}
|
|
59386
59475
|
if (a.c == null) {
|
|
59387
|
-
return this.
|
|
59476
|
+
return this.am();
|
|
59388
59477
|
}
|
|
59389
59478
|
break;
|
|
59390
59479
|
case 15: throw new NotSupportedException(1, "need to figure this out");
|
|
59391
59480
|
case 3: throw new NotSupportedException(1, "need to figure this out");
|
|
59392
59481
|
case 19:
|
|
59393
59482
|
if (a.a != null) {
|
|
59394
|
-
return this.
|
|
59483
|
+
return this.aj(a);
|
|
59395
59484
|
}
|
|
59396
59485
|
else {
|
|
59397
|
-
return this.
|
|
59486
|
+
return this.am();
|
|
59398
59487
|
}
|
|
59399
59488
|
break;
|
|
59400
59489
|
case 8:
|
|
59401
59490
|
if (a.b.specificExternalType == "string") {
|
|
59402
|
-
return this.
|
|
59491
|
+
return this.ai(a);
|
|
59403
59492
|
}
|
|
59404
59493
|
if (a.a != null) {
|
|
59405
|
-
return this.
|
|
59494
|
+
return this.ak(a);
|
|
59406
59495
|
}
|
|
59407
59496
|
throw new NotSupportedException(1, "shouldn't get here");
|
|
59408
59497
|
case 13: throw new NotSupportedException(1, "shouldn't get here");
|
|
59409
59498
|
case 18:
|
|
59410
59499
|
if (a.a != null) {
|
|
59411
|
-
return this.
|
|
59500
|
+
return this.al(a);
|
|
59412
59501
|
}
|
|
59413
59502
|
else {
|
|
59414
|
-
return this.
|
|
59503
|
+
return this.am();
|
|
59415
59504
|
}
|
|
59416
59505
|
break;
|
|
59417
59506
|
case 1: return a.c.toString();
|
|
@@ -59430,7 +59519,7 @@ let CodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
|
|
|
59430
59519
|
let k = a.c;
|
|
59431
59520
|
return k.width + ", " + k.height;
|
|
59432
59521
|
}
|
|
59433
|
-
case 2: return a.c != null ? a.c.toString() : this.
|
|
59522
|
+
case 2: return a.c != null ? a.c.toString() : this.am();
|
|
59434
59523
|
case 21: return a.c.toString();
|
|
59435
59524
|
case 17:
|
|
59436
59525
|
if (a.c == null) {
|
|
@@ -59444,22 +59533,22 @@ let CodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
|
|
|
59444
59533
|
}
|
|
59445
59534
|
return "";
|
|
59446
59535
|
}
|
|
59447
|
-
|
|
59536
|
+
af(a) {
|
|
59448
59537
|
return "";
|
|
59449
59538
|
}
|
|
59450
|
-
|
|
59539
|
+
y(a) {
|
|
59451
59540
|
return a.c;
|
|
59452
59541
|
}
|
|
59453
|
-
|
|
59542
|
+
ao(a) {
|
|
59454
59543
|
if (!stringIsNullOrEmpty(a.a.e)) {
|
|
59455
59544
|
if (a.a.a) {
|
|
59456
|
-
return this.
|
|
59545
|
+
return this.ah(a);
|
|
59457
59546
|
}
|
|
59458
59547
|
else {
|
|
59459
|
-
return this.
|
|
59548
|
+
return this.an(a);
|
|
59460
59549
|
}
|
|
59461
59550
|
}
|
|
59462
|
-
return this.
|
|
59551
|
+
return this.am();
|
|
59463
59552
|
}
|
|
59464
59553
|
o(a) {
|
|
59465
59554
|
if (a.a != null && !stringIsNullOrEmpty(a.a.e)) {
|
|
@@ -59469,138 +59558,138 @@ let CodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
|
|
|
59469
59558
|
}
|
|
59470
59559
|
return false;
|
|
59471
59560
|
}
|
|
59472
|
-
|
|
59561
|
+
an(a) {
|
|
59473
59562
|
return "";
|
|
59474
59563
|
}
|
|
59475
|
-
|
|
59564
|
+
ah(a) {
|
|
59476
59565
|
return "";
|
|
59477
59566
|
}
|
|
59478
|
-
|
|
59567
|
+
ak(a) {
|
|
59479
59568
|
if (!stringIsNullOrEmpty(a.a.e)) {
|
|
59480
59569
|
return a.a.e;
|
|
59481
59570
|
}
|
|
59482
|
-
return this.
|
|
59571
|
+
return this.am();
|
|
59483
59572
|
}
|
|
59484
|
-
|
|
59573
|
+
ai(a) {
|
|
59485
59574
|
return a.c != null ? a.c.toString() : "";
|
|
59486
59575
|
}
|
|
59487
|
-
|
|
59488
|
-
return this.
|
|
59576
|
+
al(a) {
|
|
59577
|
+
return this.aj(a);
|
|
59489
59578
|
}
|
|
59490
|
-
|
|
59579
|
+
aj(a) {
|
|
59491
59580
|
if (!stringIsNullOrEmpty(a.a.e)) {
|
|
59492
|
-
this.
|
|
59581
|
+
this.a8(a);
|
|
59493
59582
|
return a.a.e;
|
|
59494
59583
|
}
|
|
59495
|
-
return this.
|
|
59584
|
+
return this.am();
|
|
59496
59585
|
}
|
|
59497
|
-
|
|
59586
|
+
get_r() {
|
|
59498
59587
|
return false;
|
|
59499
59588
|
}
|
|
59500
|
-
get
|
|
59501
|
-
return this.
|
|
59589
|
+
get r() {
|
|
59590
|
+
return this.get_r();
|
|
59502
59591
|
}
|
|
59503
|
-
|
|
59592
|
+
ac(a) {
|
|
59504
59593
|
let b = a.c;
|
|
59505
|
-
return ColorUtil.i(b, this.
|
|
59594
|
+
return ColorUtil.i(b, this.r);
|
|
59506
59595
|
}
|
|
59507
|
-
|
|
59596
|
+
ab(a) {
|
|
59508
59597
|
let b = a;
|
|
59509
|
-
return ColorUtil.i(b, this.
|
|
59598
|
+
return ColorUtil.i(b, this.r);
|
|
59510
59599
|
}
|
|
59511
|
-
|
|
59600
|
+
aa(a) {
|
|
59512
59601
|
if (a.c == null) {
|
|
59513
59602
|
return "";
|
|
59514
59603
|
}
|
|
59515
59604
|
let b = a.c;
|
|
59516
|
-
return ColorUtil.i(b.color, this.
|
|
59605
|
+
return ColorUtil.i(b.color, this.r);
|
|
59517
59606
|
}
|
|
59518
|
-
|
|
59607
|
+
z(a) {
|
|
59519
59608
|
if (a == null) {
|
|
59520
59609
|
return "";
|
|
59521
59610
|
}
|
|
59522
59611
|
let b = a;
|
|
59523
|
-
return ColorUtil.i(b.color, this.
|
|
59612
|
+
return ColorUtil.i(b.color, this.r);
|
|
59524
59613
|
}
|
|
59525
|
-
|
|
59526
|
-
this.
|
|
59527
|
-
this.
|
|
59614
|
+
a6(a) {
|
|
59615
|
+
this.v.h(a);
|
|
59616
|
+
this.w.h(false);
|
|
59528
59617
|
}
|
|
59529
|
-
|
|
59530
|
-
let b = this.
|
|
59531
|
-
this.
|
|
59532
|
-
this.
|
|
59618
|
+
a5(a) {
|
|
59619
|
+
let b = this.ag(a);
|
|
59620
|
+
this.v.h(b);
|
|
59621
|
+
this.w.h(true);
|
|
59533
59622
|
}
|
|
59534
|
-
|
|
59535
|
-
let b = stringReplace(stringReplace(a, this.
|
|
59623
|
+
ag(a) {
|
|
59624
|
+
let b = stringReplace(stringReplace(a, this.ar, ""), "Component", "");
|
|
59536
59625
|
b = CodeGeneratingComponentRenderer.dp(b);
|
|
59537
|
-
return this.i.
|
|
59626
|
+
return this.i.u(b);
|
|
59538
59627
|
}
|
|
59539
|
-
|
|
59540
|
-
this.u.e();
|
|
59628
|
+
a3() {
|
|
59541
59629
|
this.v.e();
|
|
59630
|
+
this.w.e();
|
|
59542
59631
|
}
|
|
59543
|
-
|
|
59632
|
+
get_ar() {
|
|
59544
59633
|
return "";
|
|
59545
59634
|
}
|
|
59546
|
-
get
|
|
59547
|
-
return this.
|
|
59635
|
+
get ar() {
|
|
59636
|
+
return this.get_ar();
|
|
59548
59637
|
}
|
|
59549
|
-
get
|
|
59550
|
-
if (this.
|
|
59551
|
-
return this.
|
|
59638
|
+
get ad() {
|
|
59639
|
+
if (this.v.f > 0) {
|
|
59640
|
+
return this.v.d();
|
|
59552
59641
|
}
|
|
59553
|
-
let a = stringReplace(stringReplace(this.
|
|
59642
|
+
let a = stringReplace(stringReplace(this.ae, this.ar, ""), "Component", "");
|
|
59554
59643
|
return CodeGeneratingComponentRenderer.dp(a);
|
|
59555
59644
|
}
|
|
59556
|
-
get
|
|
59557
|
-
return this.
|
|
59645
|
+
get q() {
|
|
59646
|
+
return this.x.f == 1;
|
|
59558
59647
|
}
|
|
59559
59648
|
get l() {
|
|
59560
|
-
if (this.
|
|
59649
|
+
if (this.w.f == 0) {
|
|
59561
59650
|
return false;
|
|
59562
59651
|
}
|
|
59563
|
-
return this.
|
|
59652
|
+
return this.w.d();
|
|
59564
59653
|
}
|
|
59565
59654
|
get m() {
|
|
59566
|
-
if (this.
|
|
59655
|
+
if (this.v.f > 0) {
|
|
59567
59656
|
return true;
|
|
59568
59657
|
}
|
|
59569
59658
|
return false;
|
|
59570
59659
|
}
|
|
59571
|
-
|
|
59660
|
+
get_s() {
|
|
59572
59661
|
return true;
|
|
59573
59662
|
}
|
|
59574
|
-
get
|
|
59575
|
-
return this.
|
|
59663
|
+
get s() {
|
|
59664
|
+
return this.get_s();
|
|
59576
59665
|
}
|
|
59577
|
-
|
|
59578
|
-
this.
|
|
59666
|
+
a4() {
|
|
59667
|
+
this.v.e();
|
|
59579
59668
|
}
|
|
59580
|
-
|
|
59669
|
+
aw(a) {
|
|
59581
59670
|
let b = this.f.toString();
|
|
59582
59671
|
if (b.length > 0) {
|
|
59583
59672
|
a.l(b);
|
|
59584
59673
|
}
|
|
59585
59674
|
}
|
|
59586
|
-
|
|
59675
|
+
az(a) {
|
|
59587
59676
|
let b = this.g.toString();
|
|
59588
59677
|
if (b.length > 0) {
|
|
59589
59678
|
a.l(b);
|
|
59590
59679
|
}
|
|
59591
59680
|
}
|
|
59592
|
-
|
|
59681
|
+
av(a) {
|
|
59593
59682
|
let b = this.e.toString();
|
|
59594
59683
|
if (b.length > 0) {
|
|
59595
59684
|
a.l(b);
|
|
59596
59685
|
}
|
|
59597
59686
|
}
|
|
59598
|
-
|
|
59599
|
-
if (this.
|
|
59600
|
-
this.
|
|
59687
|
+
ax(a) {
|
|
59688
|
+
if (this.u.count > 0) {
|
|
59689
|
+
this.ay(this.u, a);
|
|
59601
59690
|
}
|
|
59602
59691
|
}
|
|
59603
|
-
|
|
59692
|
+
ay(a, b) {
|
|
59604
59693
|
}
|
|
59605
59694
|
}
|
|
59606
59695
|
CodeGeneratingComponentRendererCodeEmitter.$t = markType(CodeGeneratingComponentRendererCodeEmitter, 'CodeGeneratingComponentRendererCodeEmitter');
|
|
@@ -59613,14 +59702,14 @@ let BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() =>
|
|
|
59613
59702
|
class BlazorRazorCodeGeneratingComponentRendererCodeEmitter extends CodeGeneratingComponentRendererCodeEmitter {
|
|
59614
59703
|
constructor(a, b) {
|
|
59615
59704
|
super(a, b);
|
|
59616
|
-
this.
|
|
59617
|
-
this.a8 = new HashSet$1(String_$type, 0);
|
|
59705
|
+
this.bb = 0;
|
|
59618
59706
|
this.a9 = new HashSet$1(String_$type, 0);
|
|
59707
|
+
this.ba = new HashSet$1(String_$type, 0);
|
|
59619
59708
|
}
|
|
59620
|
-
|
|
59709
|
+
get_s() {
|
|
59621
59710
|
return false;
|
|
59622
59711
|
}
|
|
59623
|
-
|
|
59712
|
+
bc(a, b) {
|
|
59624
59713
|
if (b.c == null) {
|
|
59625
59714
|
return "null";
|
|
59626
59715
|
}
|
|
@@ -59635,9 +59724,9 @@ let BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() =>
|
|
|
59635
59724
|
d += " })";
|
|
59636
59725
|
return d;
|
|
59637
59726
|
}
|
|
59638
|
-
|
|
59727
|
+
af(a) {
|
|
59639
59728
|
if (a.b.specificExternalType == "string") {
|
|
59640
|
-
return this.
|
|
59729
|
+
return this.bc(a.b.specificExternalType, a);
|
|
59641
59730
|
}
|
|
59642
59731
|
if (a.c == null) {
|
|
59643
59732
|
return "null";
|
|
@@ -59652,38 +59741,38 @@ let BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() =>
|
|
|
59652
59741
|
}
|
|
59653
59742
|
return c;
|
|
59654
59743
|
}
|
|
59655
|
-
|
|
59656
|
-
super.
|
|
59744
|
+
au(a) {
|
|
59745
|
+
super.au(a);
|
|
59657
59746
|
this.h.k("<" + a + "");
|
|
59658
|
-
if (!this.
|
|
59659
|
-
this.
|
|
59660
|
-
if (!this.
|
|
59661
|
-
this.
|
|
59662
|
-
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);
|
|
59663
59752
|
}
|
|
59664
|
-
this.f.k("private " + this.
|
|
59753
|
+
this.f.k("private " + this.ae + " " + CodeGeneratingComponentRenderer.dp(this.ad) + ";");
|
|
59665
59754
|
if (!this.m) {
|
|
59666
|
-
if (this.
|
|
59667
|
-
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) + ";");
|
|
59668
59757
|
}
|
|
59669
59758
|
}
|
|
59670
59759
|
else {
|
|
59671
|
-
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.
|
|
59760
|
+
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + ";");
|
|
59672
59761
|
}
|
|
59673
59762
|
}
|
|
59674
59763
|
}
|
|
59675
|
-
|
|
59764
|
+
a7() {
|
|
59676
59765
|
this.h.k(">");
|
|
59677
59766
|
this.h.h();
|
|
59678
59767
|
}
|
|
59679
|
-
|
|
59768
|
+
a2(a) {
|
|
59680
59769
|
this.h.f();
|
|
59681
59770
|
this.h.k("</" + a + ">");
|
|
59682
|
-
super.
|
|
59771
|
+
super.a2(a);
|
|
59683
59772
|
}
|
|
59684
|
-
|
|
59773
|
+
a0(a, b, c, d) {
|
|
59685
59774
|
if (c.b != null && d.h(c.b.owningType, CodeGeneratingComponentRenderer.dq(c.b.propertyName)) && this.n(c)) {
|
|
59686
|
-
this.
|
|
59775
|
+
this.a8(c);
|
|
59687
59776
|
if (a > 0) {
|
|
59688
59777
|
this.h.k("");
|
|
59689
59778
|
}
|
|
@@ -59696,29 +59785,29 @@ let BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() =>
|
|
|
59696
59785
|
return;
|
|
59697
59786
|
}
|
|
59698
59787
|
if (this.o(c)) {
|
|
59699
|
-
this.
|
|
59700
|
-
if (!this.
|
|
59701
|
-
this.
|
|
59702
|
-
if (!this.
|
|
59703
|
-
this.
|
|
59704
|
-
this.
|
|
59705
|
-
}
|
|
59706
|
-
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) + ";");
|
|
59707
59796
|
if (!this.m) {
|
|
59708
|
-
if (this.
|
|
59709
|
-
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) + ";");
|
|
59710
59799
|
}
|
|
59711
59800
|
}
|
|
59712
59801
|
else {
|
|
59713
|
-
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.
|
|
59802
|
+
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + ";");
|
|
59714
59803
|
}
|
|
59715
59804
|
}
|
|
59716
|
-
let e = CodeGeneratingComponentRenderer.dp(this.
|
|
59805
|
+
let e = CodeGeneratingComponentRenderer.dp(this.ap(c, true));
|
|
59717
59806
|
let f = e;
|
|
59718
59807
|
if (f != "null" && !stringStartsWith(f, "this.")) {
|
|
59719
59808
|
f = "this." + f;
|
|
59720
59809
|
}
|
|
59721
|
-
this.e.k(CodeGeneratingComponentRenderer.dp(this.
|
|
59810
|
+
this.e.k(CodeGeneratingComponentRenderer.dp(this.ad) + "." + b + " = " + f + ";");
|
|
59722
59811
|
return;
|
|
59723
59812
|
}
|
|
59724
59813
|
if (a > 0) {
|
|
@@ -59732,19 +59821,56 @@ let BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() =>
|
|
|
59732
59821
|
this.h.j(b);
|
|
59733
59822
|
this.h.j("=");
|
|
59734
59823
|
this.h.j("\"");
|
|
59735
|
-
this.h.j(this.
|
|
59824
|
+
this.h.j(this.ap(c, true));
|
|
59736
59825
|
this.h.j("\"");
|
|
59737
59826
|
}
|
|
59738
59827
|
if (b == "Name") {
|
|
59739
59828
|
this.h.k("");
|
|
59740
|
-
this.h.j("@ref=\"" + CodeGeneratingComponentRenderer.dp(this.
|
|
59829
|
+
this.h.j("@ref=\"" + CodeGeneratingComponentRenderer.dp(this.ap(c, true)) + "\"");
|
|
59741
59830
|
}
|
|
59742
59831
|
}
|
|
59743
|
-
|
|
59832
|
+
ai(a) {
|
|
59744
59833
|
let b = a.b != null ? a.b.specificType + "." : "";
|
|
59745
59834
|
return b + (a.c != null ? a.c.toString() : "");
|
|
59746
59835
|
}
|
|
59747
|
-
|
|
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) {
|
|
59748
59874
|
let b = a.c;
|
|
59749
59875
|
switch (b.a) {
|
|
59750
59876
|
case 3: return b.b;
|
|
@@ -59754,21 +59880,21 @@ let BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() =>
|
|
|
59754
59880
|
}
|
|
59755
59881
|
return b.b;
|
|
59756
59882
|
}
|
|
59757
|
-
|
|
59883
|
+
am() {
|
|
59758
59884
|
return "@null";
|
|
59759
59885
|
}
|
|
59760
|
-
|
|
59886
|
+
ah(a) {
|
|
59761
59887
|
return CodeGeneratingComponentRenderer.dp(CodeGeneratingComponentRenderer.dp(a.a.e));
|
|
59762
59888
|
}
|
|
59763
|
-
|
|
59889
|
+
bd(a) {
|
|
59764
59890
|
a = stringReplace(a, "-", "_");
|
|
59765
59891
|
return CodeGeneratingComponentRenderer.dq(a);
|
|
59766
59892
|
}
|
|
59767
|
-
|
|
59768
|
-
this.
|
|
59893
|
+
an(a) {
|
|
59894
|
+
this.a8(a);
|
|
59769
59895
|
return CodeGeneratingComponentRenderer.dq(a.a.e);
|
|
59770
59896
|
}
|
|
59771
|
-
|
|
59897
|
+
a1(a, b, c, d) {
|
|
59772
59898
|
if (c.b.knownType == 9) {
|
|
59773
59899
|
let e = typeCast(IList_$type, c.c);
|
|
59774
59900
|
if (e != null) {
|
|
@@ -59787,7 +59913,7 @@ let BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() =>
|
|
|
59787
59913
|
}
|
|
59788
59914
|
}
|
|
59789
59915
|
}
|
|
59790
|
-
|
|
59916
|
+
get_ar() {
|
|
59791
59917
|
return "Igb";
|
|
59792
59918
|
}
|
|
59793
59919
|
}
|
|
@@ -59802,7 +59928,7 @@ let BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (
|
|
|
59802
59928
|
constructor(a, b) {
|
|
59803
59929
|
super(a, b);
|
|
59804
59930
|
}
|
|
59805
|
-
|
|
59931
|
+
get_s() {
|
|
59806
59932
|
return false;
|
|
59807
59933
|
}
|
|
59808
59934
|
}
|
|
@@ -59816,10 +59942,10 @@ let ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() =>
|
|
|
59816
59942
|
class ReactMarkupCodeGeneratingComponentRendererCodeEmitter extends CodeGeneratingComponentRendererCodeEmitter {
|
|
59817
59943
|
constructor(a, b) {
|
|
59818
59944
|
super(a, b);
|
|
59819
|
-
this.a8 = new HashSet$1(String_$type, 0);
|
|
59820
59945
|
this.a9 = new HashSet$1(String_$type, 0);
|
|
59946
|
+
this.ba = new HashSet$1(String_$type, 0);
|
|
59821
59947
|
}
|
|
59822
|
-
|
|
59948
|
+
af(a) {
|
|
59823
59949
|
if (a.c == null) {
|
|
59824
59950
|
return "{null}";
|
|
59825
59951
|
}
|
|
@@ -59834,43 +59960,43 @@ let ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() =>
|
|
|
59834
59960
|
c += "]";
|
|
59835
59961
|
return c;
|
|
59836
59962
|
}
|
|
59837
|
-
|
|
59963
|
+
get_r() {
|
|
59838
59964
|
return true;
|
|
59839
59965
|
}
|
|
59840
|
-
|
|
59966
|
+
get_ar() {
|
|
59841
59967
|
return "Igr";
|
|
59842
59968
|
}
|
|
59843
|
-
|
|
59844
|
-
super.
|
|
59845
|
-
this.h.k("<" + this.
|
|
59969
|
+
au(a) {
|
|
59970
|
+
super.au(a);
|
|
59971
|
+
this.h.k("<" + this.bc(a) + "");
|
|
59846
59972
|
this.h.h();
|
|
59847
|
-
if (!this.
|
|
59848
|
-
this.
|
|
59849
|
-
|
|
59850
|
-
|
|
59851
|
-
|
|
59852
|
-
|
|
59853
|
-
this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.
|
|
59854
|
-
if (this.
|
|
59855
|
-
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 + ") {");
|
|
59856
59982
|
this.f.h();
|
|
59857
|
-
this.f.k("this." + CodeGeneratingComponentRenderer.dp(this.
|
|
59983
|
+
this.f.k("this." + CodeGeneratingComponentRenderer.dp(this.ad) + " = r;");
|
|
59858
59984
|
this.f.k("this.setState({});");
|
|
59859
59985
|
this.f.f();
|
|
59860
59986
|
this.f.k("}");
|
|
59861
|
-
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);");
|
|
59862
59988
|
}
|
|
59863
59989
|
}
|
|
59864
59990
|
}
|
|
59865
|
-
|
|
59991
|
+
bc(a) {
|
|
59866
59992
|
if (stringEndsWith(a, "Component")) {
|
|
59867
59993
|
a = a.substr(0, a.length - ("Component").length);
|
|
59868
59994
|
}
|
|
59869
59995
|
return CodeGeneratingComponentRenderer.dq(a);
|
|
59870
59996
|
}
|
|
59871
|
-
|
|
59872
|
-
if (!this.
|
|
59873
|
-
let a = this.
|
|
59997
|
+
a7() {
|
|
59998
|
+
if (!this.q && !this.m) {
|
|
59999
|
+
let a = this.bb();
|
|
59874
60000
|
this.h.k("");
|
|
59875
60001
|
this.h.k("name=\"" + a + "\"");
|
|
59876
60002
|
}
|
|
@@ -59878,31 +60004,31 @@ let ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() =>
|
|
|
59878
60004
|
this.h.k(">");
|
|
59879
60005
|
this.h.h();
|
|
59880
60006
|
}
|
|
59881
|
-
|
|
59882
|
-
let a = CodeGeneratingComponentRenderer.dp(stringReplace(stringReplace(this.
|
|
59883
|
-
a = this.j.
|
|
60007
|
+
bb() {
|
|
60008
|
+
let a = CodeGeneratingComponentRenderer.dp(stringReplace(stringReplace(this.ae, this.ar, ""), "Component", ""));
|
|
60009
|
+
a = this.j.t(a);
|
|
59884
60010
|
return a;
|
|
59885
60011
|
}
|
|
59886
|
-
|
|
60012
|
+
aj(a) {
|
|
59887
60013
|
if (!stringIsNullOrEmpty(a.a.e)) {
|
|
59888
|
-
this.
|
|
59889
|
-
if (!this.
|
|
60014
|
+
this.a8(a);
|
|
60015
|
+
if (!this.a9.contains(a.a.e)) {
|
|
59890
60016
|
this.g.k("this." + CodeGeneratingComponentRenderer.dp(a.a.e) + " = " + "this." + CodeGeneratingComponentRenderer.dp(a.a.e) + ".bind(this);");
|
|
59891
60017
|
}
|
|
59892
60018
|
return "this." + CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
59893
60019
|
}
|
|
59894
|
-
return this.
|
|
60020
|
+
return this.am();
|
|
59895
60021
|
}
|
|
59896
|
-
|
|
60022
|
+
a2(a) {
|
|
59897
60023
|
this.h.f();
|
|
59898
|
-
this.h.k("</" + this.
|
|
59899
|
-
super.
|
|
60024
|
+
this.h.k("</" + this.bc(a) + ">");
|
|
60025
|
+
super.a2(a);
|
|
59900
60026
|
}
|
|
59901
|
-
|
|
60027
|
+
a0(a, b, c, d) {
|
|
59902
60028
|
let e = CodeGeneratingComponentRenderer.dp(b);
|
|
59903
|
-
let f = this.
|
|
60029
|
+
let f = this.ap(c, true);
|
|
59904
60030
|
if (c.b != null && d.h(c.b.owningType, CodeGeneratingComponentRenderer.dq(c.b.propertyName)) && this.n(c)) {
|
|
59905
|
-
this.
|
|
60031
|
+
this.a8(c);
|
|
59906
60032
|
if (a > 0) {
|
|
59907
60033
|
this.h.k("");
|
|
59908
60034
|
}
|
|
@@ -59914,10 +60040,10 @@ let ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() =>
|
|
|
59914
60040
|
}
|
|
59915
60041
|
return;
|
|
59916
60042
|
}
|
|
59917
|
-
if (!(e == "name") || !this.
|
|
60043
|
+
if (!(e == "name") || !this.q) {
|
|
59918
60044
|
let g = (c.b != null && c.b.knownType == 10);
|
|
59919
60045
|
if (this.n(c) || g) {
|
|
59920
|
-
this.
|
|
60046
|
+
this.a8(c);
|
|
59921
60047
|
f = "{" + f + "}";
|
|
59922
60048
|
}
|
|
59923
60049
|
if (a > 0) {
|
|
@@ -59935,15 +60061,15 @@ let ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() =>
|
|
|
59935
60061
|
a++;
|
|
59936
60062
|
}
|
|
59937
60063
|
if (e == "name") {
|
|
59938
|
-
if (this.
|
|
60064
|
+
if (this.q) {
|
|
59939
60065
|
if (a > 0) {
|
|
59940
60066
|
this.h.k("");
|
|
59941
60067
|
}
|
|
59942
|
-
this.h.j("ref={this." + CodeGeneratingComponentRenderer.dp(this.
|
|
60068
|
+
this.h.j("ref={this." + CodeGeneratingComponentRenderer.dp(this.ap(c, true)) + "Ref}");
|
|
59943
60069
|
}
|
|
59944
60070
|
}
|
|
59945
60071
|
}
|
|
59946
|
-
|
|
60072
|
+
y(a) {
|
|
59947
60073
|
let b = a.c;
|
|
59948
60074
|
switch (b.a) {
|
|
59949
60075
|
case 3: return b.b;
|
|
@@ -59953,16 +60079,16 @@ let ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() =>
|
|
|
59953
60079
|
}
|
|
59954
60080
|
return b.b;
|
|
59955
60081
|
}
|
|
59956
|
-
|
|
60082
|
+
am() {
|
|
59957
60083
|
return "null";
|
|
59958
60084
|
}
|
|
59959
|
-
|
|
60085
|
+
ah(a) {
|
|
59960
60086
|
return "this." + CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
59961
60087
|
}
|
|
59962
|
-
|
|
60088
|
+
an(a) {
|
|
59963
60089
|
return "this." + CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
59964
60090
|
}
|
|
59965
|
-
|
|
60091
|
+
a1(a, b, c, d) {
|
|
59966
60092
|
if (c.b.knownType == 9) {
|
|
59967
60093
|
let e = typeCast(IList_$type, c.c);
|
|
59968
60094
|
if (e != null) {
|
|
@@ -59981,10 +60107,10 @@ let ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() =>
|
|
|
59981
60107
|
}
|
|
59982
60108
|
}
|
|
59983
60109
|
}
|
|
59984
|
-
|
|
59985
|
-
super.
|
|
60110
|
+
ay(a, b) {
|
|
60111
|
+
super.ay(a, b);
|
|
59986
60112
|
for (let c of fromEnum(a)) {
|
|
59987
|
-
b.addPackageImport("igniteui-react-" + this.
|
|
60113
|
+
b.addPackageImport("igniteui-react-" + this.aq, c);
|
|
59988
60114
|
}
|
|
59989
60115
|
}
|
|
59990
60116
|
}
|
|
@@ -60010,11 +60136,11 @@ let WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*
|
|
|
60010
60136
|
class WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter extends CodeGeneratingComponentRendererCodeEmitter {
|
|
60011
60137
|
constructor(a, b) {
|
|
60012
60138
|
super(a, b);
|
|
60013
|
-
this.
|
|
60014
|
-
this.a8 = new HashSet$1(String_$type, 0);
|
|
60139
|
+
this.bb = 0;
|
|
60015
60140
|
this.a9 = new HashSet$1(String_$type, 0);
|
|
60141
|
+
this.ba = new HashSet$1(String_$type, 0);
|
|
60016
60142
|
}
|
|
60017
|
-
|
|
60143
|
+
af(a) {
|
|
60018
60144
|
if (a.c == null) {
|
|
60019
60145
|
return "null";
|
|
60020
60146
|
}
|
|
@@ -60028,79 +60154,79 @@ let WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*
|
|
|
60028
60154
|
}
|
|
60029
60155
|
return c;
|
|
60030
60156
|
}
|
|
60031
|
-
|
|
60157
|
+
get_r() {
|
|
60032
60158
|
return true;
|
|
60033
60159
|
}
|
|
60034
|
-
|
|
60035
|
-
super.
|
|
60036
|
-
this.h.k("<" + this.
|
|
60037
|
-
if (!this.
|
|
60038
|
-
this.
|
|
60039
|
-
if (!this.
|
|
60040
|
-
this.
|
|
60041
|
-
this.
|
|
60042
|
-
}
|
|
60043
|
-
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);
|
|
60044
60170
|
if (!this.m) {
|
|
60045
|
-
if (this.
|
|
60046
|
-
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 + ";");
|
|
60047
60173
|
}
|
|
60048
60174
|
}
|
|
60049
60175
|
else {
|
|
60050
|
-
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 + ";");
|
|
60051
60177
|
}
|
|
60052
60178
|
}
|
|
60053
60179
|
}
|
|
60054
|
-
|
|
60180
|
+
bc(a) {
|
|
60055
60181
|
if (stringEndsWith(a, "Component")) {
|
|
60056
60182
|
a = a.substr(0, a.length - ("Component").length);
|
|
60057
60183
|
}
|
|
60058
60184
|
return CodeGeneratingComponentRenderer.dr(a);
|
|
60059
60185
|
}
|
|
60060
|
-
|
|
60186
|
+
a7() {
|
|
60061
60187
|
this.h.k(">");
|
|
60062
60188
|
this.h.h();
|
|
60063
60189
|
}
|
|
60064
|
-
|
|
60190
|
+
a2(a) {
|
|
60065
60191
|
this.h.f();
|
|
60066
|
-
this.h.k("</" + this.
|
|
60067
|
-
super.
|
|
60192
|
+
this.h.k("</" + this.bc(a) + ">");
|
|
60193
|
+
super.a2(a);
|
|
60068
60194
|
}
|
|
60069
|
-
|
|
60195
|
+
get_ar() {
|
|
60070
60196
|
return "Igc";
|
|
60071
60197
|
}
|
|
60072
|
-
|
|
60073
|
-
super.
|
|
60198
|
+
ay(a, b) {
|
|
60199
|
+
super.ay(a, b);
|
|
60074
60200
|
for (let c of fromEnum(a)) {
|
|
60075
|
-
b.addPackageImport("igniteui-webcomponents-" + this.
|
|
60201
|
+
b.addPackageImport("igniteui-webcomponents-" + this.aq, c);
|
|
60076
60202
|
}
|
|
60077
60203
|
}
|
|
60078
|
-
|
|
60204
|
+
a0(a, b, c, d) {
|
|
60079
60205
|
let e = CodeGeneratingComponentRenderer.dp(b);
|
|
60080
60206
|
if (this.n(c)) {
|
|
60081
|
-
this.
|
|
60082
|
-
if (!this.
|
|
60083
|
-
this.
|
|
60084
|
-
if (!this.
|
|
60085
|
-
this.
|
|
60086
|
-
this.
|
|
60087
|
-
}
|
|
60088
|
-
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);
|
|
60089
60215
|
if (!this.m) {
|
|
60090
|
-
if (this.
|
|
60091
|
-
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 + ";");
|
|
60092
60218
|
}
|
|
60093
60219
|
}
|
|
60094
60220
|
else {
|
|
60095
|
-
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 + ";");
|
|
60096
60222
|
}
|
|
60097
60223
|
}
|
|
60098
|
-
let f = CodeGeneratingComponentRenderer.dp(this.
|
|
60224
|
+
let f = CodeGeneratingComponentRenderer.dp(this.ap(c, true));
|
|
60099
60225
|
let g = f;
|
|
60100
60226
|
if (g != "null" && !stringStartsWith(g, "this.")) {
|
|
60101
60227
|
g = "this." + g;
|
|
60102
60228
|
}
|
|
60103
|
-
this.e.k(CodeGeneratingComponentRenderer.dp(this.
|
|
60229
|
+
this.e.k(CodeGeneratingComponentRenderer.dp(this.ad) + "." + e + " = " + g);
|
|
60104
60230
|
return;
|
|
60105
60231
|
}
|
|
60106
60232
|
if (a > 0) {
|
|
@@ -60109,14 +60235,14 @@ let WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*
|
|
|
60109
60235
|
this.h.j(CodeGeneratingComponentRenderer.dr(e));
|
|
60110
60236
|
this.h.j("=");
|
|
60111
60237
|
this.h.j("\"");
|
|
60112
|
-
this.h.j(this.
|
|
60238
|
+
this.h.j(this.ap(c, true));
|
|
60113
60239
|
this.h.j("\"");
|
|
60114
60240
|
if (e == "name") {
|
|
60115
60241
|
this.h.k("");
|
|
60116
|
-
this.h.j("id =\"" + this.
|
|
60242
|
+
this.h.j("id =\"" + this.ap(c, true) + "\"");
|
|
60117
60243
|
}
|
|
60118
60244
|
}
|
|
60119
|
-
|
|
60245
|
+
y(a) {
|
|
60120
60246
|
let b = a.c;
|
|
60121
60247
|
switch (b.a) {
|
|
60122
60248
|
case 3: return b.b;
|
|
@@ -60126,26 +60252,26 @@ let WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*
|
|
|
60126
60252
|
}
|
|
60127
60253
|
return b.b;
|
|
60128
60254
|
}
|
|
60129
|
-
|
|
60255
|
+
am() {
|
|
60130
60256
|
return "null";
|
|
60131
60257
|
}
|
|
60132
|
-
|
|
60258
|
+
ah(a) {
|
|
60133
60259
|
return CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
60134
60260
|
}
|
|
60135
|
-
|
|
60261
|
+
an(a) {
|
|
60136
60262
|
return CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
60137
60263
|
}
|
|
60138
|
-
|
|
60264
|
+
aj(a) {
|
|
60139
60265
|
if (!stringIsNullOrEmpty(a.a.e)) {
|
|
60140
|
-
this.
|
|
60141
|
-
if (!this.
|
|
60266
|
+
this.a8(a);
|
|
60267
|
+
if (!this.a9.contains(a.a.e)) {
|
|
60142
60268
|
this.g.k("this." + CodeGeneratingComponentRenderer.dp(a.a.e) + " = " + "this." + CodeGeneratingComponentRenderer.dp(a.a.e) + ".bind(this);");
|
|
60143
60269
|
}
|
|
60144
60270
|
return "this." + CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
60145
60271
|
}
|
|
60146
|
-
return this.
|
|
60272
|
+
return this.am();
|
|
60147
60273
|
}
|
|
60148
|
-
|
|
60274
|
+
a1(a, b, c, d) {
|
|
60149
60275
|
if (c.b.knownType == 9) {
|
|
60150
60276
|
let e = typeCast(IList_$type, c.c);
|
|
60151
60277
|
if (e != null) {
|
|
@@ -60237,6 +60363,9 @@ let TSCodeGeneratingComponentRendererDataEmitter = /*@__PURE__*/ (() => {
|
|
|
60237
60363
|
if (this.n.platform == 3) {
|
|
60238
60364
|
e = "if ((this as any)._bind) { (this as any)._bind(); } ";
|
|
60239
60365
|
}
|
|
60366
|
+
if (this.n.platform == 1) {
|
|
60367
|
+
e = "this._detector.markForCheck(); ";
|
|
60368
|
+
}
|
|
60240
60369
|
let f = this.v(a, false);
|
|
60241
60370
|
let g = "null";
|
|
60242
60371
|
switch (b) {
|
|
@@ -60251,25 +60380,25 @@ let TSCodeGeneratingComponentRendererDataEmitter = /*@__PURE__*/ (() => {
|
|
|
60251
60380
|
}
|
|
60252
60381
|
this.g.k("private " + this.ao(a) + ": " + f + " = " + g + ";");
|
|
60253
60382
|
if (b == 2 || (c != null && c.isAsync)) {
|
|
60254
|
-
this.g.k("private " + this.ao(a) + "
|
|
60383
|
+
this.g.k("private " + this.ao(a) + "Fetching: boolean = false;");
|
|
60255
60384
|
}
|
|
60256
60385
|
this.g.k("public get " + this.u(a) + "(): " + f + " {");
|
|
60257
60386
|
this.g.h();
|
|
60258
60387
|
if (c != null && c.isAsync) {
|
|
60259
|
-
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)");
|
|
60260
60389
|
this.g.k("{");
|
|
60261
60390
|
this.g.h();
|
|
60262
|
-
this.g.k(this.ao(a) + "
|
|
60391
|
+
this.g.k("this." + this.ao(a) + "Fetching = true;");
|
|
60263
60392
|
this.g.k("( async () => { this." + this.ao(a) + " = await (await " + this.v(a, false) + ".fetch()); " + e + " })();");
|
|
60264
60393
|
this.g.f();
|
|
60265
60394
|
this.g.k("}");
|
|
60266
60395
|
}
|
|
60267
60396
|
else {
|
|
60268
60397
|
if (b == 2) {
|
|
60269
|
-
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)");
|
|
60270
60399
|
this.g.k("{");
|
|
60271
60400
|
this.g.h();
|
|
60272
|
-
this.g.k(this.ao(a) + "
|
|
60401
|
+
this.g.k(this.ao(a) + "Fetching = true;");
|
|
60273
60402
|
this.g.k("( async () => { this." + this.ao(a) + " = await (await fetch('" + d + "')).json(); " + e + " })();");
|
|
60274
60403
|
this.g.f();
|
|
60275
60404
|
this.g.k("}");
|
|
@@ -60316,7 +60445,6 @@ let TSCodeGeneratingComponentRendererDataEmitter = /*@__PURE__*/ (() => {
|
|
|
60316
60445
|
}
|
|
60317
60446
|
x(a, b) {
|
|
60318
60447
|
b.addPackageImport("./" + a, a);
|
|
60319
|
-
b.addPackageImport("./" + a, a + "Item");
|
|
60320
60448
|
}
|
|
60321
60449
|
y(a, b) {
|
|
60322
60450
|
b.addDefaultImport("./" + a, a);
|
|
@@ -60470,8 +60598,11 @@ let AngularTemplateCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ ((
|
|
|
60470
60598
|
class AngularTemplateCodeGeneratingComponentRendererCodeEmitter extends CodeGeneratingComponentRendererCodeEmitter {
|
|
60471
60599
|
constructor(a, b) {
|
|
60472
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);
|
|
60473
60604
|
}
|
|
60474
|
-
|
|
60605
|
+
af(a) {
|
|
60475
60606
|
if (a.c == null) {
|
|
60476
60607
|
return "null";
|
|
60477
60608
|
}
|
|
@@ -60485,36 +60616,56 @@ let AngularTemplateCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ ((
|
|
|
60485
60616
|
}
|
|
60486
60617
|
return c;
|
|
60487
60618
|
}
|
|
60488
|
-
|
|
60619
|
+
get_r() {
|
|
60489
60620
|
return true;
|
|
60490
60621
|
}
|
|
60491
|
-
|
|
60622
|
+
get_ar() {
|
|
60492
60623
|
return "Igx";
|
|
60493
60624
|
}
|
|
60494
|
-
|
|
60495
|
-
super.
|
|
60496
|
-
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
|
+
}
|
|
60497
60637
|
}
|
|
60498
|
-
|
|
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) {
|
|
60499
60645
|
if (stringEndsWith(a, "Component")) {
|
|
60500
60646
|
a = a.substr(0, a.length - ("Component").length);
|
|
60501
60647
|
}
|
|
60502
60648
|
return CodeGeneratingComponentRenderer.dr(a);
|
|
60503
60649
|
}
|
|
60504
|
-
|
|
60650
|
+
a7() {
|
|
60505
60651
|
this.h.k(">");
|
|
60506
60652
|
this.h.h();
|
|
60507
60653
|
}
|
|
60508
|
-
|
|
60654
|
+
a2(a) {
|
|
60509
60655
|
this.h.f();
|
|
60510
|
-
this.h.k("</" + this.
|
|
60511
|
-
super.
|
|
60656
|
+
this.h.k("</" + this.bc(a) + ">");
|
|
60657
|
+
super.a2(a);
|
|
60512
60658
|
}
|
|
60513
|
-
|
|
60659
|
+
a0(a, b, c, d) {
|
|
60514
60660
|
let e = CodeGeneratingComponentRenderer.dp(b);
|
|
60515
60661
|
if (this.n(c)) {
|
|
60516
|
-
this.
|
|
60517
|
-
|
|
60662
|
+
this.a8(c);
|
|
60663
|
+
if (this.p(c)) {
|
|
60664
|
+
e = "(" + e + ")";
|
|
60665
|
+
}
|
|
60666
|
+
else {
|
|
60667
|
+
e = "[" + e + "]";
|
|
60668
|
+
}
|
|
60518
60669
|
}
|
|
60519
60670
|
if (a > 0) {
|
|
60520
60671
|
this.h.k("");
|
|
@@ -60522,21 +60673,21 @@ let AngularTemplateCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ ((
|
|
|
60522
60673
|
this.h.j(e);
|
|
60523
60674
|
this.h.j("=");
|
|
60524
60675
|
this.h.j("\"");
|
|
60525
|
-
this.h.j(this.
|
|
60676
|
+
this.h.j(this.ap(c, true));
|
|
60526
60677
|
this.h.j("\"");
|
|
60527
60678
|
if (e == "name") {
|
|
60528
60679
|
this.h.k("");
|
|
60529
|
-
this.h.j("#" + CodeGeneratingComponentRenderer.dp(this.
|
|
60680
|
+
this.h.j("#" + CodeGeneratingComponentRenderer.dp(this.ap(c, true)));
|
|
60530
60681
|
}
|
|
60531
60682
|
}
|
|
60532
|
-
|
|
60683
|
+
aj(a) {
|
|
60533
60684
|
if (!stringIsNullOrEmpty(a.a.e)) {
|
|
60534
|
-
this.
|
|
60685
|
+
this.a8(a);
|
|
60535
60686
|
return "this." + CodeGeneratingComponentRenderer.dp(a.a.e) + "($event)";
|
|
60536
60687
|
}
|
|
60537
|
-
return this.
|
|
60688
|
+
return this.am();
|
|
60538
60689
|
}
|
|
60539
|
-
|
|
60690
|
+
y(a) {
|
|
60540
60691
|
let b = a.c;
|
|
60541
60692
|
switch (b.a) {
|
|
60542
60693
|
case 3: return b.b;
|
|
@@ -60546,16 +60697,16 @@ let AngularTemplateCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ ((
|
|
|
60546
60697
|
}
|
|
60547
60698
|
return b.b;
|
|
60548
60699
|
}
|
|
60549
|
-
|
|
60700
|
+
am() {
|
|
60550
60701
|
return "null";
|
|
60551
60702
|
}
|
|
60552
|
-
|
|
60703
|
+
ah(a) {
|
|
60553
60704
|
return CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
60554
60705
|
}
|
|
60555
|
-
|
|
60706
|
+
an(a) {
|
|
60556
60707
|
return CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
60557
60708
|
}
|
|
60558
|
-
|
|
60709
|
+
a1(a, b, c, d) {
|
|
60559
60710
|
if (c.b.knownType == 9) {
|
|
60560
60711
|
let e = typeCast(IList_$type, c.c);
|
|
60561
60712
|
if (e != null) {
|
|
@@ -60612,16 +60763,10 @@ let DotNetCodeGeneratingComponentRendererDataEmitter = /*@__PURE__*/ (() => {
|
|
|
60612
60763
|
a.k("using System.Collections.Generic;");
|
|
60613
60764
|
if (!this.ak) {
|
|
60614
60765
|
this.ak = true;
|
|
60615
|
-
this.k.addUsing("using Data;");
|
|
60616
60766
|
}
|
|
60617
|
-
a.k("namespace Data");
|
|
60618
|
-
a.k("{");
|
|
60619
|
-
a.h();
|
|
60620
60767
|
super.ad(a);
|
|
60621
60768
|
}
|
|
60622
60769
|
ac(a) {
|
|
60623
|
-
a.f();
|
|
60624
|
-
a.k("}");
|
|
60625
60770
|
super.ac(a);
|
|
60626
60771
|
}
|
|
60627
60772
|
v(a, b = false) {
|
|
@@ -60841,7 +60986,12 @@ let DotNetCodeGeneratingComponentRendererDataEmitter = /*@__PURE__*/ (() => {
|
|
|
60841
60986
|
return "double.NaN";
|
|
60842
60987
|
}
|
|
60843
60988
|
return (b.value.toString());
|
|
60844
|
-
case 2:
|
|
60989
|
+
case 2: if (b.value == null) {
|
|
60990
|
+
return "null";
|
|
60991
|
+
}
|
|
60992
|
+
else {
|
|
60993
|
+
return ("@\"" + stringReplace(b.value, "\"", "\"\"") + "\"");
|
|
60994
|
+
}
|
|
60845
60995
|
case 3: return ("null");
|
|
60846
60996
|
}
|
|
60847
60997
|
return "";
|
|
@@ -60867,10 +61017,10 @@ let WPFXamlCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
|
|
|
60867
61017
|
constructor(a, b) {
|
|
60868
61018
|
super(a, b);
|
|
60869
61019
|
}
|
|
60870
|
-
|
|
61020
|
+
get_s() {
|
|
60871
61021
|
return false;
|
|
60872
61022
|
}
|
|
60873
|
-
|
|
61023
|
+
af(a) {
|
|
60874
61024
|
if (a.c == null) {
|
|
60875
61025
|
return "null";
|
|
60876
61026
|
}
|
|
@@ -60884,20 +61034,20 @@ let WPFXamlCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
|
|
|
60884
61034
|
}
|
|
60885
61035
|
return c;
|
|
60886
61036
|
}
|
|
60887
|
-
|
|
60888
|
-
super.
|
|
61037
|
+
au(a) {
|
|
61038
|
+
super.au(a);
|
|
60889
61039
|
this.h.k("<ig:" + a + "");
|
|
60890
61040
|
}
|
|
60891
|
-
|
|
61041
|
+
a7() {
|
|
60892
61042
|
this.h.k(">");
|
|
60893
61043
|
this.h.h();
|
|
60894
61044
|
}
|
|
60895
|
-
|
|
61045
|
+
a2(a) {
|
|
60896
61046
|
this.h.f();
|
|
60897
61047
|
this.h.k("</ig:" + a + ">");
|
|
60898
|
-
super.
|
|
61048
|
+
super.a2(a);
|
|
60899
61049
|
}
|
|
60900
|
-
|
|
61050
|
+
a0(a, b, c, d) {
|
|
60901
61051
|
if (b == "Label" && c.b != null && stringContains(c.b.owningType, "Axis")) {
|
|
60902
61052
|
if (c.c != null && stringContains(c.c, "{")) {
|
|
60903
61053
|
if (a > 0) {
|
|
@@ -60906,7 +61056,7 @@ let WPFXamlCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
|
|
|
60906
61056
|
this.h.j(b);
|
|
60907
61057
|
this.h.j("=");
|
|
60908
61058
|
this.h.j("\"");
|
|
60909
|
-
this.h.j("{}" + this.
|
|
61059
|
+
this.h.j("{}" + this.ap(c, true));
|
|
60910
61060
|
this.h.j("\"");
|
|
60911
61061
|
return;
|
|
60912
61062
|
}
|
|
@@ -60917,10 +61067,10 @@ let WPFXamlCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
|
|
|
60917
61067
|
this.h.j(b);
|
|
60918
61068
|
this.h.j("=");
|
|
60919
61069
|
this.h.j("\"");
|
|
60920
|
-
this.h.j(this.
|
|
61070
|
+
this.h.j(this.ap(c, true));
|
|
60921
61071
|
this.h.j("\"");
|
|
60922
61072
|
}
|
|
60923
|
-
|
|
61073
|
+
y(a) {
|
|
60924
61074
|
let b = a.c;
|
|
60925
61075
|
switch (b.a) {
|
|
60926
61076
|
case 3: return b.b;
|
|
@@ -60930,24 +61080,24 @@ let WPFXamlCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
|
|
|
60930
61080
|
}
|
|
60931
61081
|
return b.b;
|
|
60932
61082
|
}
|
|
60933
|
-
|
|
61083
|
+
am() {
|
|
60934
61084
|
return "{x:Null}";
|
|
60935
61085
|
}
|
|
60936
|
-
|
|
61086
|
+
ah(a) {
|
|
60937
61087
|
return "{Binding ElementName=" + a.a.e + "}";
|
|
60938
61088
|
}
|
|
60939
|
-
|
|
61089
|
+
a9(a) {
|
|
60940
61090
|
a = stringReplace(a, "-", "_");
|
|
60941
61091
|
return CodeGeneratingComponentRenderer.dq(a);
|
|
60942
61092
|
}
|
|
60943
|
-
|
|
60944
|
-
this.
|
|
60945
|
-
return "{Binding " + this.
|
|
61093
|
+
an(a) {
|
|
61094
|
+
this.a8(a);
|
|
61095
|
+
return "{Binding " + this.a9(a.a.e) + "}";
|
|
60946
61096
|
}
|
|
60947
|
-
|
|
61097
|
+
a1(a, b, c, d) {
|
|
60948
61098
|
this.h.j("<ig:");
|
|
60949
61099
|
{
|
|
60950
|
-
this.h.j(this.
|
|
61100
|
+
this.h.j(this.ae);
|
|
60951
61101
|
this.h.j(".");
|
|
60952
61102
|
}
|
|
60953
61103
|
this.h.j(b);
|
|
@@ -60973,13 +61123,13 @@ let WPFXamlCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
|
|
|
60973
61123
|
this.h.f();
|
|
60974
61124
|
this.h.j("</ig:");
|
|
60975
61125
|
{
|
|
60976
|
-
this.h.j(this.
|
|
61126
|
+
this.h.j(this.ae);
|
|
60977
61127
|
this.h.j(".");
|
|
60978
61128
|
}
|
|
60979
61129
|
this.h.j(b);
|
|
60980
61130
|
this.h.k(">");
|
|
60981
61131
|
}
|
|
60982
|
-
|
|
61132
|
+
get_ar() {
|
|
60983
61133
|
return "Xam";
|
|
60984
61134
|
}
|
|
60985
61135
|
}
|
|
@@ -60994,7 +61144,7 @@ let WPFCodeBehindCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (()
|
|
|
60994
61144
|
constructor(a, b) {
|
|
60995
61145
|
super(a, b);
|
|
60996
61146
|
}
|
|
60997
|
-
|
|
61147
|
+
get_s() {
|
|
60998
61148
|
return false;
|
|
60999
61149
|
}
|
|
61000
61150
|
}
|
|
@@ -61189,7 +61339,7 @@ let CodeGeneratingComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
61189
61339
|
}
|
|
61190
61340
|
if (this.dk != null) {
|
|
61191
61341
|
let i = this.dg(this.di, b);
|
|
61192
|
-
i.
|
|
61342
|
+
i.m(this.dk);
|
|
61193
61343
|
}
|
|
61194
61344
|
if (this.dm != null) {
|
|
61195
61345
|
if (typeCast(JsonDictionaryObject.$, this.dm) !== null) {
|
|
@@ -61284,10 +61434,10 @@ let CodeGenerationContainer = /*@__PURE__*/ (() => {
|
|
|
61284
61434
|
h.p(i, true);
|
|
61285
61435
|
let j = i.toString();
|
|
61286
61436
|
a.addContainerResult(this.id, j);
|
|
61287
|
-
i.
|
|
61288
|
-
i.
|
|
61289
|
-
i.
|
|
61290
|
-
i.
|
|
61437
|
+
i.aw(d);
|
|
61438
|
+
i.az(e);
|
|
61439
|
+
i.av(f);
|
|
61440
|
+
i.ax(g);
|
|
61291
61441
|
}
|
|
61292
61442
|
a.addContainerResult("bindingFields", d.toString());
|
|
61293
61443
|
a.addContainerResult("bindingInit", e.toString());
|
|
@@ -61369,27 +61519,27 @@ let CodeGenerationItemBuilder = /*@__PURE__*/ (() => {
|
|
|
61369
61519
|
let c = this.m();
|
|
61370
61520
|
if (b) {
|
|
61371
61521
|
let d = this.n();
|
|
61372
|
-
a.
|
|
61522
|
+
a.aq = d;
|
|
61373
61523
|
}
|
|
61374
61524
|
let e = false;
|
|
61375
61525
|
let f = false;
|
|
61376
61526
|
if (this.f.containsKey("Name")) {
|
|
61377
61527
|
e = true;
|
|
61378
|
-
a.
|
|
61528
|
+
a.a6(this.f.item("Name").c);
|
|
61379
61529
|
}
|
|
61380
61530
|
else if (this.f.containsKey("name")) {
|
|
61381
61531
|
e = true;
|
|
61382
|
-
a.
|
|
61532
|
+
a.a6(this.f.item("name").c);
|
|
61383
61533
|
}
|
|
61384
61534
|
else {
|
|
61385
61535
|
if (this.e(a)) {
|
|
61386
61536
|
f = true;
|
|
61387
|
-
a.
|
|
61388
|
-
if (a.
|
|
61537
|
+
a.a5(c);
|
|
61538
|
+
if (a.s) {
|
|
61389
61539
|
this.g.add("name");
|
|
61390
61540
|
this.f.addItem("name", ((() => {
|
|
61391
61541
|
let $ret = new CodeGenerationItemBuilderPropertyInfo();
|
|
61392
|
-
$ret.c = a.
|
|
61542
|
+
$ret.c = a.ad;
|
|
61393
61543
|
return $ret;
|
|
61394
61544
|
})()));
|
|
61395
61545
|
}
|
|
@@ -61397,13 +61547,13 @@ let CodeGenerationItemBuilder = /*@__PURE__*/ (() => {
|
|
|
61397
61547
|
this.g.add("Name");
|
|
61398
61548
|
this.f.addItem("Name", ((() => {
|
|
61399
61549
|
let $ret = new CodeGenerationItemBuilderPropertyInfo();
|
|
61400
|
-
$ret.c = a.
|
|
61550
|
+
$ret.c = a.ad;
|
|
61401
61551
|
return $ret;
|
|
61402
61552
|
})()));
|
|
61403
61553
|
}
|
|
61404
61554
|
}
|
|
61405
61555
|
}
|
|
61406
|
-
a.
|
|
61556
|
+
a.au(c);
|
|
61407
61557
|
let g = 0;
|
|
61408
61558
|
for (let h of fromEnum(this.g)) {
|
|
61409
61559
|
let i = this.f.item(h);
|
|
@@ -61411,11 +61561,11 @@ let CodeGenerationItemBuilder = /*@__PURE__*/ (() => {
|
|
|
61411
61561
|
continue;
|
|
61412
61562
|
}
|
|
61413
61563
|
if (this.d(h, i)) {
|
|
61414
|
-
a.
|
|
61564
|
+
a.a0(g, h, i, this.c);
|
|
61415
61565
|
g++;
|
|
61416
61566
|
}
|
|
61417
61567
|
}
|
|
61418
|
-
a.
|
|
61568
|
+
a.a7();
|
|
61419
61569
|
let j = 0;
|
|
61420
61570
|
for (let k of fromEnum(this.g)) {
|
|
61421
61571
|
let l = this.f.item(k);
|
|
@@ -61423,17 +61573,17 @@ let CodeGenerationItemBuilder = /*@__PURE__*/ (() => {
|
|
|
61423
61573
|
continue;
|
|
61424
61574
|
}
|
|
61425
61575
|
if (!this.d(k, l)) {
|
|
61426
|
-
a.
|
|
61576
|
+
a.a1(j, k, l, this.c);
|
|
61427
61577
|
j++;
|
|
61428
61578
|
}
|
|
61429
61579
|
}
|
|
61430
|
-
a.
|
|
61580
|
+
a.a2(c);
|
|
61431
61581
|
if (e) {
|
|
61432
|
-
a.
|
|
61582
|
+
a.a4();
|
|
61433
61583
|
}
|
|
61434
61584
|
else {
|
|
61435
61585
|
if (f) {
|
|
61436
|
-
a.
|
|
61586
|
+
a.a3();
|
|
61437
61587
|
}
|
|
61438
61588
|
}
|
|
61439
61589
|
}
|
|
@@ -62618,51 +62768,55 @@ let CodeGenerationFolderTemplate = /*@__PURE__*/ (() => {
|
|
|
62618
62768
|
for (let i = 0; i < h.length; i++) {
|
|
62619
62769
|
d.add_1(h[i]);
|
|
62620
62770
|
}
|
|
62621
|
-
|
|
62622
|
-
|
|
62623
|
-
|
|
62624
|
-
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]);
|
|
62625
62774
|
}
|
|
62626
62775
|
for (let l = 0; l < this.b.count; l++) {
|
|
62627
|
-
let m =
|
|
62628
|
-
|
|
62629
|
-
|
|
62630
|
-
|
|
62631
|
-
|
|
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);
|
|
62632
62786
|
}
|
|
62633
|
-
let
|
|
62634
|
-
|
|
62635
|
-
this.c._inner[
|
|
62787
|
+
let s = this.c._inner[n];
|
|
62788
|
+
s = this.j(s, o.toArray(), a);
|
|
62789
|
+
this.c._inner[n] = s;
|
|
62636
62790
|
}
|
|
62637
|
-
let
|
|
62638
|
-
for (let
|
|
62639
|
-
let
|
|
62640
|
-
for (let
|
|
62641
|
-
let
|
|
62642
|
-
let
|
|
62643
|
-
|
|
62644
|
-
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;
|
|
62645
62799
|
}
|
|
62646
62800
|
}
|
|
62647
|
-
let
|
|
62648
|
-
for (let
|
|
62649
|
-
let
|
|
62650
|
-
for (let
|
|
62651
|
-
let
|
|
62652
|
-
|
|
62653
|
-
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;
|
|
62654
62808
|
}
|
|
62655
62809
|
}
|
|
62656
|
-
for (let
|
|
62657
|
-
let
|
|
62658
|
-
let
|
|
62659
|
-
for (let
|
|
62660
|
-
if (stringStartsWith(
|
|
62661
|
-
|
|
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/";
|
|
62662
62816
|
}
|
|
62663
62817
|
}
|
|
62664
|
-
this.d.add(
|
|
62665
|
-
this.c.add(
|
|
62818
|
+
this.d.add(ag + ae);
|
|
62819
|
+
this.c.add(af);
|
|
62666
62820
|
}
|
|
62667
62821
|
}
|
|
62668
62822
|
h(a, b) {
|
|
@@ -62674,7 +62828,7 @@ let CodeGenerationFolderTemplate = /*@__PURE__*/ (() => {
|
|
|
62674
62828
|
let e = b[f];
|
|
62675
62829
|
let g = new CodeGeneratingRegexHelper("(?:(<!--)|(\\/\\/))\\s*insert " + e + "(?:(\\s*-->)?)[\\w\\W\\r\\n]*?(?:(<!--)|(\\/\\/))\\s*end " + e + "(?:(\\s*-->)?)((\\r\\n)|(\\n))");
|
|
62676
62830
|
a = g.b(a, (h, i, j) => {
|
|
62677
|
-
let k = c.
|
|
62831
|
+
let k = c.q(e);
|
|
62678
62832
|
let l = new CodeGeneratingImportManager();
|
|
62679
62833
|
for (let m of fromEnum(k)) {
|
|
62680
62834
|
l = CodeGeneratingImportManager.merge(l, m);
|
|
@@ -108335,50 +108489,50 @@ let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
|
|
|
108335
108489
|
class StackedFragmentSeriesDescription extends Description {
|
|
108336
108490
|
constructor() {
|
|
108337
108491
|
super();
|
|
108338
|
-
this.
|
|
108339
|
-
this.
|
|
108340
|
-
this.
|
|
108492
|
+
this.b6 = null;
|
|
108493
|
+
this.b5 = null;
|
|
108494
|
+
this.bn = null;
|
|
108341
108495
|
this.j = false;
|
|
108342
108496
|
this.f = false;
|
|
108343
108497
|
this.an = 0;
|
|
108344
108498
|
this.ac = 0;
|
|
108345
|
-
this.
|
|
108346
|
-
this.
|
|
108499
|
+
this.cl = null;
|
|
108500
|
+
this.bz = null;
|
|
108347
108501
|
this.m = false;
|
|
108348
108502
|
this.i = false;
|
|
108349
108503
|
this.ao = 0;
|
|
108350
108504
|
this.ad = 0;
|
|
108351
108505
|
this.ap = 0;
|
|
108352
108506
|
this.ae = 0;
|
|
108353
|
-
this.b7 = null;
|
|
108354
|
-
this.bo = null;
|
|
108355
|
-
this.b8 = null;
|
|
108356
|
-
this.bp = null;
|
|
108357
108507
|
this.b9 = null;
|
|
108358
108508
|
this.bq = null;
|
|
108359
|
-
this.b6 = null;
|
|
108360
|
-
this.b5 = null;
|
|
108361
|
-
this.bn = null;
|
|
108362
|
-
this.bm = null;
|
|
108363
108509
|
this.ca = null;
|
|
108364
108510
|
this.br = null;
|
|
108365
108511
|
this.cb = null;
|
|
108366
108512
|
this.bs = null;
|
|
108513
|
+
this.b8 = null;
|
|
108514
|
+
this.b7 = null;
|
|
108515
|
+
this.bp = null;
|
|
108516
|
+
this.bo = null;
|
|
108367
108517
|
this.cc = null;
|
|
108368
108518
|
this.bt = null;
|
|
108369
108519
|
this.cd = null;
|
|
108370
108520
|
this.bu = null;
|
|
108371
108521
|
this.ce = null;
|
|
108522
|
+
this.bv = null;
|
|
108523
|
+
this.cf = null;
|
|
108524
|
+
this.bw = null;
|
|
108525
|
+
this.cg = null;
|
|
108372
108526
|
this.ak = 0;
|
|
108373
108527
|
this.z = 0;
|
|
108374
|
-
this.
|
|
108375
|
-
this.
|
|
108528
|
+
this.ch = null;
|
|
108529
|
+
this.bx = null;
|
|
108376
108530
|
this.ag = 0;
|
|
108377
108531
|
this.v = 0;
|
|
108378
108532
|
this.ai = 0;
|
|
108379
108533
|
this.x = 0;
|
|
108380
|
-
this.
|
|
108381
|
-
this.
|
|
108534
|
+
this.ci = null;
|
|
108535
|
+
this.by = null;
|
|
108382
108536
|
this.ah = 0;
|
|
108383
108537
|
this.w = 0;
|
|
108384
108538
|
this.al = 0;
|
|
@@ -108391,28 +108545,28 @@ let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
|
|
|
108391
108545
|
this.af = 0;
|
|
108392
108546
|
this.aj = 0;
|
|
108393
108547
|
this.y = 0;
|
|
108394
|
-
this.
|
|
108395
|
-
this.
|
|
108548
|
+
this.bl = null;
|
|
108549
|
+
this.cm = null;
|
|
108396
108550
|
this.bf = 0;
|
|
108397
108551
|
this.bg = 0;
|
|
108398
|
-
this.cm = null;
|
|
108399
108552
|
this.cn = null;
|
|
108400
|
-
this.l = false;
|
|
108401
108553
|
this.co = null;
|
|
108554
|
+
this.l = false;
|
|
108555
|
+
this.cp = null;
|
|
108402
108556
|
this.h = false;
|
|
108403
108557
|
this.be = 0;
|
|
108404
|
-
this.
|
|
108558
|
+
this.b2 = null;
|
|
108559
|
+
this.b3 = null;
|
|
108405
108560
|
this.b1 = null;
|
|
108406
|
-
this.
|
|
108407
|
-
this.by = null;
|
|
108561
|
+
this.b0 = null;
|
|
108408
108562
|
this.bd = 0;
|
|
108409
|
-
this.cr = null;
|
|
108410
|
-
this.cp = null;
|
|
108411
|
-
this.cq = null;
|
|
108412
108563
|
this.cs = null;
|
|
108413
|
-
this.
|
|
108414
|
-
this.
|
|
108415
|
-
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;
|
|
108416
108570
|
}
|
|
108417
108571
|
get_type() {
|
|
108418
108572
|
return "StackedFragmentSeries";
|
|
@@ -108421,24 +108575,24 @@ let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
|
|
|
108421
108575
|
return this.get_type();
|
|
108422
108576
|
}
|
|
108423
108577
|
get dataSourceRef() {
|
|
108424
|
-
return this.
|
|
108578
|
+
return this.b6;
|
|
108425
108579
|
}
|
|
108426
108580
|
set dataSourceRef(a) {
|
|
108427
|
-
this.
|
|
108581
|
+
this.b6 = a;
|
|
108428
108582
|
this.e("DataSourceRef");
|
|
108429
108583
|
}
|
|
108430
108584
|
get brush() {
|
|
108431
|
-
return this.
|
|
108585
|
+
return this.b5;
|
|
108432
108586
|
}
|
|
108433
108587
|
set brush(a) {
|
|
108434
|
-
this.
|
|
108588
|
+
this.b5 = a;
|
|
108435
108589
|
this.e("Brush");
|
|
108436
108590
|
}
|
|
108437
108591
|
get actualBrush() {
|
|
108438
|
-
return this.
|
|
108592
|
+
return this.bn;
|
|
108439
108593
|
}
|
|
108440
108594
|
set actualBrush(a) {
|
|
108441
|
-
this.
|
|
108595
|
+
this.bn = a;
|
|
108442
108596
|
this.e("ActualBrush");
|
|
108443
108597
|
}
|
|
108444
108598
|
get isDropShadowEnabled() {
|
|
@@ -108470,17 +108624,17 @@ let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
|
|
|
108470
108624
|
this.e("ActualShadowBlur");
|
|
108471
108625
|
}
|
|
108472
108626
|
get shadowColor() {
|
|
108473
|
-
return this.
|
|
108627
|
+
return this.cl;
|
|
108474
108628
|
}
|
|
108475
108629
|
set shadowColor(a) {
|
|
108476
|
-
this.
|
|
108630
|
+
this.cl = a;
|
|
108477
108631
|
this.e("ShadowColor");
|
|
108478
108632
|
}
|
|
108479
108633
|
get actualShadowColor() {
|
|
108480
|
-
return this.
|
|
108634
|
+
return this.bz;
|
|
108481
108635
|
}
|
|
108482
108636
|
set actualShadowColor(a) {
|
|
108483
|
-
this.
|
|
108637
|
+
this.bz = a;
|
|
108484
108638
|
this.e("ActualShadowColor");
|
|
108485
108639
|
}
|
|
108486
108640
|
get useSingleShadow() {
|
|
@@ -108526,136 +108680,136 @@ let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
|
|
|
108526
108680
|
this.e("ActualShadowOffsetY");
|
|
108527
108681
|
}
|
|
108528
108682
|
get legendItemBadgeTemplateRef() {
|
|
108529
|
-
return this.
|
|
108683
|
+
return this.b9;
|
|
108530
108684
|
}
|
|
108531
108685
|
set legendItemBadgeTemplateRef(a) {
|
|
108532
|
-
this.
|
|
108686
|
+
this.b9 = a;
|
|
108533
108687
|
this.e("LegendItemBadgeTemplateRef");
|
|
108534
108688
|
}
|
|
108535
108689
|
get actualLegendItemBadgeTemplateRef() {
|
|
108536
|
-
return this.
|
|
108690
|
+
return this.bq;
|
|
108537
108691
|
}
|
|
108538
108692
|
set actualLegendItemBadgeTemplateRef(a) {
|
|
108539
|
-
this.
|
|
108693
|
+
this.bq = a;
|
|
108540
108694
|
this.e("ActualLegendItemBadgeTemplateRef");
|
|
108541
108695
|
}
|
|
108542
108696
|
get legendItemTemplateRef() {
|
|
108543
|
-
return this.
|
|
108697
|
+
return this.ca;
|
|
108544
108698
|
}
|
|
108545
108699
|
set legendItemTemplateRef(a) {
|
|
108546
|
-
this.
|
|
108700
|
+
this.ca = a;
|
|
108547
108701
|
this.e("LegendItemTemplateRef");
|
|
108548
108702
|
}
|
|
108549
108703
|
get actualLegendItemTemplateRef() {
|
|
108550
|
-
return this.
|
|
108704
|
+
return this.br;
|
|
108551
108705
|
}
|
|
108552
108706
|
set actualLegendItemTemplateRef(a) {
|
|
108553
|
-
this.
|
|
108707
|
+
this.br = a;
|
|
108554
108708
|
this.e("ActualLegendItemTemplateRef");
|
|
108555
108709
|
}
|
|
108556
108710
|
get legendItemVisibility() {
|
|
108557
|
-
return this.
|
|
108711
|
+
return this.cb;
|
|
108558
108712
|
}
|
|
108559
108713
|
set legendItemVisibility(a) {
|
|
108560
|
-
this.
|
|
108714
|
+
this.cb = a;
|
|
108561
108715
|
this.e("LegendItemVisibility");
|
|
108562
108716
|
}
|
|
108563
108717
|
get actualLegendItemVisibility() {
|
|
108564
|
-
return this.
|
|
108718
|
+
return this.bs;
|
|
108565
108719
|
}
|
|
108566
108720
|
set actualLegendItemVisibility(a) {
|
|
108567
|
-
this.
|
|
108721
|
+
this.bs = a;
|
|
108568
108722
|
this.e("ActualLegendItemVisibility");
|
|
108569
108723
|
}
|
|
108570
108724
|
get legendItemBadgeShape() {
|
|
108571
|
-
return this.
|
|
108725
|
+
return this.b8;
|
|
108572
108726
|
}
|
|
108573
108727
|
set legendItemBadgeShape(a) {
|
|
108574
|
-
this.
|
|
108728
|
+
this.b8 = a;
|
|
108575
108729
|
this.e("LegendItemBadgeShape");
|
|
108576
108730
|
}
|
|
108577
108731
|
get legendItemBadgeMode() {
|
|
108578
|
-
return this.
|
|
108732
|
+
return this.b7;
|
|
108579
108733
|
}
|
|
108580
108734
|
set legendItemBadgeMode(a) {
|
|
108581
|
-
this.
|
|
108735
|
+
this.b7 = a;
|
|
108582
108736
|
this.e("LegendItemBadgeMode");
|
|
108583
108737
|
}
|
|
108584
108738
|
get actualLegendItemBadgeShape() {
|
|
108585
|
-
return this.
|
|
108739
|
+
return this.bp;
|
|
108586
108740
|
}
|
|
108587
108741
|
set actualLegendItemBadgeShape(a) {
|
|
108588
|
-
this.
|
|
108742
|
+
this.bp = a;
|
|
108589
108743
|
this.e("ActualLegendItemBadgeShape");
|
|
108590
108744
|
}
|
|
108591
108745
|
get actualLegendItemBadgeMode() {
|
|
108592
|
-
return this.
|
|
108746
|
+
return this.bo;
|
|
108593
108747
|
}
|
|
108594
108748
|
set actualLegendItemBadgeMode(a) {
|
|
108595
|
-
this.
|
|
108749
|
+
this.bo = a;
|
|
108596
108750
|
this.e("ActualLegendItemBadgeMode");
|
|
108597
108751
|
}
|
|
108598
108752
|
get markerBrush() {
|
|
108599
|
-
return this.
|
|
108753
|
+
return this.cc;
|
|
108600
108754
|
}
|
|
108601
108755
|
set markerBrush(a) {
|
|
108602
|
-
this.
|
|
108756
|
+
this.cc = a;
|
|
108603
108757
|
this.e("MarkerBrush");
|
|
108604
108758
|
}
|
|
108605
108759
|
get actualMarkerBrush() {
|
|
108606
|
-
return this.
|
|
108760
|
+
return this.bt;
|
|
108607
108761
|
}
|
|
108608
108762
|
set actualMarkerBrush(a) {
|
|
108609
|
-
this.
|
|
108763
|
+
this.bt = a;
|
|
108610
108764
|
this.e("ActualMarkerBrush");
|
|
108611
108765
|
}
|
|
108612
108766
|
get markerOutline() {
|
|
108613
|
-
return this.
|
|
108767
|
+
return this.cd;
|
|
108614
108768
|
}
|
|
108615
108769
|
set markerOutline(a) {
|
|
108616
|
-
this.
|
|
108770
|
+
this.cd = a;
|
|
108617
108771
|
this.e("MarkerOutline");
|
|
108618
108772
|
}
|
|
108619
108773
|
get actualMarkerOutline() {
|
|
108620
|
-
return this.
|
|
108774
|
+
return this.bu;
|
|
108621
108775
|
}
|
|
108622
108776
|
set actualMarkerOutline(a) {
|
|
108623
|
-
this.
|
|
108777
|
+
this.bu = a;
|
|
108624
108778
|
this.e("ActualMarkerOutline");
|
|
108625
108779
|
}
|
|
108626
108780
|
get markerTemplateRef() {
|
|
108627
|
-
return this.
|
|
108781
|
+
return this.ce;
|
|
108628
108782
|
}
|
|
108629
108783
|
set markerTemplateRef(a) {
|
|
108630
|
-
this.
|
|
108784
|
+
this.ce = a;
|
|
108631
108785
|
this.e("MarkerTemplateRef");
|
|
108632
108786
|
}
|
|
108633
108787
|
get actualMarkerTemplateRef() {
|
|
108634
|
-
return this.
|
|
108788
|
+
return this.bv;
|
|
108635
108789
|
}
|
|
108636
108790
|
set actualMarkerTemplateRef(a) {
|
|
108637
|
-
this.
|
|
108791
|
+
this.bv = a;
|
|
108638
108792
|
this.e("ActualMarkerTemplateRef");
|
|
108639
108793
|
}
|
|
108640
108794
|
get markerType() {
|
|
108641
|
-
return this.
|
|
108795
|
+
return this.cf;
|
|
108642
108796
|
}
|
|
108643
108797
|
set markerType(a) {
|
|
108644
|
-
this.
|
|
108798
|
+
this.cf = a;
|
|
108645
108799
|
this.e("MarkerType");
|
|
108646
108800
|
}
|
|
108647
108801
|
get actualMarkerType() {
|
|
108648
|
-
return this.
|
|
108802
|
+
return this.bw;
|
|
108649
108803
|
}
|
|
108650
108804
|
set actualMarkerType(a) {
|
|
108651
|
-
this.
|
|
108805
|
+
this.bw = a;
|
|
108652
108806
|
this.e("ActualMarkerType");
|
|
108653
108807
|
}
|
|
108654
108808
|
get name() {
|
|
108655
|
-
return this.
|
|
108809
|
+
return this.cg;
|
|
108656
108810
|
}
|
|
108657
108811
|
set name(a) {
|
|
108658
|
-
this.
|
|
108812
|
+
this.cg = a;
|
|
108659
108813
|
this.e("Name");
|
|
108660
108814
|
}
|
|
108661
108815
|
get opacity() {
|
|
@@ -108673,17 +108827,17 @@ let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
|
|
|
108673
108827
|
this.e("ActualOpacity");
|
|
108674
108828
|
}
|
|
108675
108829
|
get outline() {
|
|
108676
|
-
return this.
|
|
108830
|
+
return this.ch;
|
|
108677
108831
|
}
|
|
108678
108832
|
set outline(a) {
|
|
108679
|
-
this.
|
|
108833
|
+
this.ch = a;
|
|
108680
108834
|
this.e("Outline");
|
|
108681
108835
|
}
|
|
108682
108836
|
get actualOutline() {
|
|
108683
|
-
return this.
|
|
108837
|
+
return this.bx;
|
|
108684
108838
|
}
|
|
108685
108839
|
set actualOutline(a) {
|
|
108686
|
-
this.
|
|
108840
|
+
this.bx = a;
|
|
108687
108841
|
this.e("ActualOutline");
|
|
108688
108842
|
}
|
|
108689
108843
|
get areaFillOpacity() {
|
|
@@ -108715,17 +108869,17 @@ let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
|
|
|
108715
108869
|
this.e("ActualMarkerFillOpacity");
|
|
108716
108870
|
}
|
|
108717
108871
|
get outlineMode() {
|
|
108718
|
-
return this.
|
|
108872
|
+
return this.ci;
|
|
108719
108873
|
}
|
|
108720
108874
|
set outlineMode(a) {
|
|
108721
|
-
this.
|
|
108875
|
+
this.ci = a;
|
|
108722
108876
|
this.e("OutlineMode");
|
|
108723
108877
|
}
|
|
108724
108878
|
get actualOutlineMode() {
|
|
108725
|
-
return this.
|
|
108879
|
+
return this.by;
|
|
108726
108880
|
}
|
|
108727
108881
|
set actualOutlineMode(a) {
|
|
108728
|
-
this.
|
|
108882
|
+
this.by = a;
|
|
108729
108883
|
this.e("ActualOutlineMode");
|
|
108730
108884
|
}
|
|
108731
108885
|
get highlightingFadeOpacity() {
|
|
@@ -108812,18 +108966,18 @@ let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
|
|
|
108812
108966
|
this.y = a;
|
|
108813
108967
|
this.e("ActualMarkerThickness");
|
|
108814
108968
|
}
|
|
108815
|
-
get
|
|
108816
|
-
return this.
|
|
108969
|
+
get title() {
|
|
108970
|
+
return this.bl;
|
|
108817
108971
|
}
|
|
108818
|
-
set
|
|
108819
|
-
this.
|
|
108820
|
-
this.e("
|
|
108972
|
+
set title(a) {
|
|
108973
|
+
this.bl = a;
|
|
108974
|
+
this.e("Title");
|
|
108821
108975
|
}
|
|
108822
108976
|
get transitionEasingFunctionRef() {
|
|
108823
|
-
return this.
|
|
108977
|
+
return this.cm;
|
|
108824
108978
|
}
|
|
108825
108979
|
set transitionEasingFunctionRef(a) {
|
|
108826
|
-
this.
|
|
108980
|
+
this.cm = a;
|
|
108827
108981
|
this.e("TransitionEasingFunctionRef");
|
|
108828
108982
|
}
|
|
108829
108983
|
get transitionDuration() {
|
|
@@ -108841,17 +108995,17 @@ let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
|
|
|
108841
108995
|
this.e("TransitionInDuration");
|
|
108842
108996
|
}
|
|
108843
108997
|
get transitionInEasingFunctionRef() {
|
|
108844
|
-
return this.
|
|
108998
|
+
return this.cn;
|
|
108845
108999
|
}
|
|
108846
109000
|
set transitionInEasingFunctionRef(a) {
|
|
108847
|
-
this.
|
|
109001
|
+
this.cn = a;
|
|
108848
109002
|
this.e("TransitionInEasingFunctionRef");
|
|
108849
109003
|
}
|
|
108850
109004
|
get transitionInMode() {
|
|
108851
|
-
return this.
|
|
109005
|
+
return this.co;
|
|
108852
109006
|
}
|
|
108853
109007
|
set transitionInMode(a) {
|
|
108854
|
-
this.
|
|
109008
|
+
this.co = a;
|
|
108855
109009
|
this.e("TransitionInMode");
|
|
108856
109010
|
}
|
|
108857
109011
|
get isTransitionInEnabled() {
|
|
@@ -108862,10 +109016,10 @@ let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
|
|
|
108862
109016
|
this.e("IsTransitionInEnabled");
|
|
108863
109017
|
}
|
|
108864
109018
|
get transitionInSpeedType() {
|
|
108865
|
-
return this.
|
|
109019
|
+
return this.cp;
|
|
108866
109020
|
}
|
|
108867
109021
|
set transitionInSpeedType(a) {
|
|
108868
|
-
this.
|
|
109022
|
+
this.cp = a;
|
|
108869
109023
|
this.e("TransitionInSpeedType");
|
|
108870
109024
|
}
|
|
108871
109025
|
get actualIsTransitionInEnabled() {
|
|
@@ -108883,31 +109037,31 @@ let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
|
|
|
108883
109037
|
this.e("ActualTransitionInDuration");
|
|
108884
109038
|
}
|
|
108885
109039
|
get actualTransitionInMode() {
|
|
108886
|
-
return this.
|
|
109040
|
+
return this.b2;
|
|
108887
109041
|
}
|
|
108888
109042
|
set actualTransitionInMode(a) {
|
|
108889
|
-
this.
|
|
109043
|
+
this.b2 = a;
|
|
108890
109044
|
this.e("ActualTransitionInMode");
|
|
108891
109045
|
}
|
|
108892
109046
|
get actualTransitionInSpeedType() {
|
|
108893
|
-
return this.
|
|
109047
|
+
return this.b3;
|
|
108894
109048
|
}
|
|
108895
109049
|
set actualTransitionInSpeedType(a) {
|
|
108896
|
-
this.
|
|
109050
|
+
this.b3 = a;
|
|
108897
109051
|
this.e("ActualTransitionInSpeedType");
|
|
108898
109052
|
}
|
|
108899
109053
|
get actualTransitionInEasingFunctionRef() {
|
|
108900
|
-
return this.
|
|
109054
|
+
return this.b1;
|
|
108901
109055
|
}
|
|
108902
109056
|
set actualTransitionInEasingFunctionRef(a) {
|
|
108903
|
-
this.
|
|
109057
|
+
this.b1 = a;
|
|
108904
109058
|
this.e("ActualTransitionInEasingFunctionRef");
|
|
108905
109059
|
}
|
|
108906
109060
|
get actualTransitionEasingFunctionRef() {
|
|
108907
|
-
return this.
|
|
109061
|
+
return this.b0;
|
|
108908
109062
|
}
|
|
108909
109063
|
set actualTransitionEasingFunctionRef(a) {
|
|
108910
|
-
this.
|
|
109064
|
+
this.b0 = a;
|
|
108911
109065
|
this.e("ActualTransitionEasingFunctionRef");
|
|
108912
109066
|
}
|
|
108913
109067
|
get actualTransitionDuration() {
|
|
@@ -108918,52 +109072,52 @@ let StackedFragmentSeriesDescription = /*@__PURE__*/ (() => {
|
|
|
108918
109072
|
this.e("ActualTransitionDuration");
|
|
108919
109073
|
}
|
|
108920
109074
|
get valueMemberPath() {
|
|
108921
|
-
return this.
|
|
109075
|
+
return this.cs;
|
|
108922
109076
|
}
|
|
108923
109077
|
set valueMemberPath(a) {
|
|
108924
|
-
this.
|
|
109078
|
+
this.cs = a;
|
|
108925
109079
|
this.e("ValueMemberPath");
|
|
108926
109080
|
}
|
|
108927
109081
|
get valueMemberAsLegendLabel() {
|
|
108928
|
-
return this.
|
|
109082
|
+
return this.cq;
|
|
108929
109083
|
}
|
|
108930
109084
|
set valueMemberAsLegendLabel(a) {
|
|
108931
|
-
this.
|
|
109085
|
+
this.cq = a;
|
|
108932
109086
|
this.e("ValueMemberAsLegendLabel");
|
|
108933
109087
|
}
|
|
108934
109088
|
get valueMemberAsLegendUnit() {
|
|
108935
|
-
return this.
|
|
109089
|
+
return this.cr;
|
|
108936
109090
|
}
|
|
108937
109091
|
set valueMemberAsLegendUnit(a) {
|
|
108938
|
-
this.
|
|
109092
|
+
this.cr = a;
|
|
108939
109093
|
this.e("ValueMemberAsLegendUnit");
|
|
108940
109094
|
}
|
|
108941
109095
|
get visibility() {
|
|
108942
|
-
return this.
|
|
109096
|
+
return this.ct;
|
|
108943
109097
|
}
|
|
108944
109098
|
set visibility(a) {
|
|
108945
|
-
this.
|
|
109099
|
+
this.ct = a;
|
|
108946
109100
|
this.e("Visibility");
|
|
108947
109101
|
}
|
|
108948
109102
|
get actualVisibility() {
|
|
108949
|
-
return this.
|
|
109103
|
+
return this.b4;
|
|
108950
109104
|
}
|
|
108951
109105
|
set actualVisibility(a) {
|
|
108952
|
-
this.
|
|
109106
|
+
this.b4 = a;
|
|
108953
109107
|
this.e("ActualVisibility");
|
|
108954
109108
|
}
|
|
108955
109109
|
get parentOrLocalBrush() {
|
|
108956
|
-
return this.
|
|
109110
|
+
return this.cj;
|
|
108957
109111
|
}
|
|
108958
109112
|
set parentOrLocalBrush(a) {
|
|
108959
|
-
this.
|
|
109113
|
+
this.cj = a;
|
|
108960
109114
|
this.e("ParentOrLocalBrush");
|
|
108961
109115
|
}
|
|
108962
109116
|
get propertyUpdatedRef() {
|
|
108963
|
-
return this.
|
|
109117
|
+
return this.ck;
|
|
108964
109118
|
}
|
|
108965
109119
|
set propertyUpdatedRef(a) {
|
|
108966
|
-
this.
|
|
109120
|
+
this.ck = a;
|
|
108967
109121
|
this.e("PropertyUpdatedRef");
|
|
108968
109122
|
}
|
|
108969
109123
|
}
|
|
@@ -109060,7 +109214,7 @@ let StackedFragmentSeriesDescriptionMetadata = /*@__PURE__*/ (() => {
|
|
|
109060
109214
|
a.item("ActualThickness", "Number:double");
|
|
109061
109215
|
a.item("MarkerThickness", "Number:double");
|
|
109062
109216
|
a.item("ActualMarkerThickness", "Number:double");
|
|
109063
|
-
a.item("
|
|
109217
|
+
a.item("Title", "Unknown");
|
|
109064
109218
|
a.item("TransitionEasingFunctionRef", "(w:TransitionEasingFunction,wf:TransitionEasingFunction)MethodRef");
|
|
109065
109219
|
a.item("TransitionDuration", "Number:int");
|
|
109066
109220
|
a.item("TransitionInDuration", "Number:int");
|
|
@@ -115413,6 +115567,7 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
|
|
|
115413
115567
|
let DataGridPagerDescriptionModule = /*@__PURE__*/ (() => {
|
|
115414
115568
|
class DataGridPagerDescriptionModule extends Base {
|
|
115415
115569
|
static register(a) {
|
|
115570
|
+
ButtonDescriptionModule.register(a);
|
|
115416
115571
|
DataGridPagerDescriptionMetadata.d(a);
|
|
115417
115572
|
}
|
|
115418
115573
|
}
|
|
@@ -123582,6 +123737,7 @@ let FinancialChartDescriptionModule = /*@__PURE__*/ (() => {
|
|
|
123582
123737
|
CategoryToolTipLayerDescriptionModule.register(a);
|
|
123583
123738
|
CategoryHighlightLayerDescriptionModule.register(a);
|
|
123584
123739
|
CategoryItemHighlightLayerDescriptionModule.register(a);
|
|
123740
|
+
DataToolTipLayerDescriptionModule.register(a);
|
|
123585
123741
|
FinalValueLayerDescriptionModule.register(a);
|
|
123586
123742
|
NumberAbbreviatorDescriptionModule.register(a);
|
|
123587
123743
|
DataChartInteractivityDescriptionModule.register(a);
|
|
@@ -131946,6 +132102,7 @@ let PropertyEditorPropertyDescriptionChangedEventArgsDescription = /*@__PURE__*/
|
|
|
131946
132102
|
class PropertyEditorPropertyDescriptionChangedEventArgsDescription extends Description {
|
|
131947
132103
|
constructor() {
|
|
131948
132104
|
super();
|
|
132105
|
+
this.f = null;
|
|
131949
132106
|
}
|
|
131950
132107
|
get_type() {
|
|
131951
132108
|
return "PropertyEditorPropertyDescriptionChangedEventArgs";
|
|
@@ -131953,6 +132110,13 @@ let PropertyEditorPropertyDescriptionChangedEventArgsDescription = /*@__PURE__*/
|
|
|
131953
132110
|
get type() {
|
|
131954
132111
|
return this.get_type();
|
|
131955
132112
|
}
|
|
132113
|
+
get newValue() {
|
|
132114
|
+
return this.f;
|
|
132115
|
+
}
|
|
132116
|
+
set newValue(a) {
|
|
132117
|
+
this.f = a;
|
|
132118
|
+
this.e("NewValue");
|
|
132119
|
+
}
|
|
131956
132120
|
}
|
|
131957
132121
|
PropertyEditorPropertyDescriptionChangedEventArgsDescription.$t = markType(PropertyEditorPropertyDescriptionChangedEventArgsDescription, 'PropertyEditorPropertyDescriptionChangedEventArgsDescription', Description.$);
|
|
131958
132122
|
return PropertyEditorPropertyDescriptionChangedEventArgsDescription;
|
|
@@ -131980,6 +132144,7 @@ let PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata = /*@__
|
|
|
131980
132144
|
a.s(PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata.a);
|
|
131981
132145
|
}
|
|
131982
132146
|
static c(a) {
|
|
132147
|
+
a.item("NewValue", "Unknown");
|
|
131983
132148
|
}
|
|
131984
132149
|
static d(a) {
|
|
131985
132150
|
PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata.b(a);
|
|
@@ -141933,7 +142098,6 @@ let WebDropdownGroupDescription = /*@__PURE__*/ (() => {
|
|
|
141933
142098
|
constructor() {
|
|
141934
142099
|
super();
|
|
141935
142100
|
this.f = null;
|
|
141936
|
-
this.h = null;
|
|
141937
142101
|
}
|
|
141938
142102
|
get_type() {
|
|
141939
142103
|
return "WebDropdownGroup";
|
|
@@ -141941,18 +142105,11 @@ let WebDropdownGroupDescription = /*@__PURE__*/ (() => {
|
|
|
141941
142105
|
get type() {
|
|
141942
142106
|
return this.get_type();
|
|
141943
142107
|
}
|
|
141944
|
-
get items() {
|
|
141945
|
-
return this.f;
|
|
141946
|
-
}
|
|
141947
|
-
set items(a) {
|
|
141948
|
-
this.f = a;
|
|
141949
|
-
this.e("Items");
|
|
141950
|
-
}
|
|
141951
142108
|
get size() {
|
|
141952
|
-
return this.
|
|
142109
|
+
return this.f;
|
|
141953
142110
|
}
|
|
141954
142111
|
set size(a) {
|
|
141955
|
-
this.
|
|
142112
|
+
this.f = a;
|
|
141956
142113
|
this.e("Size");
|
|
141957
142114
|
}
|
|
141958
142115
|
}
|
|
@@ -141980,11 +142137,9 @@ let WebDropdownGroupDescriptionMetadata = /*@__PURE__*/ (() => {
|
|
|
141980
142137
|
return;
|
|
141981
142138
|
}
|
|
141982
142139
|
a.s(WebDropdownGroupDescriptionMetadata.a);
|
|
141983
|
-
WebDropdownItemDescriptionMetadata.d(a);
|
|
141984
142140
|
}
|
|
141985
142141
|
static c(a) {
|
|
141986
142142
|
a.item("__qualifiedNameTS", "String:DropdownGroup");
|
|
141987
|
-
a.item("Items", "Array:WebDropdownItemDescription:DropdownItem");
|
|
141988
142143
|
a.item("Size", "ExportedType:string:DropdownGroupSize");
|
|
141989
142144
|
a.item("Size@names", "Small;Medium;Large");
|
|
141990
142145
|
}
|
|
@@ -147196,14 +147351,14 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
|
|
|
147196
147351
|
/**
|
|
147197
147352
|
* @hidden
|
|
147198
147353
|
*/
|
|
147199
|
-
let
|
|
147200
|
-
class
|
|
147354
|
+
let WebTreeSelectionOptionsEventDetailDescription = /*@__PURE__*/ (() => {
|
|
147355
|
+
class WebTreeSelectionOptionsEventDetailDescription extends Description {
|
|
147201
147356
|
constructor() {
|
|
147202
147357
|
super();
|
|
147203
147358
|
this.f = null;
|
|
147204
147359
|
}
|
|
147205
147360
|
get_type() {
|
|
147206
|
-
return "
|
|
147361
|
+
return "WebTreeSelectionOptionsEventDetail";
|
|
147207
147362
|
}
|
|
147208
147363
|
get type() {
|
|
147209
147364
|
return this.get_type();
|
|
@@ -147216,6 +147371,77 @@ let WebTreeSelectionOptionsEventArgsDescription = /*@__PURE__*/ (() => {
|
|
|
147216
147371
|
this.e("NewSelection");
|
|
147217
147372
|
}
|
|
147218
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
|
+
}
|
|
147219
147445
|
WebTreeSelectionOptionsEventArgsDescription.$t = markType(WebTreeSelectionOptionsEventArgsDescription, 'WebTreeSelectionOptionsEventArgsDescription', Description.$);
|
|
147220
147446
|
return WebTreeSelectionOptionsEventArgsDescription;
|
|
147221
147447
|
})();
|
|
@@ -147240,10 +147466,11 @@ let WebTreeSelectionOptionsEventArgsDescriptionMetadata = /*@__PURE__*/ (() => {
|
|
|
147240
147466
|
return;
|
|
147241
147467
|
}
|
|
147242
147468
|
a.s(WebTreeSelectionOptionsEventArgsDescriptionMetadata.a);
|
|
147469
|
+
WebTreeSelectionOptionsEventDetailDescriptionMetadata.d(a);
|
|
147243
147470
|
}
|
|
147244
147471
|
static c(a) {
|
|
147245
147472
|
a.item("__qualifiedNameTS", "String:TreeSelectionOptionsEventArgs");
|
|
147246
|
-
a.item("
|
|
147473
|
+
a.item("Detail", "ExportedType:WebTreeSelectionOptionsEventDetail");
|
|
147247
147474
|
}
|
|
147248
147475
|
static d(a) {
|
|
147249
147476
|
WebTreeSelectionOptionsEventArgsDescriptionMetadata.b(a);
|
|
@@ -147270,15 +147497,14 @@ let WebTreeItemDescription = /*@__PURE__*/ (() => {
|
|
|
147270
147497
|
constructor() {
|
|
147271
147498
|
super();
|
|
147272
147499
|
this.f = null;
|
|
147273
|
-
this.
|
|
147274
|
-
this.t = 0;
|
|
147500
|
+
this.r = 0;
|
|
147275
147501
|
this.v = null;
|
|
147276
147502
|
this.j = false;
|
|
147277
147503
|
this.h = false;
|
|
147278
147504
|
this.i = false;
|
|
147279
|
-
this.m = false;
|
|
147280
147505
|
this.l = false;
|
|
147281
|
-
this.
|
|
147506
|
+
this.k = false;
|
|
147507
|
+
this.t = null;
|
|
147282
147508
|
}
|
|
147283
147509
|
get_type() {
|
|
147284
147510
|
return "WebTreeItem";
|
|
@@ -147293,18 +147519,11 @@ let WebTreeItemDescription = /*@__PURE__*/ (() => {
|
|
|
147293
147519
|
this.f = a;
|
|
147294
147520
|
this.e("Parent");
|
|
147295
147521
|
}
|
|
147296
|
-
get init() {
|
|
147297
|
-
return this.k;
|
|
147298
|
-
}
|
|
147299
|
-
set init(a) {
|
|
147300
|
-
this.k = a;
|
|
147301
|
-
this.e("Init");
|
|
147302
|
-
}
|
|
147303
147522
|
get level() {
|
|
147304
|
-
return this.
|
|
147523
|
+
return this.r;
|
|
147305
147524
|
}
|
|
147306
147525
|
set level(a) {
|
|
147307
|
-
this.
|
|
147526
|
+
this.r = a;
|
|
147308
147527
|
this.e("Level");
|
|
147309
147528
|
}
|
|
147310
147529
|
get label() {
|
|
@@ -147336,25 +147555,25 @@ let WebTreeItemDescription = /*@__PURE__*/ (() => {
|
|
|
147336
147555
|
this.e("Disabled");
|
|
147337
147556
|
}
|
|
147338
147557
|
get selected() {
|
|
147339
|
-
return this.
|
|
147558
|
+
return this.l;
|
|
147340
147559
|
}
|
|
147341
147560
|
set selected(a) {
|
|
147342
|
-
this.
|
|
147561
|
+
this.l = a;
|
|
147343
147562
|
this.e("Selected");
|
|
147344
147563
|
}
|
|
147345
147564
|
get loading() {
|
|
147346
|
-
return this.
|
|
147565
|
+
return this.k;
|
|
147347
147566
|
}
|
|
147348
147567
|
set loading(a) {
|
|
147349
|
-
this.
|
|
147568
|
+
this.k = a;
|
|
147350
147569
|
this.e("Loading");
|
|
147351
147570
|
}
|
|
147352
|
-
get
|
|
147353
|
-
return this.
|
|
147571
|
+
get value() {
|
|
147572
|
+
return this.t;
|
|
147354
147573
|
}
|
|
147355
|
-
set
|
|
147356
|
-
this.
|
|
147357
|
-
this.e("
|
|
147574
|
+
set value(a) {
|
|
147575
|
+
this.t = a;
|
|
147576
|
+
this.e("Value");
|
|
147358
147577
|
}
|
|
147359
147578
|
}
|
|
147360
147579
|
WebTreeItemDescription.$t = markType(WebTreeItemDescription, 'WebTreeItemDescription', Description.$);
|
|
@@ -147386,7 +147605,6 @@ let WebTreeItemDescriptionMetadata = /*@__PURE__*/ (() => {
|
|
|
147386
147605
|
static c(a) {
|
|
147387
147606
|
a.item("__qualifiedNameTS", "String:TreeItem");
|
|
147388
147607
|
a.item("Parent", "ExportedType:WebTreeItem");
|
|
147389
|
-
a.item("Init", "Boolean");
|
|
147390
147608
|
a.item("Level", "Number:double");
|
|
147391
147609
|
a.item("Label", "String");
|
|
147392
147610
|
a.item("Expanded", "Boolean");
|
|
@@ -147394,7 +147612,7 @@ let WebTreeItemDescriptionMetadata = /*@__PURE__*/ (() => {
|
|
|
147394
147612
|
a.item("Disabled", "Boolean");
|
|
147395
147613
|
a.item("Selected", "Boolean");
|
|
147396
147614
|
a.item("Loading", "Boolean");
|
|
147397
|
-
a.item("
|
|
147615
|
+
a.item("Value", "Unknown");
|
|
147398
147616
|
}
|
|
147399
147617
|
static d(a) {
|
|
147400
147618
|
WebTreeItemDescriptionMetadata.b(a);
|
|
@@ -147558,10 +147776,6 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
|
|
|
147558
147776
|
let WebTreeDescriptionModule = /*@__PURE__*/ (() => {
|
|
147559
147777
|
class WebTreeDescriptionModule extends Base {
|
|
147560
147778
|
static register(a) {
|
|
147561
|
-
WebTreeItemDescriptionModule.register(a);
|
|
147562
|
-
WebTreeItemDescriptionModule.register(a);
|
|
147563
|
-
WebTreeItemDescriptionModule.register(a);
|
|
147564
|
-
WebTreeItemDescriptionModule.register(a);
|
|
147565
147779
|
WebTreeItemDescriptionModule.register(a);
|
|
147566
147780
|
WebTreeDescriptionMetadata.d(a);
|
|
147567
147781
|
}
|
|
@@ -183790,4 +184004,4 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
|
|
|
183790
184004
|
* Generated bundle index. Do not edit.
|
|
183791
184005
|
*/
|
|
183792
184006
|
|
|
183793
|
-
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 };
|