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
|
@@ -30704,12 +30704,13 @@ var NativeUICheckbox = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
30704
30704
|
return this.ap;
|
|
30705
30705
|
},
|
|
30706
30706
|
set: function (a) {
|
|
30707
|
+
var b = this.ap;
|
|
30707
30708
|
this.ap = a;
|
|
30708
30709
|
if (this.ap != null) {
|
|
30709
30710
|
this.w(2, this.ap);
|
|
30710
30711
|
}
|
|
30711
30712
|
else {
|
|
30712
|
-
this.ab(2,
|
|
30713
|
+
this.ab(2, b);
|
|
30713
30714
|
}
|
|
30714
30715
|
},
|
|
30715
30716
|
enumerable: false,
|
|
@@ -30776,12 +30777,13 @@ var NativeUIButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
30776
30777
|
return this.ap;
|
|
30777
30778
|
},
|
|
30778
30779
|
set: function (a) {
|
|
30780
|
+
var b = this.ap;
|
|
30779
30781
|
this.ap = a;
|
|
30780
30782
|
if (this.ap != null) {
|
|
30781
30783
|
this.w(1, this.ap);
|
|
30782
30784
|
}
|
|
30783
30785
|
else {
|
|
30784
|
-
this.ab(1,
|
|
30786
|
+
this.ab(1, b);
|
|
30785
30787
|
}
|
|
30786
30788
|
},
|
|
30787
30789
|
enumerable: false,
|
|
@@ -30826,12 +30828,13 @@ var NativeUIDropDown = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
30826
30828
|
return this.aq;
|
|
30827
30829
|
},
|
|
30828
30830
|
set: function (a) {
|
|
30831
|
+
var b = this.aq;
|
|
30829
30832
|
this.aq = a;
|
|
30830
30833
|
if (this.aq != null) {
|
|
30831
30834
|
this.w(3, this.aq);
|
|
30832
30835
|
}
|
|
30833
30836
|
else {
|
|
30834
|
-
this.ab(3,
|
|
30837
|
+
this.ab(3, b);
|
|
30835
30838
|
}
|
|
30836
30839
|
},
|
|
30837
30840
|
enumerable: false,
|
|
@@ -30877,12 +30880,13 @@ var NativeUISlider = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
30877
30880
|
function NativeUISlider() {
|
|
30878
30881
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
30879
30882
|
_this.ap = null;
|
|
30883
|
+
_this.aq = null;
|
|
30880
30884
|
return _this;
|
|
30881
30885
|
}
|
|
30882
30886
|
NativeUISlider.prototype.get_c = function () {
|
|
30883
30887
|
return 5;
|
|
30884
30888
|
};
|
|
30885
|
-
Object.defineProperty(NativeUISlider.prototype, "
|
|
30889
|
+
Object.defineProperty(NativeUISlider.prototype, "aw", {
|
|
30886
30890
|
get: function () {
|
|
30887
30891
|
var a = this.o(2);
|
|
30888
30892
|
return a;
|
|
@@ -30893,7 +30897,7 @@ var NativeUISlider = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
30893
30897
|
enumerable: false,
|
|
30894
30898
|
configurable: true
|
|
30895
30899
|
});
|
|
30896
|
-
Object.defineProperty(NativeUISlider.prototype, "
|
|
30900
|
+
Object.defineProperty(NativeUISlider.prototype, "au", {
|
|
30897
30901
|
get: function () {
|
|
30898
30902
|
var a = this.o(10);
|
|
30899
30903
|
return a;
|
|
@@ -30904,7 +30908,7 @@ var NativeUISlider = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
30904
30908
|
enumerable: false,
|
|
30905
30909
|
configurable: true
|
|
30906
30910
|
});
|
|
30907
|
-
Object.defineProperty(NativeUISlider.prototype, "
|
|
30911
|
+
Object.defineProperty(NativeUISlider.prototype, "at", {
|
|
30908
30912
|
get: function () {
|
|
30909
30913
|
var a = this.o(11);
|
|
30910
30914
|
return a;
|
|
@@ -30915,7 +30919,7 @@ var NativeUISlider = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
30915
30919
|
enumerable: false,
|
|
30916
30920
|
configurable: true
|
|
30917
30921
|
});
|
|
30918
|
-
Object.defineProperty(NativeUISlider.prototype, "
|
|
30922
|
+
Object.defineProperty(NativeUISlider.prototype, "av", {
|
|
30919
30923
|
get: function () {
|
|
30920
30924
|
var a = this.o(12);
|
|
30921
30925
|
return a;
|
|
@@ -30926,17 +30930,35 @@ var NativeUISlider = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
30926
30930
|
enumerable: false,
|
|
30927
30931
|
configurable: true
|
|
30928
30932
|
});
|
|
30929
|
-
Object.defineProperty(NativeUISlider.prototype, "
|
|
30933
|
+
Object.defineProperty(NativeUISlider.prototype, "ar", {
|
|
30930
30934
|
get: function () {
|
|
30931
30935
|
return this.ap;
|
|
30932
30936
|
},
|
|
30933
30937
|
set: function (a) {
|
|
30938
|
+
var b = this.ap;
|
|
30934
30939
|
this.ap = a;
|
|
30935
30940
|
if (this.ap != null) {
|
|
30936
30941
|
this.w(4, this.ap);
|
|
30937
30942
|
}
|
|
30938
30943
|
else {
|
|
30939
|
-
this.ab(4,
|
|
30944
|
+
this.ab(4, b);
|
|
30945
|
+
}
|
|
30946
|
+
},
|
|
30947
|
+
enumerable: false,
|
|
30948
|
+
configurable: true
|
|
30949
|
+
});
|
|
30950
|
+
Object.defineProperty(NativeUISlider.prototype, "as", {
|
|
30951
|
+
get: function () {
|
|
30952
|
+
return this.aq;
|
|
30953
|
+
},
|
|
30954
|
+
set: function (a) {
|
|
30955
|
+
var b = this.aq;
|
|
30956
|
+
this.aq = a;
|
|
30957
|
+
if (this.aq != null) {
|
|
30958
|
+
this.w(0, this.aq);
|
|
30959
|
+
}
|
|
30960
|
+
else {
|
|
30961
|
+
this.ab(0, b);
|
|
30940
30962
|
}
|
|
30941
30963
|
},
|
|
30942
30964
|
enumerable: false,
|
|
@@ -31167,12 +31189,13 @@ var NativeUIInput = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
31167
31189
|
return this.ar;
|
|
31168
31190
|
},
|
|
31169
31191
|
set: function (a) {
|
|
31192
|
+
var b = this.ar;
|
|
31170
31193
|
this.ar = a;
|
|
31171
31194
|
if (this.ar != null) {
|
|
31172
31195
|
this.w(0, this.ar);
|
|
31173
31196
|
}
|
|
31174
31197
|
else {
|
|
31175
|
-
this.ab(0,
|
|
31198
|
+
this.ab(0, b);
|
|
31176
31199
|
}
|
|
31177
31200
|
},
|
|
31178
31201
|
enumerable: false,
|
|
@@ -37780,25 +37803,44 @@ var IgcSliderBridge = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
37780
37803
|
__extends(IgcSliderBridge, _super);
|
|
37781
37804
|
function IgcSliderBridge() {
|
|
37782
37805
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
37783
|
-
_this.d = null;
|
|
37784
|
-
_this.c = null;
|
|
37785
37806
|
_this.e = null;
|
|
37807
|
+
_this.c = null;
|
|
37808
|
+
_this.g = null;
|
|
37809
|
+
_this.f = null;
|
|
37810
|
+
_this.d = null;
|
|
37811
|
+
_this.h = null;
|
|
37786
37812
|
return _this;
|
|
37787
37813
|
}
|
|
37788
37814
|
IgcSliderBridge.prototype.addHandler = function (a, b, c, d) {
|
|
37789
37815
|
switch (c) {
|
|
37816
|
+
case 0:
|
|
37817
|
+
{
|
|
37818
|
+
var e = a;
|
|
37819
|
+
this.f = e.listen("igcInput", runOn(this, this.j));
|
|
37820
|
+
this.d = d;
|
|
37821
|
+
this.h = b;
|
|
37822
|
+
}
|
|
37823
|
+
break;
|
|
37790
37824
|
case 4:
|
|
37791
|
-
|
|
37792
|
-
|
|
37793
|
-
|
|
37794
|
-
|
|
37825
|
+
{
|
|
37826
|
+
var f = a;
|
|
37827
|
+
this.e = f.listen("igcChange", runOn(this, this.i));
|
|
37828
|
+
this.c = d;
|
|
37829
|
+
this.g = b;
|
|
37830
|
+
}
|
|
37795
37831
|
break;
|
|
37796
37832
|
}
|
|
37797
37833
|
};
|
|
37798
|
-
IgcSliderBridge.prototype.
|
|
37834
|
+
IgcSliderBridge.prototype.j = function (a) {
|
|
37835
|
+
if (this.d != null) {
|
|
37836
|
+
var b = new NativeUISliderValueChangedEventArgs();
|
|
37837
|
+
this.d(this.h, b);
|
|
37838
|
+
}
|
|
37839
|
+
};
|
|
37840
|
+
IgcSliderBridge.prototype.i = function (a) {
|
|
37799
37841
|
if (this.c != null) {
|
|
37800
37842
|
var b = new NativeUISliderValueChangedEventArgs();
|
|
37801
|
-
this.c(this.
|
|
37843
|
+
this.c(this.g, b);
|
|
37802
37844
|
}
|
|
37803
37845
|
};
|
|
37804
37846
|
IgcSliderBridge.prototype.getValue = function (a, b) {
|
|
@@ -37812,12 +37854,19 @@ var IgcSliderBridge = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
37812
37854
|
};
|
|
37813
37855
|
IgcSliderBridge.prototype.removeHandler = function (a, b, c, d) {
|
|
37814
37856
|
switch (c) {
|
|
37815
|
-
case
|
|
37816
|
-
if (this.
|
|
37817
|
-
this.
|
|
37857
|
+
case 0:
|
|
37858
|
+
if (this.f != null) {
|
|
37859
|
+
this.f();
|
|
37860
|
+
}
|
|
37861
|
+
this.d = null;
|
|
37862
|
+
this.h = null;
|
|
37863
|
+
break;
|
|
37864
|
+
case 4:
|
|
37865
|
+
if (this.e != null) {
|
|
37866
|
+
this.e();
|
|
37818
37867
|
}
|
|
37819
37868
|
this.c = null;
|
|
37820
|
-
this.
|
|
37869
|
+
this.g = null;
|
|
37821
37870
|
break;
|
|
37822
37871
|
}
|
|
37823
37872
|
};
|
|
@@ -38368,6 +38417,7 @@ var NativeUIInputsFactory = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
38368
38417
|
NativeUIInputsFactory.prototype.j = function (a, b) {
|
|
38369
38418
|
var c = a;
|
|
38370
38419
|
var d = c.createElement("igc-slider");
|
|
38420
|
+
d.setProperty("hideTooltip", true);
|
|
38371
38421
|
var e = new IgcSliderBridge();
|
|
38372
38422
|
var f = new NativeUISlider();
|
|
38373
38423
|
f.u = d;
|
|
@@ -58848,6 +58898,9 @@ var ComponentRendererAdapter = /** @class */ /*@__PURE__*/ (function () {
|
|
|
58848
58898
|
if (propertyName.endsWith("Ocurred")) {
|
|
58849
58899
|
propertyName = propertyName.replace("Ocurred", "");
|
|
58850
58900
|
}
|
|
58901
|
+
if (propertyName.toLowerCase() == "selectionchanged") {
|
|
58902
|
+
propertyName = "selection";
|
|
58903
|
+
}
|
|
58851
58904
|
var eventId = "igc" + TypeDescriptionMetadata.toPascal(propertyName);
|
|
58852
58905
|
if (value) {
|
|
58853
58906
|
target.addEventListener(eventId, value);
|
|
@@ -59457,21 +59510,22 @@ var CodeGeneratingRendererResult = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
59457
59510
|
__extends(CodeGeneratingRendererResult, _super);
|
|
59458
59511
|
function CodeGeneratingRendererResult() {
|
|
59459
59512
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
59460
|
-
_this.
|
|
59513
|
+
_this.p = new List$1(CodeGenerationItemBuilderPropertyInfo.$, 0);
|
|
59461
59514
|
_this._platform = 0;
|
|
59462
59515
|
_this._generationOptions = null;
|
|
59516
|
+
_this.k = new Dictionary$2(String_$type, List$1.$.specialize(String_$type), 0);
|
|
59517
|
+
_this.m = new Dictionary$2(String_$type, List$1.$.specialize(CodeGeneratingImportManager.$), 0);
|
|
59463
59518
|
_this.j = new Dictionary$2(String_$type, List$1.$.specialize(String_$type), 0);
|
|
59464
|
-
_this.
|
|
59465
|
-
_this.i = new Dictionary$2(String_$type, List$1.$.specialize(String_$type), 0);
|
|
59466
|
-
_this.g = new Dictionary$2(String_$type, Number_$type, 0);
|
|
59467
|
-
_this.m = new Dictionary$2(String_$type, String_$type, 0);
|
|
59468
|
-
_this.k = new Dictionary$2(String_$type, String_$type, 0);
|
|
59519
|
+
_this.o = new HashSet$1(String_$type, 0);
|
|
59469
59520
|
_this.h = new Dictionary$2(String_$type, Number_$type, 0);
|
|
59521
|
+
_this.n = new Dictionary$2(String_$type, String_$type, 0);
|
|
59522
|
+
_this.l = new Dictionary$2(String_$type, String_$type, 0);
|
|
59523
|
+
_this.i = new Dictionary$2(String_$type, Number_$type, 0);
|
|
59470
59524
|
return _this;
|
|
59471
59525
|
}
|
|
59472
|
-
Object.defineProperty(CodeGeneratingRendererResult.prototype, "
|
|
59526
|
+
Object.defineProperty(CodeGeneratingRendererResult.prototype, "s", {
|
|
59473
59527
|
get: function () {
|
|
59474
|
-
return this.
|
|
59528
|
+
return this.p;
|
|
59475
59529
|
},
|
|
59476
59530
|
enumerable: false,
|
|
59477
59531
|
configurable: true
|
|
@@ -59496,32 +59550,35 @@ var CodeGeneratingRendererResult = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
59496
59550
|
enumerable: false,
|
|
59497
59551
|
configurable: true
|
|
59498
59552
|
});
|
|
59553
|
+
CodeGeneratingRendererResult.prototype.addPackageRef = function (a) {
|
|
59554
|
+
this.o.add_1(a);
|
|
59555
|
+
};
|
|
59499
59556
|
CodeGeneratingRendererResult.prototype.addContainerResult = function (a, b) {
|
|
59500
|
-
if (!this.
|
|
59501
|
-
this.
|
|
59557
|
+
if (!this.k.containsKey(a)) {
|
|
59558
|
+
this.k.addItem(a, new List$1(String_$type, 0));
|
|
59502
59559
|
}
|
|
59503
|
-
var c = this.
|
|
59560
|
+
var c = this.k.item(a);
|
|
59504
59561
|
c.add(b);
|
|
59505
59562
|
};
|
|
59506
59563
|
CodeGeneratingRendererResult.prototype.addImportResult = function (a, b) {
|
|
59507
|
-
if (!this.
|
|
59508
|
-
this.
|
|
59564
|
+
if (!this.m.containsKey(a)) {
|
|
59565
|
+
this.m.addItem(a, new List$1(CodeGeneratingImportManager.$, 0));
|
|
59509
59566
|
}
|
|
59510
|
-
var c = this.
|
|
59567
|
+
var c = this.m.item(a);
|
|
59511
59568
|
c.add(b);
|
|
59512
59569
|
};
|
|
59513
59570
|
CodeGeneratingRendererResult.prototype.addContainerNewFileResult = function (a, b) {
|
|
59514
|
-
if (!this.
|
|
59515
|
-
this.
|
|
59571
|
+
if (!this.j.containsKey(a)) {
|
|
59572
|
+
this.j.addItem(a, new List$1(String_$type, 0));
|
|
59516
59573
|
}
|
|
59517
|
-
var c = this.
|
|
59574
|
+
var c = this.j.item(a);
|
|
59518
59575
|
c.add(b);
|
|
59519
59576
|
};
|
|
59520
|
-
CodeGeneratingRendererResult.prototype.
|
|
59577
|
+
CodeGeneratingRendererResult.prototype.getPackages = function () {
|
|
59521
59578
|
var e_1, _a;
|
|
59522
59579
|
var a = new List$1(String_$type, 0);
|
|
59523
59580
|
try {
|
|
59524
|
-
for (var _b = __values(fromEnum(this.
|
|
59581
|
+
for (var _b = __values(fromEnum(this.o)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
59525
59582
|
var b = _c.value;
|
|
59526
59583
|
a.add(b);
|
|
59527
59584
|
}
|
|
@@ -59541,11 +59598,11 @@ var CodeGeneratingRendererResult = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
59541
59598
|
}
|
|
59542
59599
|
return a.toArray();
|
|
59543
59600
|
};
|
|
59544
|
-
CodeGeneratingRendererResult.prototype.
|
|
59601
|
+
CodeGeneratingRendererResult.prototype.getKeys = function () {
|
|
59545
59602
|
var e_2, _a;
|
|
59546
59603
|
var a = new List$1(String_$type, 0);
|
|
59547
59604
|
try {
|
|
59548
|
-
for (var _b = __values(fromEnum(this.
|
|
59605
|
+
for (var _b = __values(fromEnum(this.k.keys)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
59549
59606
|
var b = _c.value;
|
|
59550
59607
|
a.add(b);
|
|
59551
59608
|
}
|
|
@@ -59565,12 +59622,36 @@ var CodeGeneratingRendererResult = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
59565
59622
|
}
|
|
59566
59623
|
return a.toArray();
|
|
59567
59624
|
};
|
|
59568
|
-
CodeGeneratingRendererResult.prototype.
|
|
59625
|
+
CodeGeneratingRendererResult.prototype.getImportsKeys = function () {
|
|
59569
59626
|
var e_3, _a;
|
|
59570
|
-
|
|
59627
|
+
var a = new List$1(String_$type, 0);
|
|
59628
|
+
try {
|
|
59629
|
+
for (var _b = __values(fromEnum(this.m.keys)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
59630
|
+
var b = _c.value;
|
|
59631
|
+
a.add(b);
|
|
59632
|
+
}
|
|
59633
|
+
}
|
|
59634
|
+
catch (e_3_1) {
|
|
59635
|
+
e_3 = { error: e_3_1 };
|
|
59636
|
+
}
|
|
59637
|
+
finally {
|
|
59638
|
+
try {
|
|
59639
|
+
if (_c && !_c.done && (_a = _b.return))
|
|
59640
|
+
_a.call(_b);
|
|
59641
|
+
}
|
|
59642
|
+
finally {
|
|
59643
|
+
if (e_3)
|
|
59644
|
+
throw e_3.error;
|
|
59645
|
+
}
|
|
59646
|
+
}
|
|
59647
|
+
return a.toArray();
|
|
59648
|
+
};
|
|
59649
|
+
CodeGeneratingRendererResult.prototype.getContentForKey = function (a) {
|
|
59650
|
+
var e_4, _a;
|
|
59651
|
+
if (!this.k.containsKey(a)) {
|
|
59571
59652
|
return "";
|
|
59572
59653
|
}
|
|
59573
|
-
var b = this.
|
|
59654
|
+
var b = this.k.item(a);
|
|
59574
59655
|
if (b.count == 1) {
|
|
59575
59656
|
return b._inner[0];
|
|
59576
59657
|
}
|
|
@@ -59581,8 +59662,8 @@ var CodeGeneratingRendererResult = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
59581
59662
|
c += d;
|
|
59582
59663
|
}
|
|
59583
59664
|
}
|
|
59584
|
-
catch (
|
|
59585
|
-
|
|
59665
|
+
catch (e_4_1) {
|
|
59666
|
+
e_4 = { error: e_4_1 };
|
|
59586
59667
|
}
|
|
59587
59668
|
finally {
|
|
59588
59669
|
try {
|
|
@@ -59590,41 +59671,41 @@ var CodeGeneratingRendererResult = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
59590
59671
|
_a.call(_b);
|
|
59591
59672
|
}
|
|
59592
59673
|
finally {
|
|
59593
|
-
if (
|
|
59594
|
-
throw
|
|
59674
|
+
if (e_4)
|
|
59675
|
+
throw e_4.error;
|
|
59595
59676
|
}
|
|
59596
59677
|
}
|
|
59597
59678
|
return c;
|
|
59598
59679
|
};
|
|
59599
|
-
CodeGeneratingRendererResult.prototype.
|
|
59600
|
-
if (!this.
|
|
59680
|
+
CodeGeneratingRendererResult.prototype.q = function (a) {
|
|
59681
|
+
if (!this.m.containsKey(a)) {
|
|
59601
59682
|
return null;
|
|
59602
59683
|
}
|
|
59603
|
-
return this.
|
|
59684
|
+
return this.m.item(a);
|
|
59604
59685
|
};
|
|
59605
|
-
CodeGeneratingRendererResult.prototype.
|
|
59606
|
-
if (!this.
|
|
59607
|
-
this.
|
|
59686
|
+
CodeGeneratingRendererResult.prototype.t = function (a) {
|
|
59687
|
+
if (!this.h.containsKey(a)) {
|
|
59688
|
+
this.h.item(a, 1);
|
|
59608
59689
|
}
|
|
59609
|
-
var b = this.
|
|
59690
|
+
var b = this.h.item(a);
|
|
59610
59691
|
var c = a + b;
|
|
59611
|
-
this.
|
|
59692
|
+
this.h.item(a, b + 1);
|
|
59612
59693
|
return c;
|
|
59613
59694
|
};
|
|
59614
|
-
CodeGeneratingRendererResult.prototype.
|
|
59615
|
-
this.
|
|
59695
|
+
CodeGeneratingRendererResult.prototype.ae = function (a) {
|
|
59696
|
+
this.p.add(a);
|
|
59616
59697
|
};
|
|
59617
59698
|
CodeGeneratingRendererResult.prototype.getNewFiles = function () {
|
|
59618
|
-
var
|
|
59699
|
+
var e_5, _a;
|
|
59619
59700
|
var a = new List$1(String_$type, 0);
|
|
59620
59701
|
try {
|
|
59621
|
-
for (var _b = __values(fromEnum(this.
|
|
59702
|
+
for (var _b = __values(fromEnum(this.j.keys)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
59622
59703
|
var b = _c.value;
|
|
59623
59704
|
a.add(b);
|
|
59624
59705
|
}
|
|
59625
59706
|
}
|
|
59626
|
-
catch (
|
|
59627
|
-
|
|
59707
|
+
catch (e_5_1) {
|
|
59708
|
+
e_5 = { error: e_5_1 };
|
|
59628
59709
|
}
|
|
59629
59710
|
finally {
|
|
59630
59711
|
try {
|
|
@@ -59632,15 +59713,15 @@ var CodeGeneratingRendererResult = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
59632
59713
|
_a.call(_b);
|
|
59633
59714
|
}
|
|
59634
59715
|
finally {
|
|
59635
|
-
if (
|
|
59636
|
-
throw
|
|
59716
|
+
if (e_5)
|
|
59717
|
+
throw e_5.error;
|
|
59637
59718
|
}
|
|
59638
59719
|
}
|
|
59639
59720
|
return a;
|
|
59640
59721
|
};
|
|
59641
59722
|
CodeGeneratingRendererResult.prototype.getNewFileContent = function (a) {
|
|
59642
|
-
var
|
|
59643
|
-
var b = this.
|
|
59723
|
+
var e_6, _a;
|
|
59724
|
+
var b = this.j.item(a);
|
|
59644
59725
|
var c = "";
|
|
59645
59726
|
try {
|
|
59646
59727
|
for (var _b = __values(fromEnum(b)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
@@ -59648,8 +59729,8 @@ var CodeGeneratingRendererResult = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
59648
59729
|
c += d;
|
|
59649
59730
|
}
|
|
59650
59731
|
}
|
|
59651
|
-
catch (
|
|
59652
|
-
|
|
59732
|
+
catch (e_6_1) {
|
|
59733
|
+
e_6 = { error: e_6_1 };
|
|
59653
59734
|
}
|
|
59654
59735
|
finally {
|
|
59655
59736
|
try {
|
|
@@ -59657,26 +59738,26 @@ var CodeGeneratingRendererResult = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
59657
59738
|
_a.call(_b);
|
|
59658
59739
|
}
|
|
59659
59740
|
finally {
|
|
59660
|
-
if (
|
|
59661
|
-
throw
|
|
59741
|
+
if (e_6)
|
|
59742
|
+
throw e_6.error;
|
|
59662
59743
|
}
|
|
59663
59744
|
}
|
|
59664
59745
|
return c;
|
|
59665
59746
|
};
|
|
59666
59747
|
CodeGeneratingRendererResult.prototype.defineString = function (a, b) {
|
|
59667
|
-
this.
|
|
59748
|
+
this.n.item(a, b);
|
|
59668
59749
|
};
|
|
59669
59750
|
CodeGeneratingRendererResult.prototype.getStringNames = function () {
|
|
59670
|
-
var
|
|
59751
|
+
var e_7, _a;
|
|
59671
59752
|
var a = new List$1(String_$type, 0);
|
|
59672
59753
|
try {
|
|
59673
|
-
for (var _b = __values(fromEnum(this.
|
|
59754
|
+
for (var _b = __values(fromEnum(this.n.keys)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
59674
59755
|
var b = _c.value;
|
|
59675
59756
|
a.add(b);
|
|
59676
59757
|
}
|
|
59677
59758
|
}
|
|
59678
|
-
catch (
|
|
59679
|
-
|
|
59759
|
+
catch (e_7_1) {
|
|
59760
|
+
e_7 = { error: e_7_1 };
|
|
59680
59761
|
}
|
|
59681
59762
|
finally {
|
|
59682
59763
|
try {
|
|
@@ -59684,34 +59765,34 @@ var CodeGeneratingRendererResult = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
59684
59765
|
_a.call(_b);
|
|
59685
59766
|
}
|
|
59686
59767
|
finally {
|
|
59687
|
-
if (
|
|
59688
|
-
throw
|
|
59768
|
+
if (e_7)
|
|
59769
|
+
throw e_7.error;
|
|
59689
59770
|
}
|
|
59690
59771
|
}
|
|
59691
59772
|
return a.toArray();
|
|
59692
59773
|
};
|
|
59693
59774
|
CodeGeneratingRendererResult.prototype.getString = function (a) {
|
|
59694
|
-
return this.
|
|
59775
|
+
return this.n.item(a);
|
|
59695
59776
|
};
|
|
59696
59777
|
CodeGeneratingRendererResult.prototype.trackDescriptionField = function (a, b) {
|
|
59697
|
-
this.
|
|
59778
|
+
this.l.item(a, b);
|
|
59698
59779
|
};
|
|
59699
59780
|
CodeGeneratingRendererResult.prototype.hasDescription = function (a) {
|
|
59700
|
-
return this.
|
|
59781
|
+
return this.l.containsKey(a);
|
|
59701
59782
|
};
|
|
59702
59783
|
CodeGeneratingRendererResult.prototype.getDescriptionField = function (a) {
|
|
59703
|
-
return this.
|
|
59784
|
+
return this.l.item(a);
|
|
59704
59785
|
};
|
|
59705
|
-
CodeGeneratingRendererResult.prototype.
|
|
59786
|
+
CodeGeneratingRendererResult.prototype.u = function (a) {
|
|
59706
59787
|
var b = 0;
|
|
59707
|
-
if (!this.
|
|
59708
|
-
this.
|
|
59788
|
+
if (!this.i.containsKey(a)) {
|
|
59789
|
+
this.i.addItem(a, b);
|
|
59709
59790
|
}
|
|
59710
59791
|
else {
|
|
59711
|
-
b = this.
|
|
59792
|
+
b = this.i.item(a);
|
|
59712
59793
|
}
|
|
59713
59794
|
b++;
|
|
59714
|
-
this.
|
|
59795
|
+
this.i.item(a, b);
|
|
59715
59796
|
return a + b;
|
|
59716
59797
|
};
|
|
59717
59798
|
CodeGeneratingRendererResult.$t = markType(CodeGeneratingRendererResult, 'CodeGeneratingRendererResult');
|
|
@@ -60721,8 +60802,8 @@ var CodeGeneratingComponentRendererDataEmitter = /** @class */ /*@__PURE__*/ (fu
|
|
|
60721
60802
|
}
|
|
60722
60803
|
}
|
|
60723
60804
|
var n = new HashSet$1(String_$type, 0);
|
|
60724
|
-
for (var o = 0; o < this.m.
|
|
60725
|
-
var p = this.m.
|
|
60805
|
+
for (var o = 0; o < this.m.s.count; o++) {
|
|
60806
|
+
var p = this.m.s._inner[o];
|
|
60726
60807
|
if (p.a != null && p.c == null) {
|
|
60727
60808
|
if (this.o.library != null && this.o.library.hasItem(p.a.e)) {
|
|
60728
60809
|
if (n.contains(p.a.e)) {
|
|
@@ -61983,14 +62064,14 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
61983
62064
|
_this.e = false;
|
|
61984
62065
|
return _this;
|
|
61985
62066
|
}
|
|
61986
|
-
DescriptionSerializer.prototype.
|
|
62067
|
+
DescriptionSerializer.prototype.p = function (a, b) {
|
|
61987
62068
|
var c = DescriptionTreeBuilder.createTree(a, b);
|
|
61988
62069
|
var d = new DescriptionSerializerBuilder();
|
|
61989
|
-
this.
|
|
62070
|
+
this.q(a, c, d);
|
|
61990
62071
|
return d.toString();
|
|
61991
62072
|
};
|
|
61992
|
-
DescriptionSerializer.prototype.
|
|
61993
|
-
this.
|
|
62073
|
+
DescriptionSerializer.prototype.t = function (a, b, c) {
|
|
62074
|
+
this.q(a, b, c);
|
|
61994
62075
|
};
|
|
61995
62076
|
DescriptionSerializer.prototype.c = function (a, b) {
|
|
61996
62077
|
var c = new JsonDictionaryParser();
|
|
@@ -62015,7 +62096,7 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
62015
62096
|
this.e = false;
|
|
62016
62097
|
return g;
|
|
62017
62098
|
};
|
|
62018
|
-
DescriptionSerializer.prototype.
|
|
62099
|
+
DescriptionSerializer.prototype.v = function (a, b, c, d, e) {
|
|
62019
62100
|
if (this.g) {
|
|
62020
62101
|
a.w(b, c, d, e);
|
|
62021
62102
|
}
|
|
@@ -62079,14 +62160,14 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
62079
62160
|
break;
|
|
62080
62161
|
}
|
|
62081
62162
|
if (!this.e) {
|
|
62082
|
-
this.
|
|
62163
|
+
this.v(a, h, k, l, q);
|
|
62083
62164
|
}
|
|
62084
62165
|
}
|
|
62085
62166
|
else if (typeCast(JsonDictionaryObject.$, p) !== null) {
|
|
62086
62167
|
var r = p;
|
|
62087
62168
|
var s = this.b(a, r, l.knownType);
|
|
62088
62169
|
f.e(s);
|
|
62089
|
-
this.
|
|
62170
|
+
this.v(a, h, k, l, s.result);
|
|
62090
62171
|
}
|
|
62091
62172
|
else if (typeCast(JsonDictionaryArray.$, p) !== null) {
|
|
62092
62173
|
var t = p;
|
|
@@ -62100,50 +62181,64 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
62100
62181
|
u = l.collectionElementType;
|
|
62101
62182
|
}
|
|
62102
62183
|
var w = this.a(f, a, t, u);
|
|
62184
|
+
if (this.f) {
|
|
62185
|
+
if (l.propertyName.toLowerCase() == "includedproperties" || l.propertyName.toLowerCase() == "excludedproperties") {
|
|
62186
|
+
var x = w;
|
|
62187
|
+
var y = new Array(x.length);
|
|
62188
|
+
for (var z = 0; z < x.length; z++) {
|
|
62189
|
+
y[z] = this.n(x[z]);
|
|
62190
|
+
}
|
|
62191
|
+
w = y;
|
|
62192
|
+
}
|
|
62193
|
+
}
|
|
62103
62194
|
if (!this.e || v) {
|
|
62104
|
-
this.
|
|
62195
|
+
this.v(a, h, k, l, w);
|
|
62105
62196
|
}
|
|
62106
62197
|
}
|
|
62107
62198
|
else {
|
|
62108
|
-
var
|
|
62109
|
-
if (
|
|
62110
|
-
|
|
62199
|
+
var aa = l.specificExternalType;
|
|
62200
|
+
if (aa == null && l.knownType == 3) {
|
|
62201
|
+
aa = "DateTime";
|
|
62111
62202
|
}
|
|
62112
|
-
if (
|
|
62113
|
-
|
|
62203
|
+
if (aa == null) {
|
|
62204
|
+
aa = "String";
|
|
62114
62205
|
}
|
|
62115
|
-
var
|
|
62116
|
-
var
|
|
62206
|
+
var ab = p;
|
|
62207
|
+
var ac = this.j(f, a, ab, aa);
|
|
62117
62208
|
if (this.f) {
|
|
62118
|
-
if (stringEndsWith(l.propertyName, "MemberPath") || (g != null && stringEndsWith(g, "Axis") && l.propertyName.toLowerCase() == "label")) {
|
|
62119
|
-
|
|
62120
|
-
if (this.i != null) {
|
|
62121
|
-
z = this.i(aa);
|
|
62122
|
-
}
|
|
62123
|
-
else {
|
|
62124
|
-
if (stringStartsWith(aa, "{")) {
|
|
62125
|
-
if (!stringStartsWith(aa, "{[")) {
|
|
62126
|
-
aa = aa.substr(1, aa.length - 2);
|
|
62127
|
-
aa = "{[" + aa + "]}";
|
|
62128
|
-
z = aa;
|
|
62129
|
-
}
|
|
62130
|
-
}
|
|
62131
|
-
else {
|
|
62132
|
-
if (!stringStartsWith(aa, "[")) {
|
|
62133
|
-
aa = "[" + aa + "]";
|
|
62134
|
-
z = aa;
|
|
62135
|
-
}
|
|
62136
|
-
}
|
|
62137
|
-
}
|
|
62209
|
+
if (stringEndsWith(l.propertyName, "MemberPath") || stringEndsWith(l.propertyName.toLowerCase(), "field") || (g != null && stringEndsWith(g, "Axis") && l.propertyName.toLowerCase() == "label")) {
|
|
62210
|
+
ac = this.n(ac);
|
|
62138
62211
|
}
|
|
62139
62212
|
}
|
|
62140
62213
|
if (!this.e) {
|
|
62141
|
-
this.
|
|
62214
|
+
this.v(a, h, k, l, ac);
|
|
62142
62215
|
}
|
|
62143
62216
|
}
|
|
62144
62217
|
}
|
|
62145
62218
|
return f;
|
|
62146
62219
|
};
|
|
62220
|
+
DescriptionSerializer.prototype.n = function (a) {
|
|
62221
|
+
var b = a.toString();
|
|
62222
|
+
if (this.i != null) {
|
|
62223
|
+
a = this.i(b);
|
|
62224
|
+
}
|
|
62225
|
+
else {
|
|
62226
|
+
if (stringStartsWith(b, "{")) {
|
|
62227
|
+
if (!stringStartsWith(b, "{[")) {
|
|
62228
|
+
b = b.substr(1, b.length - 2);
|
|
62229
|
+
b = "{[" + b + "]}";
|
|
62230
|
+
a = b;
|
|
62231
|
+
}
|
|
62232
|
+
}
|
|
62233
|
+
else {
|
|
62234
|
+
if (!stringStartsWith(b, "[")) {
|
|
62235
|
+
b = "[" + b + "]";
|
|
62236
|
+
a = b;
|
|
62237
|
+
}
|
|
62238
|
+
}
|
|
62239
|
+
}
|
|
62240
|
+
return a;
|
|
62241
|
+
};
|
|
62147
62242
|
DescriptionSerializer.prototype.k = function (a, b) {
|
|
62148
62243
|
if (b == null) {
|
|
62149
62244
|
return null;
|
|
@@ -62262,7 +62357,7 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
62262
62357
|
return c.value;
|
|
62263
62358
|
}
|
|
62264
62359
|
};
|
|
62265
|
-
DescriptionSerializer.prototype.
|
|
62360
|
+
DescriptionSerializer.prototype.q = function (a, b, c) {
|
|
62266
62361
|
c.f("{");
|
|
62267
62362
|
c.i();
|
|
62268
62363
|
c.f("\"type\": \"" + b.h + "\"");
|
|
@@ -62272,25 +62367,25 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
62272
62367
|
if (e >= 0) {
|
|
62273
62368
|
c.f(",");
|
|
62274
62369
|
}
|
|
62275
|
-
this.
|
|
62370
|
+
this.r(a, b, f, c);
|
|
62276
62371
|
}
|
|
62277
62372
|
c.h();
|
|
62278
62373
|
c.f("}");
|
|
62279
62374
|
};
|
|
62280
|
-
DescriptionSerializer.prototype.
|
|
62375
|
+
DescriptionSerializer.prototype.o = function (a) {
|
|
62281
62376
|
if (a == null) {
|
|
62282
62377
|
return null;
|
|
62283
62378
|
}
|
|
62284
62379
|
return a.substr(0, 1).toLowerCase() + a.substr(1);
|
|
62285
62380
|
};
|
|
62286
|
-
DescriptionSerializer.prototype.
|
|
62381
|
+
DescriptionSerializer.prototype.r = function (a, b, c, d) {
|
|
62287
62382
|
if (c.c.toLowerCase() == "type") {
|
|
62288
62383
|
return;
|
|
62289
62384
|
}
|
|
62290
|
-
d.e("\"" + this.
|
|
62291
|
-
this.
|
|
62385
|
+
d.e("\"" + this.o(c.c) + "\": ");
|
|
62386
|
+
this.u(a, b, c, c.b, d);
|
|
62292
62387
|
};
|
|
62293
|
-
DescriptionSerializer.prototype.
|
|
62388
|
+
DescriptionSerializer.prototype.u = function (a, b, c, d, e) {
|
|
62294
62389
|
var f = 2;
|
|
62295
62390
|
if (c.a != null) {
|
|
62296
62391
|
f = c.a.knownType;
|
|
@@ -62312,17 +62407,17 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
62312
62407
|
}
|
|
62313
62408
|
var j = h;
|
|
62314
62409
|
if (typeCast(DescriptionTreeNode.$, g[i]) !== null) {
|
|
62315
|
-
this.
|
|
62410
|
+
this.q(a, g[i], e);
|
|
62316
62411
|
}
|
|
62317
62412
|
else {
|
|
62318
|
-
this.
|
|
62413
|
+
this.s(a, h, g[i], e);
|
|
62319
62414
|
}
|
|
62320
62415
|
}
|
|
62321
62416
|
e.e("]");
|
|
62322
62417
|
}
|
|
62323
62418
|
break;
|
|
62324
62419
|
case 7:
|
|
62325
|
-
this.
|
|
62420
|
+
this.s(a, "Boolean", d, e);
|
|
62326
62421
|
break;
|
|
62327
62422
|
case 9:
|
|
62328
62423
|
{
|
|
@@ -62335,10 +62430,10 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
62335
62430
|
}
|
|
62336
62431
|
var n = l;
|
|
62337
62432
|
if (typeCast(DescriptionTreeNode.$, k[m]) !== null) {
|
|
62338
|
-
this.
|
|
62433
|
+
this.q(a, k[m], e);
|
|
62339
62434
|
}
|
|
62340
62435
|
else {
|
|
62341
|
-
this.
|
|
62436
|
+
this.s(a, l, k[m], e);
|
|
62342
62437
|
}
|
|
62343
62438
|
}
|
|
62344
62439
|
e.e("]");
|
|
@@ -62350,29 +62445,29 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
62350
62445
|
case 20:
|
|
62351
62446
|
case 5:
|
|
62352
62447
|
case 2:
|
|
62353
|
-
this.
|
|
62448
|
+
this.s(a, "String", d, e);
|
|
62354
62449
|
break;
|
|
62355
62450
|
case 3:
|
|
62356
|
-
this.
|
|
62451
|
+
this.s(a, "DateTime", d, e);
|
|
62357
62452
|
break;
|
|
62358
62453
|
case 8:
|
|
62359
62454
|
if (c.a.specificExternalType.toLowerCase() == "string") {
|
|
62360
|
-
this.
|
|
62455
|
+
this.s(a, "String", d, e);
|
|
62361
62456
|
}
|
|
62362
62457
|
else {
|
|
62363
|
-
this.
|
|
62458
|
+
this.q(a, d, e);
|
|
62364
62459
|
}
|
|
62365
62460
|
break;
|
|
62366
62461
|
case 1:
|
|
62367
|
-
this.
|
|
62462
|
+
this.s(a, "Double", d, e);
|
|
62368
62463
|
break;
|
|
62369
62464
|
case 14:
|
|
62370
62465
|
case 12:
|
|
62371
62466
|
case 11:
|
|
62372
|
-
this.
|
|
62467
|
+
this.q(a, d, e);
|
|
62373
62468
|
break;
|
|
62374
62469
|
case 21:
|
|
62375
|
-
this.
|
|
62470
|
+
this.s(a, "TimeSpan", d, e);
|
|
62376
62471
|
break;
|
|
62377
62472
|
case 17:
|
|
62378
62473
|
case 0:
|
|
@@ -62380,7 +62475,7 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
62380
62475
|
case 13: throw new NotImplementedException(0);
|
|
62381
62476
|
}
|
|
62382
62477
|
};
|
|
62383
|
-
DescriptionSerializer.prototype.
|
|
62478
|
+
DescriptionSerializer.prototype.s = function (a, b, c, d) {
|
|
62384
62479
|
switch (b.toLowerCase()) {
|
|
62385
62480
|
case "string":
|
|
62386
62481
|
if (c == null) {
|
|
@@ -63235,7 +63330,7 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
63235
63330
|
}
|
|
63236
63331
|
b.e("\"" + h + "\"");
|
|
63237
63332
|
b.e(": ");
|
|
63238
|
-
c.
|
|
63333
|
+
c.t(this.context, g, b);
|
|
63239
63334
|
}
|
|
63240
63335
|
}
|
|
63241
63336
|
catch (e_1_1) {
|
|
@@ -65219,8 +65314,8 @@ var CodeGeneratingComponentRendererHandlerEmitter = /** @class */ /*@__PURE__*/
|
|
|
65219
65314
|
});
|
|
65220
65315
|
CodeGeneratingComponentRendererHandlerEmitter.prototype.j = function () {
|
|
65221
65316
|
var a = new HashSet$1(String_$type, 0);
|
|
65222
|
-
for (var b = 0; b < this.e.
|
|
65223
|
-
var c = this.e.
|
|
65317
|
+
for (var b = 0; b < this.e.s.count; b++) {
|
|
65318
|
+
var c = this.e.s._inner[b];
|
|
65224
65319
|
if (c.a != null && c.c == null) {
|
|
65225
65320
|
if (this.g.library != null && this.g.library.hasItem(c.a.e)) {
|
|
65226
65321
|
if (a.contains(c.a.e)) {
|
|
@@ -65457,18 +65552,25 @@ var CodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE__*/ (
|
|
|
65457
65552
|
__extends(CodeGeneratingComponentRendererModuleEmitter, _super);
|
|
65458
65553
|
function CodeGeneratingComponentRendererModuleEmitter(a, b) {
|
|
65459
65554
|
var _this = _super.call(this) || this;
|
|
65460
|
-
_this.
|
|
65555
|
+
_this.k = null;
|
|
65461
65556
|
_this.i = null;
|
|
65462
65557
|
_this.b = null;
|
|
65463
65558
|
_this.f = new CodeGeneratingImportManager();
|
|
65464
65559
|
_this.e = new CodeGeneratingImportManager();
|
|
65465
65560
|
_this.a = null;
|
|
65466
|
-
_this.
|
|
65561
|
+
_this.k = a;
|
|
65467
65562
|
_this.i = b;
|
|
65468
|
-
_this.b = new CodeGeneratingCodeWriter(_this.
|
|
65469
|
-
_this.a = new CodeGeneratingCodeWriter(_this.
|
|
65563
|
+
_this.b = new CodeGeneratingCodeWriter(_this.k);
|
|
65564
|
+
_this.a = new CodeGeneratingCodeWriter(_this.k);
|
|
65470
65565
|
return _this;
|
|
65471
65566
|
}
|
|
65567
|
+
Object.defineProperty(CodeGeneratingComponentRendererModuleEmitter.prototype, "j", {
|
|
65568
|
+
get: function () {
|
|
65569
|
+
return this.i;
|
|
65570
|
+
},
|
|
65571
|
+
enumerable: false,
|
|
65572
|
+
configurable: true
|
|
65573
|
+
});
|
|
65472
65574
|
Object.defineProperty(CodeGeneratingComponentRendererModuleEmitter.prototype, "d", {
|
|
65473
65575
|
get: function () {
|
|
65474
65576
|
return this.b;
|
|
@@ -65497,8 +65599,8 @@ var CodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE__*/ (
|
|
|
65497
65599
|
enumerable: false,
|
|
65498
65600
|
configurable: true
|
|
65499
65601
|
});
|
|
65500
|
-
CodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
65501
|
-
this.
|
|
65602
|
+
CodeGeneratingComponentRendererModuleEmitter.prototype.m = function (a) {
|
|
65603
|
+
this.o();
|
|
65502
65604
|
if (typeCast(JsonDictionaryArray.$, a) !== null) {
|
|
65503
65605
|
var b = a;
|
|
65504
65606
|
for (var c = 0; c < b.items.length; c++) {
|
|
@@ -65507,22 +65609,22 @@ var CodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE__*/ (
|
|
|
65507
65609
|
var e = d;
|
|
65508
65610
|
if (e != null) {
|
|
65509
65611
|
var f = e.value.toString();
|
|
65510
|
-
this.
|
|
65612
|
+
this.l(f);
|
|
65511
65613
|
}
|
|
65512
65614
|
}
|
|
65513
65615
|
}
|
|
65514
65616
|
}
|
|
65515
|
-
this.
|
|
65617
|
+
this.n();
|
|
65516
65618
|
this.i.addImportResult("modulesImports", this.h);
|
|
65517
65619
|
this.i.addContainerResult("modulesRegister", this.d.toString());
|
|
65518
65620
|
this.i.addImportResult("descriptionImports", this.g);
|
|
65519
65621
|
this.i.addContainerResult("descriptionRegister", this.c.toString());
|
|
65520
65622
|
};
|
|
65521
|
-
CodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
65623
|
+
CodeGeneratingComponentRendererModuleEmitter.prototype.n = function () {
|
|
65522
65624
|
};
|
|
65523
|
-
CodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
65625
|
+
CodeGeneratingComponentRendererModuleEmitter.prototype.l = function (a) {
|
|
65524
65626
|
};
|
|
65525
|
-
CodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
65627
|
+
CodeGeneratingComponentRendererModuleEmitter.prototype.o = function () {
|
|
65526
65628
|
};
|
|
65527
65629
|
CodeGeneratingComponentRendererModuleEmitter.$t = markType(CodeGeneratingComponentRendererModuleEmitter, 'CodeGeneratingComponentRendererModuleEmitter');
|
|
65528
65630
|
return CodeGeneratingComponentRendererModuleEmitter;
|
|
@@ -65541,20 +65643,20 @@ var TSCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE__*/
|
|
|
65541
65643
|
__extends(TSCodeGeneratingComponentRendererModuleEmitter, _super);
|
|
65542
65644
|
function TSCodeGeneratingComponentRendererModuleEmitter(a, b, c) {
|
|
65543
65645
|
var _this = _super.call(this, b, c) || this;
|
|
65544
|
-
_this.
|
|
65545
|
-
_this.
|
|
65546
|
-
_this.
|
|
65547
|
-
_this.
|
|
65548
|
-
_this.
|
|
65646
|
+
_this.p = 0;
|
|
65647
|
+
_this.s = 0;
|
|
65648
|
+
_this.q = false;
|
|
65649
|
+
_this.r = new Dictionary$2(String_$type, List$1.$.specialize(String_$type), 0);
|
|
65650
|
+
_this.p = a;
|
|
65549
65651
|
return _this;
|
|
65550
65652
|
}
|
|
65551
|
-
TSCodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
65552
|
-
_super.prototype.
|
|
65553
|
-
this.
|
|
65653
|
+
TSCodeGeneratingComponentRendererModuleEmitter.prototype.o = function () {
|
|
65654
|
+
_super.prototype.o.call(this);
|
|
65655
|
+
this.s = 0;
|
|
65554
65656
|
};
|
|
65555
|
-
Object.defineProperty(TSCodeGeneratingComponentRendererModuleEmitter.prototype, "
|
|
65657
|
+
Object.defineProperty(TSCodeGeneratingComponentRendererModuleEmitter.prototype, "u", {
|
|
65556
65658
|
get: function () {
|
|
65557
|
-
switch (this.
|
|
65659
|
+
switch (this.p) {
|
|
65558
65660
|
case 1: return "Igx";
|
|
65559
65661
|
case 2: return "Igr";
|
|
65560
65662
|
case 3: return "Igc";
|
|
@@ -65564,9 +65666,9 @@ var TSCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE__*/
|
|
|
65564
65666
|
enumerable: false,
|
|
65565
65667
|
configurable: true
|
|
65566
65668
|
});
|
|
65567
|
-
Object.defineProperty(TSCodeGeneratingComponentRendererModuleEmitter.prototype, "
|
|
65669
|
+
Object.defineProperty(TSCodeGeneratingComponentRendererModuleEmitter.prototype, "t", {
|
|
65568
65670
|
get: function () {
|
|
65569
|
-
switch (this.
|
|
65671
|
+
switch (this.p) {
|
|
65570
65672
|
case 1: return "angular";
|
|
65571
65673
|
case 2: return "react";
|
|
65572
65674
|
case 3: return "webcomponents";
|
|
@@ -65576,34 +65678,36 @@ var TSCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE__*/
|
|
|
65576
65678
|
enumerable: false,
|
|
65577
65679
|
configurable: true
|
|
65578
65680
|
});
|
|
65579
|
-
TSCodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
65580
|
-
_super.prototype.
|
|
65681
|
+
TSCodeGeneratingComponentRendererModuleEmitter.prototype.l = function (a) {
|
|
65682
|
+
_super.prototype.l.call(this, a);
|
|
65581
65683
|
if (a == "withDescriptions") {
|
|
65582
|
-
this.
|
|
65684
|
+
this.q = true;
|
|
65583
65685
|
return;
|
|
65584
65686
|
}
|
|
65585
|
-
var b = "igniteui-" + this.
|
|
65687
|
+
var b = "igniteui-" + this.t + "-core";
|
|
65586
65688
|
var c = "";
|
|
65587
65689
|
var d = a.split('/');
|
|
65588
65690
|
if (d.length == 1) {
|
|
65589
65691
|
c = d[0];
|
|
65692
|
+
this.j.addPackageRef(c);
|
|
65590
65693
|
}
|
|
65591
65694
|
else {
|
|
65592
65695
|
b = d[0];
|
|
65593
|
-
|
|
65696
|
+
this.j.addPackageRef(b);
|
|
65697
|
+
b = "igniteui-" + this.t + "-" + b;
|
|
65594
65698
|
c = d[1];
|
|
65595
65699
|
}
|
|
65596
|
-
if (!this.
|
|
65597
|
-
this.
|
|
65700
|
+
if (!this.r.containsKey(b)) {
|
|
65701
|
+
this.r.addItem(b, new List$1(String_$type, 0));
|
|
65598
65702
|
}
|
|
65599
|
-
var e = this.
|
|
65600
|
-
if (this.
|
|
65703
|
+
var e = this.r.item(b);
|
|
65704
|
+
if (this.s > 0) {
|
|
65601
65705
|
this.d.k(",");
|
|
65602
65706
|
}
|
|
65603
|
-
this.d.j(this.
|
|
65604
|
-
e.add(this.
|
|
65605
|
-
if (this.
|
|
65606
|
-
if (this.
|
|
65707
|
+
this.d.j(this.u + c);
|
|
65708
|
+
e.add(this.u + c);
|
|
65709
|
+
if (this.q) {
|
|
65710
|
+
if (this.s == 0) {
|
|
65607
65711
|
this.c.k("private _componentRenderer: ComponentRenderer = null;");
|
|
65608
65712
|
this.c.k("public get renderer(): ComponentRenderer {");
|
|
65609
65713
|
this.c.h();
|
|
@@ -65611,26 +65715,26 @@ var TSCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE__*/
|
|
|
65611
65715
|
this.c.h();
|
|
65612
65716
|
this.c.k("this._componentRenderer = new ComponentRenderer();");
|
|
65613
65717
|
this.c.k("var context = this._componentRenderer.context;");
|
|
65614
|
-
this.g.addPackageImport("igniteui-" + this.
|
|
65718
|
+
this.g.addPackageImport("igniteui-" + this.t + "-core", "ComponentRenderer");
|
|
65615
65719
|
}
|
|
65616
65720
|
var f = c;
|
|
65617
65721
|
if (stringEndsWith(f, "Module")) {
|
|
65618
65722
|
f = f.substr(0, f.length - ("Module").length);
|
|
65619
65723
|
f += "DescriptionModule";
|
|
65620
65724
|
}
|
|
65621
|
-
this.g.addPackageImport("igniteui-" + this.
|
|
65725
|
+
this.g.addPackageImport("igniteui-" + this.t + "-core", f);
|
|
65622
65726
|
this.c.k(f + ".register(context);");
|
|
65623
65727
|
}
|
|
65624
|
-
this.
|
|
65728
|
+
this.s++;
|
|
65625
65729
|
};
|
|
65626
|
-
TSCodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
65730
|
+
TSCodeGeneratingComponentRendererModuleEmitter.prototype.n = function () {
|
|
65627
65731
|
var e_1, _a, e_2, _b;
|
|
65628
|
-
_super.prototype.
|
|
65732
|
+
_super.prototype.n.call(this);
|
|
65629
65733
|
try {
|
|
65630
|
-
for (var _c = __values(fromEnum(this.
|
|
65734
|
+
for (var _c = __values(fromEnum(this.r.keys)), _d = _c.next(); !_d.done; _d = _c.next()) {
|
|
65631
65735
|
var a = _d.value;
|
|
65632
65736
|
var b = a;
|
|
65633
|
-
var c = this.
|
|
65737
|
+
var c = this.r.item(a);
|
|
65634
65738
|
try {
|
|
65635
65739
|
for (var _e = (e_2 = void 0, __values(fromEnum(c))), _f = _e.next(); !_f.done; _f = _e.next()) {
|
|
65636
65740
|
var d = _f.value;
|
|
@@ -65665,10 +65769,10 @@ var TSCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE__*/
|
|
|
65665
65769
|
throw e_1.error;
|
|
65666
65770
|
}
|
|
65667
65771
|
}
|
|
65668
|
-
if (this.
|
|
65772
|
+
if (this.q) {
|
|
65669
65773
|
this.c.f();
|
|
65670
65774
|
this.c.k("}");
|
|
65671
|
-
this.c.k("return this._componentRenderer");
|
|
65775
|
+
this.c.k("return this._componentRenderer;");
|
|
65672
65776
|
this.c.f();
|
|
65673
65777
|
this.c.k("}");
|
|
65674
65778
|
}
|
|
@@ -65690,27 +65794,27 @@ var DotNetCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE
|
|
|
65690
65794
|
__extends(DotNetCodeGeneratingComponentRendererModuleEmitter, _super);
|
|
65691
65795
|
function DotNetCodeGeneratingComponentRendererModuleEmitter(a, b, c) {
|
|
65692
65796
|
var _this = _super.call(this, b, c) || this;
|
|
65693
|
-
_this.
|
|
65694
|
-
_this.
|
|
65695
|
-
_this.
|
|
65696
|
-
_this.
|
|
65697
|
-
_this.
|
|
65797
|
+
_this.p = 0;
|
|
65798
|
+
_this.s = 0;
|
|
65799
|
+
_this.q = false;
|
|
65800
|
+
_this.r = new Dictionary$2(String_$type, List$1.$.specialize(String_$type), 0);
|
|
65801
|
+
_this.p = a;
|
|
65698
65802
|
return _this;
|
|
65699
65803
|
}
|
|
65700
|
-
Object.defineProperty(DotNetCodeGeneratingComponentRendererModuleEmitter.prototype, "
|
|
65804
|
+
Object.defineProperty(DotNetCodeGeneratingComponentRendererModuleEmitter.prototype, "t", {
|
|
65701
65805
|
get: function () {
|
|
65702
|
-
return this.
|
|
65806
|
+
return this.s;
|
|
65703
65807
|
},
|
|
65704
65808
|
enumerable: false,
|
|
65705
65809
|
configurable: true
|
|
65706
65810
|
});
|
|
65707
|
-
DotNetCodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
65708
|
-
_super.prototype.
|
|
65709
|
-
this.
|
|
65811
|
+
DotNetCodeGeneratingComponentRendererModuleEmitter.prototype.o = function () {
|
|
65812
|
+
_super.prototype.o.call(this);
|
|
65813
|
+
this.s = 0;
|
|
65710
65814
|
};
|
|
65711
|
-
Object.defineProperty(DotNetCodeGeneratingComponentRendererModuleEmitter.prototype, "
|
|
65815
|
+
Object.defineProperty(DotNetCodeGeneratingComponentRendererModuleEmitter.prototype, "u", {
|
|
65712
65816
|
get: function () {
|
|
65713
|
-
switch (this.
|
|
65817
|
+
switch (this.p) {
|
|
65714
65818
|
case 0: return "Xam";
|
|
65715
65819
|
case 4: return "Ultra";
|
|
65716
65820
|
case 5: return "Igb";
|
|
@@ -65720,22 +65824,24 @@ var DotNetCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE
|
|
|
65720
65824
|
enumerable: false,
|
|
65721
65825
|
configurable: true
|
|
65722
65826
|
});
|
|
65723
|
-
DotNetCodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
65724
|
-
_super.prototype.
|
|
65725
|
-
if (a == "withDescriptions" && this.
|
|
65726
|
-
this.
|
|
65827
|
+
DotNetCodeGeneratingComponentRendererModuleEmitter.prototype.l = function (a) {
|
|
65828
|
+
_super.prototype.l.call(this, a);
|
|
65829
|
+
if (a == "withDescriptions" && this.p != 5) {
|
|
65830
|
+
this.q = true;
|
|
65727
65831
|
return;
|
|
65728
65832
|
}
|
|
65729
65833
|
var b = "";
|
|
65730
65834
|
var c = a.split('/');
|
|
65731
65835
|
if (c.length == 1) {
|
|
65732
65836
|
b = c[0];
|
|
65837
|
+
this.j.addPackageRef(b);
|
|
65733
65838
|
}
|
|
65734
65839
|
else {
|
|
65840
|
+
this.j.addPackageRef(c[0]);
|
|
65735
65841
|
b = c[1];
|
|
65736
65842
|
}
|
|
65737
|
-
if (this.
|
|
65738
|
-
if (this.
|
|
65843
|
+
if (this.q) {
|
|
65844
|
+
if (this.s == 0) {
|
|
65739
65845
|
this.c.k("private ComponentRenderer _componentRenderer = null;");
|
|
65740
65846
|
this.c.k("public ComponentRenderer Renderer");
|
|
65741
65847
|
this.c.k("{");
|
|
@@ -65756,11 +65862,11 @@ var DotNetCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE
|
|
|
65756
65862
|
}
|
|
65757
65863
|
this.c.k(d + ".Register(context);");
|
|
65758
65864
|
}
|
|
65759
|
-
this.
|
|
65865
|
+
this.s++;
|
|
65760
65866
|
};
|
|
65761
|
-
DotNetCodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
65762
|
-
_super.prototype.
|
|
65763
|
-
if (this.
|
|
65867
|
+
DotNetCodeGeneratingComponentRendererModuleEmitter.prototype.n = function () {
|
|
65868
|
+
_super.prototype.n.call(this);
|
|
65869
|
+
if (this.q) {
|
|
65764
65870
|
this.g.addUsing("using Infragistics.Controls.Description;");
|
|
65765
65871
|
this.c.f();
|
|
65766
65872
|
this.c.k("}");
|
|
@@ -65788,15 +65894,15 @@ var BlazorCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE
|
|
|
65788
65894
|
__extends(BlazorCodeGeneratingComponentRendererModuleEmitter, _super);
|
|
65789
65895
|
function BlazorCodeGeneratingComponentRendererModuleEmitter(a, b, c) {
|
|
65790
65896
|
var _this = _super.call(this, a, b, c) || this;
|
|
65791
|
-
_this.
|
|
65897
|
+
_this.v = 0;
|
|
65792
65898
|
return _this;
|
|
65793
65899
|
}
|
|
65794
|
-
BlazorCodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
65795
|
-
_super.prototype.
|
|
65900
|
+
BlazorCodeGeneratingComponentRendererModuleEmitter.prototype.o = function () {
|
|
65901
|
+
_super.prototype.o.call(this);
|
|
65796
65902
|
};
|
|
65797
|
-
BlazorCodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
65798
|
-
_super.prototype.
|
|
65799
|
-
if (this.
|
|
65903
|
+
BlazorCodeGeneratingComponentRendererModuleEmitter.prototype.l = function (a) {
|
|
65904
|
+
_super.prototype.l.call(this, a);
|
|
65905
|
+
if (this.v > 0) {
|
|
65800
65906
|
this.d.k(", ");
|
|
65801
65907
|
}
|
|
65802
65908
|
var b = "";
|
|
@@ -65815,10 +65921,10 @@ var BlazorCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE
|
|
|
65815
65921
|
this.d.j("Igb" + b);
|
|
65816
65922
|
this.d.j(")");
|
|
65817
65923
|
}
|
|
65818
|
-
this.
|
|
65924
|
+
this.v++;
|
|
65819
65925
|
};
|
|
65820
|
-
BlazorCodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
65821
|
-
_super.prototype.
|
|
65926
|
+
BlazorCodeGeneratingComponentRendererModuleEmitter.prototype.n = function () {
|
|
65927
|
+
_super.prototype.n.call(this);
|
|
65822
65928
|
};
|
|
65823
65929
|
BlazorCodeGeneratingComponentRendererModuleEmitter.$t = markType(BlazorCodeGeneratingComponentRendererModuleEmitter, 'BlazorCodeGeneratingComponentRendererModuleEmitter', DotNetCodeGeneratingComponentRendererModuleEmitter.$);
|
|
65824
65930
|
return BlazorCodeGeneratingComponentRendererModuleEmitter;
|
|
@@ -66251,16 +66357,16 @@ var CodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE__*/ (fu
|
|
|
66251
66357
|
var _this = _super.call(this) || this;
|
|
66252
66358
|
_this.k = null;
|
|
66253
66359
|
_this.i = null;
|
|
66254
|
-
_this.
|
|
66360
|
+
_this.t = new List$1(CodeGenerationItemBuilderPropertyInfo.$, 0);
|
|
66255
66361
|
_this.d = null;
|
|
66256
66362
|
_this.a = null;
|
|
66257
66363
|
_this.c = null;
|
|
66258
66364
|
_this.b = null;
|
|
66259
|
-
_this.
|
|
66260
|
-
_this.
|
|
66261
|
-
_this.
|
|
66262
|
-
_this.
|
|
66263
|
-
_this.
|
|
66365
|
+
_this.u = new List$1(String_$type, 0);
|
|
66366
|
+
_this.x = new Stack$1(String_$type);
|
|
66367
|
+
_this.v = new Stack$1(String_$type);
|
|
66368
|
+
_this.w = new Stack$1(Boolean_$type);
|
|
66369
|
+
_this.aq = null;
|
|
66264
66370
|
_this.k = a;
|
|
66265
66371
|
_this.i = b;
|
|
66266
66372
|
_this.d = new CodeGeneratingCodeWriter(_this.k);
|
|
@@ -66269,8 +66375,8 @@ var CodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE__*/ (fu
|
|
|
66269
66375
|
_this.b = new CodeGeneratingCodeWriter(_this.k);
|
|
66270
66376
|
return _this;
|
|
66271
66377
|
}
|
|
66272
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66273
|
-
this.i.
|
|
66378
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.a8 = function (a) {
|
|
66379
|
+
this.i.ae(a);
|
|
66274
66380
|
};
|
|
66275
66381
|
Object.defineProperty(CodeGeneratingComponentRendererCodeEmitter.prototype, "j", {
|
|
66276
66382
|
get: function () {
|
|
@@ -66307,8 +66413,8 @@ var CodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE__*/ (fu
|
|
|
66307
66413
|
enumerable: false,
|
|
66308
66414
|
configurable: true
|
|
66309
66415
|
});
|
|
66310
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66311
|
-
this.
|
|
66416
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.at = function (a) {
|
|
66417
|
+
this.u.add(a);
|
|
66312
66418
|
};
|
|
66313
66419
|
CodeGeneratingComponentRendererCodeEmitter.prototype.n = function (a) {
|
|
66314
66420
|
if (a.b != null && (a.b.knownType == 20 || a.b.knownType == 19 || a.b.knownType == 18)) {
|
|
@@ -66318,43 +66424,51 @@ var CodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE__*/ (fu
|
|
|
66318
66424
|
}
|
|
66319
66425
|
return false;
|
|
66320
66426
|
};
|
|
66321
|
-
|
|
66427
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.p = function (a) {
|
|
66428
|
+
if (a.b != null && (a.b.knownType == 19)) {
|
|
66429
|
+
if (a.a != null) {
|
|
66430
|
+
return true;
|
|
66431
|
+
}
|
|
66432
|
+
}
|
|
66433
|
+
return false;
|
|
66434
|
+
};
|
|
66435
|
+
Object.defineProperty(CodeGeneratingComponentRendererCodeEmitter.prototype, "ae", {
|
|
66322
66436
|
get: function () {
|
|
66323
|
-
return this.
|
|
66437
|
+
return this.x.d();
|
|
66324
66438
|
},
|
|
66325
66439
|
enumerable: false,
|
|
66326
66440
|
configurable: true
|
|
66327
66441
|
});
|
|
66328
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66329
|
-
this.
|
|
66330
|
-
};
|
|
66331
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.a6 = function () {
|
|
66442
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.au = function (a) {
|
|
66443
|
+
this.x.h(a);
|
|
66332
66444
|
};
|
|
66333
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66334
|
-
this.w.e();
|
|
66445
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.a7 = function () {
|
|
66335
66446
|
};
|
|
66336
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66447
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.a2 = function (a) {
|
|
66448
|
+
this.x.e();
|
|
66337
66449
|
};
|
|
66338
66450
|
CodeGeneratingComponentRendererCodeEmitter.prototype.a0 = function (a, b, c, d) {
|
|
66339
|
-
|
|
66451
|
+
};
|
|
66452
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.a1 = function (a, b, c, d) {
|
|
66453
|
+
this.a0(a, b, c, d);
|
|
66340
66454
|
};
|
|
66341
66455
|
CodeGeneratingComponentRendererCodeEmitter.prototype.toString = function () {
|
|
66342
66456
|
return this.d.toString();
|
|
66343
66457
|
};
|
|
66344
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66458
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.am = function () {
|
|
66345
66459
|
return "null";
|
|
66346
66460
|
};
|
|
66347
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66461
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.ap = function (a, b) {
|
|
66348
66462
|
if (a.b == null) {
|
|
66349
66463
|
return a.c;
|
|
66350
66464
|
}
|
|
66351
66465
|
if (typeCast(CodeGenerationSpecialValue.$, a.c) !== null) {
|
|
66352
|
-
a.c = this.
|
|
66466
|
+
a.c = this.y(a);
|
|
66353
66467
|
}
|
|
66354
66468
|
switch (a.b.knownType) {
|
|
66355
|
-
case 10: return this.
|
|
66469
|
+
case 10: return this.af(a);
|
|
66356
66470
|
case 7: return a.c ? "true" : "false";
|
|
66357
|
-
case 4: return this.
|
|
66471
|
+
case 4: return this.aa(a);
|
|
66358
66472
|
case 6:
|
|
66359
66473
|
{
|
|
66360
66474
|
var c = "";
|
|
@@ -66363,13 +66477,13 @@ var CodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE__*/ (fu
|
|
|
66363
66477
|
if (e >= 1) {
|
|
66364
66478
|
c += " ";
|
|
66365
66479
|
}
|
|
66366
|
-
c += this.
|
|
66480
|
+
c += this.z(d.item(e));
|
|
66367
66481
|
}
|
|
66368
66482
|
return c;
|
|
66369
66483
|
}
|
|
66370
66484
|
break;
|
|
66371
66485
|
case 9: throw new NotSupportedException(1, "shouldn't get here");
|
|
66372
|
-
case 5: return this.
|
|
66486
|
+
case 5: return this.ac(a);
|
|
66373
66487
|
case 16:
|
|
66374
66488
|
{
|
|
66375
66489
|
var f = "";
|
|
@@ -66378,44 +66492,44 @@ var CodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE__*/ (fu
|
|
|
66378
66492
|
if (h >= 1) {
|
|
66379
66493
|
f += " ";
|
|
66380
66494
|
}
|
|
66381
|
-
f += this.
|
|
66495
|
+
f += this.ab(g.item(h));
|
|
66382
66496
|
}
|
|
66383
66497
|
return f;
|
|
66384
66498
|
}
|
|
66385
66499
|
break;
|
|
66386
66500
|
case 20:
|
|
66387
66501
|
if (a.a != null) {
|
|
66388
|
-
return this.
|
|
66502
|
+
return this.ao(a);
|
|
66389
66503
|
}
|
|
66390
66504
|
if (a.c == null) {
|
|
66391
|
-
return this.
|
|
66505
|
+
return this.am();
|
|
66392
66506
|
}
|
|
66393
66507
|
break;
|
|
66394
66508
|
case 15: throw new NotSupportedException(1, "need to figure this out");
|
|
66395
66509
|
case 3: throw new NotSupportedException(1, "need to figure this out");
|
|
66396
66510
|
case 19:
|
|
66397
66511
|
if (a.a != null) {
|
|
66398
|
-
return this.
|
|
66512
|
+
return this.aj(a);
|
|
66399
66513
|
}
|
|
66400
66514
|
else {
|
|
66401
|
-
return this.
|
|
66515
|
+
return this.am();
|
|
66402
66516
|
}
|
|
66403
66517
|
break;
|
|
66404
66518
|
case 8:
|
|
66405
66519
|
if (a.b.specificExternalType == "string") {
|
|
66406
|
-
return this.
|
|
66520
|
+
return this.ai(a);
|
|
66407
66521
|
}
|
|
66408
66522
|
if (a.a != null) {
|
|
66409
|
-
return this.
|
|
66523
|
+
return this.ak(a);
|
|
66410
66524
|
}
|
|
66411
66525
|
throw new NotSupportedException(1, "shouldn't get here");
|
|
66412
66526
|
case 13: throw new NotSupportedException(1, "shouldn't get here");
|
|
66413
66527
|
case 18:
|
|
66414
66528
|
if (a.a != null) {
|
|
66415
|
-
return this.
|
|
66529
|
+
return this.al(a);
|
|
66416
66530
|
}
|
|
66417
66531
|
else {
|
|
66418
|
-
return this.
|
|
66532
|
+
return this.am();
|
|
66419
66533
|
}
|
|
66420
66534
|
break;
|
|
66421
66535
|
case 1: return a.c.toString();
|
|
@@ -66434,7 +66548,7 @@ var CodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE__*/ (fu
|
|
|
66434
66548
|
var k = a.c;
|
|
66435
66549
|
return k.width + ", " + k.height;
|
|
66436
66550
|
}
|
|
66437
|
-
case 2: return a.c != null ? a.c.toString() : this.
|
|
66551
|
+
case 2: return a.c != null ? a.c.toString() : this.am();
|
|
66438
66552
|
case 21: return a.c.toString();
|
|
66439
66553
|
case 17:
|
|
66440
66554
|
if (a.c == null) {
|
|
@@ -66448,22 +66562,22 @@ var CodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE__*/ (fu
|
|
|
66448
66562
|
}
|
|
66449
66563
|
return "";
|
|
66450
66564
|
};
|
|
66451
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66565
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.af = function (a) {
|
|
66452
66566
|
return "";
|
|
66453
66567
|
};
|
|
66454
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66568
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.y = function (a) {
|
|
66455
66569
|
return a.c;
|
|
66456
66570
|
};
|
|
66457
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66571
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.ao = function (a) {
|
|
66458
66572
|
if (!stringIsNullOrEmpty(a.a.e)) {
|
|
66459
66573
|
if (a.a.a) {
|
|
66460
|
-
return this.
|
|
66574
|
+
return this.ah(a);
|
|
66461
66575
|
}
|
|
66462
66576
|
else {
|
|
66463
|
-
return this.
|
|
66577
|
+
return this.an(a);
|
|
66464
66578
|
}
|
|
66465
66579
|
}
|
|
66466
|
-
return this.
|
|
66580
|
+
return this.am();
|
|
66467
66581
|
};
|
|
66468
66582
|
CodeGeneratingComponentRendererCodeEmitter.prototype.o = function (a) {
|
|
66469
66583
|
if (a.a != null && !stringIsNullOrEmpty(a.a.e)) {
|
|
@@ -66473,122 +66587,122 @@ var CodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE__*/ (fu
|
|
|
66473
66587
|
}
|
|
66474
66588
|
return false;
|
|
66475
66589
|
};
|
|
66476
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66590
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.an = function (a) {
|
|
66477
66591
|
return "";
|
|
66478
66592
|
};
|
|
66479
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66593
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.ah = function (a) {
|
|
66480
66594
|
return "";
|
|
66481
66595
|
};
|
|
66482
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66596
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.ak = function (a) {
|
|
66483
66597
|
if (!stringIsNullOrEmpty(a.a.e)) {
|
|
66484
66598
|
return a.a.e;
|
|
66485
66599
|
}
|
|
66486
|
-
return this.
|
|
66600
|
+
return this.am();
|
|
66487
66601
|
};
|
|
66488
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66602
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.ai = function (a) {
|
|
66489
66603
|
return a.c != null ? a.c.toString() : "";
|
|
66490
66604
|
};
|
|
66491
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66492
|
-
return this.
|
|
66605
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.al = function (a) {
|
|
66606
|
+
return this.aj(a);
|
|
66493
66607
|
};
|
|
66494
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66608
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.aj = function (a) {
|
|
66495
66609
|
if (!stringIsNullOrEmpty(a.a.e)) {
|
|
66496
|
-
this.
|
|
66610
|
+
this.a8(a);
|
|
66497
66611
|
return a.a.e;
|
|
66498
66612
|
}
|
|
66499
|
-
return this.
|
|
66613
|
+
return this.am();
|
|
66500
66614
|
};
|
|
66501
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66615
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.get_r = function () {
|
|
66502
66616
|
return false;
|
|
66503
66617
|
};
|
|
66504
|
-
Object.defineProperty(CodeGeneratingComponentRendererCodeEmitter.prototype, "
|
|
66618
|
+
Object.defineProperty(CodeGeneratingComponentRendererCodeEmitter.prototype, "r", {
|
|
66505
66619
|
get: function () {
|
|
66506
|
-
return this.
|
|
66620
|
+
return this.get_r();
|
|
66507
66621
|
},
|
|
66508
66622
|
enumerable: false,
|
|
66509
66623
|
configurable: true
|
|
66510
66624
|
});
|
|
66511
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66625
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.ac = function (a) {
|
|
66512
66626
|
var b = a.c;
|
|
66513
|
-
return ColorUtil.i(b, this.
|
|
66627
|
+
return ColorUtil.i(b, this.r);
|
|
66514
66628
|
};
|
|
66515
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66629
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.ab = function (a) {
|
|
66516
66630
|
var b = a;
|
|
66517
|
-
return ColorUtil.i(b, this.
|
|
66631
|
+
return ColorUtil.i(b, this.r);
|
|
66518
66632
|
};
|
|
66519
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66633
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.aa = function (a) {
|
|
66520
66634
|
if (a.c == null) {
|
|
66521
66635
|
return "";
|
|
66522
66636
|
}
|
|
66523
66637
|
var b = a.c;
|
|
66524
|
-
return ColorUtil.i(b.color, this.
|
|
66638
|
+
return ColorUtil.i(b.color, this.r);
|
|
66525
66639
|
};
|
|
66526
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66640
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.z = function (a) {
|
|
66527
66641
|
if (a == null) {
|
|
66528
66642
|
return "";
|
|
66529
66643
|
}
|
|
66530
66644
|
var b = a;
|
|
66531
|
-
return ColorUtil.i(b.color, this.
|
|
66645
|
+
return ColorUtil.i(b.color, this.r);
|
|
66532
66646
|
};
|
|
66533
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66534
|
-
this.
|
|
66535
|
-
this.
|
|
66647
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.a6 = function (a) {
|
|
66648
|
+
this.v.h(a);
|
|
66649
|
+
this.w.h(false);
|
|
66536
66650
|
};
|
|
66537
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66538
|
-
var b = this.
|
|
66539
|
-
this.
|
|
66540
|
-
this.
|
|
66651
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.a5 = function (a) {
|
|
66652
|
+
var b = this.ag(a);
|
|
66653
|
+
this.v.h(b);
|
|
66654
|
+
this.w.h(true);
|
|
66541
66655
|
};
|
|
66542
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66543
|
-
var b = stringReplace(stringReplace(a, this.
|
|
66656
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.ag = function (a) {
|
|
66657
|
+
var b = stringReplace(stringReplace(a, this.ar, ""), "Component", "");
|
|
66544
66658
|
b = CodeGeneratingComponentRenderer.dp(b);
|
|
66545
|
-
return this.i.
|
|
66659
|
+
return this.i.u(b);
|
|
66546
66660
|
};
|
|
66547
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66548
|
-
this.u.e();
|
|
66661
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.a3 = function () {
|
|
66549
66662
|
this.v.e();
|
|
66663
|
+
this.w.e();
|
|
66550
66664
|
};
|
|
66551
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66665
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.get_ar = function () {
|
|
66552
66666
|
return "";
|
|
66553
66667
|
};
|
|
66554
|
-
Object.defineProperty(CodeGeneratingComponentRendererCodeEmitter.prototype, "
|
|
66668
|
+
Object.defineProperty(CodeGeneratingComponentRendererCodeEmitter.prototype, "ar", {
|
|
66555
66669
|
get: function () {
|
|
66556
|
-
return this.
|
|
66670
|
+
return this.get_ar();
|
|
66557
66671
|
},
|
|
66558
66672
|
enumerable: false,
|
|
66559
66673
|
configurable: true
|
|
66560
66674
|
});
|
|
66561
|
-
Object.defineProperty(CodeGeneratingComponentRendererCodeEmitter.prototype, "
|
|
66675
|
+
Object.defineProperty(CodeGeneratingComponentRendererCodeEmitter.prototype, "ad", {
|
|
66562
66676
|
get: function () {
|
|
66563
|
-
if (this.
|
|
66564
|
-
return this.
|
|
66677
|
+
if (this.v.f > 0) {
|
|
66678
|
+
return this.v.d();
|
|
66565
66679
|
}
|
|
66566
|
-
var a = stringReplace(stringReplace(this.
|
|
66680
|
+
var a = stringReplace(stringReplace(this.ae, this.ar, ""), "Component", "");
|
|
66567
66681
|
return CodeGeneratingComponentRenderer.dp(a);
|
|
66568
66682
|
},
|
|
66569
66683
|
enumerable: false,
|
|
66570
66684
|
configurable: true
|
|
66571
66685
|
});
|
|
66572
|
-
Object.defineProperty(CodeGeneratingComponentRendererCodeEmitter.prototype, "
|
|
66686
|
+
Object.defineProperty(CodeGeneratingComponentRendererCodeEmitter.prototype, "q", {
|
|
66573
66687
|
get: function () {
|
|
66574
|
-
return this.
|
|
66688
|
+
return this.x.f == 1;
|
|
66575
66689
|
},
|
|
66576
66690
|
enumerable: false,
|
|
66577
66691
|
configurable: true
|
|
66578
66692
|
});
|
|
66579
66693
|
Object.defineProperty(CodeGeneratingComponentRendererCodeEmitter.prototype, "l", {
|
|
66580
66694
|
get: function () {
|
|
66581
|
-
if (this.
|
|
66695
|
+
if (this.w.f == 0) {
|
|
66582
66696
|
return false;
|
|
66583
66697
|
}
|
|
66584
|
-
return this.
|
|
66698
|
+
return this.w.d();
|
|
66585
66699
|
},
|
|
66586
66700
|
enumerable: false,
|
|
66587
66701
|
configurable: true
|
|
66588
66702
|
});
|
|
66589
66703
|
Object.defineProperty(CodeGeneratingComponentRendererCodeEmitter.prototype, "m", {
|
|
66590
66704
|
get: function () {
|
|
66591
|
-
if (this.
|
|
66705
|
+
if (this.v.f > 0) {
|
|
66592
66706
|
return true;
|
|
66593
66707
|
}
|
|
66594
66708
|
return false;
|
|
@@ -66596,43 +66710,43 @@ var CodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE__*/ (fu
|
|
|
66596
66710
|
enumerable: false,
|
|
66597
66711
|
configurable: true
|
|
66598
66712
|
});
|
|
66599
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66713
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.get_s = function () {
|
|
66600
66714
|
return true;
|
|
66601
66715
|
};
|
|
66602
|
-
Object.defineProperty(CodeGeneratingComponentRendererCodeEmitter.prototype, "
|
|
66716
|
+
Object.defineProperty(CodeGeneratingComponentRendererCodeEmitter.prototype, "s", {
|
|
66603
66717
|
get: function () {
|
|
66604
|
-
return this.
|
|
66718
|
+
return this.get_s();
|
|
66605
66719
|
},
|
|
66606
66720
|
enumerable: false,
|
|
66607
66721
|
configurable: true
|
|
66608
66722
|
});
|
|
66609
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66610
|
-
this.
|
|
66723
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.a4 = function () {
|
|
66724
|
+
this.v.e();
|
|
66611
66725
|
};
|
|
66612
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66726
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.aw = function (a) {
|
|
66613
66727
|
var b = this.f.toString();
|
|
66614
66728
|
if (b.length > 0) {
|
|
66615
66729
|
a.l(b);
|
|
66616
66730
|
}
|
|
66617
66731
|
};
|
|
66618
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66732
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.az = function (a) {
|
|
66619
66733
|
var b = this.g.toString();
|
|
66620
66734
|
if (b.length > 0) {
|
|
66621
66735
|
a.l(b);
|
|
66622
66736
|
}
|
|
66623
66737
|
};
|
|
66624
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66738
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.av = function (a) {
|
|
66625
66739
|
var b = this.e.toString();
|
|
66626
66740
|
if (b.length > 0) {
|
|
66627
66741
|
a.l(b);
|
|
66628
66742
|
}
|
|
66629
66743
|
};
|
|
66630
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66631
|
-
if (this.
|
|
66632
|
-
this.
|
|
66744
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.ax = function (a) {
|
|
66745
|
+
if (this.u.count > 0) {
|
|
66746
|
+
this.ay(this.u, a);
|
|
66633
66747
|
}
|
|
66634
66748
|
};
|
|
66635
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66749
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.ay = function (a, b) {
|
|
66636
66750
|
};
|
|
66637
66751
|
CodeGeneratingComponentRendererCodeEmitter.$t = markType(CodeGeneratingComponentRendererCodeEmitter, 'CodeGeneratingComponentRendererCodeEmitter');
|
|
66638
66752
|
return CodeGeneratingComponentRendererCodeEmitter;
|
|
@@ -66644,15 +66758,15 @@ var BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__P
|
|
|
66644
66758
|
__extends(BlazorRazorCodeGeneratingComponentRendererCodeEmitter, _super);
|
|
66645
66759
|
function BlazorRazorCodeGeneratingComponentRendererCodeEmitter(a, b) {
|
|
66646
66760
|
var _this = _super.call(this, a, b) || this;
|
|
66647
|
-
_this.
|
|
66648
|
-
_this.a8 = new HashSet$1(String_$type, 0);
|
|
66761
|
+
_this.bb = 0;
|
|
66649
66762
|
_this.a9 = new HashSet$1(String_$type, 0);
|
|
66763
|
+
_this.ba = new HashSet$1(String_$type, 0);
|
|
66650
66764
|
return _this;
|
|
66651
66765
|
}
|
|
66652
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66766
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.get_s = function () {
|
|
66653
66767
|
return false;
|
|
66654
66768
|
};
|
|
66655
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66769
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.bc = function (a, b) {
|
|
66656
66770
|
if (b.c == null) {
|
|
66657
66771
|
return "null";
|
|
66658
66772
|
}
|
|
@@ -66667,9 +66781,9 @@ var BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__P
|
|
|
66667
66781
|
d += " })";
|
|
66668
66782
|
return d;
|
|
66669
66783
|
};
|
|
66670
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66784
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.af = function (a) {
|
|
66671
66785
|
if (a.b.specificExternalType == "string") {
|
|
66672
|
-
return this.
|
|
66786
|
+
return this.bc(a.b.specificExternalType, a);
|
|
66673
66787
|
}
|
|
66674
66788
|
if (a.c == null) {
|
|
66675
66789
|
return "null";
|
|
@@ -66684,38 +66798,38 @@ var BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__P
|
|
|
66684
66798
|
}
|
|
66685
66799
|
return c;
|
|
66686
66800
|
};
|
|
66687
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66688
|
-
_super.prototype.
|
|
66801
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.au = function (a) {
|
|
66802
|
+
_super.prototype.au.call(this, a);
|
|
66689
66803
|
this.h.k("<" + a + "");
|
|
66690
|
-
if (!this.
|
|
66691
|
-
this.
|
|
66692
|
-
if (!this.
|
|
66693
|
-
this.
|
|
66694
|
-
this.
|
|
66804
|
+
if (!this.a9.contains(this.ad)) {
|
|
66805
|
+
this.a9.add_1(this.ad);
|
|
66806
|
+
if (!this.ba.contains(this.ae)) {
|
|
66807
|
+
this.ba.add_1(this.ae);
|
|
66808
|
+
this.at(this.ae);
|
|
66695
66809
|
}
|
|
66696
|
-
this.f.k("private " + this.
|
|
66810
|
+
this.f.k("private " + this.ae + " " + CodeGeneratingComponentRenderer.dp(this.ad) + ";");
|
|
66697
66811
|
if (!this.m) {
|
|
66698
|
-
if (this.
|
|
66699
|
-
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.
|
|
66812
|
+
if (this.q) {
|
|
66813
|
+
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + ";");
|
|
66700
66814
|
}
|
|
66701
66815
|
}
|
|
66702
66816
|
else {
|
|
66703
|
-
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.
|
|
66817
|
+
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + ";");
|
|
66704
66818
|
}
|
|
66705
66819
|
}
|
|
66706
66820
|
};
|
|
66707
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66821
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.a7 = function () {
|
|
66708
66822
|
this.h.k(">");
|
|
66709
66823
|
this.h.h();
|
|
66710
66824
|
};
|
|
66711
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66825
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.a2 = function (a) {
|
|
66712
66826
|
this.h.f();
|
|
66713
66827
|
this.h.k("</" + a + ">");
|
|
66714
|
-
_super.prototype.
|
|
66828
|
+
_super.prototype.a2.call(this, a);
|
|
66715
66829
|
};
|
|
66716
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66830
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.a0 = function (a, b, c, d) {
|
|
66717
66831
|
if (c.b != null && d.h(c.b.owningType, CodeGeneratingComponentRenderer.dq(c.b.propertyName)) && this.n(c)) {
|
|
66718
|
-
this.
|
|
66832
|
+
this.a8(c);
|
|
66719
66833
|
if (a > 0) {
|
|
66720
66834
|
this.h.k("");
|
|
66721
66835
|
}
|
|
@@ -66728,29 +66842,29 @@ var BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__P
|
|
|
66728
66842
|
return;
|
|
66729
66843
|
}
|
|
66730
66844
|
if (this.o(c)) {
|
|
66731
|
-
this.
|
|
66732
|
-
if (!this.
|
|
66733
|
-
this.
|
|
66734
|
-
if (!this.
|
|
66735
|
-
this.
|
|
66736
|
-
this.
|
|
66737
|
-
}
|
|
66738
|
-
this.f.k("private " + this.
|
|
66845
|
+
this.a8(c);
|
|
66846
|
+
if (!this.a9.contains(this.ad)) {
|
|
66847
|
+
this.a9.add_1(this.ad);
|
|
66848
|
+
if (!this.ba.contains(this.ae)) {
|
|
66849
|
+
this.ba.add_1(this.ae);
|
|
66850
|
+
this.at(this.ae);
|
|
66851
|
+
}
|
|
66852
|
+
this.f.k("private " + this.ae + " " + CodeGeneratingComponentRenderer.dp(this.ad) + ";");
|
|
66739
66853
|
if (!this.m) {
|
|
66740
|
-
if (this.
|
|
66741
|
-
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.
|
|
66854
|
+
if (this.q) {
|
|
66855
|
+
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + ";");
|
|
66742
66856
|
}
|
|
66743
66857
|
}
|
|
66744
66858
|
else {
|
|
66745
|
-
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.
|
|
66859
|
+
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + ";");
|
|
66746
66860
|
}
|
|
66747
66861
|
}
|
|
66748
|
-
var e = CodeGeneratingComponentRenderer.dp(this.
|
|
66862
|
+
var e = CodeGeneratingComponentRenderer.dp(this.ap(c, true));
|
|
66749
66863
|
var f = e;
|
|
66750
66864
|
if (f != "null" && !stringStartsWith(f, "this.")) {
|
|
66751
66865
|
f = "this." + f;
|
|
66752
66866
|
}
|
|
66753
|
-
this.e.k(CodeGeneratingComponentRenderer.dp(this.
|
|
66867
|
+
this.e.k(CodeGeneratingComponentRenderer.dp(this.ad) + "." + b + " = " + f + ";");
|
|
66754
66868
|
return;
|
|
66755
66869
|
}
|
|
66756
66870
|
if (a > 0) {
|
|
@@ -66764,19 +66878,56 @@ var BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__P
|
|
|
66764
66878
|
this.h.j(b);
|
|
66765
66879
|
this.h.j("=");
|
|
66766
66880
|
this.h.j("\"");
|
|
66767
|
-
this.h.j(this.
|
|
66881
|
+
this.h.j(this.ap(c, true));
|
|
66768
66882
|
this.h.j("\"");
|
|
66769
66883
|
}
|
|
66770
66884
|
if (b == "Name") {
|
|
66771
66885
|
this.h.k("");
|
|
66772
|
-
this.h.j("@ref=\"" + CodeGeneratingComponentRenderer.dp(this.
|
|
66886
|
+
this.h.j("@ref=\"" + CodeGeneratingComponentRenderer.dp(this.ap(c, true)) + "\"");
|
|
66773
66887
|
}
|
|
66774
66888
|
};
|
|
66775
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66889
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.ai = function (a) {
|
|
66776
66890
|
var b = a.b != null ? a.b.specificType + "." : "";
|
|
66777
66891
|
return b + (a.c != null ? a.c.toString() : "");
|
|
66778
66892
|
};
|
|
66779
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66893
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.ap = function (a, b) {
|
|
66894
|
+
if (a.b == null) {
|
|
66895
|
+
return a.c;
|
|
66896
|
+
}
|
|
66897
|
+
if (typeCast(CodeGenerationSpecialValue.$, a.c) !== null) {
|
|
66898
|
+
a.c = this.y(a);
|
|
66899
|
+
}
|
|
66900
|
+
switch (a.b.knownType) {
|
|
66901
|
+
case 11:
|
|
66902
|
+
{
|
|
66903
|
+
var c = a.c;
|
|
66904
|
+
return "@(new Point(" + c.x + ", " + c.y + "))";
|
|
66905
|
+
}
|
|
66906
|
+
case 14:
|
|
66907
|
+
{
|
|
66908
|
+
var d = a.c;
|
|
66909
|
+
return "@(new Rect(" + d.left + ", " + d.top + ", " + d.width + ", " + d.height + "))";
|
|
66910
|
+
}
|
|
66911
|
+
case 12:
|
|
66912
|
+
{
|
|
66913
|
+
var e = a.c;
|
|
66914
|
+
return "@(new Size(" + e.width + ", " + e.height + "))";
|
|
66915
|
+
}
|
|
66916
|
+
case 17:
|
|
66917
|
+
if (a.c == null) {
|
|
66918
|
+
return "null";
|
|
66919
|
+
}
|
|
66920
|
+
if (typeof a.c === 'string') {
|
|
66921
|
+
return "@(\"" + a.c.toString() + "\")";
|
|
66922
|
+
}
|
|
66923
|
+
if (typeCast(Boolean_$type, a.c) !== null) {
|
|
66924
|
+
return a.c ? "true" : "false";
|
|
66925
|
+
}
|
|
66926
|
+
return a.c.toString();
|
|
66927
|
+
}
|
|
66928
|
+
return _super.prototype.ap.call(this, a, b);
|
|
66929
|
+
};
|
|
66930
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.y = function (a) {
|
|
66780
66931
|
var b = a.c;
|
|
66781
66932
|
switch (b.a) {
|
|
66782
66933
|
case 3: return b.b;
|
|
@@ -66786,21 +66937,21 @@ var BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__P
|
|
|
66786
66937
|
}
|
|
66787
66938
|
return b.b;
|
|
66788
66939
|
};
|
|
66789
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66940
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.am = function () {
|
|
66790
66941
|
return "@null";
|
|
66791
66942
|
};
|
|
66792
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66943
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.ah = function (a) {
|
|
66793
66944
|
return CodeGeneratingComponentRenderer.dp(CodeGeneratingComponentRenderer.dp(a.a.e));
|
|
66794
66945
|
};
|
|
66795
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66946
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.bd = function (a) {
|
|
66796
66947
|
a = stringReplace(a, "-", "_");
|
|
66797
66948
|
return CodeGeneratingComponentRenderer.dq(a);
|
|
66798
66949
|
};
|
|
66799
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66800
|
-
this.
|
|
66950
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.an = function (a) {
|
|
66951
|
+
this.a8(a);
|
|
66801
66952
|
return CodeGeneratingComponentRenderer.dq(a.a.e);
|
|
66802
66953
|
};
|
|
66803
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66954
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.a1 = function (a, b, c, d) {
|
|
66804
66955
|
var e_1, _a;
|
|
66805
66956
|
if (c.b.knownType == 9) {
|
|
66806
66957
|
var e = typeCast(IList_$type, c.c);
|
|
@@ -66836,7 +66987,7 @@ var BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__P
|
|
|
66836
66987
|
}
|
|
66837
66988
|
}
|
|
66838
66989
|
};
|
|
66839
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66990
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.get_ar = function () {
|
|
66840
66991
|
return "Igb";
|
|
66841
66992
|
};
|
|
66842
66993
|
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.$t = markType(BlazorRazorCodeGeneratingComponentRendererCodeEmitter, 'BlazorRazorCodeGeneratingComponentRendererCodeEmitter', CodeGeneratingComponentRendererCodeEmitter.$);
|
|
@@ -66850,7 +67001,7 @@ var BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter = /** @class */ /
|
|
|
66850
67001
|
function BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter(a, b) {
|
|
66851
67002
|
return _super.call(this, a, b) || this;
|
|
66852
67003
|
}
|
|
66853
|
-
BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67004
|
+
BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.get_s = function () {
|
|
66854
67005
|
return false;
|
|
66855
67006
|
};
|
|
66856
67007
|
BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter.$t = markType(BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter, 'BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter', CodeGeneratingComponentRendererCodeEmitter.$);
|
|
@@ -66863,11 +67014,11 @@ var ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__P
|
|
|
66863
67014
|
__extends(ReactMarkupCodeGeneratingComponentRendererCodeEmitter, _super);
|
|
66864
67015
|
function ReactMarkupCodeGeneratingComponentRendererCodeEmitter(a, b) {
|
|
66865
67016
|
var _this = _super.call(this, a, b) || this;
|
|
66866
|
-
_this.a8 = new HashSet$1(String_$type, 0);
|
|
66867
67017
|
_this.a9 = new HashSet$1(String_$type, 0);
|
|
67018
|
+
_this.ba = new HashSet$1(String_$type, 0);
|
|
66868
67019
|
return _this;
|
|
66869
67020
|
}
|
|
66870
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67021
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.af = function (a) {
|
|
66871
67022
|
if (a.c == null) {
|
|
66872
67023
|
return "{null}";
|
|
66873
67024
|
}
|
|
@@ -66882,43 +67033,43 @@ var ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__P
|
|
|
66882
67033
|
c += "]";
|
|
66883
67034
|
return c;
|
|
66884
67035
|
};
|
|
66885
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67036
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.get_r = function () {
|
|
66886
67037
|
return true;
|
|
66887
67038
|
};
|
|
66888
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67039
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.get_ar = function () {
|
|
66889
67040
|
return "Igr";
|
|
66890
67041
|
};
|
|
66891
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66892
|
-
_super.prototype.
|
|
66893
|
-
this.h.k("<" + this.
|
|
67042
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.au = function (a) {
|
|
67043
|
+
_super.prototype.au.call(this, a);
|
|
67044
|
+
this.h.k("<" + this.bc(a) + "");
|
|
66894
67045
|
this.h.h();
|
|
66895
|
-
if (!this.
|
|
66896
|
-
this.
|
|
66897
|
-
|
|
66898
|
-
|
|
66899
|
-
|
|
66900
|
-
|
|
66901
|
-
this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.
|
|
66902
|
-
if (this.
|
|
66903
|
-
this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.
|
|
67046
|
+
if (!this.ba.contains(this.ae)) {
|
|
67047
|
+
this.ba.add_1(this.ae);
|
|
67048
|
+
this.at(this.ae);
|
|
67049
|
+
}
|
|
67050
|
+
if (!this.a9.contains(this.ad)) {
|
|
67051
|
+
this.a9.add_1(this.ad);
|
|
67052
|
+
this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.ad) + ": " + this.ae);
|
|
67053
|
+
if (this.q) {
|
|
67054
|
+
this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.ad) + "Ref(r: " + this.ae + ") {");
|
|
66904
67055
|
this.f.h();
|
|
66905
|
-
this.f.k("this." + CodeGeneratingComponentRenderer.dp(this.
|
|
67056
|
+
this.f.k("this." + CodeGeneratingComponentRenderer.dp(this.ad) + " = r;");
|
|
66906
67057
|
this.f.k("this.setState({});");
|
|
66907
67058
|
this.f.f();
|
|
66908
67059
|
this.f.k("}");
|
|
66909
|
-
this.g.k("this." + CodeGeneratingComponentRenderer.dp(this.
|
|
67060
|
+
this.g.k("this." + CodeGeneratingComponentRenderer.dp(this.ad) + "Ref = " + "this." + CodeGeneratingComponentRenderer.dp(this.ad) + "Ref.bind(this);");
|
|
66910
67061
|
}
|
|
66911
67062
|
}
|
|
66912
67063
|
};
|
|
66913
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67064
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.bc = function (a) {
|
|
66914
67065
|
if (stringEndsWith(a, "Component")) {
|
|
66915
67066
|
a = a.substr(0, a.length - ("Component").length);
|
|
66916
67067
|
}
|
|
66917
67068
|
return CodeGeneratingComponentRenderer.dq(a);
|
|
66918
67069
|
};
|
|
66919
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66920
|
-
if (!this.
|
|
66921
|
-
var a = this.
|
|
67070
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.a7 = function () {
|
|
67071
|
+
if (!this.q && !this.m) {
|
|
67072
|
+
var a = this.bb();
|
|
66922
67073
|
this.h.k("");
|
|
66923
67074
|
this.h.k("name=\"" + a + "\"");
|
|
66924
67075
|
}
|
|
@@ -66926,31 +67077,31 @@ var ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__P
|
|
|
66926
67077
|
this.h.k(">");
|
|
66927
67078
|
this.h.h();
|
|
66928
67079
|
};
|
|
66929
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66930
|
-
var a = CodeGeneratingComponentRenderer.dp(stringReplace(stringReplace(this.
|
|
66931
|
-
a = this.j.
|
|
67080
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.bb = function () {
|
|
67081
|
+
var a = CodeGeneratingComponentRenderer.dp(stringReplace(stringReplace(this.ae, this.ar, ""), "Component", ""));
|
|
67082
|
+
a = this.j.t(a);
|
|
66932
67083
|
return a;
|
|
66933
67084
|
};
|
|
66934
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67085
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.aj = function (a) {
|
|
66935
67086
|
if (!stringIsNullOrEmpty(a.a.e)) {
|
|
66936
|
-
this.
|
|
66937
|
-
if (!this.
|
|
67087
|
+
this.a8(a);
|
|
67088
|
+
if (!this.a9.contains(a.a.e)) {
|
|
66938
67089
|
this.g.k("this." + CodeGeneratingComponentRenderer.dp(a.a.e) + " = " + "this." + CodeGeneratingComponentRenderer.dp(a.a.e) + ".bind(this);");
|
|
66939
67090
|
}
|
|
66940
67091
|
return "this." + CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
66941
67092
|
}
|
|
66942
|
-
return this.
|
|
67093
|
+
return this.am();
|
|
66943
67094
|
};
|
|
66944
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67095
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.a2 = function (a) {
|
|
66945
67096
|
this.h.f();
|
|
66946
|
-
this.h.k("</" + this.
|
|
66947
|
-
_super.prototype.
|
|
67097
|
+
this.h.k("</" + this.bc(a) + ">");
|
|
67098
|
+
_super.prototype.a2.call(this, a);
|
|
66948
67099
|
};
|
|
66949
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67100
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.a0 = function (a, b, c, d) {
|
|
66950
67101
|
var e = CodeGeneratingComponentRenderer.dp(b);
|
|
66951
|
-
var f = this.
|
|
67102
|
+
var f = this.ap(c, true);
|
|
66952
67103
|
if (c.b != null && d.h(c.b.owningType, CodeGeneratingComponentRenderer.dq(c.b.propertyName)) && this.n(c)) {
|
|
66953
|
-
this.
|
|
67104
|
+
this.a8(c);
|
|
66954
67105
|
if (a > 0) {
|
|
66955
67106
|
this.h.k("");
|
|
66956
67107
|
}
|
|
@@ -66962,10 +67113,10 @@ var ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__P
|
|
|
66962
67113
|
}
|
|
66963
67114
|
return;
|
|
66964
67115
|
}
|
|
66965
|
-
if (!(e == "name") || !this.
|
|
67116
|
+
if (!(e == "name") || !this.q) {
|
|
66966
67117
|
var g = (c.b != null && c.b.knownType == 10);
|
|
66967
67118
|
if (this.n(c) || g) {
|
|
66968
|
-
this.
|
|
67119
|
+
this.a8(c);
|
|
66969
67120
|
f = "{" + f + "}";
|
|
66970
67121
|
}
|
|
66971
67122
|
if (a > 0) {
|
|
@@ -66983,15 +67134,15 @@ var ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__P
|
|
|
66983
67134
|
a++;
|
|
66984
67135
|
}
|
|
66985
67136
|
if (e == "name") {
|
|
66986
|
-
if (this.
|
|
67137
|
+
if (this.q) {
|
|
66987
67138
|
if (a > 0) {
|
|
66988
67139
|
this.h.k("");
|
|
66989
67140
|
}
|
|
66990
|
-
this.h.j("ref={this." + CodeGeneratingComponentRenderer.dp(this.
|
|
67141
|
+
this.h.j("ref={this." + CodeGeneratingComponentRenderer.dp(this.ap(c, true)) + "Ref}");
|
|
66991
67142
|
}
|
|
66992
67143
|
}
|
|
66993
67144
|
};
|
|
66994
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67145
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.y = function (a) {
|
|
66995
67146
|
var b = a.c;
|
|
66996
67147
|
switch (b.a) {
|
|
66997
67148
|
case 3: return b.b;
|
|
@@ -67001,16 +67152,16 @@ var ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__P
|
|
|
67001
67152
|
}
|
|
67002
67153
|
return b.b;
|
|
67003
67154
|
};
|
|
67004
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67155
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.am = function () {
|
|
67005
67156
|
return "null";
|
|
67006
67157
|
};
|
|
67007
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67158
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.ah = function (a) {
|
|
67008
67159
|
return "this." + CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
67009
67160
|
};
|
|
67010
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67161
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.an = function (a) {
|
|
67011
67162
|
return "this." + CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
67012
67163
|
};
|
|
67013
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67164
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.a1 = function (a, b, c, d) {
|
|
67014
67165
|
var e_2, _a;
|
|
67015
67166
|
if (c.b.knownType == 9) {
|
|
67016
67167
|
var e = typeCast(IList_$type, c.c);
|
|
@@ -67046,13 +67197,13 @@ var ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__P
|
|
|
67046
67197
|
}
|
|
67047
67198
|
}
|
|
67048
67199
|
};
|
|
67049
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67200
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.ay = function (a, b) {
|
|
67050
67201
|
var e_3, _a;
|
|
67051
|
-
_super.prototype.
|
|
67202
|
+
_super.prototype.ay.call(this, a, b);
|
|
67052
67203
|
try {
|
|
67053
67204
|
for (var _b = __values(fromEnum(a)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
67054
67205
|
var c = _c.value;
|
|
67055
|
-
b.addPackageImport("igniteui-react-" + this.
|
|
67206
|
+
b.addPackageImport("igniteui-react-" + this.aq, c);
|
|
67056
67207
|
}
|
|
67057
67208
|
}
|
|
67058
67209
|
catch (e_3_1) {
|
|
@@ -67090,12 +67241,12 @@ var WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter = /** @class *
|
|
|
67090
67241
|
__extends(WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter, _super);
|
|
67091
67242
|
function WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter(a, b) {
|
|
67092
67243
|
var _this = _super.call(this, a, b) || this;
|
|
67093
|
-
_this.
|
|
67094
|
-
_this.a8 = new HashSet$1(String_$type, 0);
|
|
67244
|
+
_this.bb = 0;
|
|
67095
67245
|
_this.a9 = new HashSet$1(String_$type, 0);
|
|
67246
|
+
_this.ba = new HashSet$1(String_$type, 0);
|
|
67096
67247
|
return _this;
|
|
67097
67248
|
}
|
|
67098
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67249
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.af = function (a) {
|
|
67099
67250
|
if (a.c == null) {
|
|
67100
67251
|
return "null";
|
|
67101
67252
|
}
|
|
@@ -67109,54 +67260,54 @@ var WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter = /** @class *
|
|
|
67109
67260
|
}
|
|
67110
67261
|
return c;
|
|
67111
67262
|
};
|
|
67112
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67263
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.get_r = function () {
|
|
67113
67264
|
return true;
|
|
67114
67265
|
};
|
|
67115
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67116
|
-
_super.prototype.
|
|
67117
|
-
this.h.k("<" + this.
|
|
67118
|
-
if (!this.
|
|
67119
|
-
this.
|
|
67120
|
-
if (!this.
|
|
67121
|
-
this.
|
|
67122
|
-
this.
|
|
67266
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.au = function (a) {
|
|
67267
|
+
_super.prototype.au.call(this, a);
|
|
67268
|
+
this.h.k("<" + this.bc(a) + "");
|
|
67269
|
+
if (!this.a9.contains(this.ad)) {
|
|
67270
|
+
this.a9.add_1(this.ad);
|
|
67271
|
+
if (!this.ba.contains(this.ae)) {
|
|
67272
|
+
this.ba.add_1(this.ae);
|
|
67273
|
+
this.at(this.ae);
|
|
67123
67274
|
}
|
|
67124
|
-
this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.
|
|
67275
|
+
this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.ad) + ": " + this.ae);
|
|
67125
67276
|
if (!this.m) {
|
|
67126
|
-
if (this.
|
|
67127
|
-
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.
|
|
67277
|
+
if (this.q) {
|
|
67278
|
+
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + " = document.querySelector('" + CodeGeneratingComponentRenderer.dr(stringReplace(this.ae, "Component", "")) + "') as " + this.ae + ";");
|
|
67128
67279
|
}
|
|
67129
67280
|
}
|
|
67130
67281
|
else {
|
|
67131
|
-
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.
|
|
67282
|
+
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + " = document.getElementById('" + this.ad + "') as " + this.ae + ";");
|
|
67132
67283
|
}
|
|
67133
67284
|
}
|
|
67134
67285
|
};
|
|
67135
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67286
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.bc = function (a) {
|
|
67136
67287
|
if (stringEndsWith(a, "Component")) {
|
|
67137
67288
|
a = a.substr(0, a.length - ("Component").length);
|
|
67138
67289
|
}
|
|
67139
67290
|
return CodeGeneratingComponentRenderer.dr(a);
|
|
67140
67291
|
};
|
|
67141
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67292
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.a7 = function () {
|
|
67142
67293
|
this.h.k(">");
|
|
67143
67294
|
this.h.h();
|
|
67144
67295
|
};
|
|
67145
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67296
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.a2 = function (a) {
|
|
67146
67297
|
this.h.f();
|
|
67147
|
-
this.h.k("</" + this.
|
|
67148
|
-
_super.prototype.
|
|
67298
|
+
this.h.k("</" + this.bc(a) + ">");
|
|
67299
|
+
_super.prototype.a2.call(this, a);
|
|
67149
67300
|
};
|
|
67150
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67301
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.get_ar = function () {
|
|
67151
67302
|
return "Igc";
|
|
67152
67303
|
};
|
|
67153
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67304
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.ay = function (a, b) {
|
|
67154
67305
|
var e_4, _a;
|
|
67155
|
-
_super.prototype.
|
|
67306
|
+
_super.prototype.ay.call(this, a, b);
|
|
67156
67307
|
try {
|
|
67157
67308
|
for (var _b = __values(fromEnum(a)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
67158
67309
|
var c = _c.value;
|
|
67159
|
-
b.addPackageImport("igniteui-webcomponents-" + this.
|
|
67310
|
+
b.addPackageImport("igniteui-webcomponents-" + this.aq, c);
|
|
67160
67311
|
}
|
|
67161
67312
|
}
|
|
67162
67313
|
catch (e_4_1) {
|
|
@@ -67173,32 +67324,32 @@ var WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter = /** @class *
|
|
|
67173
67324
|
}
|
|
67174
67325
|
}
|
|
67175
67326
|
};
|
|
67176
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67327
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.a0 = function (a, b, c, d) {
|
|
67177
67328
|
var e = CodeGeneratingComponentRenderer.dp(b);
|
|
67178
67329
|
if (this.n(c)) {
|
|
67179
|
-
this.
|
|
67180
|
-
if (!this.
|
|
67181
|
-
this.
|
|
67182
|
-
if (!this.
|
|
67183
|
-
this.
|
|
67184
|
-
this.
|
|
67185
|
-
}
|
|
67186
|
-
this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.
|
|
67330
|
+
this.a8(c);
|
|
67331
|
+
if (!this.a9.contains(this.ad)) {
|
|
67332
|
+
this.a9.add_1(this.ad);
|
|
67333
|
+
if (!this.ba.contains(this.ae)) {
|
|
67334
|
+
this.ba.add_1(this.ae);
|
|
67335
|
+
this.at(this.ae);
|
|
67336
|
+
}
|
|
67337
|
+
this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.ad) + ": " + this.ae);
|
|
67187
67338
|
if (!this.m) {
|
|
67188
|
-
if (this.
|
|
67189
|
-
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.
|
|
67339
|
+
if (this.q) {
|
|
67340
|
+
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + " = document.querySelector('" + CodeGeneratingComponentRenderer.dr(stringReplace(this.ae, "Component", "")) + "') as " + this.ae + ";");
|
|
67190
67341
|
}
|
|
67191
67342
|
}
|
|
67192
67343
|
else {
|
|
67193
|
-
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.
|
|
67344
|
+
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + " = document.getElementById('" + this.ad + "') as " + this.ae + ";");
|
|
67194
67345
|
}
|
|
67195
67346
|
}
|
|
67196
|
-
var f = CodeGeneratingComponentRenderer.dp(this.
|
|
67347
|
+
var f = CodeGeneratingComponentRenderer.dp(this.ap(c, true));
|
|
67197
67348
|
var g = f;
|
|
67198
67349
|
if (g != "null" && !stringStartsWith(g, "this.")) {
|
|
67199
67350
|
g = "this." + g;
|
|
67200
67351
|
}
|
|
67201
|
-
this.e.k(CodeGeneratingComponentRenderer.dp(this.
|
|
67352
|
+
this.e.k(CodeGeneratingComponentRenderer.dp(this.ad) + "." + e + " = " + g);
|
|
67202
67353
|
return;
|
|
67203
67354
|
}
|
|
67204
67355
|
if (a > 0) {
|
|
@@ -67207,14 +67358,14 @@ var WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter = /** @class *
|
|
|
67207
67358
|
this.h.j(CodeGeneratingComponentRenderer.dr(e));
|
|
67208
67359
|
this.h.j("=");
|
|
67209
67360
|
this.h.j("\"");
|
|
67210
|
-
this.h.j(this.
|
|
67361
|
+
this.h.j(this.ap(c, true));
|
|
67211
67362
|
this.h.j("\"");
|
|
67212
67363
|
if (e == "name") {
|
|
67213
67364
|
this.h.k("");
|
|
67214
|
-
this.h.j("id =\"" + this.
|
|
67365
|
+
this.h.j("id =\"" + this.ap(c, true) + "\"");
|
|
67215
67366
|
}
|
|
67216
67367
|
};
|
|
67217
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67368
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.y = function (a) {
|
|
67218
67369
|
var b = a.c;
|
|
67219
67370
|
switch (b.a) {
|
|
67220
67371
|
case 3: return b.b;
|
|
@@ -67224,26 +67375,26 @@ var WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter = /** @class *
|
|
|
67224
67375
|
}
|
|
67225
67376
|
return b.b;
|
|
67226
67377
|
};
|
|
67227
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67378
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.am = function () {
|
|
67228
67379
|
return "null";
|
|
67229
67380
|
};
|
|
67230
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67381
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.ah = function (a) {
|
|
67231
67382
|
return CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
67232
67383
|
};
|
|
67233
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67384
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.an = function (a) {
|
|
67234
67385
|
return CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
67235
67386
|
};
|
|
67236
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67387
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.aj = function (a) {
|
|
67237
67388
|
if (!stringIsNullOrEmpty(a.a.e)) {
|
|
67238
|
-
this.
|
|
67239
|
-
if (!this.
|
|
67389
|
+
this.a8(a);
|
|
67390
|
+
if (!this.a9.contains(a.a.e)) {
|
|
67240
67391
|
this.g.k("this." + CodeGeneratingComponentRenderer.dp(a.a.e) + " = " + "this." + CodeGeneratingComponentRenderer.dp(a.a.e) + ".bind(this);");
|
|
67241
67392
|
}
|
|
67242
67393
|
return "this." + CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
67243
67394
|
}
|
|
67244
|
-
return this.
|
|
67395
|
+
return this.am();
|
|
67245
67396
|
};
|
|
67246
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67397
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.a1 = function (a, b, c, d) {
|
|
67247
67398
|
var e_5, _a;
|
|
67248
67399
|
if (c.b.knownType == 9) {
|
|
67249
67400
|
var e = typeCast(IList_$type, c.c);
|
|
@@ -67371,6 +67522,9 @@ var TSCodeGeneratingComponentRendererDataEmitter = /** @class */ /*@__PURE__*/ (
|
|
|
67371
67522
|
if (this.n.platform == 3) {
|
|
67372
67523
|
e = "if ((this as any)._bind) { (this as any)._bind(); } ";
|
|
67373
67524
|
}
|
|
67525
|
+
if (this.n.platform == 1) {
|
|
67526
|
+
e = "this._detector.markForCheck(); ";
|
|
67527
|
+
}
|
|
67374
67528
|
var f = this.v(a, false);
|
|
67375
67529
|
var g = "null";
|
|
67376
67530
|
switch (b) {
|
|
@@ -67385,25 +67539,25 @@ var TSCodeGeneratingComponentRendererDataEmitter = /** @class */ /*@__PURE__*/ (
|
|
|
67385
67539
|
}
|
|
67386
67540
|
this.g.k("private " + this.ao(a) + ": " + f + " = " + g + ";");
|
|
67387
67541
|
if (b == 2 || (c != null && c.isAsync)) {
|
|
67388
|
-
this.g.k("private " + this.ao(a) + "
|
|
67542
|
+
this.g.k("private " + this.ao(a) + "Fetching: boolean = false;");
|
|
67389
67543
|
}
|
|
67390
67544
|
this.g.k("public get " + this.u(a) + "(): " + f + " {");
|
|
67391
67545
|
this.g.h();
|
|
67392
67546
|
if (c != null && c.isAsync) {
|
|
67393
|
-
this.g.k("if (this." + this.ao(a) + " == null && !this." + this.ao(a) + "
|
|
67547
|
+
this.g.k("if (this." + this.ao(a) + " == null && !this." + this.ao(a) + "Fetching)");
|
|
67394
67548
|
this.g.k("{");
|
|
67395
67549
|
this.g.h();
|
|
67396
|
-
this.g.k(this.ao(a) + "
|
|
67550
|
+
this.g.k("this." + this.ao(a) + "Fetching = true;");
|
|
67397
67551
|
this.g.k("( async () => { this." + this.ao(a) + " = await (await " + this.v(a, false) + ".fetch()); " + e + " })();");
|
|
67398
67552
|
this.g.f();
|
|
67399
67553
|
this.g.k("}");
|
|
67400
67554
|
}
|
|
67401
67555
|
else {
|
|
67402
67556
|
if (b == 2) {
|
|
67403
|
-
this.g.k("if (this." + this.ao(a) + " == null && !this." + this.ao(a) + "
|
|
67557
|
+
this.g.k("if (this." + this.ao(a) + " == null && !this." + this.ao(a) + "Fetching)");
|
|
67404
67558
|
this.g.k("{");
|
|
67405
67559
|
this.g.h();
|
|
67406
|
-
this.g.k(this.ao(a) + "
|
|
67560
|
+
this.g.k(this.ao(a) + "Fetching = true;");
|
|
67407
67561
|
this.g.k("( async () => { this." + this.ao(a) + " = await (await fetch('" + d + "')).json(); " + e + " })();");
|
|
67408
67562
|
this.g.f();
|
|
67409
67563
|
this.g.k("}");
|
|
@@ -67450,7 +67604,6 @@ var TSCodeGeneratingComponentRendererDataEmitter = /** @class */ /*@__PURE__*/ (
|
|
|
67450
67604
|
};
|
|
67451
67605
|
TSCodeGeneratingComponentRendererDataEmitter.prototype.x = function (a, b) {
|
|
67452
67606
|
b.addPackageImport("./" + a, a);
|
|
67453
|
-
b.addPackageImport("./" + a, a + "Item");
|
|
67454
67607
|
};
|
|
67455
67608
|
TSCodeGeneratingComponentRendererDataEmitter.prototype.y = function (a, b) {
|
|
67456
67609
|
b.addDefaultImport("./" + a, a);
|
|
@@ -67602,9 +67755,13 @@ var TSCodeGeneratingComponentRendererDataEmitter = /** @class */ /*@__PURE__*/ (
|
|
|
67602
67755
|
var AngularTemplateCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
67603
67756
|
__extends(AngularTemplateCodeGeneratingComponentRendererCodeEmitter, _super);
|
|
67604
67757
|
function AngularTemplateCodeGeneratingComponentRendererCodeEmitter(a, b) {
|
|
67605
|
-
|
|
67758
|
+
var _this = _super.call(this, a, b) || this;
|
|
67759
|
+
_this.bb = 0;
|
|
67760
|
+
_this.a9 = new HashSet$1(String_$type, 0);
|
|
67761
|
+
_this.ba = new HashSet$1(String_$type, 0);
|
|
67762
|
+
return _this;
|
|
67606
67763
|
}
|
|
67607
|
-
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67764
|
+
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.af = function (a) {
|
|
67608
67765
|
if (a.c == null) {
|
|
67609
67766
|
return "null";
|
|
67610
67767
|
}
|
|
@@ -67618,36 +67775,73 @@ var AngularTemplateCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*
|
|
|
67618
67775
|
}
|
|
67619
67776
|
return c;
|
|
67620
67777
|
};
|
|
67621
|
-
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67778
|
+
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.get_r = function () {
|
|
67622
67779
|
return true;
|
|
67623
67780
|
};
|
|
67624
|
-
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67781
|
+
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.get_ar = function () {
|
|
67625
67782
|
return "Igx";
|
|
67626
67783
|
};
|
|
67627
|
-
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67628
|
-
_super.prototype.
|
|
67629
|
-
this.h.k("<" + this.
|
|
67784
|
+
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.au = function (a) {
|
|
67785
|
+
_super.prototype.au.call(this, a);
|
|
67786
|
+
this.h.k("<" + this.bc(a) + "");
|
|
67787
|
+
if (!this.a9.contains(this.ad)) {
|
|
67788
|
+
this.a9.add_1(this.ad);
|
|
67789
|
+
if (!this.ba.contains(this.ae)) {
|
|
67790
|
+
this.ba.add_1(this.ae);
|
|
67791
|
+
this.at(this.ae);
|
|
67792
|
+
}
|
|
67793
|
+
this.f.k("@ViewChild(\"" + CodeGeneratingComponentRenderer.dp(this.ad) + "\", { static: true } )");
|
|
67794
|
+
this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.ad) + ": " + this.ae);
|
|
67795
|
+
}
|
|
67630
67796
|
};
|
|
67631
|
-
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67797
|
+
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.ay = function (a, b) {
|
|
67798
|
+
var e_7, _a;
|
|
67799
|
+
_super.prototype.ay.call(this, a, b);
|
|
67800
|
+
try {
|
|
67801
|
+
for (var _b = __values(fromEnum(a)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
67802
|
+
var c = _c.value;
|
|
67803
|
+
b.addPackageImport("igniteui-angular-" + this.aq, c);
|
|
67804
|
+
}
|
|
67805
|
+
}
|
|
67806
|
+
catch (e_7_1) {
|
|
67807
|
+
e_7 = { error: e_7_1 };
|
|
67808
|
+
}
|
|
67809
|
+
finally {
|
|
67810
|
+
try {
|
|
67811
|
+
if (_c && !_c.done && (_a = _b.return))
|
|
67812
|
+
_a.call(_b);
|
|
67813
|
+
}
|
|
67814
|
+
finally {
|
|
67815
|
+
if (e_7)
|
|
67816
|
+
throw e_7.error;
|
|
67817
|
+
}
|
|
67818
|
+
}
|
|
67819
|
+
};
|
|
67820
|
+
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.bc = function (a) {
|
|
67632
67821
|
if (stringEndsWith(a, "Component")) {
|
|
67633
67822
|
a = a.substr(0, a.length - ("Component").length);
|
|
67634
67823
|
}
|
|
67635
67824
|
return CodeGeneratingComponentRenderer.dr(a);
|
|
67636
67825
|
};
|
|
67637
|
-
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67826
|
+
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.a7 = function () {
|
|
67638
67827
|
this.h.k(">");
|
|
67639
67828
|
this.h.h();
|
|
67640
67829
|
};
|
|
67641
|
-
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67830
|
+
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.a2 = function (a) {
|
|
67642
67831
|
this.h.f();
|
|
67643
|
-
this.h.k("</" + this.
|
|
67644
|
-
_super.prototype.
|
|
67832
|
+
this.h.k("</" + this.bc(a) + ">");
|
|
67833
|
+
_super.prototype.a2.call(this, a);
|
|
67645
67834
|
};
|
|
67646
|
-
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67835
|
+
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.a0 = function (a, b, c, d) {
|
|
67647
67836
|
var e = CodeGeneratingComponentRenderer.dp(b);
|
|
67648
67837
|
if (this.n(c)) {
|
|
67649
|
-
this.
|
|
67650
|
-
|
|
67838
|
+
this.a8(c);
|
|
67839
|
+
if (this.p(c)) {
|
|
67840
|
+
e = "(" + e + ")";
|
|
67841
|
+
}
|
|
67842
|
+
else {
|
|
67843
|
+
e = "[" + e + "]";
|
|
67844
|
+
}
|
|
67651
67845
|
}
|
|
67652
67846
|
if (a > 0) {
|
|
67653
67847
|
this.h.k("");
|
|
@@ -67655,21 +67849,21 @@ var AngularTemplateCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*
|
|
|
67655
67849
|
this.h.j(e);
|
|
67656
67850
|
this.h.j("=");
|
|
67657
67851
|
this.h.j("\"");
|
|
67658
|
-
this.h.j(this.
|
|
67852
|
+
this.h.j(this.ap(c, true));
|
|
67659
67853
|
this.h.j("\"");
|
|
67660
67854
|
if (e == "name") {
|
|
67661
67855
|
this.h.k("");
|
|
67662
|
-
this.h.j("#" + CodeGeneratingComponentRenderer.dp(this.
|
|
67856
|
+
this.h.j("#" + CodeGeneratingComponentRenderer.dp(this.ap(c, true)));
|
|
67663
67857
|
}
|
|
67664
67858
|
};
|
|
67665
|
-
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67859
|
+
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.aj = function (a) {
|
|
67666
67860
|
if (!stringIsNullOrEmpty(a.a.e)) {
|
|
67667
|
-
this.
|
|
67861
|
+
this.a8(a);
|
|
67668
67862
|
return "this." + CodeGeneratingComponentRenderer.dp(a.a.e) + "($event)";
|
|
67669
67863
|
}
|
|
67670
|
-
return this.
|
|
67864
|
+
return this.am();
|
|
67671
67865
|
};
|
|
67672
|
-
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67866
|
+
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.y = function (a) {
|
|
67673
67867
|
var b = a.c;
|
|
67674
67868
|
switch (b.a) {
|
|
67675
67869
|
case 3: return b.b;
|
|
@@ -67679,17 +67873,17 @@ var AngularTemplateCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*
|
|
|
67679
67873
|
}
|
|
67680
67874
|
return b.b;
|
|
67681
67875
|
};
|
|
67682
|
-
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67876
|
+
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.am = function () {
|
|
67683
67877
|
return "null";
|
|
67684
67878
|
};
|
|
67685
|
-
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67879
|
+
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.ah = function (a) {
|
|
67686
67880
|
return CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
67687
67881
|
};
|
|
67688
|
-
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67882
|
+
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.an = function (a) {
|
|
67689
67883
|
return CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
67690
67884
|
};
|
|
67691
|
-
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67692
|
-
var
|
|
67885
|
+
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.a1 = function (a, b, c, d) {
|
|
67886
|
+
var e_8, _a;
|
|
67693
67887
|
if (c.b.knownType == 9) {
|
|
67694
67888
|
var e = typeCast(IList_$type, c.c);
|
|
67695
67889
|
if (e != null) {
|
|
@@ -67702,8 +67896,8 @@ var AngularTemplateCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*
|
|
|
67702
67896
|
}
|
|
67703
67897
|
}
|
|
67704
67898
|
}
|
|
67705
|
-
catch (
|
|
67706
|
-
|
|
67899
|
+
catch (e_8_1) {
|
|
67900
|
+
e_8 = { error: e_8_1 };
|
|
67707
67901
|
}
|
|
67708
67902
|
finally {
|
|
67709
67903
|
try {
|
|
@@ -67711,8 +67905,8 @@ var AngularTemplateCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*
|
|
|
67711
67905
|
_a.call(_b);
|
|
67712
67906
|
}
|
|
67713
67907
|
finally {
|
|
67714
|
-
if (
|
|
67715
|
-
throw
|
|
67908
|
+
if (e_8)
|
|
67909
|
+
throw e_8.error;
|
|
67716
67910
|
}
|
|
67717
67911
|
}
|
|
67718
67912
|
}
|
|
@@ -67761,16 +67955,10 @@ var DotNetCodeGeneratingComponentRendererDataEmitter = /** @class */ /*@__PURE__
|
|
|
67761
67955
|
a.k("using System.Collections.Generic;");
|
|
67762
67956
|
if (!this.ak) {
|
|
67763
67957
|
this.ak = true;
|
|
67764
|
-
this.k.addUsing("using Data;");
|
|
67765
67958
|
}
|
|
67766
|
-
a.k("namespace Data");
|
|
67767
|
-
a.k("{");
|
|
67768
|
-
a.h();
|
|
67769
67959
|
_super.prototype.ad.call(this, a);
|
|
67770
67960
|
};
|
|
67771
67961
|
DotNetCodeGeneratingComponentRendererDataEmitter.prototype.ac = function (a) {
|
|
67772
|
-
a.f();
|
|
67773
|
-
a.k("}");
|
|
67774
67962
|
_super.prototype.ac.call(this, a);
|
|
67775
67963
|
};
|
|
67776
67964
|
DotNetCodeGeneratingComponentRendererDataEmitter.prototype.v = function (a, b) {
|
|
@@ -67793,7 +67981,7 @@ var DotNetCodeGeneratingComponentRendererDataEmitter = /** @class */ /*@__PURE__
|
|
|
67793
67981
|
return "_" + CodeGeneratingComponentRenderer.dp(a);
|
|
67794
67982
|
};
|
|
67795
67983
|
DotNetCodeGeneratingComponentRendererDataEmitter.prototype.aj = function (a, b, c, d, e) {
|
|
67796
|
-
var
|
|
67984
|
+
var e_9, _a;
|
|
67797
67985
|
_super.prototype.aj.call(this, a, b, c, d, e);
|
|
67798
67986
|
var f = this.r(this.v(a, true), this.v(a, false), b, c);
|
|
67799
67987
|
try {
|
|
@@ -67802,8 +67990,8 @@ var DotNetCodeGeneratingComponentRendererDataEmitter = /** @class */ /*@__PURE__
|
|
|
67802
67990
|
this.ab(g, d, e);
|
|
67803
67991
|
}
|
|
67804
67992
|
}
|
|
67805
|
-
catch (
|
|
67806
|
-
|
|
67993
|
+
catch (e_9_1) {
|
|
67994
|
+
e_9 = { error: e_9_1 };
|
|
67807
67995
|
}
|
|
67808
67996
|
finally {
|
|
67809
67997
|
try {
|
|
@@ -67811,8 +67999,8 @@ var DotNetCodeGeneratingComponentRendererDataEmitter = /** @class */ /*@__PURE__
|
|
|
67811
67999
|
_a.call(_b);
|
|
67812
68000
|
}
|
|
67813
68001
|
finally {
|
|
67814
|
-
if (
|
|
67815
|
-
throw
|
|
68002
|
+
if (e_9)
|
|
68003
|
+
throw e_9.error;
|
|
67816
68004
|
}
|
|
67817
68005
|
}
|
|
67818
68006
|
d.k("public class " + this.v(a, false));
|
|
@@ -68010,7 +68198,12 @@ var DotNetCodeGeneratingComponentRendererDataEmitter = /** @class */ /*@__PURE__
|
|
|
68010
68198
|
return "double.NaN";
|
|
68011
68199
|
}
|
|
68012
68200
|
return (b.value.toString());
|
|
68013
|
-
case 2:
|
|
68201
|
+
case 2: if (b.value == null) {
|
|
68202
|
+
return "null";
|
|
68203
|
+
}
|
|
68204
|
+
else {
|
|
68205
|
+
return ("@\"" + stringReplace(b.value, "\"", "\"\"") + "\"");
|
|
68206
|
+
}
|
|
68014
68207
|
case 3: return ("null");
|
|
68015
68208
|
}
|
|
68016
68209
|
return "";
|
|
@@ -68035,10 +68228,10 @@ var WPFXamlCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE_
|
|
|
68035
68228
|
function WPFXamlCodeGeneratingComponentRendererCodeEmitter(a, b) {
|
|
68036
68229
|
return _super.call(this, a, b) || this;
|
|
68037
68230
|
}
|
|
68038
|
-
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
68231
|
+
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.get_s = function () {
|
|
68039
68232
|
return false;
|
|
68040
68233
|
};
|
|
68041
|
-
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
68234
|
+
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.af = function (a) {
|
|
68042
68235
|
if (a.c == null) {
|
|
68043
68236
|
return "null";
|
|
68044
68237
|
}
|
|
@@ -68052,20 +68245,20 @@ var WPFXamlCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE_
|
|
|
68052
68245
|
}
|
|
68053
68246
|
return c;
|
|
68054
68247
|
};
|
|
68055
|
-
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
68056
|
-
_super.prototype.
|
|
68248
|
+
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.au = function (a) {
|
|
68249
|
+
_super.prototype.au.call(this, a);
|
|
68057
68250
|
this.h.k("<ig:" + a + "");
|
|
68058
68251
|
};
|
|
68059
|
-
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
68252
|
+
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.a7 = function () {
|
|
68060
68253
|
this.h.k(">");
|
|
68061
68254
|
this.h.h();
|
|
68062
68255
|
};
|
|
68063
|
-
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
68256
|
+
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.a2 = function (a) {
|
|
68064
68257
|
this.h.f();
|
|
68065
68258
|
this.h.k("</ig:" + a + ">");
|
|
68066
|
-
_super.prototype.
|
|
68259
|
+
_super.prototype.a2.call(this, a);
|
|
68067
68260
|
};
|
|
68068
|
-
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
68261
|
+
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.a0 = function (a, b, c, d) {
|
|
68069
68262
|
if (b == "Label" && c.b != null && stringContains(c.b.owningType, "Axis")) {
|
|
68070
68263
|
if (c.c != null && stringContains(c.c, "{")) {
|
|
68071
68264
|
if (a > 0) {
|
|
@@ -68074,7 +68267,7 @@ var WPFXamlCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE_
|
|
|
68074
68267
|
this.h.j(b);
|
|
68075
68268
|
this.h.j("=");
|
|
68076
68269
|
this.h.j("\"");
|
|
68077
|
-
this.h.j("{}" + this.
|
|
68270
|
+
this.h.j("{}" + this.ap(c, true));
|
|
68078
68271
|
this.h.j("\"");
|
|
68079
68272
|
return;
|
|
68080
68273
|
}
|
|
@@ -68085,10 +68278,10 @@ var WPFXamlCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE_
|
|
|
68085
68278
|
this.h.j(b);
|
|
68086
68279
|
this.h.j("=");
|
|
68087
68280
|
this.h.j("\"");
|
|
68088
|
-
this.h.j(this.
|
|
68281
|
+
this.h.j(this.ap(c, true));
|
|
68089
68282
|
this.h.j("\"");
|
|
68090
68283
|
};
|
|
68091
|
-
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
68284
|
+
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.y = function (a) {
|
|
68092
68285
|
var b = a.c;
|
|
68093
68286
|
switch (b.a) {
|
|
68094
68287
|
case 3: return b.b;
|
|
@@ -68098,25 +68291,25 @@ var WPFXamlCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE_
|
|
|
68098
68291
|
}
|
|
68099
68292
|
return b.b;
|
|
68100
68293
|
};
|
|
68101
|
-
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
68294
|
+
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.am = function () {
|
|
68102
68295
|
return "{x:Null}";
|
|
68103
68296
|
};
|
|
68104
|
-
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
68297
|
+
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.ah = function (a) {
|
|
68105
68298
|
return "{Binding ElementName=" + a.a.e + "}";
|
|
68106
68299
|
};
|
|
68107
|
-
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
68300
|
+
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.a9 = function (a) {
|
|
68108
68301
|
a = stringReplace(a, "-", "_");
|
|
68109
68302
|
return CodeGeneratingComponentRenderer.dq(a);
|
|
68110
68303
|
};
|
|
68111
|
-
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
68112
|
-
this.
|
|
68113
|
-
return "{Binding " + this.
|
|
68304
|
+
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.an = function (a) {
|
|
68305
|
+
this.a8(a);
|
|
68306
|
+
return "{Binding " + this.a9(a.a.e) + "}";
|
|
68114
68307
|
};
|
|
68115
|
-
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
68116
|
-
var
|
|
68308
|
+
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.a1 = function (a, b, c, d) {
|
|
68309
|
+
var e_10, _a;
|
|
68117
68310
|
this.h.j("<ig:");
|
|
68118
68311
|
{
|
|
68119
|
-
this.h.j(this.
|
|
68312
|
+
this.h.j(this.ae);
|
|
68120
68313
|
this.h.j(".");
|
|
68121
68314
|
}
|
|
68122
68315
|
this.h.j(b);
|
|
@@ -68134,8 +68327,8 @@ var WPFXamlCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE_
|
|
|
68134
68327
|
}
|
|
68135
68328
|
}
|
|
68136
68329
|
}
|
|
68137
|
-
catch (
|
|
68138
|
-
|
|
68330
|
+
catch (e_10_1) {
|
|
68331
|
+
e_10 = { error: e_10_1 };
|
|
68139
68332
|
}
|
|
68140
68333
|
finally {
|
|
68141
68334
|
try {
|
|
@@ -68143,8 +68336,8 @@ var WPFXamlCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE_
|
|
|
68143
68336
|
_a.call(_b);
|
|
68144
68337
|
}
|
|
68145
68338
|
finally {
|
|
68146
|
-
if (
|
|
68147
|
-
throw
|
|
68339
|
+
if (e_10)
|
|
68340
|
+
throw e_10.error;
|
|
68148
68341
|
}
|
|
68149
68342
|
}
|
|
68150
68343
|
}
|
|
@@ -68158,13 +68351,13 @@ var WPFXamlCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE_
|
|
|
68158
68351
|
this.h.f();
|
|
68159
68352
|
this.h.j("</ig:");
|
|
68160
68353
|
{
|
|
68161
|
-
this.h.j(this.
|
|
68354
|
+
this.h.j(this.ae);
|
|
68162
68355
|
this.h.j(".");
|
|
68163
68356
|
}
|
|
68164
68357
|
this.h.j(b);
|
|
68165
68358
|
this.h.k(">");
|
|
68166
68359
|
};
|
|
68167
|
-
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
68360
|
+
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.get_ar = function () {
|
|
68168
68361
|
return "Xam";
|
|
68169
68362
|
};
|
|
68170
68363
|
WPFXamlCodeGeneratingComponentRendererCodeEmitter.$t = markType(WPFXamlCodeGeneratingComponentRendererCodeEmitter, 'WPFXamlCodeGeneratingComponentRendererCodeEmitter', CodeGeneratingComponentRendererCodeEmitter.$);
|
|
@@ -68178,7 +68371,7 @@ var WPFCodeBehindCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@_
|
|
|
68178
68371
|
function WPFCodeBehindCodeGeneratingComponentRendererCodeEmitter(a, b) {
|
|
68179
68372
|
return _super.call(this, a, b) || this;
|
|
68180
68373
|
}
|
|
68181
|
-
WPFCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
68374
|
+
WPFCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.get_s = function () {
|
|
68182
68375
|
return false;
|
|
68183
68376
|
};
|
|
68184
68377
|
WPFCodeBehindCodeGeneratingComponentRendererCodeEmitter.$t = markType(WPFCodeBehindCodeGeneratingComponentRendererCodeEmitter, 'WPFCodeBehindCodeGeneratingComponentRendererCodeEmitter', CodeGeneratingComponentRendererCodeEmitter.$);
|
|
@@ -68354,7 +68547,7 @@ var CodeGeneratingComponentRenderer = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
68354
68547
|
return null;
|
|
68355
68548
|
};
|
|
68356
68549
|
CodeGeneratingComponentRenderer.prototype.emitCode = function (a) {
|
|
68357
|
-
var
|
|
68550
|
+
var e_11, _a, e_12, _b, e_13, _c;
|
|
68358
68551
|
var b = new CodeGeneratingRendererResult();
|
|
68359
68552
|
b.platform = this.dj;
|
|
68360
68553
|
b.generationOptions = this.di;
|
|
@@ -68364,7 +68557,7 @@ var CodeGeneratingComponentRenderer = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
68364
68557
|
var d = c;
|
|
68365
68558
|
var e = d.id;
|
|
68366
68559
|
try {
|
|
68367
|
-
for (var _f = (
|
|
68560
|
+
for (var _f = (e_12 = void 0, __values(fromEnum(d.a))), _g = _f.next(); !_g.done; _g = _f.next()) {
|
|
68368
68561
|
var f = _g.value;
|
|
68369
68562
|
if (f.i("Name") != null) {
|
|
68370
68563
|
b.trackDescriptionField(e, f.i("Name"));
|
|
@@ -68374,8 +68567,8 @@ var CodeGeneratingComponentRenderer = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
68374
68567
|
}
|
|
68375
68568
|
}
|
|
68376
68569
|
}
|
|
68377
|
-
catch (
|
|
68378
|
-
|
|
68570
|
+
catch (e_12_1) {
|
|
68571
|
+
e_12 = { error: e_12_1 };
|
|
68379
68572
|
}
|
|
68380
68573
|
finally {
|
|
68381
68574
|
try {
|
|
@@ -68383,14 +68576,14 @@ var CodeGeneratingComponentRenderer = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
68383
68576
|
_b.call(_f);
|
|
68384
68577
|
}
|
|
68385
68578
|
finally {
|
|
68386
|
-
if (
|
|
68387
|
-
throw
|
|
68579
|
+
if (e_12)
|
|
68580
|
+
throw e_12.error;
|
|
68388
68581
|
}
|
|
68389
68582
|
}
|
|
68390
68583
|
}
|
|
68391
68584
|
}
|
|
68392
|
-
catch (
|
|
68393
|
-
|
|
68585
|
+
catch (e_11_1) {
|
|
68586
|
+
e_11 = { error: e_11_1 };
|
|
68394
68587
|
}
|
|
68395
68588
|
finally {
|
|
68396
68589
|
try {
|
|
@@ -68398,8 +68591,8 @@ var CodeGeneratingComponentRenderer = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
68398
68591
|
_a.call(_d);
|
|
68399
68592
|
}
|
|
68400
68593
|
finally {
|
|
68401
|
-
if (
|
|
68402
|
-
throw
|
|
68594
|
+
if (e_11)
|
|
68595
|
+
throw e_11.error;
|
|
68403
68596
|
}
|
|
68404
68597
|
}
|
|
68405
68598
|
try {
|
|
@@ -68409,8 +68602,8 @@ var CodeGeneratingComponentRenderer = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
68409
68602
|
h.c(b, this, this.di);
|
|
68410
68603
|
}
|
|
68411
68604
|
}
|
|
68412
|
-
catch (
|
|
68413
|
-
|
|
68605
|
+
catch (e_13_1) {
|
|
68606
|
+
e_13 = { error: e_13_1 };
|
|
68414
68607
|
}
|
|
68415
68608
|
finally {
|
|
68416
68609
|
try {
|
|
@@ -68418,13 +68611,13 @@ var CodeGeneratingComponentRenderer = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
68418
68611
|
_c.call(_h);
|
|
68419
68612
|
}
|
|
68420
68613
|
finally {
|
|
68421
|
-
if (
|
|
68422
|
-
throw
|
|
68614
|
+
if (e_13)
|
|
68615
|
+
throw e_13.error;
|
|
68423
68616
|
}
|
|
68424
68617
|
}
|
|
68425
68618
|
if (this.dk != null) {
|
|
68426
68619
|
var i = this.dg(this.di, b);
|
|
68427
|
-
i.
|
|
68620
|
+
i.m(this.dk);
|
|
68428
68621
|
}
|
|
68429
68622
|
if (this.dm != null) {
|
|
68430
68623
|
if (typeCast(JsonDictionaryObject.$, this.dm) !== null) {
|
|
@@ -68514,7 +68707,7 @@ var CodeGenerationContainer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
68514
68707
|
configurable: true
|
|
68515
68708
|
});
|
|
68516
68709
|
CodeGenerationContainer.prototype.c = function (a, b, c) {
|
|
68517
|
-
var
|
|
68710
|
+
var e_14, _a;
|
|
68518
68711
|
var d = new StringBuilder(0);
|
|
68519
68712
|
var e = new StringBuilder(0);
|
|
68520
68713
|
var f = new StringBuilder(0);
|
|
@@ -68526,14 +68719,14 @@ var CodeGenerationContainer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
68526
68719
|
h.p(i, true);
|
|
68527
68720
|
var j = i.toString();
|
|
68528
68721
|
a.addContainerResult(this.id, j);
|
|
68529
|
-
i.
|
|
68530
|
-
i.
|
|
68531
|
-
i.
|
|
68532
|
-
i.
|
|
68722
|
+
i.aw(d);
|
|
68723
|
+
i.az(e);
|
|
68724
|
+
i.av(f);
|
|
68725
|
+
i.ax(g);
|
|
68533
68726
|
}
|
|
68534
68727
|
}
|
|
68535
|
-
catch (
|
|
68536
|
-
|
|
68728
|
+
catch (e_14_1) {
|
|
68729
|
+
e_14 = { error: e_14_1 };
|
|
68537
68730
|
}
|
|
68538
68731
|
finally {
|
|
68539
68732
|
try {
|
|
@@ -68541,8 +68734,8 @@ var CodeGenerationContainer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
68541
68734
|
_a.call(_b);
|
|
68542
68735
|
}
|
|
68543
68736
|
finally {
|
|
68544
|
-
if (
|
|
68545
|
-
throw
|
|
68737
|
+
if (e_14)
|
|
68738
|
+
throw e_14.error;
|
|
68546
68739
|
}
|
|
68547
68740
|
}
|
|
68548
68741
|
a.addContainerResult("bindingFields", d.toString());
|
|
@@ -68622,31 +68815,31 @@ var CodeGenerationItemBuilder = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
68622
68815
|
return null;
|
|
68623
68816
|
};
|
|
68624
68817
|
CodeGenerationItemBuilder.prototype.p = function (a, b) {
|
|
68625
|
-
var
|
|
68818
|
+
var e_15, _a, e_16, _b;
|
|
68626
68819
|
var c = this.m();
|
|
68627
68820
|
if (b) {
|
|
68628
68821
|
var d = this.n();
|
|
68629
|
-
a.
|
|
68822
|
+
a.aq = d;
|
|
68630
68823
|
}
|
|
68631
68824
|
var e = false;
|
|
68632
68825
|
var f = false;
|
|
68633
68826
|
if (this.f.containsKey("Name")) {
|
|
68634
68827
|
e = true;
|
|
68635
|
-
a.
|
|
68828
|
+
a.a6(this.f.item("Name").c);
|
|
68636
68829
|
}
|
|
68637
68830
|
else if (this.f.containsKey("name")) {
|
|
68638
68831
|
e = true;
|
|
68639
|
-
a.
|
|
68832
|
+
a.a6(this.f.item("name").c);
|
|
68640
68833
|
}
|
|
68641
68834
|
else {
|
|
68642
68835
|
if (this.e(a)) {
|
|
68643
68836
|
f = true;
|
|
68644
|
-
a.
|
|
68645
|
-
if (a.
|
|
68837
|
+
a.a5(c);
|
|
68838
|
+
if (a.s) {
|
|
68646
68839
|
this.g.add("name");
|
|
68647
68840
|
this.f.addItem("name", ((function () {
|
|
68648
68841
|
var $ret = new CodeGenerationItemBuilderPropertyInfo();
|
|
68649
|
-
$ret.c = a.
|
|
68842
|
+
$ret.c = a.ad;
|
|
68650
68843
|
return $ret;
|
|
68651
68844
|
})()));
|
|
68652
68845
|
}
|
|
@@ -68654,13 +68847,13 @@ var CodeGenerationItemBuilder = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
68654
68847
|
this.g.add("Name");
|
|
68655
68848
|
this.f.addItem("Name", ((function () {
|
|
68656
68849
|
var $ret = new CodeGenerationItemBuilderPropertyInfo();
|
|
68657
|
-
$ret.c = a.
|
|
68850
|
+
$ret.c = a.ad;
|
|
68658
68851
|
return $ret;
|
|
68659
68852
|
})()));
|
|
68660
68853
|
}
|
|
68661
68854
|
}
|
|
68662
68855
|
}
|
|
68663
|
-
a.
|
|
68856
|
+
a.au(c);
|
|
68664
68857
|
var g = 0;
|
|
68665
68858
|
try {
|
|
68666
68859
|
for (var _c = __values(fromEnum(this.g)), _d = _c.next(); !_d.done; _d = _c.next()) {
|
|
@@ -68670,13 +68863,13 @@ var CodeGenerationItemBuilder = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
68670
68863
|
continue;
|
|
68671
68864
|
}
|
|
68672
68865
|
if (this.d(h, i)) {
|
|
68673
|
-
a.
|
|
68866
|
+
a.a0(g, h, i, this.c);
|
|
68674
68867
|
g++;
|
|
68675
68868
|
}
|
|
68676
68869
|
}
|
|
68677
68870
|
}
|
|
68678
|
-
catch (
|
|
68679
|
-
|
|
68871
|
+
catch (e_15_1) {
|
|
68872
|
+
e_15 = { error: e_15_1 };
|
|
68680
68873
|
}
|
|
68681
68874
|
finally {
|
|
68682
68875
|
try {
|
|
@@ -68684,11 +68877,11 @@ var CodeGenerationItemBuilder = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
68684
68877
|
_a.call(_c);
|
|
68685
68878
|
}
|
|
68686
68879
|
finally {
|
|
68687
|
-
if (
|
|
68688
|
-
throw
|
|
68880
|
+
if (e_15)
|
|
68881
|
+
throw e_15.error;
|
|
68689
68882
|
}
|
|
68690
68883
|
}
|
|
68691
|
-
a.
|
|
68884
|
+
a.a7();
|
|
68692
68885
|
var j = 0;
|
|
68693
68886
|
try {
|
|
68694
68887
|
for (var _e = __values(fromEnum(this.g)), _f = _e.next(); !_f.done; _f = _e.next()) {
|
|
@@ -68698,13 +68891,13 @@ var CodeGenerationItemBuilder = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
68698
68891
|
continue;
|
|
68699
68892
|
}
|
|
68700
68893
|
if (!this.d(k, l)) {
|
|
68701
|
-
a.
|
|
68894
|
+
a.a1(j, k, l, this.c);
|
|
68702
68895
|
j++;
|
|
68703
68896
|
}
|
|
68704
68897
|
}
|
|
68705
68898
|
}
|
|
68706
|
-
catch (
|
|
68707
|
-
|
|
68899
|
+
catch (e_16_1) {
|
|
68900
|
+
e_16 = { error: e_16_1 };
|
|
68708
68901
|
}
|
|
68709
68902
|
finally {
|
|
68710
68903
|
try {
|
|
@@ -68712,22 +68905,22 @@ var CodeGenerationItemBuilder = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
68712
68905
|
_b.call(_e);
|
|
68713
68906
|
}
|
|
68714
68907
|
finally {
|
|
68715
|
-
if (
|
|
68716
|
-
throw
|
|
68908
|
+
if (e_16)
|
|
68909
|
+
throw e_16.error;
|
|
68717
68910
|
}
|
|
68718
68911
|
}
|
|
68719
|
-
a.
|
|
68912
|
+
a.a2(c);
|
|
68720
68913
|
if (e) {
|
|
68721
|
-
a.
|
|
68914
|
+
a.a4();
|
|
68722
68915
|
}
|
|
68723
68916
|
else {
|
|
68724
68917
|
if (f) {
|
|
68725
|
-
a.
|
|
68918
|
+
a.a3();
|
|
68726
68919
|
}
|
|
68727
68920
|
}
|
|
68728
68921
|
};
|
|
68729
68922
|
CodeGenerationItemBuilder.prototype.e = function (a) {
|
|
68730
|
-
var
|
|
68923
|
+
var e_17, _a;
|
|
68731
68924
|
try {
|
|
68732
68925
|
for (var _b = __values(fromEnum(this.g)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
68733
68926
|
var b = _c.value;
|
|
@@ -68737,8 +68930,8 @@ var CodeGenerationItemBuilder = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
68737
68930
|
}
|
|
68738
68931
|
}
|
|
68739
68932
|
}
|
|
68740
|
-
catch (
|
|
68741
|
-
|
|
68933
|
+
catch (e_17_1) {
|
|
68934
|
+
e_17 = { error: e_17_1 };
|
|
68742
68935
|
}
|
|
68743
68936
|
finally {
|
|
68744
68937
|
try {
|
|
@@ -68746,8 +68939,8 @@ var CodeGenerationItemBuilder = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
68746
68939
|
_a.call(_b);
|
|
68747
68940
|
}
|
|
68748
68941
|
finally {
|
|
68749
|
-
if (
|
|
68750
|
-
throw
|
|
68942
|
+
if (e_17)
|
|
68943
|
+
throw e_17.error;
|
|
68751
68944
|
}
|
|
68752
68945
|
}
|
|
68753
68946
|
return false;
|
|
@@ -70040,51 +70233,55 @@ var CodeGenerationFolderTemplate = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
70040
70233
|
for (var i = 0; i < h.length; i++) {
|
|
70041
70234
|
d.add_1(h[i]);
|
|
70042
70235
|
}
|
|
70043
|
-
|
|
70044
|
-
|
|
70045
|
-
|
|
70046
|
-
this.c._inner[j] = k;
|
|
70236
|
+
var j = a.getPackages();
|
|
70237
|
+
for (var k = 0; k < j.length; k++) {
|
|
70238
|
+
d.add_1(j[k]);
|
|
70047
70239
|
}
|
|
70048
70240
|
for (var l = 0; l < this.b.count; l++) {
|
|
70049
|
-
var m =
|
|
70050
|
-
|
|
70051
|
-
|
|
70052
|
-
|
|
70053
|
-
|
|
70054
|
-
|
|
70055
|
-
var
|
|
70056
|
-
q =
|
|
70057
|
-
|
|
70058
|
-
|
|
70059
|
-
|
|
70060
|
-
|
|
70061
|
-
|
|
70062
|
-
|
|
70063
|
-
|
|
70064
|
-
|
|
70065
|
-
|
|
70066
|
-
|
|
70067
|
-
|
|
70068
|
-
|
|
70069
|
-
|
|
70070
|
-
|
|
70071
|
-
|
|
70072
|
-
|
|
70073
|
-
|
|
70074
|
-
|
|
70075
|
-
|
|
70241
|
+
var m = this.c._inner[l];
|
|
70242
|
+
m = this.h(m, d);
|
|
70243
|
+
this.c._inner[l] = m;
|
|
70244
|
+
}
|
|
70245
|
+
for (var n = 0; n < this.b.count; n++) {
|
|
70246
|
+
var o = new List$1(String_$type, 0);
|
|
70247
|
+
var r = a.getImportsKeys();
|
|
70248
|
+
for (var q = 0; q < r.length; q++) {
|
|
70249
|
+
var p = r[q];
|
|
70250
|
+
o.add(p);
|
|
70251
|
+
}
|
|
70252
|
+
var s = this.c._inner[n];
|
|
70253
|
+
s = this.j(s, o.toArray(), a);
|
|
70254
|
+
this.c._inner[n] = s;
|
|
70255
|
+
}
|
|
70256
|
+
var v = a.getKeys();
|
|
70257
|
+
for (var u = 0; u < v.length; u++) {
|
|
70258
|
+
var t = v[u];
|
|
70259
|
+
for (var w = 0; w < this.b.count; w++) {
|
|
70260
|
+
var x = this.c._inner[w];
|
|
70261
|
+
var y = a.getContentForKey(t);
|
|
70262
|
+
x = this.i(x, t, y, a);
|
|
70263
|
+
this.c._inner[w] = x;
|
|
70264
|
+
}
|
|
70265
|
+
}
|
|
70266
|
+
var ab = a.getStringNames();
|
|
70267
|
+
for (var aa = 0; aa < ab.length; aa++) {
|
|
70268
|
+
var z = ab[aa];
|
|
70269
|
+
for (var ac = 0; ac < this.b.count; ac++) {
|
|
70270
|
+
var ad = this.c._inner[ac];
|
|
70271
|
+
ad = stringReplace(ad, "$$" + z, a.getString(z));
|
|
70272
|
+
this.c._inner[ac] = ad;
|
|
70076
70273
|
}
|
|
70077
70274
|
}
|
|
70078
70275
|
try {
|
|
70079
70276
|
for (var _c = __values(fromEnum(a.getNewFiles())), _d = _c.next(); !_d.done; _d = _c.next()) {
|
|
70080
|
-
var
|
|
70081
|
-
var
|
|
70082
|
-
var
|
|
70277
|
+
var ae = _d.value;
|
|
70278
|
+
var af = a.getNewFileContent(ae);
|
|
70279
|
+
var ag = "";
|
|
70083
70280
|
try {
|
|
70084
70281
|
for (var _e = (e_2 = void 0, __values(fromEnum(this.d))), _f = _e.next(); !_f.done; _f = _e.next()) {
|
|
70085
|
-
var
|
|
70086
|
-
if (stringStartsWith(
|
|
70087
|
-
|
|
70282
|
+
var ah = _f.value;
|
|
70283
|
+
if (stringStartsWith(ah, "src")) {
|
|
70284
|
+
ag = "src/";
|
|
70088
70285
|
}
|
|
70089
70286
|
}
|
|
70090
70287
|
}
|
|
@@ -70101,8 +70298,8 @@ var CodeGenerationFolderTemplate = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
70101
70298
|
throw e_2.error;
|
|
70102
70299
|
}
|
|
70103
70300
|
}
|
|
70104
|
-
this.d.add(
|
|
70105
|
-
this.c.add(
|
|
70301
|
+
this.d.add(ag + ae);
|
|
70302
|
+
this.c.add(af);
|
|
70106
70303
|
}
|
|
70107
70304
|
}
|
|
70108
70305
|
catch (e_1_1) {
|
|
@@ -70131,7 +70328,7 @@ var CodeGenerationFolderTemplate = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
70131
70328
|
var g = new CodeGeneratingRegexHelper("(?:(<!--)|(\\/\\/))\\s*insert " + e + "(?:(\\s*-->)?)[\\w\\W\\r\\n]*?(?:(<!--)|(\\/\\/))\\s*end " + e + "(?:(\\s*-->)?)((\\r\\n)|(\\n))");
|
|
70132
70329
|
a = g.b(a, function (h, i, j) {
|
|
70133
70330
|
var e_4, _a;
|
|
70134
|
-
var k = c.
|
|
70331
|
+
var k = c.q(e);
|
|
70135
70332
|
var l = new CodeGeneratingImportManager();
|
|
70136
70333
|
try {
|
|
70137
70334
|
for (var _b = (e_4 = void 0, __values(fromEnum(k))), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
@@ -128207,50 +128404,50 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128207
128404
|
__extends(StackedFragmentSeriesDescription, _super);
|
|
128208
128405
|
function StackedFragmentSeriesDescription() {
|
|
128209
128406
|
var _this = _super.call(this) || this;
|
|
128210
|
-
_this.
|
|
128211
|
-
_this.
|
|
128212
|
-
_this.
|
|
128407
|
+
_this.b6 = null;
|
|
128408
|
+
_this.b5 = null;
|
|
128409
|
+
_this.bn = null;
|
|
128213
128410
|
_this.j = false;
|
|
128214
128411
|
_this.f = false;
|
|
128215
128412
|
_this.an = 0;
|
|
128216
128413
|
_this.ac = 0;
|
|
128217
|
-
_this.
|
|
128218
|
-
_this.
|
|
128414
|
+
_this.cl = null;
|
|
128415
|
+
_this.bz = null;
|
|
128219
128416
|
_this.m = false;
|
|
128220
128417
|
_this.i = false;
|
|
128221
128418
|
_this.ao = 0;
|
|
128222
128419
|
_this.ad = 0;
|
|
128223
128420
|
_this.ap = 0;
|
|
128224
128421
|
_this.ae = 0;
|
|
128225
|
-
_this.b7 = null;
|
|
128226
|
-
_this.bo = null;
|
|
128227
|
-
_this.b8 = null;
|
|
128228
|
-
_this.bp = null;
|
|
128229
128422
|
_this.b9 = null;
|
|
128230
128423
|
_this.bq = null;
|
|
128231
|
-
_this.b6 = null;
|
|
128232
|
-
_this.b5 = null;
|
|
128233
|
-
_this.bn = null;
|
|
128234
|
-
_this.bm = null;
|
|
128235
128424
|
_this.ca = null;
|
|
128236
128425
|
_this.br = null;
|
|
128237
128426
|
_this.cb = null;
|
|
128238
128427
|
_this.bs = null;
|
|
128428
|
+
_this.b8 = null;
|
|
128429
|
+
_this.b7 = null;
|
|
128430
|
+
_this.bp = null;
|
|
128431
|
+
_this.bo = null;
|
|
128239
128432
|
_this.cc = null;
|
|
128240
128433
|
_this.bt = null;
|
|
128241
128434
|
_this.cd = null;
|
|
128242
128435
|
_this.bu = null;
|
|
128243
128436
|
_this.ce = null;
|
|
128437
|
+
_this.bv = null;
|
|
128438
|
+
_this.cf = null;
|
|
128439
|
+
_this.bw = null;
|
|
128440
|
+
_this.cg = null;
|
|
128244
128441
|
_this.ak = 0;
|
|
128245
128442
|
_this.z = 0;
|
|
128246
|
-
_this.
|
|
128247
|
-
_this.
|
|
128443
|
+
_this.ch = null;
|
|
128444
|
+
_this.bx = null;
|
|
128248
128445
|
_this.ag = 0;
|
|
128249
128446
|
_this.v = 0;
|
|
128250
128447
|
_this.ai = 0;
|
|
128251
128448
|
_this.x = 0;
|
|
128252
|
-
_this.
|
|
128253
|
-
_this.
|
|
128449
|
+
_this.ci = null;
|
|
128450
|
+
_this.by = null;
|
|
128254
128451
|
_this.ah = 0;
|
|
128255
128452
|
_this.w = 0;
|
|
128256
128453
|
_this.al = 0;
|
|
@@ -128263,28 +128460,28 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128263
128460
|
_this.af = 0;
|
|
128264
128461
|
_this.aj = 0;
|
|
128265
128462
|
_this.y = 0;
|
|
128266
|
-
_this.
|
|
128267
|
-
_this.
|
|
128463
|
+
_this.bl = null;
|
|
128464
|
+
_this.cm = null;
|
|
128268
128465
|
_this.bf = 0;
|
|
128269
128466
|
_this.bg = 0;
|
|
128270
|
-
_this.cm = null;
|
|
128271
128467
|
_this.cn = null;
|
|
128272
|
-
_this.l = false;
|
|
128273
128468
|
_this.co = null;
|
|
128469
|
+
_this.l = false;
|
|
128470
|
+
_this.cp = null;
|
|
128274
128471
|
_this.h = false;
|
|
128275
128472
|
_this.be = 0;
|
|
128276
|
-
_this.
|
|
128473
|
+
_this.b2 = null;
|
|
128474
|
+
_this.b3 = null;
|
|
128277
128475
|
_this.b1 = null;
|
|
128278
|
-
_this.
|
|
128279
|
-
_this.by = null;
|
|
128476
|
+
_this.b0 = null;
|
|
128280
128477
|
_this.bd = 0;
|
|
128281
|
-
_this.cr = null;
|
|
128282
|
-
_this.cp = null;
|
|
128283
|
-
_this.cq = null;
|
|
128284
128478
|
_this.cs = null;
|
|
128285
|
-
_this.
|
|
128286
|
-
_this.
|
|
128287
|
-
_this.
|
|
128479
|
+
_this.cq = null;
|
|
128480
|
+
_this.cr = null;
|
|
128481
|
+
_this.ct = null;
|
|
128482
|
+
_this.b4 = null;
|
|
128483
|
+
_this.cj = null;
|
|
128484
|
+
_this.ck = null;
|
|
128288
128485
|
return _this;
|
|
128289
128486
|
}
|
|
128290
128487
|
StackedFragmentSeriesDescription.prototype.get_type = function () {
|
|
@@ -128299,10 +128496,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128299
128496
|
});
|
|
128300
128497
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "dataSourceRef", {
|
|
128301
128498
|
get: function () {
|
|
128302
|
-
return this.
|
|
128499
|
+
return this.b6;
|
|
128303
128500
|
},
|
|
128304
128501
|
set: function (a) {
|
|
128305
|
-
this.
|
|
128502
|
+
this.b6 = a;
|
|
128306
128503
|
this.e("DataSourceRef");
|
|
128307
128504
|
},
|
|
128308
128505
|
enumerable: false,
|
|
@@ -128310,10 +128507,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128310
128507
|
});
|
|
128311
128508
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "brush", {
|
|
128312
128509
|
get: function () {
|
|
128313
|
-
return this.
|
|
128510
|
+
return this.b5;
|
|
128314
128511
|
},
|
|
128315
128512
|
set: function (a) {
|
|
128316
|
-
this.
|
|
128513
|
+
this.b5 = a;
|
|
128317
128514
|
this.e("Brush");
|
|
128318
128515
|
},
|
|
128319
128516
|
enumerable: false,
|
|
@@ -128321,10 +128518,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128321
128518
|
});
|
|
128322
128519
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualBrush", {
|
|
128323
128520
|
get: function () {
|
|
128324
|
-
return this.
|
|
128521
|
+
return this.bn;
|
|
128325
128522
|
},
|
|
128326
128523
|
set: function (a) {
|
|
128327
|
-
this.
|
|
128524
|
+
this.bn = a;
|
|
128328
128525
|
this.e("ActualBrush");
|
|
128329
128526
|
},
|
|
128330
128527
|
enumerable: false,
|
|
@@ -128376,10 +128573,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128376
128573
|
});
|
|
128377
128574
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "shadowColor", {
|
|
128378
128575
|
get: function () {
|
|
128379
|
-
return this.
|
|
128576
|
+
return this.cl;
|
|
128380
128577
|
},
|
|
128381
128578
|
set: function (a) {
|
|
128382
|
-
this.
|
|
128579
|
+
this.cl = a;
|
|
128383
128580
|
this.e("ShadowColor");
|
|
128384
128581
|
},
|
|
128385
128582
|
enumerable: false,
|
|
@@ -128387,10 +128584,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128387
128584
|
});
|
|
128388
128585
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualShadowColor", {
|
|
128389
128586
|
get: function () {
|
|
128390
|
-
return this.
|
|
128587
|
+
return this.bz;
|
|
128391
128588
|
},
|
|
128392
128589
|
set: function (a) {
|
|
128393
|
-
this.
|
|
128590
|
+
this.bz = a;
|
|
128394
128591
|
this.e("ActualShadowColor");
|
|
128395
128592
|
},
|
|
128396
128593
|
enumerable: false,
|
|
@@ -128464,10 +128661,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128464
128661
|
});
|
|
128465
128662
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "legendItemBadgeTemplateRef", {
|
|
128466
128663
|
get: function () {
|
|
128467
|
-
return this.
|
|
128664
|
+
return this.b9;
|
|
128468
128665
|
},
|
|
128469
128666
|
set: function (a) {
|
|
128470
|
-
this.
|
|
128667
|
+
this.b9 = a;
|
|
128471
128668
|
this.e("LegendItemBadgeTemplateRef");
|
|
128472
128669
|
},
|
|
128473
128670
|
enumerable: false,
|
|
@@ -128475,10 +128672,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128475
128672
|
});
|
|
128476
128673
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualLegendItemBadgeTemplateRef", {
|
|
128477
128674
|
get: function () {
|
|
128478
|
-
return this.
|
|
128675
|
+
return this.bq;
|
|
128479
128676
|
},
|
|
128480
128677
|
set: function (a) {
|
|
128481
|
-
this.
|
|
128678
|
+
this.bq = a;
|
|
128482
128679
|
this.e("ActualLegendItemBadgeTemplateRef");
|
|
128483
128680
|
},
|
|
128484
128681
|
enumerable: false,
|
|
@@ -128486,10 +128683,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128486
128683
|
});
|
|
128487
128684
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "legendItemTemplateRef", {
|
|
128488
128685
|
get: function () {
|
|
128489
|
-
return this.
|
|
128686
|
+
return this.ca;
|
|
128490
128687
|
},
|
|
128491
128688
|
set: function (a) {
|
|
128492
|
-
this.
|
|
128689
|
+
this.ca = a;
|
|
128493
128690
|
this.e("LegendItemTemplateRef");
|
|
128494
128691
|
},
|
|
128495
128692
|
enumerable: false,
|
|
@@ -128497,10 +128694,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128497
128694
|
});
|
|
128498
128695
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualLegendItemTemplateRef", {
|
|
128499
128696
|
get: function () {
|
|
128500
|
-
return this.
|
|
128697
|
+
return this.br;
|
|
128501
128698
|
},
|
|
128502
128699
|
set: function (a) {
|
|
128503
|
-
this.
|
|
128700
|
+
this.br = a;
|
|
128504
128701
|
this.e("ActualLegendItemTemplateRef");
|
|
128505
128702
|
},
|
|
128506
128703
|
enumerable: false,
|
|
@@ -128508,10 +128705,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128508
128705
|
});
|
|
128509
128706
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "legendItemVisibility", {
|
|
128510
128707
|
get: function () {
|
|
128511
|
-
return this.
|
|
128708
|
+
return this.cb;
|
|
128512
128709
|
},
|
|
128513
128710
|
set: function (a) {
|
|
128514
|
-
this.
|
|
128711
|
+
this.cb = a;
|
|
128515
128712
|
this.e("LegendItemVisibility");
|
|
128516
128713
|
},
|
|
128517
128714
|
enumerable: false,
|
|
@@ -128519,10 +128716,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128519
128716
|
});
|
|
128520
128717
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualLegendItemVisibility", {
|
|
128521
128718
|
get: function () {
|
|
128522
|
-
return this.
|
|
128719
|
+
return this.bs;
|
|
128523
128720
|
},
|
|
128524
128721
|
set: function (a) {
|
|
128525
|
-
this.
|
|
128722
|
+
this.bs = a;
|
|
128526
128723
|
this.e("ActualLegendItemVisibility");
|
|
128527
128724
|
},
|
|
128528
128725
|
enumerable: false,
|
|
@@ -128530,10 +128727,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128530
128727
|
});
|
|
128531
128728
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "legendItemBadgeShape", {
|
|
128532
128729
|
get: function () {
|
|
128533
|
-
return this.
|
|
128730
|
+
return this.b8;
|
|
128534
128731
|
},
|
|
128535
128732
|
set: function (a) {
|
|
128536
|
-
this.
|
|
128733
|
+
this.b8 = a;
|
|
128537
128734
|
this.e("LegendItemBadgeShape");
|
|
128538
128735
|
},
|
|
128539
128736
|
enumerable: false,
|
|
@@ -128541,10 +128738,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128541
128738
|
});
|
|
128542
128739
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "legendItemBadgeMode", {
|
|
128543
128740
|
get: function () {
|
|
128544
|
-
return this.
|
|
128741
|
+
return this.b7;
|
|
128545
128742
|
},
|
|
128546
128743
|
set: function (a) {
|
|
128547
|
-
this.
|
|
128744
|
+
this.b7 = a;
|
|
128548
128745
|
this.e("LegendItemBadgeMode");
|
|
128549
128746
|
},
|
|
128550
128747
|
enumerable: false,
|
|
@@ -128552,10 +128749,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128552
128749
|
});
|
|
128553
128750
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualLegendItemBadgeShape", {
|
|
128554
128751
|
get: function () {
|
|
128555
|
-
return this.
|
|
128752
|
+
return this.bp;
|
|
128556
128753
|
},
|
|
128557
128754
|
set: function (a) {
|
|
128558
|
-
this.
|
|
128755
|
+
this.bp = a;
|
|
128559
128756
|
this.e("ActualLegendItemBadgeShape");
|
|
128560
128757
|
},
|
|
128561
128758
|
enumerable: false,
|
|
@@ -128563,10 +128760,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128563
128760
|
});
|
|
128564
128761
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualLegendItemBadgeMode", {
|
|
128565
128762
|
get: function () {
|
|
128566
|
-
return this.
|
|
128763
|
+
return this.bo;
|
|
128567
128764
|
},
|
|
128568
128765
|
set: function (a) {
|
|
128569
|
-
this.
|
|
128766
|
+
this.bo = a;
|
|
128570
128767
|
this.e("ActualLegendItemBadgeMode");
|
|
128571
128768
|
},
|
|
128572
128769
|
enumerable: false,
|
|
@@ -128574,10 +128771,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128574
128771
|
});
|
|
128575
128772
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "markerBrush", {
|
|
128576
128773
|
get: function () {
|
|
128577
|
-
return this.
|
|
128774
|
+
return this.cc;
|
|
128578
128775
|
},
|
|
128579
128776
|
set: function (a) {
|
|
128580
|
-
this.
|
|
128777
|
+
this.cc = a;
|
|
128581
128778
|
this.e("MarkerBrush");
|
|
128582
128779
|
},
|
|
128583
128780
|
enumerable: false,
|
|
@@ -128585,10 +128782,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128585
128782
|
});
|
|
128586
128783
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualMarkerBrush", {
|
|
128587
128784
|
get: function () {
|
|
128588
|
-
return this.
|
|
128785
|
+
return this.bt;
|
|
128589
128786
|
},
|
|
128590
128787
|
set: function (a) {
|
|
128591
|
-
this.
|
|
128788
|
+
this.bt = a;
|
|
128592
128789
|
this.e("ActualMarkerBrush");
|
|
128593
128790
|
},
|
|
128594
128791
|
enumerable: false,
|
|
@@ -128596,10 +128793,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128596
128793
|
});
|
|
128597
128794
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "markerOutline", {
|
|
128598
128795
|
get: function () {
|
|
128599
|
-
return this.
|
|
128796
|
+
return this.cd;
|
|
128600
128797
|
},
|
|
128601
128798
|
set: function (a) {
|
|
128602
|
-
this.
|
|
128799
|
+
this.cd = a;
|
|
128603
128800
|
this.e("MarkerOutline");
|
|
128604
128801
|
},
|
|
128605
128802
|
enumerable: false,
|
|
@@ -128607,10 +128804,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128607
128804
|
});
|
|
128608
128805
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualMarkerOutline", {
|
|
128609
128806
|
get: function () {
|
|
128610
|
-
return this.
|
|
128807
|
+
return this.bu;
|
|
128611
128808
|
},
|
|
128612
128809
|
set: function (a) {
|
|
128613
|
-
this.
|
|
128810
|
+
this.bu = a;
|
|
128614
128811
|
this.e("ActualMarkerOutline");
|
|
128615
128812
|
},
|
|
128616
128813
|
enumerable: false,
|
|
@@ -128618,10 +128815,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128618
128815
|
});
|
|
128619
128816
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "markerTemplateRef", {
|
|
128620
128817
|
get: function () {
|
|
128621
|
-
return this.
|
|
128818
|
+
return this.ce;
|
|
128622
128819
|
},
|
|
128623
128820
|
set: function (a) {
|
|
128624
|
-
this.
|
|
128821
|
+
this.ce = a;
|
|
128625
128822
|
this.e("MarkerTemplateRef");
|
|
128626
128823
|
},
|
|
128627
128824
|
enumerable: false,
|
|
@@ -128629,10 +128826,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128629
128826
|
});
|
|
128630
128827
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualMarkerTemplateRef", {
|
|
128631
128828
|
get: function () {
|
|
128632
|
-
return this.
|
|
128829
|
+
return this.bv;
|
|
128633
128830
|
},
|
|
128634
128831
|
set: function (a) {
|
|
128635
|
-
this.
|
|
128832
|
+
this.bv = a;
|
|
128636
128833
|
this.e("ActualMarkerTemplateRef");
|
|
128637
128834
|
},
|
|
128638
128835
|
enumerable: false,
|
|
@@ -128640,10 +128837,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128640
128837
|
});
|
|
128641
128838
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "markerType", {
|
|
128642
128839
|
get: function () {
|
|
128643
|
-
return this.
|
|
128840
|
+
return this.cf;
|
|
128644
128841
|
},
|
|
128645
128842
|
set: function (a) {
|
|
128646
|
-
this.
|
|
128843
|
+
this.cf = a;
|
|
128647
128844
|
this.e("MarkerType");
|
|
128648
128845
|
},
|
|
128649
128846
|
enumerable: false,
|
|
@@ -128651,10 +128848,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128651
128848
|
});
|
|
128652
128849
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualMarkerType", {
|
|
128653
128850
|
get: function () {
|
|
128654
|
-
return this.
|
|
128851
|
+
return this.bw;
|
|
128655
128852
|
},
|
|
128656
128853
|
set: function (a) {
|
|
128657
|
-
this.
|
|
128854
|
+
this.bw = a;
|
|
128658
128855
|
this.e("ActualMarkerType");
|
|
128659
128856
|
},
|
|
128660
128857
|
enumerable: false,
|
|
@@ -128662,10 +128859,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128662
128859
|
});
|
|
128663
128860
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "name", {
|
|
128664
128861
|
get: function () {
|
|
128665
|
-
return this.
|
|
128862
|
+
return this.cg;
|
|
128666
128863
|
},
|
|
128667
128864
|
set: function (a) {
|
|
128668
|
-
this.
|
|
128865
|
+
this.cg = a;
|
|
128669
128866
|
this.e("Name");
|
|
128670
128867
|
},
|
|
128671
128868
|
enumerable: false,
|
|
@@ -128695,10 +128892,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128695
128892
|
});
|
|
128696
128893
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "outline", {
|
|
128697
128894
|
get: function () {
|
|
128698
|
-
return this.
|
|
128895
|
+
return this.ch;
|
|
128699
128896
|
},
|
|
128700
128897
|
set: function (a) {
|
|
128701
|
-
this.
|
|
128898
|
+
this.ch = a;
|
|
128702
128899
|
this.e("Outline");
|
|
128703
128900
|
},
|
|
128704
128901
|
enumerable: false,
|
|
@@ -128706,10 +128903,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128706
128903
|
});
|
|
128707
128904
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualOutline", {
|
|
128708
128905
|
get: function () {
|
|
128709
|
-
return this.
|
|
128906
|
+
return this.bx;
|
|
128710
128907
|
},
|
|
128711
128908
|
set: function (a) {
|
|
128712
|
-
this.
|
|
128909
|
+
this.bx = a;
|
|
128713
128910
|
this.e("ActualOutline");
|
|
128714
128911
|
},
|
|
128715
128912
|
enumerable: false,
|
|
@@ -128761,10 +128958,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128761
128958
|
});
|
|
128762
128959
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "outlineMode", {
|
|
128763
128960
|
get: function () {
|
|
128764
|
-
return this.
|
|
128961
|
+
return this.ci;
|
|
128765
128962
|
},
|
|
128766
128963
|
set: function (a) {
|
|
128767
|
-
this.
|
|
128964
|
+
this.ci = a;
|
|
128768
128965
|
this.e("OutlineMode");
|
|
128769
128966
|
},
|
|
128770
128967
|
enumerable: false,
|
|
@@ -128772,10 +128969,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128772
128969
|
});
|
|
128773
128970
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualOutlineMode", {
|
|
128774
128971
|
get: function () {
|
|
128775
|
-
return this.
|
|
128972
|
+
return this.by;
|
|
128776
128973
|
},
|
|
128777
128974
|
set: function (a) {
|
|
128778
|
-
this.
|
|
128975
|
+
this.by = a;
|
|
128779
128976
|
this.e("ActualOutlineMode");
|
|
128780
128977
|
},
|
|
128781
128978
|
enumerable: false,
|
|
@@ -128913,23 +129110,23 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128913
129110
|
enumerable: false,
|
|
128914
129111
|
configurable: true
|
|
128915
129112
|
});
|
|
128916
|
-
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "
|
|
129113
|
+
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "title", {
|
|
128917
129114
|
get: function () {
|
|
128918
|
-
return this.
|
|
129115
|
+
return this.bl;
|
|
128919
129116
|
},
|
|
128920
129117
|
set: function (a) {
|
|
128921
|
-
this.
|
|
128922
|
-
this.e("
|
|
129118
|
+
this.bl = a;
|
|
129119
|
+
this.e("Title");
|
|
128923
129120
|
},
|
|
128924
129121
|
enumerable: false,
|
|
128925
129122
|
configurable: true
|
|
128926
129123
|
});
|
|
128927
129124
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "transitionEasingFunctionRef", {
|
|
128928
129125
|
get: function () {
|
|
128929
|
-
return this.
|
|
129126
|
+
return this.cm;
|
|
128930
129127
|
},
|
|
128931
129128
|
set: function (a) {
|
|
128932
|
-
this.
|
|
129129
|
+
this.cm = a;
|
|
128933
129130
|
this.e("TransitionEasingFunctionRef");
|
|
128934
129131
|
},
|
|
128935
129132
|
enumerable: false,
|
|
@@ -128959,10 +129156,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128959
129156
|
});
|
|
128960
129157
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "transitionInEasingFunctionRef", {
|
|
128961
129158
|
get: function () {
|
|
128962
|
-
return this.
|
|
129159
|
+
return this.cn;
|
|
128963
129160
|
},
|
|
128964
129161
|
set: function (a) {
|
|
128965
|
-
this.
|
|
129162
|
+
this.cn = a;
|
|
128966
129163
|
this.e("TransitionInEasingFunctionRef");
|
|
128967
129164
|
},
|
|
128968
129165
|
enumerable: false,
|
|
@@ -128970,10 +129167,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128970
129167
|
});
|
|
128971
129168
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "transitionInMode", {
|
|
128972
129169
|
get: function () {
|
|
128973
|
-
return this.
|
|
129170
|
+
return this.co;
|
|
128974
129171
|
},
|
|
128975
129172
|
set: function (a) {
|
|
128976
|
-
this.
|
|
129173
|
+
this.co = a;
|
|
128977
129174
|
this.e("TransitionInMode");
|
|
128978
129175
|
},
|
|
128979
129176
|
enumerable: false,
|
|
@@ -128992,10 +129189,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128992
129189
|
});
|
|
128993
129190
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "transitionInSpeedType", {
|
|
128994
129191
|
get: function () {
|
|
128995
|
-
return this.
|
|
129192
|
+
return this.cp;
|
|
128996
129193
|
},
|
|
128997
129194
|
set: function (a) {
|
|
128998
|
-
this.
|
|
129195
|
+
this.cp = a;
|
|
128999
129196
|
this.e("TransitionInSpeedType");
|
|
129000
129197
|
},
|
|
129001
129198
|
enumerable: false,
|
|
@@ -129025,10 +129222,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
129025
129222
|
});
|
|
129026
129223
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualTransitionInMode", {
|
|
129027
129224
|
get: function () {
|
|
129028
|
-
return this.
|
|
129225
|
+
return this.b2;
|
|
129029
129226
|
},
|
|
129030
129227
|
set: function (a) {
|
|
129031
|
-
this.
|
|
129228
|
+
this.b2 = a;
|
|
129032
129229
|
this.e("ActualTransitionInMode");
|
|
129033
129230
|
},
|
|
129034
129231
|
enumerable: false,
|
|
@@ -129036,10 +129233,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
129036
129233
|
});
|
|
129037
129234
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualTransitionInSpeedType", {
|
|
129038
129235
|
get: function () {
|
|
129039
|
-
return this.
|
|
129236
|
+
return this.b3;
|
|
129040
129237
|
},
|
|
129041
129238
|
set: function (a) {
|
|
129042
|
-
this.
|
|
129239
|
+
this.b3 = a;
|
|
129043
129240
|
this.e("ActualTransitionInSpeedType");
|
|
129044
129241
|
},
|
|
129045
129242
|
enumerable: false,
|
|
@@ -129047,10 +129244,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
129047
129244
|
});
|
|
129048
129245
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualTransitionInEasingFunctionRef", {
|
|
129049
129246
|
get: function () {
|
|
129050
|
-
return this.
|
|
129247
|
+
return this.b1;
|
|
129051
129248
|
},
|
|
129052
129249
|
set: function (a) {
|
|
129053
|
-
this.
|
|
129250
|
+
this.b1 = a;
|
|
129054
129251
|
this.e("ActualTransitionInEasingFunctionRef");
|
|
129055
129252
|
},
|
|
129056
129253
|
enumerable: false,
|
|
@@ -129058,10 +129255,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
129058
129255
|
});
|
|
129059
129256
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualTransitionEasingFunctionRef", {
|
|
129060
129257
|
get: function () {
|
|
129061
|
-
return this.
|
|
129258
|
+
return this.b0;
|
|
129062
129259
|
},
|
|
129063
129260
|
set: function (a) {
|
|
129064
|
-
this.
|
|
129261
|
+
this.b0 = a;
|
|
129065
129262
|
this.e("ActualTransitionEasingFunctionRef");
|
|
129066
129263
|
},
|
|
129067
129264
|
enumerable: false,
|
|
@@ -129080,10 +129277,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
129080
129277
|
});
|
|
129081
129278
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "valueMemberPath", {
|
|
129082
129279
|
get: function () {
|
|
129083
|
-
return this.
|
|
129280
|
+
return this.cs;
|
|
129084
129281
|
},
|
|
129085
129282
|
set: function (a) {
|
|
129086
|
-
this.
|
|
129283
|
+
this.cs = a;
|
|
129087
129284
|
this.e("ValueMemberPath");
|
|
129088
129285
|
},
|
|
129089
129286
|
enumerable: false,
|
|
@@ -129091,10 +129288,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
129091
129288
|
});
|
|
129092
129289
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "valueMemberAsLegendLabel", {
|
|
129093
129290
|
get: function () {
|
|
129094
|
-
return this.
|
|
129291
|
+
return this.cq;
|
|
129095
129292
|
},
|
|
129096
129293
|
set: function (a) {
|
|
129097
|
-
this.
|
|
129294
|
+
this.cq = a;
|
|
129098
129295
|
this.e("ValueMemberAsLegendLabel");
|
|
129099
129296
|
},
|
|
129100
129297
|
enumerable: false,
|
|
@@ -129102,10 +129299,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
129102
129299
|
});
|
|
129103
129300
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "valueMemberAsLegendUnit", {
|
|
129104
129301
|
get: function () {
|
|
129105
|
-
return this.
|
|
129302
|
+
return this.cr;
|
|
129106
129303
|
},
|
|
129107
129304
|
set: function (a) {
|
|
129108
|
-
this.
|
|
129305
|
+
this.cr = a;
|
|
129109
129306
|
this.e("ValueMemberAsLegendUnit");
|
|
129110
129307
|
},
|
|
129111
129308
|
enumerable: false,
|
|
@@ -129113,10 +129310,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
129113
129310
|
});
|
|
129114
129311
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "visibility", {
|
|
129115
129312
|
get: function () {
|
|
129116
|
-
return this.
|
|
129313
|
+
return this.ct;
|
|
129117
129314
|
},
|
|
129118
129315
|
set: function (a) {
|
|
129119
|
-
this.
|
|
129316
|
+
this.ct = a;
|
|
129120
129317
|
this.e("Visibility");
|
|
129121
129318
|
},
|
|
129122
129319
|
enumerable: false,
|
|
@@ -129124,10 +129321,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
129124
129321
|
});
|
|
129125
129322
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualVisibility", {
|
|
129126
129323
|
get: function () {
|
|
129127
|
-
return this.
|
|
129324
|
+
return this.b4;
|
|
129128
129325
|
},
|
|
129129
129326
|
set: function (a) {
|
|
129130
|
-
this.
|
|
129327
|
+
this.b4 = a;
|
|
129131
129328
|
this.e("ActualVisibility");
|
|
129132
129329
|
},
|
|
129133
129330
|
enumerable: false,
|
|
@@ -129135,10 +129332,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
129135
129332
|
});
|
|
129136
129333
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "parentOrLocalBrush", {
|
|
129137
129334
|
get: function () {
|
|
129138
|
-
return this.
|
|
129335
|
+
return this.cj;
|
|
129139
129336
|
},
|
|
129140
129337
|
set: function (a) {
|
|
129141
|
-
this.
|
|
129338
|
+
this.cj = a;
|
|
129142
129339
|
this.e("ParentOrLocalBrush");
|
|
129143
129340
|
},
|
|
129144
129341
|
enumerable: false,
|
|
@@ -129146,10 +129343,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
129146
129343
|
});
|
|
129147
129344
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "propertyUpdatedRef", {
|
|
129148
129345
|
get: function () {
|
|
129149
|
-
return this.
|
|
129346
|
+
return this.ck;
|
|
129150
129347
|
},
|
|
129151
129348
|
set: function (a) {
|
|
129152
|
-
this.
|
|
129349
|
+
this.ck = a;
|
|
129153
129350
|
this.e("PropertyUpdatedRef");
|
|
129154
129351
|
},
|
|
129155
129352
|
enumerable: false,
|
|
@@ -129251,7 +129448,7 @@ var StackedFragmentSeriesDescriptionMetadata = /** @class */ /*@__PURE__*/ (func
|
|
|
129251
129448
|
a.item("ActualThickness", "Number:double");
|
|
129252
129449
|
a.item("MarkerThickness", "Number:double");
|
|
129253
129450
|
a.item("ActualMarkerThickness", "Number:double");
|
|
129254
|
-
a.item("
|
|
129451
|
+
a.item("Title", "Unknown");
|
|
129255
129452
|
a.item("TransitionEasingFunctionRef", "(w:TransitionEasingFunction,wf:TransitionEasingFunction)MethodRef");
|
|
129256
129453
|
a.item("TransitionDuration", "Number:int");
|
|
129257
129454
|
a.item("TransitionInDuration", "Number:int");
|
|
@@ -136855,6 +137052,7 @@ var DataGridPagerDescriptionModule = /** @class */ /*@__PURE__*/ (function (_sup
|
|
|
136855
137052
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
136856
137053
|
}
|
|
136857
137054
|
DataGridPagerDescriptionModule.register = function (a) {
|
|
137055
|
+
ButtonDescriptionModule.register(a);
|
|
136858
137056
|
DataGridPagerDescriptionMetadata.d(a);
|
|
136859
137057
|
};
|
|
136860
137058
|
DataGridPagerDescriptionModule.$t = markType(DataGridPagerDescriptionModule, 'DataGridPagerDescriptionModule');
|
|
@@ -147627,6 +147825,7 @@ var FinancialChartDescriptionModule = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
147627
147825
|
CategoryToolTipLayerDescriptionModule.register(a);
|
|
147628
147826
|
CategoryHighlightLayerDescriptionModule.register(a);
|
|
147629
147827
|
CategoryItemHighlightLayerDescriptionModule.register(a);
|
|
147828
|
+
DataToolTipLayerDescriptionModule.register(a);
|
|
147630
147829
|
FinalValueLayerDescriptionModule.register(a);
|
|
147631
147830
|
NumberAbbreviatorDescriptionModule.register(a);
|
|
147632
147831
|
DataChartInteractivityDescriptionModule.register(a);
|
|
@@ -158014,7 +158213,9 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
|
|
|
158014
158213
|
var PropertyEditorPropertyDescriptionChangedEventArgsDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
158015
158214
|
__extends(PropertyEditorPropertyDescriptionChangedEventArgsDescription, _super);
|
|
158016
158215
|
function PropertyEditorPropertyDescriptionChangedEventArgsDescription() {
|
|
158017
|
-
|
|
158216
|
+
var _this = _super.call(this) || this;
|
|
158217
|
+
_this.f = null;
|
|
158218
|
+
return _this;
|
|
158018
158219
|
}
|
|
158019
158220
|
PropertyEditorPropertyDescriptionChangedEventArgsDescription.prototype.get_type = function () {
|
|
158020
158221
|
return "PropertyEditorPropertyDescriptionChangedEventArgs";
|
|
@@ -158026,6 +158227,17 @@ var PropertyEditorPropertyDescriptionChangedEventArgsDescription = /** @class */
|
|
|
158026
158227
|
enumerable: false,
|
|
158027
158228
|
configurable: true
|
|
158028
158229
|
});
|
|
158230
|
+
Object.defineProperty(PropertyEditorPropertyDescriptionChangedEventArgsDescription.prototype, "newValue", {
|
|
158231
|
+
get: function () {
|
|
158232
|
+
return this.f;
|
|
158233
|
+
},
|
|
158234
|
+
set: function (a) {
|
|
158235
|
+
this.f = a;
|
|
158236
|
+
this.e("NewValue");
|
|
158237
|
+
},
|
|
158238
|
+
enumerable: false,
|
|
158239
|
+
configurable: true
|
|
158240
|
+
});
|
|
158029
158241
|
PropertyEditorPropertyDescriptionChangedEventArgsDescription.$t = markType(PropertyEditorPropertyDescriptionChangedEventArgsDescription, 'PropertyEditorPropertyDescriptionChangedEventArgsDescription', Description.$);
|
|
158030
158242
|
return PropertyEditorPropertyDescriptionChangedEventArgsDescription;
|
|
158031
158243
|
}(Description));
|
|
@@ -158055,6 +158267,7 @@ var PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata = /** @
|
|
|
158055
158267
|
a.s(PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata.a);
|
|
158056
158268
|
};
|
|
158057
158269
|
PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata.c = function (a) {
|
|
158270
|
+
a.item("NewValue", "Unknown");
|
|
158058
158271
|
};
|
|
158059
158272
|
PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata.d = function (a) {
|
|
158060
158273
|
PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata.b(a);
|
|
@@ -170396,7 +170609,6 @@ var WebDropdownGroupDescription = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
170396
170609
|
function WebDropdownGroupDescription() {
|
|
170397
170610
|
var _this = _super.call(this) || this;
|
|
170398
170611
|
_this.f = null;
|
|
170399
|
-
_this.h = null;
|
|
170400
170612
|
return _this;
|
|
170401
170613
|
}
|
|
170402
170614
|
WebDropdownGroupDescription.prototype.get_type = function () {
|
|
@@ -170409,23 +170621,12 @@ var WebDropdownGroupDescription = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
170409
170621
|
enumerable: false,
|
|
170410
170622
|
configurable: true
|
|
170411
170623
|
});
|
|
170412
|
-
Object.defineProperty(WebDropdownGroupDescription.prototype, "
|
|
170624
|
+
Object.defineProperty(WebDropdownGroupDescription.prototype, "size", {
|
|
170413
170625
|
get: function () {
|
|
170414
170626
|
return this.f;
|
|
170415
170627
|
},
|
|
170416
170628
|
set: function (a) {
|
|
170417
170629
|
this.f = a;
|
|
170418
|
-
this.e("Items");
|
|
170419
|
-
},
|
|
170420
|
-
enumerable: false,
|
|
170421
|
-
configurable: true
|
|
170422
|
-
});
|
|
170423
|
-
Object.defineProperty(WebDropdownGroupDescription.prototype, "size", {
|
|
170424
|
-
get: function () {
|
|
170425
|
-
return this.h;
|
|
170426
|
-
},
|
|
170427
|
-
set: function (a) {
|
|
170428
|
-
this.h = a;
|
|
170429
170630
|
this.e("Size");
|
|
170430
170631
|
},
|
|
170431
170632
|
enumerable: false,
|
|
@@ -170458,11 +170659,9 @@ var WebDropdownGroupDescriptionMetadata = /** @class */ /*@__PURE__*/ (function
|
|
|
170458
170659
|
return;
|
|
170459
170660
|
}
|
|
170460
170661
|
a.s(WebDropdownGroupDescriptionMetadata.a);
|
|
170461
|
-
WebDropdownItemDescriptionMetadata.d(a);
|
|
170462
170662
|
};
|
|
170463
170663
|
WebDropdownGroupDescriptionMetadata.c = function (a) {
|
|
170464
170664
|
a.item("__qualifiedNameTS", "String:DropdownGroup");
|
|
170465
|
-
a.item("Items", "Array:WebDropdownItemDescription:DropdownItem");
|
|
170466
170665
|
a.item("Size", "ExportedType:string:DropdownGroupSize");
|
|
170467
170666
|
a.item("Size@names", "Small;Medium;Large");
|
|
170468
170667
|
};
|
|
@@ -176624,6 +176823,87 @@ var WebTreeDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
176624
176823
|
return WebTreeDescription;
|
|
176625
176824
|
}(Description));
|
|
176626
176825
|
|
|
176826
|
+
/*
|
|
176827
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
176828
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
176829
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
176830
|
+
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.
|
|
176831
|
+
*/
|
|
176832
|
+
/**
|
|
176833
|
+
* @hidden
|
|
176834
|
+
*/
|
|
176835
|
+
var WebTreeSelectionOptionsEventDetailDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
176836
|
+
__extends(WebTreeSelectionOptionsEventDetailDescription, _super);
|
|
176837
|
+
function WebTreeSelectionOptionsEventDetailDescription() {
|
|
176838
|
+
var _this = _super.call(this) || this;
|
|
176839
|
+
_this.f = null;
|
|
176840
|
+
return _this;
|
|
176841
|
+
}
|
|
176842
|
+
WebTreeSelectionOptionsEventDetailDescription.prototype.get_type = function () {
|
|
176843
|
+
return "WebTreeSelectionOptionsEventDetail";
|
|
176844
|
+
};
|
|
176845
|
+
Object.defineProperty(WebTreeSelectionOptionsEventDetailDescription.prototype, "type", {
|
|
176846
|
+
get: function () {
|
|
176847
|
+
return this.get_type();
|
|
176848
|
+
},
|
|
176849
|
+
enumerable: false,
|
|
176850
|
+
configurable: true
|
|
176851
|
+
});
|
|
176852
|
+
Object.defineProperty(WebTreeSelectionOptionsEventDetailDescription.prototype, "newSelection", {
|
|
176853
|
+
get: function () {
|
|
176854
|
+
return this.f;
|
|
176855
|
+
},
|
|
176856
|
+
set: function (a) {
|
|
176857
|
+
this.f = a;
|
|
176858
|
+
this.e("NewSelection");
|
|
176859
|
+
},
|
|
176860
|
+
enumerable: false,
|
|
176861
|
+
configurable: true
|
|
176862
|
+
});
|
|
176863
|
+
WebTreeSelectionOptionsEventDetailDescription.$t = markType(WebTreeSelectionOptionsEventDetailDescription, 'WebTreeSelectionOptionsEventDetailDescription', Description.$);
|
|
176864
|
+
WebTreeSelectionOptionsEventDetailDescription.__marshalByValue = true;
|
|
176865
|
+
WebTreeSelectionOptionsEventDetailDescription.__marshalByValueAlias = "TreeSelectionOptionsEventDetail";
|
|
176866
|
+
return WebTreeSelectionOptionsEventDetailDescription;
|
|
176867
|
+
}(Description));
|
|
176868
|
+
|
|
176869
|
+
/*
|
|
176870
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
176871
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
176872
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
176873
|
+
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.
|
|
176874
|
+
*/
|
|
176875
|
+
/**
|
|
176876
|
+
* @hidden
|
|
176877
|
+
*/
|
|
176878
|
+
var WebTreeSelectionOptionsEventDetailDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
176879
|
+
__extends(WebTreeSelectionOptionsEventDetailDescriptionMetadata, _super);
|
|
176880
|
+
function WebTreeSelectionOptionsEventDetailDescriptionMetadata() {
|
|
176881
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
176882
|
+
}
|
|
176883
|
+
WebTreeSelectionOptionsEventDetailDescriptionMetadata.b = function (a) {
|
|
176884
|
+
if (WebTreeSelectionOptionsEventDetailDescriptionMetadata.a == null) {
|
|
176885
|
+
WebTreeSelectionOptionsEventDetailDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
|
|
176886
|
+
WebTreeSelectionOptionsEventDetailDescriptionMetadata.c(WebTreeSelectionOptionsEventDetailDescriptionMetadata.a);
|
|
176887
|
+
}
|
|
176888
|
+
if (a.g(WebTreeSelectionOptionsEventDetailDescriptionMetadata.a)) {
|
|
176889
|
+
return;
|
|
176890
|
+
}
|
|
176891
|
+
a.s(WebTreeSelectionOptionsEventDetailDescriptionMetadata.a);
|
|
176892
|
+
};
|
|
176893
|
+
WebTreeSelectionOptionsEventDetailDescriptionMetadata.c = function (a) {
|
|
176894
|
+
a.item("__qualifiedNameTS", "String:TreeSelectionOptionsEventDetail");
|
|
176895
|
+
a.item("NewSelection", "Collection:WebTreeItem:WebTreeItemCollection:WebTreeItem");
|
|
176896
|
+
};
|
|
176897
|
+
WebTreeSelectionOptionsEventDetailDescriptionMetadata.d = function (a) {
|
|
176898
|
+
WebTreeSelectionOptionsEventDetailDescriptionMetadata.b(a);
|
|
176899
|
+
a.u("WebTreeSelectionOptionsEventDetail", function () { return new WebTreeSelectionOptionsEventDetailDescription(); });
|
|
176900
|
+
a.t("WebTreeSelectionOptionsEventDetail", WebTreeSelectionOptionsEventDetailDescriptionMetadata.a);
|
|
176901
|
+
};
|
|
176902
|
+
WebTreeSelectionOptionsEventDetailDescriptionMetadata.$t = markType(WebTreeSelectionOptionsEventDetailDescriptionMetadata, 'WebTreeSelectionOptionsEventDetailDescriptionMetadata');
|
|
176903
|
+
WebTreeSelectionOptionsEventDetailDescriptionMetadata.a = null;
|
|
176904
|
+
return WebTreeSelectionOptionsEventDetailDescriptionMetadata;
|
|
176905
|
+
}(Base));
|
|
176906
|
+
|
|
176627
176907
|
/*
|
|
176628
176908
|
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
176629
176909
|
https://www.infragistics.com/legal/license/igultimate-la
|
|
@@ -176650,13 +176930,13 @@ var WebTreeSelectionOptionsEventArgsDescription = /** @class */ /*@__PURE__*/ (f
|
|
|
176650
176930
|
enumerable: false,
|
|
176651
176931
|
configurable: true
|
|
176652
176932
|
});
|
|
176653
|
-
Object.defineProperty(WebTreeSelectionOptionsEventArgsDescription.prototype, "
|
|
176933
|
+
Object.defineProperty(WebTreeSelectionOptionsEventArgsDescription.prototype, "detail", {
|
|
176654
176934
|
get: function () {
|
|
176655
176935
|
return this.f;
|
|
176656
176936
|
},
|
|
176657
176937
|
set: function (a) {
|
|
176658
176938
|
this.f = a;
|
|
176659
|
-
this.e("
|
|
176939
|
+
this.e("Detail");
|
|
176660
176940
|
},
|
|
176661
176941
|
enumerable: false,
|
|
176662
176942
|
configurable: true
|
|
@@ -176688,10 +176968,11 @@ var WebTreeSelectionOptionsEventArgsDescriptionMetadata = /** @class */ /*@__PUR
|
|
|
176688
176968
|
return;
|
|
176689
176969
|
}
|
|
176690
176970
|
a.s(WebTreeSelectionOptionsEventArgsDescriptionMetadata.a);
|
|
176971
|
+
WebTreeSelectionOptionsEventDetailDescriptionMetadata.d(a);
|
|
176691
176972
|
};
|
|
176692
176973
|
WebTreeSelectionOptionsEventArgsDescriptionMetadata.c = function (a) {
|
|
176693
176974
|
a.item("__qualifiedNameTS", "String:TreeSelectionOptionsEventArgs");
|
|
176694
|
-
a.item("
|
|
176975
|
+
a.item("Detail", "ExportedType:WebTreeSelectionOptionsEventDetail");
|
|
176695
176976
|
};
|
|
176696
176977
|
WebTreeSelectionOptionsEventArgsDescriptionMetadata.d = function (a) {
|
|
176697
176978
|
WebTreeSelectionOptionsEventArgsDescriptionMetadata.b(a);
|
|
@@ -176717,15 +176998,14 @@ var WebTreeItemDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
176717
176998
|
function WebTreeItemDescription() {
|
|
176718
176999
|
var _this = _super.call(this) || this;
|
|
176719
177000
|
_this.f = null;
|
|
176720
|
-
_this.
|
|
176721
|
-
_this.t = 0;
|
|
177001
|
+
_this.r = 0;
|
|
176722
177002
|
_this.v = null;
|
|
176723
177003
|
_this.j = false;
|
|
176724
177004
|
_this.h = false;
|
|
176725
177005
|
_this.i = false;
|
|
176726
|
-
_this.m = false;
|
|
176727
177006
|
_this.l = false;
|
|
176728
|
-
_this.
|
|
177007
|
+
_this.k = false;
|
|
177008
|
+
_this.t = null;
|
|
176729
177009
|
return _this;
|
|
176730
177010
|
}
|
|
176731
177011
|
WebTreeItemDescription.prototype.get_type = function () {
|
|
@@ -176749,23 +177029,12 @@ var WebTreeItemDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
176749
177029
|
enumerable: false,
|
|
176750
177030
|
configurable: true
|
|
176751
177031
|
});
|
|
176752
|
-
Object.defineProperty(WebTreeItemDescription.prototype, "init", {
|
|
176753
|
-
get: function () {
|
|
176754
|
-
return this.k;
|
|
176755
|
-
},
|
|
176756
|
-
set: function (a) {
|
|
176757
|
-
this.k = a;
|
|
176758
|
-
this.e("Init");
|
|
176759
|
-
},
|
|
176760
|
-
enumerable: false,
|
|
176761
|
-
configurable: true
|
|
176762
|
-
});
|
|
176763
177032
|
Object.defineProperty(WebTreeItemDescription.prototype, "level", {
|
|
176764
177033
|
get: function () {
|
|
176765
|
-
return this.
|
|
177034
|
+
return this.r;
|
|
176766
177035
|
},
|
|
176767
177036
|
set: function (a) {
|
|
176768
|
-
this.
|
|
177037
|
+
this.r = a;
|
|
176769
177038
|
this.e("Level");
|
|
176770
177039
|
},
|
|
176771
177040
|
enumerable: false,
|
|
@@ -176817,10 +177086,10 @@ var WebTreeItemDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
176817
177086
|
});
|
|
176818
177087
|
Object.defineProperty(WebTreeItemDescription.prototype, "selected", {
|
|
176819
177088
|
get: function () {
|
|
176820
|
-
return this.
|
|
177089
|
+
return this.l;
|
|
176821
177090
|
},
|
|
176822
177091
|
set: function (a) {
|
|
176823
|
-
this.
|
|
177092
|
+
this.l = a;
|
|
176824
177093
|
this.e("Selected");
|
|
176825
177094
|
},
|
|
176826
177095
|
enumerable: false,
|
|
@@ -176828,22 +177097,22 @@ var WebTreeItemDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
176828
177097
|
});
|
|
176829
177098
|
Object.defineProperty(WebTreeItemDescription.prototype, "loading", {
|
|
176830
177099
|
get: function () {
|
|
176831
|
-
return this.
|
|
177100
|
+
return this.k;
|
|
176832
177101
|
},
|
|
176833
177102
|
set: function (a) {
|
|
176834
|
-
this.
|
|
177103
|
+
this.k = a;
|
|
176835
177104
|
this.e("Loading");
|
|
176836
177105
|
},
|
|
176837
177106
|
enumerable: false,
|
|
176838
177107
|
configurable: true
|
|
176839
177108
|
});
|
|
176840
|
-
Object.defineProperty(WebTreeItemDescription.prototype, "
|
|
177109
|
+
Object.defineProperty(WebTreeItemDescription.prototype, "value", {
|
|
176841
177110
|
get: function () {
|
|
176842
|
-
return this.
|
|
177111
|
+
return this.t;
|
|
176843
177112
|
},
|
|
176844
177113
|
set: function (a) {
|
|
176845
|
-
this.
|
|
176846
|
-
this.e("
|
|
177114
|
+
this.t = a;
|
|
177115
|
+
this.e("Value");
|
|
176847
177116
|
},
|
|
176848
177117
|
enumerable: false,
|
|
176849
177118
|
configurable: true
|
|
@@ -176880,7 +177149,6 @@ var WebTreeItemDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_sup
|
|
|
176880
177149
|
WebTreeItemDescriptionMetadata.c = function (a) {
|
|
176881
177150
|
a.item("__qualifiedNameTS", "String:TreeItem");
|
|
176882
177151
|
a.item("Parent", "ExportedType:WebTreeItem");
|
|
176883
|
-
a.item("Init", "Boolean");
|
|
176884
177152
|
a.item("Level", "Number:double");
|
|
176885
177153
|
a.item("Label", "String");
|
|
176886
177154
|
a.item("Expanded", "Boolean");
|
|
@@ -176888,7 +177156,7 @@ var WebTreeItemDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_sup
|
|
|
176888
177156
|
a.item("Disabled", "Boolean");
|
|
176889
177157
|
a.item("Selected", "Boolean");
|
|
176890
177158
|
a.item("Loading", "Boolean");
|
|
176891
|
-
a.item("
|
|
177159
|
+
a.item("Value", "Unknown");
|
|
176892
177160
|
};
|
|
176893
177161
|
WebTreeItemDescriptionMetadata.d = function (a) {
|
|
176894
177162
|
WebTreeItemDescriptionMetadata.b(a);
|
|
@@ -177068,10 +177336,6 @@ var WebTreeDescriptionModule = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
177068
177336
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
177069
177337
|
}
|
|
177070
177338
|
WebTreeDescriptionModule.register = function (a) {
|
|
177071
|
-
WebTreeItemDescriptionModule.register(a);
|
|
177072
|
-
WebTreeItemDescriptionModule.register(a);
|
|
177073
|
-
WebTreeItemDescriptionModule.register(a);
|
|
177074
|
-
WebTreeItemDescriptionModule.register(a);
|
|
177075
177339
|
WebTreeItemDescriptionModule.register(a);
|
|
177076
177340
|
WebTreeDescriptionMetadata.d(a);
|
|
177077
177341
|
};
|
|
@@ -217867,4 +218131,4 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
|
|
|
217867
218131
|
* Generated bundle index. Do not edit.
|
|
217868
218132
|
*/
|
|
217869
218133
|
|
|
217870
|
-
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 };
|
|
218134
|
+
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 };
|