igniteui-angular-core 14.0.0 → 14.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-angular-core.umd.js +960 -730
- package/bundles/igniteui-angular-core.umd.min.js +1 -1
- package/esm2015/lib/BlazorCodeGeneratingComponentRendererModuleEmitter.js +9 -9
- package/esm2015/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +382 -314
- package/esm2015/lib/CodeGeneratingComponentRendererDataEmitter.js +2 -2
- package/esm2015/lib/CodeGeneratingComponentRendererHandlerEmitter.js +2 -2
- package/esm2015/lib/CodeGeneratingComponentRendererModuleEmitter.js +14 -11
- package/esm2015/lib/CodeGeneratingRendererResult.js +56 -44
- package/esm2015/lib/CodeGenerationFolderTemplate.js +41 -37
- package/esm2015/lib/ComponentRendererAdapter.js +3 -0
- package/esm2015/lib/ComponentRenderer_combined.js +1 -1
- package/esm2015/lib/DescriptionSerializer.js +70 -56
- package/esm2015/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.js +24 -22
- package/esm2015/lib/StackedFragmentSeriesDescription.js +121 -121
- package/esm2015/lib/StackedFragmentSeriesDescriptionMetadata.js +1 -1
- package/esm2015/lib/TSCodeGeneratingComponentRendererModuleEmitter.js +36 -34
- package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescription.js +3 -3
- package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +3 -1
- package/esm2015/lib/WebTreeSelectionOptionsEventDetailDescription.js +36 -0
- package/esm2015/lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata.js +38 -0
- package/esm2015/public_api.js +2 -0
- package/esm5/lib/BlazorCodeGeneratingComponentRendererModuleEmitter.js +9 -9
- package/esm5/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +449 -363
- package/esm5/lib/CodeGeneratingComponentRendererDataEmitter.js +2 -2
- package/esm5/lib/CodeGeneratingComponentRendererHandlerEmitter.js +2 -2
- package/esm5/lib/CodeGeneratingComponentRendererModuleEmitter.js +18 -11
- package/esm5/lib/CodeGeneratingRendererResult.js +95 -66
- package/esm5/lib/CodeGenerationFolderTemplate.js +40 -36
- package/esm5/lib/ComponentRendererAdapter.js +3 -0
- package/esm5/lib/ComponentRenderer_combined.js +1 -1
- package/esm5/lib/DescriptionSerializer.js +70 -56
- package/esm5/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.js +24 -22
- package/esm5/lib/StackedFragmentSeriesDescription.js +120 -120
- package/esm5/lib/StackedFragmentSeriesDescriptionMetadata.js +1 -1
- package/esm5/lib/TSCodeGeneratingComponentRendererModuleEmitter.js +36 -34
- package/esm5/lib/WebTreeSelectionOptionsEventArgsDescription.js +2 -2
- package/esm5/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +3 -1
- package/esm5/lib/WebTreeSelectionOptionsEventDetailDescription.js +46 -0
- package/esm5/lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata.js +42 -0
- package/esm5/public_api.js +2 -0
- package/fesm2015/igniteui-angular-core.js +837 -658
- package/fesm5/igniteui-angular-core.js +959 -731
- package/lib/BlazorCodeGeneratingComponentRendererModuleEmitter.d.ts +3 -3
- package/lib/CodeGeneratingComponentRendererCodeEmitter_combined.d.ts +120 -114
- package/lib/CodeGeneratingComponentRendererModuleEmitter.d.ts +6 -5
- package/lib/CodeGeneratingRendererResult.d.ts +15 -12
- package/lib/DescriptionSerializer.d.ts +7 -6
- package/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.d.ts +7 -7
- package/lib/StackedFragmentSeriesDescription.d.ts +46 -46
- package/lib/TSCodeGeneratingComponentRendererModuleEmitter.d.ts +7 -7
- package/lib/WebTreeSelectionOptionsEventArgsDescription.d.ts +3 -3
- package/lib/WebTreeSelectionOptionsEventDetailDescription.d.ts +17 -0
- package/lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata.d.ts +13 -0
- package/package.json +1 -1
- package/public_api.d.ts +2 -0
|
@@ -58898,6 +58898,9 @@ var ComponentRendererAdapter = /** @class */ /*@__PURE__*/ (function () {
|
|
|
58898
58898
|
if (propertyName.endsWith("Ocurred")) {
|
|
58899
58899
|
propertyName = propertyName.replace("Ocurred", "");
|
|
58900
58900
|
}
|
|
58901
|
+
if (propertyName.toLowerCase() == "selectionchanged") {
|
|
58902
|
+
propertyName = "selection";
|
|
58903
|
+
}
|
|
58901
58904
|
var eventId = "igc" + TypeDescriptionMetadata.toPascal(propertyName);
|
|
58902
58905
|
if (value) {
|
|
58903
58906
|
target.addEventListener(eventId, value);
|
|
@@ -59507,21 +59510,22 @@ var CodeGeneratingRendererResult = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
59507
59510
|
__extends(CodeGeneratingRendererResult, _super);
|
|
59508
59511
|
function CodeGeneratingRendererResult() {
|
|
59509
59512
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
59510
|
-
_this.
|
|
59513
|
+
_this.p = new List$1(CodeGenerationItemBuilderPropertyInfo.$, 0);
|
|
59511
59514
|
_this._platform = 0;
|
|
59512
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);
|
|
59513
59518
|
_this.j = new Dictionary$2(String_$type, List$1.$.specialize(String_$type), 0);
|
|
59514
|
-
_this.
|
|
59515
|
-
_this.i = new Dictionary$2(String_$type, List$1.$.specialize(String_$type), 0);
|
|
59516
|
-
_this.g = new Dictionary$2(String_$type, Number_$type, 0);
|
|
59517
|
-
_this.m = new Dictionary$2(String_$type, String_$type, 0);
|
|
59518
|
-
_this.k = new Dictionary$2(String_$type, String_$type, 0);
|
|
59519
|
+
_this.o = new HashSet$1(String_$type, 0);
|
|
59519
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);
|
|
59520
59524
|
return _this;
|
|
59521
59525
|
}
|
|
59522
|
-
Object.defineProperty(CodeGeneratingRendererResult.prototype, "
|
|
59526
|
+
Object.defineProperty(CodeGeneratingRendererResult.prototype, "s", {
|
|
59523
59527
|
get: function () {
|
|
59524
|
-
return this.
|
|
59528
|
+
return this.p;
|
|
59525
59529
|
},
|
|
59526
59530
|
enumerable: false,
|
|
59527
59531
|
configurable: true
|
|
@@ -59546,32 +59550,35 @@ var CodeGeneratingRendererResult = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
59546
59550
|
enumerable: false,
|
|
59547
59551
|
configurable: true
|
|
59548
59552
|
});
|
|
59553
|
+
CodeGeneratingRendererResult.prototype.addPackageRef = function (a) {
|
|
59554
|
+
this.o.add_1(a);
|
|
59555
|
+
};
|
|
59549
59556
|
CodeGeneratingRendererResult.prototype.addContainerResult = function (a, b) {
|
|
59550
|
-
if (!this.
|
|
59551
|
-
this.
|
|
59557
|
+
if (!this.k.containsKey(a)) {
|
|
59558
|
+
this.k.addItem(a, new List$1(String_$type, 0));
|
|
59552
59559
|
}
|
|
59553
|
-
var c = this.
|
|
59560
|
+
var c = this.k.item(a);
|
|
59554
59561
|
c.add(b);
|
|
59555
59562
|
};
|
|
59556
59563
|
CodeGeneratingRendererResult.prototype.addImportResult = function (a, b) {
|
|
59557
|
-
if (!this.
|
|
59558
|
-
this.
|
|
59564
|
+
if (!this.m.containsKey(a)) {
|
|
59565
|
+
this.m.addItem(a, new List$1(CodeGeneratingImportManager.$, 0));
|
|
59559
59566
|
}
|
|
59560
|
-
var c = this.
|
|
59567
|
+
var c = this.m.item(a);
|
|
59561
59568
|
c.add(b);
|
|
59562
59569
|
};
|
|
59563
59570
|
CodeGeneratingRendererResult.prototype.addContainerNewFileResult = function (a, b) {
|
|
59564
|
-
if (!this.
|
|
59565
|
-
this.
|
|
59571
|
+
if (!this.j.containsKey(a)) {
|
|
59572
|
+
this.j.addItem(a, new List$1(String_$type, 0));
|
|
59566
59573
|
}
|
|
59567
|
-
var c = this.
|
|
59574
|
+
var c = this.j.item(a);
|
|
59568
59575
|
c.add(b);
|
|
59569
59576
|
};
|
|
59570
|
-
CodeGeneratingRendererResult.prototype.
|
|
59577
|
+
CodeGeneratingRendererResult.prototype.getPackages = function () {
|
|
59571
59578
|
var e_1, _a;
|
|
59572
59579
|
var a = new List$1(String_$type, 0);
|
|
59573
59580
|
try {
|
|
59574
|
-
for (var _b = __values(fromEnum(this.
|
|
59581
|
+
for (var _b = __values(fromEnum(this.o)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
59575
59582
|
var b = _c.value;
|
|
59576
59583
|
a.add(b);
|
|
59577
59584
|
}
|
|
@@ -59591,11 +59598,11 @@ var CodeGeneratingRendererResult = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
59591
59598
|
}
|
|
59592
59599
|
return a.toArray();
|
|
59593
59600
|
};
|
|
59594
|
-
CodeGeneratingRendererResult.prototype.
|
|
59601
|
+
CodeGeneratingRendererResult.prototype.getKeys = function () {
|
|
59595
59602
|
var e_2, _a;
|
|
59596
59603
|
var a = new List$1(String_$type, 0);
|
|
59597
59604
|
try {
|
|
59598
|
-
for (var _b = __values(fromEnum(this.
|
|
59605
|
+
for (var _b = __values(fromEnum(this.k.keys)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
59599
59606
|
var b = _c.value;
|
|
59600
59607
|
a.add(b);
|
|
59601
59608
|
}
|
|
@@ -59615,12 +59622,36 @@ var CodeGeneratingRendererResult = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
59615
59622
|
}
|
|
59616
59623
|
return a.toArray();
|
|
59617
59624
|
};
|
|
59618
|
-
CodeGeneratingRendererResult.prototype.
|
|
59625
|
+
CodeGeneratingRendererResult.prototype.getImportsKeys = function () {
|
|
59619
59626
|
var e_3, _a;
|
|
59620
|
-
|
|
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)) {
|
|
59621
59652
|
return "";
|
|
59622
59653
|
}
|
|
59623
|
-
var b = this.
|
|
59654
|
+
var b = this.k.item(a);
|
|
59624
59655
|
if (b.count == 1) {
|
|
59625
59656
|
return b._inner[0];
|
|
59626
59657
|
}
|
|
@@ -59631,8 +59662,8 @@ var CodeGeneratingRendererResult = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
59631
59662
|
c += d;
|
|
59632
59663
|
}
|
|
59633
59664
|
}
|
|
59634
|
-
catch (
|
|
59635
|
-
|
|
59665
|
+
catch (e_4_1) {
|
|
59666
|
+
e_4 = { error: e_4_1 };
|
|
59636
59667
|
}
|
|
59637
59668
|
finally {
|
|
59638
59669
|
try {
|
|
@@ -59640,41 +59671,41 @@ var CodeGeneratingRendererResult = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
59640
59671
|
_a.call(_b);
|
|
59641
59672
|
}
|
|
59642
59673
|
finally {
|
|
59643
|
-
if (
|
|
59644
|
-
throw
|
|
59674
|
+
if (e_4)
|
|
59675
|
+
throw e_4.error;
|
|
59645
59676
|
}
|
|
59646
59677
|
}
|
|
59647
59678
|
return c;
|
|
59648
59679
|
};
|
|
59649
|
-
CodeGeneratingRendererResult.prototype.
|
|
59650
|
-
if (!this.
|
|
59680
|
+
CodeGeneratingRendererResult.prototype.q = function (a) {
|
|
59681
|
+
if (!this.m.containsKey(a)) {
|
|
59651
59682
|
return null;
|
|
59652
59683
|
}
|
|
59653
|
-
return this.
|
|
59684
|
+
return this.m.item(a);
|
|
59654
59685
|
};
|
|
59655
|
-
CodeGeneratingRendererResult.prototype.
|
|
59656
|
-
if (!this.
|
|
59657
|
-
this.
|
|
59686
|
+
CodeGeneratingRendererResult.prototype.t = function (a) {
|
|
59687
|
+
if (!this.h.containsKey(a)) {
|
|
59688
|
+
this.h.item(a, 1);
|
|
59658
59689
|
}
|
|
59659
|
-
var b = this.
|
|
59690
|
+
var b = this.h.item(a);
|
|
59660
59691
|
var c = a + b;
|
|
59661
|
-
this.
|
|
59692
|
+
this.h.item(a, b + 1);
|
|
59662
59693
|
return c;
|
|
59663
59694
|
};
|
|
59664
|
-
CodeGeneratingRendererResult.prototype.
|
|
59665
|
-
this.
|
|
59695
|
+
CodeGeneratingRendererResult.prototype.ae = function (a) {
|
|
59696
|
+
this.p.add(a);
|
|
59666
59697
|
};
|
|
59667
59698
|
CodeGeneratingRendererResult.prototype.getNewFiles = function () {
|
|
59668
|
-
var
|
|
59699
|
+
var e_5, _a;
|
|
59669
59700
|
var a = new List$1(String_$type, 0);
|
|
59670
59701
|
try {
|
|
59671
|
-
for (var _b = __values(fromEnum(this.
|
|
59702
|
+
for (var _b = __values(fromEnum(this.j.keys)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
59672
59703
|
var b = _c.value;
|
|
59673
59704
|
a.add(b);
|
|
59674
59705
|
}
|
|
59675
59706
|
}
|
|
59676
|
-
catch (
|
|
59677
|
-
|
|
59707
|
+
catch (e_5_1) {
|
|
59708
|
+
e_5 = { error: e_5_1 };
|
|
59678
59709
|
}
|
|
59679
59710
|
finally {
|
|
59680
59711
|
try {
|
|
@@ -59682,15 +59713,15 @@ var CodeGeneratingRendererResult = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
59682
59713
|
_a.call(_b);
|
|
59683
59714
|
}
|
|
59684
59715
|
finally {
|
|
59685
|
-
if (
|
|
59686
|
-
throw
|
|
59716
|
+
if (e_5)
|
|
59717
|
+
throw e_5.error;
|
|
59687
59718
|
}
|
|
59688
59719
|
}
|
|
59689
59720
|
return a;
|
|
59690
59721
|
};
|
|
59691
59722
|
CodeGeneratingRendererResult.prototype.getNewFileContent = function (a) {
|
|
59692
|
-
var
|
|
59693
|
-
var b = this.
|
|
59723
|
+
var e_6, _a;
|
|
59724
|
+
var b = this.j.item(a);
|
|
59694
59725
|
var c = "";
|
|
59695
59726
|
try {
|
|
59696
59727
|
for (var _b = __values(fromEnum(b)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
@@ -59698,8 +59729,8 @@ var CodeGeneratingRendererResult = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
59698
59729
|
c += d;
|
|
59699
59730
|
}
|
|
59700
59731
|
}
|
|
59701
|
-
catch (
|
|
59702
|
-
|
|
59732
|
+
catch (e_6_1) {
|
|
59733
|
+
e_6 = { error: e_6_1 };
|
|
59703
59734
|
}
|
|
59704
59735
|
finally {
|
|
59705
59736
|
try {
|
|
@@ -59707,26 +59738,26 @@ var CodeGeneratingRendererResult = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
59707
59738
|
_a.call(_b);
|
|
59708
59739
|
}
|
|
59709
59740
|
finally {
|
|
59710
|
-
if (
|
|
59711
|
-
throw
|
|
59741
|
+
if (e_6)
|
|
59742
|
+
throw e_6.error;
|
|
59712
59743
|
}
|
|
59713
59744
|
}
|
|
59714
59745
|
return c;
|
|
59715
59746
|
};
|
|
59716
59747
|
CodeGeneratingRendererResult.prototype.defineString = function (a, b) {
|
|
59717
|
-
this.
|
|
59748
|
+
this.n.item(a, b);
|
|
59718
59749
|
};
|
|
59719
59750
|
CodeGeneratingRendererResult.prototype.getStringNames = function () {
|
|
59720
|
-
var
|
|
59751
|
+
var e_7, _a;
|
|
59721
59752
|
var a = new List$1(String_$type, 0);
|
|
59722
59753
|
try {
|
|
59723
|
-
for (var _b = __values(fromEnum(this.
|
|
59754
|
+
for (var _b = __values(fromEnum(this.n.keys)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
59724
59755
|
var b = _c.value;
|
|
59725
59756
|
a.add(b);
|
|
59726
59757
|
}
|
|
59727
59758
|
}
|
|
59728
|
-
catch (
|
|
59729
|
-
|
|
59759
|
+
catch (e_7_1) {
|
|
59760
|
+
e_7 = { error: e_7_1 };
|
|
59730
59761
|
}
|
|
59731
59762
|
finally {
|
|
59732
59763
|
try {
|
|
@@ -59734,34 +59765,34 @@ var CodeGeneratingRendererResult = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
59734
59765
|
_a.call(_b);
|
|
59735
59766
|
}
|
|
59736
59767
|
finally {
|
|
59737
|
-
if (
|
|
59738
|
-
throw
|
|
59768
|
+
if (e_7)
|
|
59769
|
+
throw e_7.error;
|
|
59739
59770
|
}
|
|
59740
59771
|
}
|
|
59741
59772
|
return a.toArray();
|
|
59742
59773
|
};
|
|
59743
59774
|
CodeGeneratingRendererResult.prototype.getString = function (a) {
|
|
59744
|
-
return this.
|
|
59775
|
+
return this.n.item(a);
|
|
59745
59776
|
};
|
|
59746
59777
|
CodeGeneratingRendererResult.prototype.trackDescriptionField = function (a, b) {
|
|
59747
|
-
this.
|
|
59778
|
+
this.l.item(a, b);
|
|
59748
59779
|
};
|
|
59749
59780
|
CodeGeneratingRendererResult.prototype.hasDescription = function (a) {
|
|
59750
|
-
return this.
|
|
59781
|
+
return this.l.containsKey(a);
|
|
59751
59782
|
};
|
|
59752
59783
|
CodeGeneratingRendererResult.prototype.getDescriptionField = function (a) {
|
|
59753
|
-
return this.
|
|
59784
|
+
return this.l.item(a);
|
|
59754
59785
|
};
|
|
59755
|
-
CodeGeneratingRendererResult.prototype.
|
|
59786
|
+
CodeGeneratingRendererResult.prototype.u = function (a) {
|
|
59756
59787
|
var b = 0;
|
|
59757
|
-
if (!this.
|
|
59758
|
-
this.
|
|
59788
|
+
if (!this.i.containsKey(a)) {
|
|
59789
|
+
this.i.addItem(a, b);
|
|
59759
59790
|
}
|
|
59760
59791
|
else {
|
|
59761
|
-
b = this.
|
|
59792
|
+
b = this.i.item(a);
|
|
59762
59793
|
}
|
|
59763
59794
|
b++;
|
|
59764
|
-
this.
|
|
59795
|
+
this.i.item(a, b);
|
|
59765
59796
|
return a + b;
|
|
59766
59797
|
};
|
|
59767
59798
|
CodeGeneratingRendererResult.$t = markType(CodeGeneratingRendererResult, 'CodeGeneratingRendererResult');
|
|
@@ -60771,8 +60802,8 @@ var CodeGeneratingComponentRendererDataEmitter = /** @class */ /*@__PURE__*/ (fu
|
|
|
60771
60802
|
}
|
|
60772
60803
|
}
|
|
60773
60804
|
var n = new HashSet$1(String_$type, 0);
|
|
60774
|
-
for (var o = 0; o < this.m.
|
|
60775
|
-
var p = this.m.
|
|
60805
|
+
for (var o = 0; o < this.m.s.count; o++) {
|
|
60806
|
+
var p = this.m.s._inner[o];
|
|
60776
60807
|
if (p.a != null && p.c == null) {
|
|
60777
60808
|
if (this.o.library != null && this.o.library.hasItem(p.a.e)) {
|
|
60778
60809
|
if (n.contains(p.a.e)) {
|
|
@@ -62033,14 +62064,14 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
62033
62064
|
_this.e = false;
|
|
62034
62065
|
return _this;
|
|
62035
62066
|
}
|
|
62036
|
-
DescriptionSerializer.prototype.
|
|
62067
|
+
DescriptionSerializer.prototype.p = function (a, b) {
|
|
62037
62068
|
var c = DescriptionTreeBuilder.createTree(a, b);
|
|
62038
62069
|
var d = new DescriptionSerializerBuilder();
|
|
62039
|
-
this.
|
|
62070
|
+
this.q(a, c, d);
|
|
62040
62071
|
return d.toString();
|
|
62041
62072
|
};
|
|
62042
|
-
DescriptionSerializer.prototype.
|
|
62043
|
-
this.
|
|
62073
|
+
DescriptionSerializer.prototype.t = function (a, b, c) {
|
|
62074
|
+
this.q(a, b, c);
|
|
62044
62075
|
};
|
|
62045
62076
|
DescriptionSerializer.prototype.c = function (a, b) {
|
|
62046
62077
|
var c = new JsonDictionaryParser();
|
|
@@ -62065,7 +62096,7 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
62065
62096
|
this.e = false;
|
|
62066
62097
|
return g;
|
|
62067
62098
|
};
|
|
62068
|
-
DescriptionSerializer.prototype.
|
|
62099
|
+
DescriptionSerializer.prototype.v = function (a, b, c, d, e) {
|
|
62069
62100
|
if (this.g) {
|
|
62070
62101
|
a.w(b, c, d, e);
|
|
62071
62102
|
}
|
|
@@ -62129,14 +62160,14 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
62129
62160
|
break;
|
|
62130
62161
|
}
|
|
62131
62162
|
if (!this.e) {
|
|
62132
|
-
this.
|
|
62163
|
+
this.v(a, h, k, l, q);
|
|
62133
62164
|
}
|
|
62134
62165
|
}
|
|
62135
62166
|
else if (typeCast(JsonDictionaryObject.$, p) !== null) {
|
|
62136
62167
|
var r = p;
|
|
62137
62168
|
var s = this.b(a, r, l.knownType);
|
|
62138
62169
|
f.e(s);
|
|
62139
|
-
this.
|
|
62170
|
+
this.v(a, h, k, l, s.result);
|
|
62140
62171
|
}
|
|
62141
62172
|
else if (typeCast(JsonDictionaryArray.$, p) !== null) {
|
|
62142
62173
|
var t = p;
|
|
@@ -62150,50 +62181,64 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
62150
62181
|
u = l.collectionElementType;
|
|
62151
62182
|
}
|
|
62152
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
|
+
}
|
|
62153
62194
|
if (!this.e || v) {
|
|
62154
|
-
this.
|
|
62195
|
+
this.v(a, h, k, l, w);
|
|
62155
62196
|
}
|
|
62156
62197
|
}
|
|
62157
62198
|
else {
|
|
62158
|
-
var
|
|
62159
|
-
if (
|
|
62160
|
-
|
|
62199
|
+
var aa = l.specificExternalType;
|
|
62200
|
+
if (aa == null && l.knownType == 3) {
|
|
62201
|
+
aa = "DateTime";
|
|
62161
62202
|
}
|
|
62162
|
-
if (
|
|
62163
|
-
|
|
62203
|
+
if (aa == null) {
|
|
62204
|
+
aa = "String";
|
|
62164
62205
|
}
|
|
62165
|
-
var
|
|
62166
|
-
var
|
|
62206
|
+
var ab = p;
|
|
62207
|
+
var ac = this.j(f, a, ab, aa);
|
|
62167
62208
|
if (this.f) {
|
|
62168
|
-
if (stringEndsWith(l.propertyName, "MemberPath") || (g != null && stringEndsWith(g, "Axis") && l.propertyName.toLowerCase() == "label")) {
|
|
62169
|
-
|
|
62170
|
-
if (this.i != null) {
|
|
62171
|
-
z = this.i(aa);
|
|
62172
|
-
}
|
|
62173
|
-
else {
|
|
62174
|
-
if (stringStartsWith(aa, "{")) {
|
|
62175
|
-
if (!stringStartsWith(aa, "{[")) {
|
|
62176
|
-
aa = aa.substr(1, aa.length - 2);
|
|
62177
|
-
aa = "{[" + aa + "]}";
|
|
62178
|
-
z = aa;
|
|
62179
|
-
}
|
|
62180
|
-
}
|
|
62181
|
-
else {
|
|
62182
|
-
if (!stringStartsWith(aa, "[")) {
|
|
62183
|
-
aa = "[" + aa + "]";
|
|
62184
|
-
z = aa;
|
|
62185
|
-
}
|
|
62186
|
-
}
|
|
62187
|
-
}
|
|
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);
|
|
62188
62211
|
}
|
|
62189
62212
|
}
|
|
62190
62213
|
if (!this.e) {
|
|
62191
|
-
this.
|
|
62214
|
+
this.v(a, h, k, l, ac);
|
|
62192
62215
|
}
|
|
62193
62216
|
}
|
|
62194
62217
|
}
|
|
62195
62218
|
return f;
|
|
62196
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
|
+
};
|
|
62197
62242
|
DescriptionSerializer.prototype.k = function (a, b) {
|
|
62198
62243
|
if (b == null) {
|
|
62199
62244
|
return null;
|
|
@@ -62312,7 +62357,7 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
62312
62357
|
return c.value;
|
|
62313
62358
|
}
|
|
62314
62359
|
};
|
|
62315
|
-
DescriptionSerializer.prototype.
|
|
62360
|
+
DescriptionSerializer.prototype.q = function (a, b, c) {
|
|
62316
62361
|
c.f("{");
|
|
62317
62362
|
c.i();
|
|
62318
62363
|
c.f("\"type\": \"" + b.h + "\"");
|
|
@@ -62322,25 +62367,25 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
62322
62367
|
if (e >= 0) {
|
|
62323
62368
|
c.f(",");
|
|
62324
62369
|
}
|
|
62325
|
-
this.
|
|
62370
|
+
this.r(a, b, f, c);
|
|
62326
62371
|
}
|
|
62327
62372
|
c.h();
|
|
62328
62373
|
c.f("}");
|
|
62329
62374
|
};
|
|
62330
|
-
DescriptionSerializer.prototype.
|
|
62375
|
+
DescriptionSerializer.prototype.o = function (a) {
|
|
62331
62376
|
if (a == null) {
|
|
62332
62377
|
return null;
|
|
62333
62378
|
}
|
|
62334
62379
|
return a.substr(0, 1).toLowerCase() + a.substr(1);
|
|
62335
62380
|
};
|
|
62336
|
-
DescriptionSerializer.prototype.
|
|
62381
|
+
DescriptionSerializer.prototype.r = function (a, b, c, d) {
|
|
62337
62382
|
if (c.c.toLowerCase() == "type") {
|
|
62338
62383
|
return;
|
|
62339
62384
|
}
|
|
62340
|
-
d.e("\"" + this.
|
|
62341
|
-
this.
|
|
62385
|
+
d.e("\"" + this.o(c.c) + "\": ");
|
|
62386
|
+
this.u(a, b, c, c.b, d);
|
|
62342
62387
|
};
|
|
62343
|
-
DescriptionSerializer.prototype.
|
|
62388
|
+
DescriptionSerializer.prototype.u = function (a, b, c, d, e) {
|
|
62344
62389
|
var f = 2;
|
|
62345
62390
|
if (c.a != null) {
|
|
62346
62391
|
f = c.a.knownType;
|
|
@@ -62362,17 +62407,17 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
62362
62407
|
}
|
|
62363
62408
|
var j = h;
|
|
62364
62409
|
if (typeCast(DescriptionTreeNode.$, g[i]) !== null) {
|
|
62365
|
-
this.
|
|
62410
|
+
this.q(a, g[i], e);
|
|
62366
62411
|
}
|
|
62367
62412
|
else {
|
|
62368
|
-
this.
|
|
62413
|
+
this.s(a, h, g[i], e);
|
|
62369
62414
|
}
|
|
62370
62415
|
}
|
|
62371
62416
|
e.e("]");
|
|
62372
62417
|
}
|
|
62373
62418
|
break;
|
|
62374
62419
|
case 7:
|
|
62375
|
-
this.
|
|
62420
|
+
this.s(a, "Boolean", d, e);
|
|
62376
62421
|
break;
|
|
62377
62422
|
case 9:
|
|
62378
62423
|
{
|
|
@@ -62385,10 +62430,10 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
62385
62430
|
}
|
|
62386
62431
|
var n = l;
|
|
62387
62432
|
if (typeCast(DescriptionTreeNode.$, k[m]) !== null) {
|
|
62388
|
-
this.
|
|
62433
|
+
this.q(a, k[m], e);
|
|
62389
62434
|
}
|
|
62390
62435
|
else {
|
|
62391
|
-
this.
|
|
62436
|
+
this.s(a, l, k[m], e);
|
|
62392
62437
|
}
|
|
62393
62438
|
}
|
|
62394
62439
|
e.e("]");
|
|
@@ -62400,29 +62445,29 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
62400
62445
|
case 20:
|
|
62401
62446
|
case 5:
|
|
62402
62447
|
case 2:
|
|
62403
|
-
this.
|
|
62448
|
+
this.s(a, "String", d, e);
|
|
62404
62449
|
break;
|
|
62405
62450
|
case 3:
|
|
62406
|
-
this.
|
|
62451
|
+
this.s(a, "DateTime", d, e);
|
|
62407
62452
|
break;
|
|
62408
62453
|
case 8:
|
|
62409
62454
|
if (c.a.specificExternalType.toLowerCase() == "string") {
|
|
62410
|
-
this.
|
|
62455
|
+
this.s(a, "String", d, e);
|
|
62411
62456
|
}
|
|
62412
62457
|
else {
|
|
62413
|
-
this.
|
|
62458
|
+
this.q(a, d, e);
|
|
62414
62459
|
}
|
|
62415
62460
|
break;
|
|
62416
62461
|
case 1:
|
|
62417
|
-
this.
|
|
62462
|
+
this.s(a, "Double", d, e);
|
|
62418
62463
|
break;
|
|
62419
62464
|
case 14:
|
|
62420
62465
|
case 12:
|
|
62421
62466
|
case 11:
|
|
62422
|
-
this.
|
|
62467
|
+
this.q(a, d, e);
|
|
62423
62468
|
break;
|
|
62424
62469
|
case 21:
|
|
62425
|
-
this.
|
|
62470
|
+
this.s(a, "TimeSpan", d, e);
|
|
62426
62471
|
break;
|
|
62427
62472
|
case 17:
|
|
62428
62473
|
case 0:
|
|
@@ -62430,7 +62475,7 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
62430
62475
|
case 13: throw new NotImplementedException(0);
|
|
62431
62476
|
}
|
|
62432
62477
|
};
|
|
62433
|
-
DescriptionSerializer.prototype.
|
|
62478
|
+
DescriptionSerializer.prototype.s = function (a, b, c, d) {
|
|
62434
62479
|
switch (b.toLowerCase()) {
|
|
62435
62480
|
case "string":
|
|
62436
62481
|
if (c == null) {
|
|
@@ -63285,7 +63330,7 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
63285
63330
|
}
|
|
63286
63331
|
b.e("\"" + h + "\"");
|
|
63287
63332
|
b.e(": ");
|
|
63288
|
-
c.
|
|
63333
|
+
c.t(this.context, g, b);
|
|
63289
63334
|
}
|
|
63290
63335
|
}
|
|
63291
63336
|
catch (e_1_1) {
|
|
@@ -65269,8 +65314,8 @@ var CodeGeneratingComponentRendererHandlerEmitter = /** @class */ /*@__PURE__*/
|
|
|
65269
65314
|
});
|
|
65270
65315
|
CodeGeneratingComponentRendererHandlerEmitter.prototype.j = function () {
|
|
65271
65316
|
var a = new HashSet$1(String_$type, 0);
|
|
65272
|
-
for (var b = 0; b < this.e.
|
|
65273
|
-
var c = this.e.
|
|
65317
|
+
for (var b = 0; b < this.e.s.count; b++) {
|
|
65318
|
+
var c = this.e.s._inner[b];
|
|
65274
65319
|
if (c.a != null && c.c == null) {
|
|
65275
65320
|
if (this.g.library != null && this.g.library.hasItem(c.a.e)) {
|
|
65276
65321
|
if (a.contains(c.a.e)) {
|
|
@@ -65507,18 +65552,25 @@ var CodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE__*/ (
|
|
|
65507
65552
|
__extends(CodeGeneratingComponentRendererModuleEmitter, _super);
|
|
65508
65553
|
function CodeGeneratingComponentRendererModuleEmitter(a, b) {
|
|
65509
65554
|
var _this = _super.call(this) || this;
|
|
65510
|
-
_this.
|
|
65555
|
+
_this.k = null;
|
|
65511
65556
|
_this.i = null;
|
|
65512
65557
|
_this.b = null;
|
|
65513
65558
|
_this.f = new CodeGeneratingImportManager();
|
|
65514
65559
|
_this.e = new CodeGeneratingImportManager();
|
|
65515
65560
|
_this.a = null;
|
|
65516
|
-
_this.
|
|
65561
|
+
_this.k = a;
|
|
65517
65562
|
_this.i = b;
|
|
65518
|
-
_this.b = new CodeGeneratingCodeWriter(_this.
|
|
65519
|
-
_this.a = new CodeGeneratingCodeWriter(_this.
|
|
65563
|
+
_this.b = new CodeGeneratingCodeWriter(_this.k);
|
|
65564
|
+
_this.a = new CodeGeneratingCodeWriter(_this.k);
|
|
65520
65565
|
return _this;
|
|
65521
65566
|
}
|
|
65567
|
+
Object.defineProperty(CodeGeneratingComponentRendererModuleEmitter.prototype, "j", {
|
|
65568
|
+
get: function () {
|
|
65569
|
+
return this.i;
|
|
65570
|
+
},
|
|
65571
|
+
enumerable: false,
|
|
65572
|
+
configurable: true
|
|
65573
|
+
});
|
|
65522
65574
|
Object.defineProperty(CodeGeneratingComponentRendererModuleEmitter.prototype, "d", {
|
|
65523
65575
|
get: function () {
|
|
65524
65576
|
return this.b;
|
|
@@ -65547,8 +65599,8 @@ var CodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE__*/ (
|
|
|
65547
65599
|
enumerable: false,
|
|
65548
65600
|
configurable: true
|
|
65549
65601
|
});
|
|
65550
|
-
CodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
65551
|
-
this.
|
|
65602
|
+
CodeGeneratingComponentRendererModuleEmitter.prototype.m = function (a) {
|
|
65603
|
+
this.o();
|
|
65552
65604
|
if (typeCast(JsonDictionaryArray.$, a) !== null) {
|
|
65553
65605
|
var b = a;
|
|
65554
65606
|
for (var c = 0; c < b.items.length; c++) {
|
|
@@ -65557,22 +65609,22 @@ var CodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE__*/ (
|
|
|
65557
65609
|
var e = d;
|
|
65558
65610
|
if (e != null) {
|
|
65559
65611
|
var f = e.value.toString();
|
|
65560
|
-
this.
|
|
65612
|
+
this.l(f);
|
|
65561
65613
|
}
|
|
65562
65614
|
}
|
|
65563
65615
|
}
|
|
65564
65616
|
}
|
|
65565
|
-
this.
|
|
65617
|
+
this.n();
|
|
65566
65618
|
this.i.addImportResult("modulesImports", this.h);
|
|
65567
65619
|
this.i.addContainerResult("modulesRegister", this.d.toString());
|
|
65568
65620
|
this.i.addImportResult("descriptionImports", this.g);
|
|
65569
65621
|
this.i.addContainerResult("descriptionRegister", this.c.toString());
|
|
65570
65622
|
};
|
|
65571
|
-
CodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
65623
|
+
CodeGeneratingComponentRendererModuleEmitter.prototype.n = function () {
|
|
65572
65624
|
};
|
|
65573
|
-
CodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
65625
|
+
CodeGeneratingComponentRendererModuleEmitter.prototype.l = function (a) {
|
|
65574
65626
|
};
|
|
65575
|
-
CodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
65627
|
+
CodeGeneratingComponentRendererModuleEmitter.prototype.o = function () {
|
|
65576
65628
|
};
|
|
65577
65629
|
CodeGeneratingComponentRendererModuleEmitter.$t = markType(CodeGeneratingComponentRendererModuleEmitter, 'CodeGeneratingComponentRendererModuleEmitter');
|
|
65578
65630
|
return CodeGeneratingComponentRendererModuleEmitter;
|
|
@@ -65591,20 +65643,20 @@ var TSCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE__*/
|
|
|
65591
65643
|
__extends(TSCodeGeneratingComponentRendererModuleEmitter, _super);
|
|
65592
65644
|
function TSCodeGeneratingComponentRendererModuleEmitter(a, b, c) {
|
|
65593
65645
|
var _this = _super.call(this, b, c) || this;
|
|
65594
|
-
_this.
|
|
65595
|
-
_this.
|
|
65596
|
-
_this.
|
|
65597
|
-
_this.
|
|
65598
|
-
_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;
|
|
65599
65651
|
return _this;
|
|
65600
65652
|
}
|
|
65601
|
-
TSCodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
65602
|
-
_super.prototype.
|
|
65603
|
-
this.
|
|
65653
|
+
TSCodeGeneratingComponentRendererModuleEmitter.prototype.o = function () {
|
|
65654
|
+
_super.prototype.o.call(this);
|
|
65655
|
+
this.s = 0;
|
|
65604
65656
|
};
|
|
65605
|
-
Object.defineProperty(TSCodeGeneratingComponentRendererModuleEmitter.prototype, "
|
|
65657
|
+
Object.defineProperty(TSCodeGeneratingComponentRendererModuleEmitter.prototype, "u", {
|
|
65606
65658
|
get: function () {
|
|
65607
|
-
switch (this.
|
|
65659
|
+
switch (this.p) {
|
|
65608
65660
|
case 1: return "Igx";
|
|
65609
65661
|
case 2: return "Igr";
|
|
65610
65662
|
case 3: return "Igc";
|
|
@@ -65614,9 +65666,9 @@ var TSCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE__*/
|
|
|
65614
65666
|
enumerable: false,
|
|
65615
65667
|
configurable: true
|
|
65616
65668
|
});
|
|
65617
|
-
Object.defineProperty(TSCodeGeneratingComponentRendererModuleEmitter.prototype, "
|
|
65669
|
+
Object.defineProperty(TSCodeGeneratingComponentRendererModuleEmitter.prototype, "t", {
|
|
65618
65670
|
get: function () {
|
|
65619
|
-
switch (this.
|
|
65671
|
+
switch (this.p) {
|
|
65620
65672
|
case 1: return "angular";
|
|
65621
65673
|
case 2: return "react";
|
|
65622
65674
|
case 3: return "webcomponents";
|
|
@@ -65626,34 +65678,36 @@ var TSCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE__*/
|
|
|
65626
65678
|
enumerable: false,
|
|
65627
65679
|
configurable: true
|
|
65628
65680
|
});
|
|
65629
|
-
TSCodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
65630
|
-
_super.prototype.
|
|
65681
|
+
TSCodeGeneratingComponentRendererModuleEmitter.prototype.l = function (a) {
|
|
65682
|
+
_super.prototype.l.call(this, a);
|
|
65631
65683
|
if (a == "withDescriptions") {
|
|
65632
|
-
this.
|
|
65684
|
+
this.q = true;
|
|
65633
65685
|
return;
|
|
65634
65686
|
}
|
|
65635
|
-
var b = "igniteui-" + this.
|
|
65687
|
+
var b = "igniteui-" + this.t + "-core";
|
|
65636
65688
|
var c = "";
|
|
65637
65689
|
var d = a.split('/');
|
|
65638
65690
|
if (d.length == 1) {
|
|
65639
65691
|
c = d[0];
|
|
65692
|
+
this.j.addPackageRef(c);
|
|
65640
65693
|
}
|
|
65641
65694
|
else {
|
|
65642
65695
|
b = d[0];
|
|
65643
|
-
|
|
65696
|
+
this.j.addPackageRef(b);
|
|
65697
|
+
b = "igniteui-" + this.t + "-" + b;
|
|
65644
65698
|
c = d[1];
|
|
65645
65699
|
}
|
|
65646
|
-
if (!this.
|
|
65647
|
-
this.
|
|
65700
|
+
if (!this.r.containsKey(b)) {
|
|
65701
|
+
this.r.addItem(b, new List$1(String_$type, 0));
|
|
65648
65702
|
}
|
|
65649
|
-
var e = this.
|
|
65650
|
-
if (this.
|
|
65703
|
+
var e = this.r.item(b);
|
|
65704
|
+
if (this.s > 0) {
|
|
65651
65705
|
this.d.k(",");
|
|
65652
65706
|
}
|
|
65653
|
-
this.d.j(this.
|
|
65654
|
-
e.add(this.
|
|
65655
|
-
if (this.
|
|
65656
|
-
if (this.
|
|
65707
|
+
this.d.j(this.u + c);
|
|
65708
|
+
e.add(this.u + c);
|
|
65709
|
+
if (this.q) {
|
|
65710
|
+
if (this.s == 0) {
|
|
65657
65711
|
this.c.k("private _componentRenderer: ComponentRenderer = null;");
|
|
65658
65712
|
this.c.k("public get renderer(): ComponentRenderer {");
|
|
65659
65713
|
this.c.h();
|
|
@@ -65661,26 +65715,26 @@ var TSCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE__*/
|
|
|
65661
65715
|
this.c.h();
|
|
65662
65716
|
this.c.k("this._componentRenderer = new ComponentRenderer();");
|
|
65663
65717
|
this.c.k("var context = this._componentRenderer.context;");
|
|
65664
|
-
this.g.addPackageImport("igniteui-" + this.
|
|
65718
|
+
this.g.addPackageImport("igniteui-" + this.t + "-core", "ComponentRenderer");
|
|
65665
65719
|
}
|
|
65666
65720
|
var f = c;
|
|
65667
65721
|
if (stringEndsWith(f, "Module")) {
|
|
65668
65722
|
f = f.substr(0, f.length - ("Module").length);
|
|
65669
65723
|
f += "DescriptionModule";
|
|
65670
65724
|
}
|
|
65671
|
-
this.g.addPackageImport("igniteui-" + this.
|
|
65725
|
+
this.g.addPackageImport("igniteui-" + this.t + "-core", f);
|
|
65672
65726
|
this.c.k(f + ".register(context);");
|
|
65673
65727
|
}
|
|
65674
|
-
this.
|
|
65728
|
+
this.s++;
|
|
65675
65729
|
};
|
|
65676
|
-
TSCodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
65730
|
+
TSCodeGeneratingComponentRendererModuleEmitter.prototype.n = function () {
|
|
65677
65731
|
var e_1, _a, e_2, _b;
|
|
65678
|
-
_super.prototype.
|
|
65732
|
+
_super.prototype.n.call(this);
|
|
65679
65733
|
try {
|
|
65680
|
-
for (var _c = __values(fromEnum(this.
|
|
65734
|
+
for (var _c = __values(fromEnum(this.r.keys)), _d = _c.next(); !_d.done; _d = _c.next()) {
|
|
65681
65735
|
var a = _d.value;
|
|
65682
65736
|
var b = a;
|
|
65683
|
-
var c = this.
|
|
65737
|
+
var c = this.r.item(a);
|
|
65684
65738
|
try {
|
|
65685
65739
|
for (var _e = (e_2 = void 0, __values(fromEnum(c))), _f = _e.next(); !_f.done; _f = _e.next()) {
|
|
65686
65740
|
var d = _f.value;
|
|
@@ -65715,10 +65769,10 @@ var TSCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE__*/
|
|
|
65715
65769
|
throw e_1.error;
|
|
65716
65770
|
}
|
|
65717
65771
|
}
|
|
65718
|
-
if (this.
|
|
65772
|
+
if (this.q) {
|
|
65719
65773
|
this.c.f();
|
|
65720
65774
|
this.c.k("}");
|
|
65721
|
-
this.c.k("return this._componentRenderer");
|
|
65775
|
+
this.c.k("return this._componentRenderer;");
|
|
65722
65776
|
this.c.f();
|
|
65723
65777
|
this.c.k("}");
|
|
65724
65778
|
}
|
|
@@ -65740,27 +65794,27 @@ var DotNetCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE
|
|
|
65740
65794
|
__extends(DotNetCodeGeneratingComponentRendererModuleEmitter, _super);
|
|
65741
65795
|
function DotNetCodeGeneratingComponentRendererModuleEmitter(a, b, c) {
|
|
65742
65796
|
var _this = _super.call(this, b, c) || this;
|
|
65743
|
-
_this.
|
|
65744
|
-
_this.
|
|
65745
|
-
_this.
|
|
65746
|
-
_this.
|
|
65747
|
-
_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;
|
|
65748
65802
|
return _this;
|
|
65749
65803
|
}
|
|
65750
|
-
Object.defineProperty(DotNetCodeGeneratingComponentRendererModuleEmitter.prototype, "
|
|
65804
|
+
Object.defineProperty(DotNetCodeGeneratingComponentRendererModuleEmitter.prototype, "t", {
|
|
65751
65805
|
get: function () {
|
|
65752
|
-
return this.
|
|
65806
|
+
return this.s;
|
|
65753
65807
|
},
|
|
65754
65808
|
enumerable: false,
|
|
65755
65809
|
configurable: true
|
|
65756
65810
|
});
|
|
65757
|
-
DotNetCodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
65758
|
-
_super.prototype.
|
|
65759
|
-
this.
|
|
65811
|
+
DotNetCodeGeneratingComponentRendererModuleEmitter.prototype.o = function () {
|
|
65812
|
+
_super.prototype.o.call(this);
|
|
65813
|
+
this.s = 0;
|
|
65760
65814
|
};
|
|
65761
|
-
Object.defineProperty(DotNetCodeGeneratingComponentRendererModuleEmitter.prototype, "
|
|
65815
|
+
Object.defineProperty(DotNetCodeGeneratingComponentRendererModuleEmitter.prototype, "u", {
|
|
65762
65816
|
get: function () {
|
|
65763
|
-
switch (this.
|
|
65817
|
+
switch (this.p) {
|
|
65764
65818
|
case 0: return "Xam";
|
|
65765
65819
|
case 4: return "Ultra";
|
|
65766
65820
|
case 5: return "Igb";
|
|
@@ -65770,22 +65824,24 @@ var DotNetCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE
|
|
|
65770
65824
|
enumerable: false,
|
|
65771
65825
|
configurable: true
|
|
65772
65826
|
});
|
|
65773
|
-
DotNetCodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
65774
|
-
_super.prototype.
|
|
65775
|
-
if (a == "withDescriptions" && this.
|
|
65776
|
-
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;
|
|
65777
65831
|
return;
|
|
65778
65832
|
}
|
|
65779
65833
|
var b = "";
|
|
65780
65834
|
var c = a.split('/');
|
|
65781
65835
|
if (c.length == 1) {
|
|
65782
65836
|
b = c[0];
|
|
65837
|
+
this.j.addPackageRef(b);
|
|
65783
65838
|
}
|
|
65784
65839
|
else {
|
|
65840
|
+
this.j.addPackageRef(c[0]);
|
|
65785
65841
|
b = c[1];
|
|
65786
65842
|
}
|
|
65787
|
-
if (this.
|
|
65788
|
-
if (this.
|
|
65843
|
+
if (this.q) {
|
|
65844
|
+
if (this.s == 0) {
|
|
65789
65845
|
this.c.k("private ComponentRenderer _componentRenderer = null;");
|
|
65790
65846
|
this.c.k("public ComponentRenderer Renderer");
|
|
65791
65847
|
this.c.k("{");
|
|
@@ -65806,11 +65862,11 @@ var DotNetCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE
|
|
|
65806
65862
|
}
|
|
65807
65863
|
this.c.k(d + ".Register(context);");
|
|
65808
65864
|
}
|
|
65809
|
-
this.
|
|
65865
|
+
this.s++;
|
|
65810
65866
|
};
|
|
65811
|
-
DotNetCodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
65812
|
-
_super.prototype.
|
|
65813
|
-
if (this.
|
|
65867
|
+
DotNetCodeGeneratingComponentRendererModuleEmitter.prototype.n = function () {
|
|
65868
|
+
_super.prototype.n.call(this);
|
|
65869
|
+
if (this.q) {
|
|
65814
65870
|
this.g.addUsing("using Infragistics.Controls.Description;");
|
|
65815
65871
|
this.c.f();
|
|
65816
65872
|
this.c.k("}");
|
|
@@ -65838,15 +65894,15 @@ var BlazorCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE
|
|
|
65838
65894
|
__extends(BlazorCodeGeneratingComponentRendererModuleEmitter, _super);
|
|
65839
65895
|
function BlazorCodeGeneratingComponentRendererModuleEmitter(a, b, c) {
|
|
65840
65896
|
var _this = _super.call(this, a, b, c) || this;
|
|
65841
|
-
_this.
|
|
65897
|
+
_this.v = 0;
|
|
65842
65898
|
return _this;
|
|
65843
65899
|
}
|
|
65844
|
-
BlazorCodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
65845
|
-
_super.prototype.
|
|
65900
|
+
BlazorCodeGeneratingComponentRendererModuleEmitter.prototype.o = function () {
|
|
65901
|
+
_super.prototype.o.call(this);
|
|
65846
65902
|
};
|
|
65847
|
-
BlazorCodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
65848
|
-
_super.prototype.
|
|
65849
|
-
if (this.
|
|
65903
|
+
BlazorCodeGeneratingComponentRendererModuleEmitter.prototype.l = function (a) {
|
|
65904
|
+
_super.prototype.l.call(this, a);
|
|
65905
|
+
if (this.v > 0) {
|
|
65850
65906
|
this.d.k(", ");
|
|
65851
65907
|
}
|
|
65852
65908
|
var b = "";
|
|
@@ -65865,10 +65921,10 @@ var BlazorCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE
|
|
|
65865
65921
|
this.d.j("Igb" + b);
|
|
65866
65922
|
this.d.j(")");
|
|
65867
65923
|
}
|
|
65868
|
-
this.
|
|
65924
|
+
this.v++;
|
|
65869
65925
|
};
|
|
65870
|
-
BlazorCodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
65871
|
-
_super.prototype.
|
|
65926
|
+
BlazorCodeGeneratingComponentRendererModuleEmitter.prototype.n = function () {
|
|
65927
|
+
_super.prototype.n.call(this);
|
|
65872
65928
|
};
|
|
65873
65929
|
BlazorCodeGeneratingComponentRendererModuleEmitter.$t = markType(BlazorCodeGeneratingComponentRendererModuleEmitter, 'BlazorCodeGeneratingComponentRendererModuleEmitter', DotNetCodeGeneratingComponentRendererModuleEmitter.$);
|
|
65874
65930
|
return BlazorCodeGeneratingComponentRendererModuleEmitter;
|
|
@@ -66301,16 +66357,16 @@ var CodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE__*/ (fu
|
|
|
66301
66357
|
var _this = _super.call(this) || this;
|
|
66302
66358
|
_this.k = null;
|
|
66303
66359
|
_this.i = null;
|
|
66304
|
-
_this.
|
|
66360
|
+
_this.t = new List$1(CodeGenerationItemBuilderPropertyInfo.$, 0);
|
|
66305
66361
|
_this.d = null;
|
|
66306
66362
|
_this.a = null;
|
|
66307
66363
|
_this.c = null;
|
|
66308
66364
|
_this.b = null;
|
|
66309
|
-
_this.
|
|
66310
|
-
_this.
|
|
66311
|
-
_this.
|
|
66312
|
-
_this.
|
|
66313
|
-
_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;
|
|
66314
66370
|
_this.k = a;
|
|
66315
66371
|
_this.i = b;
|
|
66316
66372
|
_this.d = new CodeGeneratingCodeWriter(_this.k);
|
|
@@ -66319,8 +66375,8 @@ var CodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE__*/ (fu
|
|
|
66319
66375
|
_this.b = new CodeGeneratingCodeWriter(_this.k);
|
|
66320
66376
|
return _this;
|
|
66321
66377
|
}
|
|
66322
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66323
|
-
this.i.
|
|
66378
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.a8 = function (a) {
|
|
66379
|
+
this.i.ae(a);
|
|
66324
66380
|
};
|
|
66325
66381
|
Object.defineProperty(CodeGeneratingComponentRendererCodeEmitter.prototype, "j", {
|
|
66326
66382
|
get: function () {
|
|
@@ -66357,8 +66413,8 @@ var CodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE__*/ (fu
|
|
|
66357
66413
|
enumerable: false,
|
|
66358
66414
|
configurable: true
|
|
66359
66415
|
});
|
|
66360
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66361
|
-
this.
|
|
66416
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.at = function (a) {
|
|
66417
|
+
this.u.add(a);
|
|
66362
66418
|
};
|
|
66363
66419
|
CodeGeneratingComponentRendererCodeEmitter.prototype.n = function (a) {
|
|
66364
66420
|
if (a.b != null && (a.b.knownType == 20 || a.b.knownType == 19 || a.b.knownType == 18)) {
|
|
@@ -66368,43 +66424,51 @@ var CodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE__*/ (fu
|
|
|
66368
66424
|
}
|
|
66369
66425
|
return false;
|
|
66370
66426
|
};
|
|
66371
|
-
|
|
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", {
|
|
66372
66436
|
get: function () {
|
|
66373
|
-
return this.
|
|
66437
|
+
return this.x.d();
|
|
66374
66438
|
},
|
|
66375
66439
|
enumerable: false,
|
|
66376
66440
|
configurable: true
|
|
66377
66441
|
});
|
|
66378
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66379
|
-
this.
|
|
66380
|
-
};
|
|
66381
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.a6 = function () {
|
|
66442
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.au = function (a) {
|
|
66443
|
+
this.x.h(a);
|
|
66382
66444
|
};
|
|
66383
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66384
|
-
this.w.e();
|
|
66445
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.a7 = function () {
|
|
66385
66446
|
};
|
|
66386
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66447
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.a2 = function (a) {
|
|
66448
|
+
this.x.e();
|
|
66387
66449
|
};
|
|
66388
66450
|
CodeGeneratingComponentRendererCodeEmitter.prototype.a0 = function (a, b, c, d) {
|
|
66389
|
-
|
|
66451
|
+
};
|
|
66452
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.a1 = function (a, b, c, d) {
|
|
66453
|
+
this.a0(a, b, c, d);
|
|
66390
66454
|
};
|
|
66391
66455
|
CodeGeneratingComponentRendererCodeEmitter.prototype.toString = function () {
|
|
66392
66456
|
return this.d.toString();
|
|
66393
66457
|
};
|
|
66394
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66458
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.am = function () {
|
|
66395
66459
|
return "null";
|
|
66396
66460
|
};
|
|
66397
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66461
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.ap = function (a, b) {
|
|
66398
66462
|
if (a.b == null) {
|
|
66399
66463
|
return a.c;
|
|
66400
66464
|
}
|
|
66401
66465
|
if (typeCast(CodeGenerationSpecialValue.$, a.c) !== null) {
|
|
66402
|
-
a.c = this.
|
|
66466
|
+
a.c = this.y(a);
|
|
66403
66467
|
}
|
|
66404
66468
|
switch (a.b.knownType) {
|
|
66405
|
-
case 10: return this.
|
|
66469
|
+
case 10: return this.af(a);
|
|
66406
66470
|
case 7: return a.c ? "true" : "false";
|
|
66407
|
-
case 4: return this.
|
|
66471
|
+
case 4: return this.aa(a);
|
|
66408
66472
|
case 6:
|
|
66409
66473
|
{
|
|
66410
66474
|
var c = "";
|
|
@@ -66413,13 +66477,13 @@ var CodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE__*/ (fu
|
|
|
66413
66477
|
if (e >= 1) {
|
|
66414
66478
|
c += " ";
|
|
66415
66479
|
}
|
|
66416
|
-
c += this.
|
|
66480
|
+
c += this.z(d.item(e));
|
|
66417
66481
|
}
|
|
66418
66482
|
return c;
|
|
66419
66483
|
}
|
|
66420
66484
|
break;
|
|
66421
66485
|
case 9: throw new NotSupportedException(1, "shouldn't get here");
|
|
66422
|
-
case 5: return this.
|
|
66486
|
+
case 5: return this.ac(a);
|
|
66423
66487
|
case 16:
|
|
66424
66488
|
{
|
|
66425
66489
|
var f = "";
|
|
@@ -66428,44 +66492,44 @@ var CodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE__*/ (fu
|
|
|
66428
66492
|
if (h >= 1) {
|
|
66429
66493
|
f += " ";
|
|
66430
66494
|
}
|
|
66431
|
-
f += this.
|
|
66495
|
+
f += this.ab(g.item(h));
|
|
66432
66496
|
}
|
|
66433
66497
|
return f;
|
|
66434
66498
|
}
|
|
66435
66499
|
break;
|
|
66436
66500
|
case 20:
|
|
66437
66501
|
if (a.a != null) {
|
|
66438
|
-
return this.
|
|
66502
|
+
return this.ao(a);
|
|
66439
66503
|
}
|
|
66440
66504
|
if (a.c == null) {
|
|
66441
|
-
return this.
|
|
66505
|
+
return this.am();
|
|
66442
66506
|
}
|
|
66443
66507
|
break;
|
|
66444
66508
|
case 15: throw new NotSupportedException(1, "need to figure this out");
|
|
66445
66509
|
case 3: throw new NotSupportedException(1, "need to figure this out");
|
|
66446
66510
|
case 19:
|
|
66447
66511
|
if (a.a != null) {
|
|
66448
|
-
return this.
|
|
66512
|
+
return this.aj(a);
|
|
66449
66513
|
}
|
|
66450
66514
|
else {
|
|
66451
|
-
return this.
|
|
66515
|
+
return this.am();
|
|
66452
66516
|
}
|
|
66453
66517
|
break;
|
|
66454
66518
|
case 8:
|
|
66455
66519
|
if (a.b.specificExternalType == "string") {
|
|
66456
|
-
return this.
|
|
66520
|
+
return this.ai(a);
|
|
66457
66521
|
}
|
|
66458
66522
|
if (a.a != null) {
|
|
66459
|
-
return this.
|
|
66523
|
+
return this.ak(a);
|
|
66460
66524
|
}
|
|
66461
66525
|
throw new NotSupportedException(1, "shouldn't get here");
|
|
66462
66526
|
case 13: throw new NotSupportedException(1, "shouldn't get here");
|
|
66463
66527
|
case 18:
|
|
66464
66528
|
if (a.a != null) {
|
|
66465
|
-
return this.
|
|
66529
|
+
return this.al(a);
|
|
66466
66530
|
}
|
|
66467
66531
|
else {
|
|
66468
|
-
return this.
|
|
66532
|
+
return this.am();
|
|
66469
66533
|
}
|
|
66470
66534
|
break;
|
|
66471
66535
|
case 1: return a.c.toString();
|
|
@@ -66484,7 +66548,7 @@ var CodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE__*/ (fu
|
|
|
66484
66548
|
var k = a.c;
|
|
66485
66549
|
return k.width + ", " + k.height;
|
|
66486
66550
|
}
|
|
66487
|
-
case 2: return a.c != null ? a.c.toString() : this.
|
|
66551
|
+
case 2: return a.c != null ? a.c.toString() : this.am();
|
|
66488
66552
|
case 21: return a.c.toString();
|
|
66489
66553
|
case 17:
|
|
66490
66554
|
if (a.c == null) {
|
|
@@ -66498,22 +66562,22 @@ var CodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE__*/ (fu
|
|
|
66498
66562
|
}
|
|
66499
66563
|
return "";
|
|
66500
66564
|
};
|
|
66501
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66565
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.af = function (a) {
|
|
66502
66566
|
return "";
|
|
66503
66567
|
};
|
|
66504
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66568
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.y = function (a) {
|
|
66505
66569
|
return a.c;
|
|
66506
66570
|
};
|
|
66507
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66571
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.ao = function (a) {
|
|
66508
66572
|
if (!stringIsNullOrEmpty(a.a.e)) {
|
|
66509
66573
|
if (a.a.a) {
|
|
66510
|
-
return this.
|
|
66574
|
+
return this.ah(a);
|
|
66511
66575
|
}
|
|
66512
66576
|
else {
|
|
66513
|
-
return this.
|
|
66577
|
+
return this.an(a);
|
|
66514
66578
|
}
|
|
66515
66579
|
}
|
|
66516
|
-
return this.
|
|
66580
|
+
return this.am();
|
|
66517
66581
|
};
|
|
66518
66582
|
CodeGeneratingComponentRendererCodeEmitter.prototype.o = function (a) {
|
|
66519
66583
|
if (a.a != null && !stringIsNullOrEmpty(a.a.e)) {
|
|
@@ -66523,122 +66587,122 @@ var CodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE__*/ (fu
|
|
|
66523
66587
|
}
|
|
66524
66588
|
return false;
|
|
66525
66589
|
};
|
|
66526
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66590
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.an = function (a) {
|
|
66527
66591
|
return "";
|
|
66528
66592
|
};
|
|
66529
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66593
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.ah = function (a) {
|
|
66530
66594
|
return "";
|
|
66531
66595
|
};
|
|
66532
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66596
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.ak = function (a) {
|
|
66533
66597
|
if (!stringIsNullOrEmpty(a.a.e)) {
|
|
66534
66598
|
return a.a.e;
|
|
66535
66599
|
}
|
|
66536
|
-
return this.
|
|
66600
|
+
return this.am();
|
|
66537
66601
|
};
|
|
66538
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66602
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.ai = function (a) {
|
|
66539
66603
|
return a.c != null ? a.c.toString() : "";
|
|
66540
66604
|
};
|
|
66541
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66542
|
-
return this.
|
|
66605
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.al = function (a) {
|
|
66606
|
+
return this.aj(a);
|
|
66543
66607
|
};
|
|
66544
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66608
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.aj = function (a) {
|
|
66545
66609
|
if (!stringIsNullOrEmpty(a.a.e)) {
|
|
66546
|
-
this.
|
|
66610
|
+
this.a8(a);
|
|
66547
66611
|
return a.a.e;
|
|
66548
66612
|
}
|
|
66549
|
-
return this.
|
|
66613
|
+
return this.am();
|
|
66550
66614
|
};
|
|
66551
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66615
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.get_r = function () {
|
|
66552
66616
|
return false;
|
|
66553
66617
|
};
|
|
66554
|
-
Object.defineProperty(CodeGeneratingComponentRendererCodeEmitter.prototype, "
|
|
66618
|
+
Object.defineProperty(CodeGeneratingComponentRendererCodeEmitter.prototype, "r", {
|
|
66555
66619
|
get: function () {
|
|
66556
|
-
return this.
|
|
66620
|
+
return this.get_r();
|
|
66557
66621
|
},
|
|
66558
66622
|
enumerable: false,
|
|
66559
66623
|
configurable: true
|
|
66560
66624
|
});
|
|
66561
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66625
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.ac = function (a) {
|
|
66562
66626
|
var b = a.c;
|
|
66563
|
-
return ColorUtil.i(b, this.
|
|
66627
|
+
return ColorUtil.i(b, this.r);
|
|
66564
66628
|
};
|
|
66565
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66629
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.ab = function (a) {
|
|
66566
66630
|
var b = a;
|
|
66567
|
-
return ColorUtil.i(b, this.
|
|
66631
|
+
return ColorUtil.i(b, this.r);
|
|
66568
66632
|
};
|
|
66569
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66633
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.aa = function (a) {
|
|
66570
66634
|
if (a.c == null) {
|
|
66571
66635
|
return "";
|
|
66572
66636
|
}
|
|
66573
66637
|
var b = a.c;
|
|
66574
|
-
return ColorUtil.i(b.color, this.
|
|
66638
|
+
return ColorUtil.i(b.color, this.r);
|
|
66575
66639
|
};
|
|
66576
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66640
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.z = function (a) {
|
|
66577
66641
|
if (a == null) {
|
|
66578
66642
|
return "";
|
|
66579
66643
|
}
|
|
66580
66644
|
var b = a;
|
|
66581
|
-
return ColorUtil.i(b.color, this.
|
|
66645
|
+
return ColorUtil.i(b.color, this.r);
|
|
66582
66646
|
};
|
|
66583
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66584
|
-
this.
|
|
66585
|
-
this.
|
|
66647
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.a6 = function (a) {
|
|
66648
|
+
this.v.h(a);
|
|
66649
|
+
this.w.h(false);
|
|
66586
66650
|
};
|
|
66587
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66588
|
-
var b = this.
|
|
66589
|
-
this.
|
|
66590
|
-
this.
|
|
66651
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.a5 = function (a) {
|
|
66652
|
+
var b = this.ag(a);
|
|
66653
|
+
this.v.h(b);
|
|
66654
|
+
this.w.h(true);
|
|
66591
66655
|
};
|
|
66592
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66593
|
-
var b = stringReplace(stringReplace(a, this.
|
|
66656
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.ag = function (a) {
|
|
66657
|
+
var b = stringReplace(stringReplace(a, this.ar, ""), "Component", "");
|
|
66594
66658
|
b = CodeGeneratingComponentRenderer.dp(b);
|
|
66595
|
-
return this.i.
|
|
66659
|
+
return this.i.u(b);
|
|
66596
66660
|
};
|
|
66597
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66598
|
-
this.u.e();
|
|
66661
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.a3 = function () {
|
|
66599
66662
|
this.v.e();
|
|
66663
|
+
this.w.e();
|
|
66600
66664
|
};
|
|
66601
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66665
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.get_ar = function () {
|
|
66602
66666
|
return "";
|
|
66603
66667
|
};
|
|
66604
|
-
Object.defineProperty(CodeGeneratingComponentRendererCodeEmitter.prototype, "
|
|
66668
|
+
Object.defineProperty(CodeGeneratingComponentRendererCodeEmitter.prototype, "ar", {
|
|
66605
66669
|
get: function () {
|
|
66606
|
-
return this.
|
|
66670
|
+
return this.get_ar();
|
|
66607
66671
|
},
|
|
66608
66672
|
enumerable: false,
|
|
66609
66673
|
configurable: true
|
|
66610
66674
|
});
|
|
66611
|
-
Object.defineProperty(CodeGeneratingComponentRendererCodeEmitter.prototype, "
|
|
66675
|
+
Object.defineProperty(CodeGeneratingComponentRendererCodeEmitter.prototype, "ad", {
|
|
66612
66676
|
get: function () {
|
|
66613
|
-
if (this.
|
|
66614
|
-
return this.
|
|
66677
|
+
if (this.v.f > 0) {
|
|
66678
|
+
return this.v.d();
|
|
66615
66679
|
}
|
|
66616
|
-
var a = stringReplace(stringReplace(this.
|
|
66680
|
+
var a = stringReplace(stringReplace(this.ae, this.ar, ""), "Component", "");
|
|
66617
66681
|
return CodeGeneratingComponentRenderer.dp(a);
|
|
66618
66682
|
},
|
|
66619
66683
|
enumerable: false,
|
|
66620
66684
|
configurable: true
|
|
66621
66685
|
});
|
|
66622
|
-
Object.defineProperty(CodeGeneratingComponentRendererCodeEmitter.prototype, "
|
|
66686
|
+
Object.defineProperty(CodeGeneratingComponentRendererCodeEmitter.prototype, "q", {
|
|
66623
66687
|
get: function () {
|
|
66624
|
-
return this.
|
|
66688
|
+
return this.x.f == 1;
|
|
66625
66689
|
},
|
|
66626
66690
|
enumerable: false,
|
|
66627
66691
|
configurable: true
|
|
66628
66692
|
});
|
|
66629
66693
|
Object.defineProperty(CodeGeneratingComponentRendererCodeEmitter.prototype, "l", {
|
|
66630
66694
|
get: function () {
|
|
66631
|
-
if (this.
|
|
66695
|
+
if (this.w.f == 0) {
|
|
66632
66696
|
return false;
|
|
66633
66697
|
}
|
|
66634
|
-
return this.
|
|
66698
|
+
return this.w.d();
|
|
66635
66699
|
},
|
|
66636
66700
|
enumerable: false,
|
|
66637
66701
|
configurable: true
|
|
66638
66702
|
});
|
|
66639
66703
|
Object.defineProperty(CodeGeneratingComponentRendererCodeEmitter.prototype, "m", {
|
|
66640
66704
|
get: function () {
|
|
66641
|
-
if (this.
|
|
66705
|
+
if (this.v.f > 0) {
|
|
66642
66706
|
return true;
|
|
66643
66707
|
}
|
|
66644
66708
|
return false;
|
|
@@ -66646,43 +66710,43 @@ var CodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE__*/ (fu
|
|
|
66646
66710
|
enumerable: false,
|
|
66647
66711
|
configurable: true
|
|
66648
66712
|
});
|
|
66649
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66713
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.get_s = function () {
|
|
66650
66714
|
return true;
|
|
66651
66715
|
};
|
|
66652
|
-
Object.defineProperty(CodeGeneratingComponentRendererCodeEmitter.prototype, "
|
|
66716
|
+
Object.defineProperty(CodeGeneratingComponentRendererCodeEmitter.prototype, "s", {
|
|
66653
66717
|
get: function () {
|
|
66654
|
-
return this.
|
|
66718
|
+
return this.get_s();
|
|
66655
66719
|
},
|
|
66656
66720
|
enumerable: false,
|
|
66657
66721
|
configurable: true
|
|
66658
66722
|
});
|
|
66659
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66660
|
-
this.
|
|
66723
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.a4 = function () {
|
|
66724
|
+
this.v.e();
|
|
66661
66725
|
};
|
|
66662
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66726
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.aw = function (a) {
|
|
66663
66727
|
var b = this.f.toString();
|
|
66664
66728
|
if (b.length > 0) {
|
|
66665
66729
|
a.l(b);
|
|
66666
66730
|
}
|
|
66667
66731
|
};
|
|
66668
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66732
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.az = function (a) {
|
|
66669
66733
|
var b = this.g.toString();
|
|
66670
66734
|
if (b.length > 0) {
|
|
66671
66735
|
a.l(b);
|
|
66672
66736
|
}
|
|
66673
66737
|
};
|
|
66674
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66738
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.av = function (a) {
|
|
66675
66739
|
var b = this.e.toString();
|
|
66676
66740
|
if (b.length > 0) {
|
|
66677
66741
|
a.l(b);
|
|
66678
66742
|
}
|
|
66679
66743
|
};
|
|
66680
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66681
|
-
if (this.
|
|
66682
|
-
this.
|
|
66744
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.ax = function (a) {
|
|
66745
|
+
if (this.u.count > 0) {
|
|
66746
|
+
this.ay(this.u, a);
|
|
66683
66747
|
}
|
|
66684
66748
|
};
|
|
66685
|
-
CodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66749
|
+
CodeGeneratingComponentRendererCodeEmitter.prototype.ay = function (a, b) {
|
|
66686
66750
|
};
|
|
66687
66751
|
CodeGeneratingComponentRendererCodeEmitter.$t = markType(CodeGeneratingComponentRendererCodeEmitter, 'CodeGeneratingComponentRendererCodeEmitter');
|
|
66688
66752
|
return CodeGeneratingComponentRendererCodeEmitter;
|
|
@@ -66694,15 +66758,15 @@ var BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__P
|
|
|
66694
66758
|
__extends(BlazorRazorCodeGeneratingComponentRendererCodeEmitter, _super);
|
|
66695
66759
|
function BlazorRazorCodeGeneratingComponentRendererCodeEmitter(a, b) {
|
|
66696
66760
|
var _this = _super.call(this, a, b) || this;
|
|
66697
|
-
_this.
|
|
66698
|
-
_this.a8 = new HashSet$1(String_$type, 0);
|
|
66761
|
+
_this.bb = 0;
|
|
66699
66762
|
_this.a9 = new HashSet$1(String_$type, 0);
|
|
66763
|
+
_this.ba = new HashSet$1(String_$type, 0);
|
|
66700
66764
|
return _this;
|
|
66701
66765
|
}
|
|
66702
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66766
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.get_s = function () {
|
|
66703
66767
|
return false;
|
|
66704
66768
|
};
|
|
66705
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66769
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.bc = function (a, b) {
|
|
66706
66770
|
if (b.c == null) {
|
|
66707
66771
|
return "null";
|
|
66708
66772
|
}
|
|
@@ -66717,9 +66781,9 @@ var BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__P
|
|
|
66717
66781
|
d += " })";
|
|
66718
66782
|
return d;
|
|
66719
66783
|
};
|
|
66720
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66784
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.af = function (a) {
|
|
66721
66785
|
if (a.b.specificExternalType == "string") {
|
|
66722
|
-
return this.
|
|
66786
|
+
return this.bc(a.b.specificExternalType, a);
|
|
66723
66787
|
}
|
|
66724
66788
|
if (a.c == null) {
|
|
66725
66789
|
return "null";
|
|
@@ -66734,38 +66798,38 @@ var BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__P
|
|
|
66734
66798
|
}
|
|
66735
66799
|
return c;
|
|
66736
66800
|
};
|
|
66737
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66738
|
-
_super.prototype.
|
|
66801
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.au = function (a) {
|
|
66802
|
+
_super.prototype.au.call(this, a);
|
|
66739
66803
|
this.h.k("<" + a + "");
|
|
66740
|
-
if (!this.
|
|
66741
|
-
this.
|
|
66742
|
-
if (!this.
|
|
66743
|
-
this.
|
|
66744
|
-
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);
|
|
66745
66809
|
}
|
|
66746
|
-
this.f.k("private " + this.
|
|
66810
|
+
this.f.k("private " + this.ae + " " + CodeGeneratingComponentRenderer.dp(this.ad) + ";");
|
|
66747
66811
|
if (!this.m) {
|
|
66748
|
-
if (this.
|
|
66749
|
-
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) + ";");
|
|
66750
66814
|
}
|
|
66751
66815
|
}
|
|
66752
66816
|
else {
|
|
66753
|
-
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.
|
|
66817
|
+
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + ";");
|
|
66754
66818
|
}
|
|
66755
66819
|
}
|
|
66756
66820
|
};
|
|
66757
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66821
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.a7 = function () {
|
|
66758
66822
|
this.h.k(">");
|
|
66759
66823
|
this.h.h();
|
|
66760
66824
|
};
|
|
66761
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66825
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.a2 = function (a) {
|
|
66762
66826
|
this.h.f();
|
|
66763
66827
|
this.h.k("</" + a + ">");
|
|
66764
|
-
_super.prototype.
|
|
66828
|
+
_super.prototype.a2.call(this, a);
|
|
66765
66829
|
};
|
|
66766
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66830
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.a0 = function (a, b, c, d) {
|
|
66767
66831
|
if (c.b != null && d.h(c.b.owningType, CodeGeneratingComponentRenderer.dq(c.b.propertyName)) && this.n(c)) {
|
|
66768
|
-
this.
|
|
66832
|
+
this.a8(c);
|
|
66769
66833
|
if (a > 0) {
|
|
66770
66834
|
this.h.k("");
|
|
66771
66835
|
}
|
|
@@ -66778,29 +66842,29 @@ var BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__P
|
|
|
66778
66842
|
return;
|
|
66779
66843
|
}
|
|
66780
66844
|
if (this.o(c)) {
|
|
66781
|
-
this.
|
|
66782
|
-
if (!this.
|
|
66783
|
-
this.
|
|
66784
|
-
if (!this.
|
|
66785
|
-
this.
|
|
66786
|
-
this.
|
|
66787
|
-
}
|
|
66788
|
-
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) + ";");
|
|
66789
66853
|
if (!this.m) {
|
|
66790
|
-
if (this.
|
|
66791
|
-
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) + ";");
|
|
66792
66856
|
}
|
|
66793
66857
|
}
|
|
66794
66858
|
else {
|
|
66795
|
-
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.
|
|
66859
|
+
this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + ";");
|
|
66796
66860
|
}
|
|
66797
66861
|
}
|
|
66798
|
-
var e = CodeGeneratingComponentRenderer.dp(this.
|
|
66862
|
+
var e = CodeGeneratingComponentRenderer.dp(this.ap(c, true));
|
|
66799
66863
|
var f = e;
|
|
66800
66864
|
if (f != "null" && !stringStartsWith(f, "this.")) {
|
|
66801
66865
|
f = "this." + f;
|
|
66802
66866
|
}
|
|
66803
|
-
this.e.k(CodeGeneratingComponentRenderer.dp(this.
|
|
66867
|
+
this.e.k(CodeGeneratingComponentRenderer.dp(this.ad) + "." + b + " = " + f + ";");
|
|
66804
66868
|
return;
|
|
66805
66869
|
}
|
|
66806
66870
|
if (a > 0) {
|
|
@@ -66814,19 +66878,56 @@ var BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__P
|
|
|
66814
66878
|
this.h.j(b);
|
|
66815
66879
|
this.h.j("=");
|
|
66816
66880
|
this.h.j("\"");
|
|
66817
|
-
this.h.j(this.
|
|
66881
|
+
this.h.j(this.ap(c, true));
|
|
66818
66882
|
this.h.j("\"");
|
|
66819
66883
|
}
|
|
66820
66884
|
if (b == "Name") {
|
|
66821
66885
|
this.h.k("");
|
|
66822
|
-
this.h.j("@ref=\"" + CodeGeneratingComponentRenderer.dp(this.
|
|
66886
|
+
this.h.j("@ref=\"" + CodeGeneratingComponentRenderer.dp(this.ap(c, true)) + "\"");
|
|
66823
66887
|
}
|
|
66824
66888
|
};
|
|
66825
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66889
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.ai = function (a) {
|
|
66826
66890
|
var b = a.b != null ? a.b.specificType + "." : "";
|
|
66827
66891
|
return b + (a.c != null ? a.c.toString() : "");
|
|
66828
66892
|
};
|
|
66829
|
-
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) {
|
|
66830
66931
|
var b = a.c;
|
|
66831
66932
|
switch (b.a) {
|
|
66832
66933
|
case 3: return b.b;
|
|
@@ -66836,21 +66937,21 @@ var BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__P
|
|
|
66836
66937
|
}
|
|
66837
66938
|
return b.b;
|
|
66838
66939
|
};
|
|
66839
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66940
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.am = function () {
|
|
66840
66941
|
return "@null";
|
|
66841
66942
|
};
|
|
66842
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66943
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.ah = function (a) {
|
|
66843
66944
|
return CodeGeneratingComponentRenderer.dp(CodeGeneratingComponentRenderer.dp(a.a.e));
|
|
66844
66945
|
};
|
|
66845
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66946
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.bd = function (a) {
|
|
66846
66947
|
a = stringReplace(a, "-", "_");
|
|
66847
66948
|
return CodeGeneratingComponentRenderer.dq(a);
|
|
66848
66949
|
};
|
|
66849
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66850
|
-
this.
|
|
66950
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.an = function (a) {
|
|
66951
|
+
this.a8(a);
|
|
66851
66952
|
return CodeGeneratingComponentRenderer.dq(a.a.e);
|
|
66852
66953
|
};
|
|
66853
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66954
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.a1 = function (a, b, c, d) {
|
|
66854
66955
|
var e_1, _a;
|
|
66855
66956
|
if (c.b.knownType == 9) {
|
|
66856
66957
|
var e = typeCast(IList_$type, c.c);
|
|
@@ -66886,7 +66987,7 @@ var BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__P
|
|
|
66886
66987
|
}
|
|
66887
66988
|
}
|
|
66888
66989
|
};
|
|
66889
|
-
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66990
|
+
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.get_ar = function () {
|
|
66890
66991
|
return "Igb";
|
|
66891
66992
|
};
|
|
66892
66993
|
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.$t = markType(BlazorRazorCodeGeneratingComponentRendererCodeEmitter, 'BlazorRazorCodeGeneratingComponentRendererCodeEmitter', CodeGeneratingComponentRendererCodeEmitter.$);
|
|
@@ -66900,7 +67001,7 @@ var BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter = /** @class */ /
|
|
|
66900
67001
|
function BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter(a, b) {
|
|
66901
67002
|
return _super.call(this, a, b) || this;
|
|
66902
67003
|
}
|
|
66903
|
-
BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67004
|
+
BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.get_s = function () {
|
|
66904
67005
|
return false;
|
|
66905
67006
|
};
|
|
66906
67007
|
BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter.$t = markType(BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter, 'BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter', CodeGeneratingComponentRendererCodeEmitter.$);
|
|
@@ -66913,11 +67014,11 @@ var ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__P
|
|
|
66913
67014
|
__extends(ReactMarkupCodeGeneratingComponentRendererCodeEmitter, _super);
|
|
66914
67015
|
function ReactMarkupCodeGeneratingComponentRendererCodeEmitter(a, b) {
|
|
66915
67016
|
var _this = _super.call(this, a, b) || this;
|
|
66916
|
-
_this.a8 = new HashSet$1(String_$type, 0);
|
|
66917
67017
|
_this.a9 = new HashSet$1(String_$type, 0);
|
|
67018
|
+
_this.ba = new HashSet$1(String_$type, 0);
|
|
66918
67019
|
return _this;
|
|
66919
67020
|
}
|
|
66920
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67021
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.af = function (a) {
|
|
66921
67022
|
if (a.c == null) {
|
|
66922
67023
|
return "{null}";
|
|
66923
67024
|
}
|
|
@@ -66932,43 +67033,43 @@ var ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__P
|
|
|
66932
67033
|
c += "]";
|
|
66933
67034
|
return c;
|
|
66934
67035
|
};
|
|
66935
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67036
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.get_r = function () {
|
|
66936
67037
|
return true;
|
|
66937
67038
|
};
|
|
66938
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67039
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.get_ar = function () {
|
|
66939
67040
|
return "Igr";
|
|
66940
67041
|
};
|
|
66941
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66942
|
-
_super.prototype.
|
|
66943
|
-
this.h.k("<" + this.
|
|
67042
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.au = function (a) {
|
|
67043
|
+
_super.prototype.au.call(this, a);
|
|
67044
|
+
this.h.k("<" + this.bc(a) + "");
|
|
66944
67045
|
this.h.h();
|
|
66945
|
-
if (!this.
|
|
66946
|
-
this.
|
|
66947
|
-
|
|
66948
|
-
|
|
66949
|
-
|
|
66950
|
-
|
|
66951
|
-
this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.
|
|
66952
|
-
if (this.
|
|
66953
|
-
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 + ") {");
|
|
66954
67055
|
this.f.h();
|
|
66955
|
-
this.f.k("this." + CodeGeneratingComponentRenderer.dp(this.
|
|
67056
|
+
this.f.k("this." + CodeGeneratingComponentRenderer.dp(this.ad) + " = r;");
|
|
66956
67057
|
this.f.k("this.setState({});");
|
|
66957
67058
|
this.f.f();
|
|
66958
67059
|
this.f.k("}");
|
|
66959
|
-
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);");
|
|
66960
67061
|
}
|
|
66961
67062
|
}
|
|
66962
67063
|
};
|
|
66963
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67064
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.bc = function (a) {
|
|
66964
67065
|
if (stringEndsWith(a, "Component")) {
|
|
66965
67066
|
a = a.substr(0, a.length - ("Component").length);
|
|
66966
67067
|
}
|
|
66967
67068
|
return CodeGeneratingComponentRenderer.dq(a);
|
|
66968
67069
|
};
|
|
66969
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66970
|
-
if (!this.
|
|
66971
|
-
var a = this.
|
|
67070
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.a7 = function () {
|
|
67071
|
+
if (!this.q && !this.m) {
|
|
67072
|
+
var a = this.bb();
|
|
66972
67073
|
this.h.k("");
|
|
66973
67074
|
this.h.k("name=\"" + a + "\"");
|
|
66974
67075
|
}
|
|
@@ -66976,31 +67077,31 @@ var ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__P
|
|
|
66976
67077
|
this.h.k(">");
|
|
66977
67078
|
this.h.h();
|
|
66978
67079
|
};
|
|
66979
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
66980
|
-
var a = CodeGeneratingComponentRenderer.dp(stringReplace(stringReplace(this.
|
|
66981
|
-
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);
|
|
66982
67083
|
return a;
|
|
66983
67084
|
};
|
|
66984
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67085
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.aj = function (a) {
|
|
66985
67086
|
if (!stringIsNullOrEmpty(a.a.e)) {
|
|
66986
|
-
this.
|
|
66987
|
-
if (!this.
|
|
67087
|
+
this.a8(a);
|
|
67088
|
+
if (!this.a9.contains(a.a.e)) {
|
|
66988
67089
|
this.g.k("this." + CodeGeneratingComponentRenderer.dp(a.a.e) + " = " + "this." + CodeGeneratingComponentRenderer.dp(a.a.e) + ".bind(this);");
|
|
66989
67090
|
}
|
|
66990
67091
|
return "this." + CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
66991
67092
|
}
|
|
66992
|
-
return this.
|
|
67093
|
+
return this.am();
|
|
66993
67094
|
};
|
|
66994
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67095
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.a2 = function (a) {
|
|
66995
67096
|
this.h.f();
|
|
66996
|
-
this.h.k("</" + this.
|
|
66997
|
-
_super.prototype.
|
|
67097
|
+
this.h.k("</" + this.bc(a) + ">");
|
|
67098
|
+
_super.prototype.a2.call(this, a);
|
|
66998
67099
|
};
|
|
66999
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67100
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.a0 = function (a, b, c, d) {
|
|
67000
67101
|
var e = CodeGeneratingComponentRenderer.dp(b);
|
|
67001
|
-
var f = this.
|
|
67102
|
+
var f = this.ap(c, true);
|
|
67002
67103
|
if (c.b != null && d.h(c.b.owningType, CodeGeneratingComponentRenderer.dq(c.b.propertyName)) && this.n(c)) {
|
|
67003
|
-
this.
|
|
67104
|
+
this.a8(c);
|
|
67004
67105
|
if (a > 0) {
|
|
67005
67106
|
this.h.k("");
|
|
67006
67107
|
}
|
|
@@ -67012,10 +67113,10 @@ var ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__P
|
|
|
67012
67113
|
}
|
|
67013
67114
|
return;
|
|
67014
67115
|
}
|
|
67015
|
-
if (!(e == "name") || !this.
|
|
67116
|
+
if (!(e == "name") || !this.q) {
|
|
67016
67117
|
var g = (c.b != null && c.b.knownType == 10);
|
|
67017
67118
|
if (this.n(c) || g) {
|
|
67018
|
-
this.
|
|
67119
|
+
this.a8(c);
|
|
67019
67120
|
f = "{" + f + "}";
|
|
67020
67121
|
}
|
|
67021
67122
|
if (a > 0) {
|
|
@@ -67033,15 +67134,15 @@ var ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__P
|
|
|
67033
67134
|
a++;
|
|
67034
67135
|
}
|
|
67035
67136
|
if (e == "name") {
|
|
67036
|
-
if (this.
|
|
67137
|
+
if (this.q) {
|
|
67037
67138
|
if (a > 0) {
|
|
67038
67139
|
this.h.k("");
|
|
67039
67140
|
}
|
|
67040
|
-
this.h.j("ref={this." + CodeGeneratingComponentRenderer.dp(this.
|
|
67141
|
+
this.h.j("ref={this." + CodeGeneratingComponentRenderer.dp(this.ap(c, true)) + "Ref}");
|
|
67041
67142
|
}
|
|
67042
67143
|
}
|
|
67043
67144
|
};
|
|
67044
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67145
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.y = function (a) {
|
|
67045
67146
|
var b = a.c;
|
|
67046
67147
|
switch (b.a) {
|
|
67047
67148
|
case 3: return b.b;
|
|
@@ -67051,16 +67152,16 @@ var ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__P
|
|
|
67051
67152
|
}
|
|
67052
67153
|
return b.b;
|
|
67053
67154
|
};
|
|
67054
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67155
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.am = function () {
|
|
67055
67156
|
return "null";
|
|
67056
67157
|
};
|
|
67057
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67158
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.ah = function (a) {
|
|
67058
67159
|
return "this." + CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
67059
67160
|
};
|
|
67060
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67161
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.an = function (a) {
|
|
67061
67162
|
return "this." + CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
67062
67163
|
};
|
|
67063
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67164
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.a1 = function (a, b, c, d) {
|
|
67064
67165
|
var e_2, _a;
|
|
67065
67166
|
if (c.b.knownType == 9) {
|
|
67066
67167
|
var e = typeCast(IList_$type, c.c);
|
|
@@ -67096,13 +67197,13 @@ var ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__P
|
|
|
67096
67197
|
}
|
|
67097
67198
|
}
|
|
67098
67199
|
};
|
|
67099
|
-
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67200
|
+
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.ay = function (a, b) {
|
|
67100
67201
|
var e_3, _a;
|
|
67101
|
-
_super.prototype.
|
|
67202
|
+
_super.prototype.ay.call(this, a, b);
|
|
67102
67203
|
try {
|
|
67103
67204
|
for (var _b = __values(fromEnum(a)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
67104
67205
|
var c = _c.value;
|
|
67105
|
-
b.addPackageImport("igniteui-react-" + this.
|
|
67206
|
+
b.addPackageImport("igniteui-react-" + this.aq, c);
|
|
67106
67207
|
}
|
|
67107
67208
|
}
|
|
67108
67209
|
catch (e_3_1) {
|
|
@@ -67140,12 +67241,12 @@ var WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter = /** @class *
|
|
|
67140
67241
|
__extends(WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter, _super);
|
|
67141
67242
|
function WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter(a, b) {
|
|
67142
67243
|
var _this = _super.call(this, a, b) || this;
|
|
67143
|
-
_this.
|
|
67144
|
-
_this.a8 = new HashSet$1(String_$type, 0);
|
|
67244
|
+
_this.bb = 0;
|
|
67145
67245
|
_this.a9 = new HashSet$1(String_$type, 0);
|
|
67246
|
+
_this.ba = new HashSet$1(String_$type, 0);
|
|
67146
67247
|
return _this;
|
|
67147
67248
|
}
|
|
67148
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67249
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.af = function (a) {
|
|
67149
67250
|
if (a.c == null) {
|
|
67150
67251
|
return "null";
|
|
67151
67252
|
}
|
|
@@ -67159,54 +67260,54 @@ var WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter = /** @class *
|
|
|
67159
67260
|
}
|
|
67160
67261
|
return c;
|
|
67161
67262
|
};
|
|
67162
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67263
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.get_r = function () {
|
|
67163
67264
|
return true;
|
|
67164
67265
|
};
|
|
67165
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67166
|
-
_super.prototype.
|
|
67167
|
-
this.h.k("<" + this.
|
|
67168
|
-
if (!this.
|
|
67169
|
-
this.
|
|
67170
|
-
if (!this.
|
|
67171
|
-
this.
|
|
67172
|
-
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);
|
|
67173
67274
|
}
|
|
67174
|
-
this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.
|
|
67275
|
+
this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.ad) + ": " + this.ae);
|
|
67175
67276
|
if (!this.m) {
|
|
67176
|
-
if (this.
|
|
67177
|
-
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 + ";");
|
|
67178
67279
|
}
|
|
67179
67280
|
}
|
|
67180
67281
|
else {
|
|
67181
|
-
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 + ";");
|
|
67182
67283
|
}
|
|
67183
67284
|
}
|
|
67184
67285
|
};
|
|
67185
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67286
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.bc = function (a) {
|
|
67186
67287
|
if (stringEndsWith(a, "Component")) {
|
|
67187
67288
|
a = a.substr(0, a.length - ("Component").length);
|
|
67188
67289
|
}
|
|
67189
67290
|
return CodeGeneratingComponentRenderer.dr(a);
|
|
67190
67291
|
};
|
|
67191
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67292
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.a7 = function () {
|
|
67192
67293
|
this.h.k(">");
|
|
67193
67294
|
this.h.h();
|
|
67194
67295
|
};
|
|
67195
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67296
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.a2 = function (a) {
|
|
67196
67297
|
this.h.f();
|
|
67197
|
-
this.h.k("</" + this.
|
|
67198
|
-
_super.prototype.
|
|
67298
|
+
this.h.k("</" + this.bc(a) + ">");
|
|
67299
|
+
_super.prototype.a2.call(this, a);
|
|
67199
67300
|
};
|
|
67200
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67301
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.get_ar = function () {
|
|
67201
67302
|
return "Igc";
|
|
67202
67303
|
};
|
|
67203
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67304
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.ay = function (a, b) {
|
|
67204
67305
|
var e_4, _a;
|
|
67205
|
-
_super.prototype.
|
|
67306
|
+
_super.prototype.ay.call(this, a, b);
|
|
67206
67307
|
try {
|
|
67207
67308
|
for (var _b = __values(fromEnum(a)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
67208
67309
|
var c = _c.value;
|
|
67209
|
-
b.addPackageImport("igniteui-webcomponents-" + this.
|
|
67310
|
+
b.addPackageImport("igniteui-webcomponents-" + this.aq, c);
|
|
67210
67311
|
}
|
|
67211
67312
|
}
|
|
67212
67313
|
catch (e_4_1) {
|
|
@@ -67223,32 +67324,32 @@ var WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter = /** @class *
|
|
|
67223
67324
|
}
|
|
67224
67325
|
}
|
|
67225
67326
|
};
|
|
67226
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67327
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.a0 = function (a, b, c, d) {
|
|
67227
67328
|
var e = CodeGeneratingComponentRenderer.dp(b);
|
|
67228
67329
|
if (this.n(c)) {
|
|
67229
|
-
this.
|
|
67230
|
-
if (!this.
|
|
67231
|
-
this.
|
|
67232
|
-
if (!this.
|
|
67233
|
-
this.
|
|
67234
|
-
this.
|
|
67235
|
-
}
|
|
67236
|
-
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);
|
|
67237
67338
|
if (!this.m) {
|
|
67238
|
-
if (this.
|
|
67239
|
-
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 + ";");
|
|
67240
67341
|
}
|
|
67241
67342
|
}
|
|
67242
67343
|
else {
|
|
67243
|
-
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 + ";");
|
|
67244
67345
|
}
|
|
67245
67346
|
}
|
|
67246
|
-
var f = CodeGeneratingComponentRenderer.dp(this.
|
|
67347
|
+
var f = CodeGeneratingComponentRenderer.dp(this.ap(c, true));
|
|
67247
67348
|
var g = f;
|
|
67248
67349
|
if (g != "null" && !stringStartsWith(g, "this.")) {
|
|
67249
67350
|
g = "this." + g;
|
|
67250
67351
|
}
|
|
67251
|
-
this.e.k(CodeGeneratingComponentRenderer.dp(this.
|
|
67352
|
+
this.e.k(CodeGeneratingComponentRenderer.dp(this.ad) + "." + e + " = " + g);
|
|
67252
67353
|
return;
|
|
67253
67354
|
}
|
|
67254
67355
|
if (a > 0) {
|
|
@@ -67257,14 +67358,14 @@ var WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter = /** @class *
|
|
|
67257
67358
|
this.h.j(CodeGeneratingComponentRenderer.dr(e));
|
|
67258
67359
|
this.h.j("=");
|
|
67259
67360
|
this.h.j("\"");
|
|
67260
|
-
this.h.j(this.
|
|
67361
|
+
this.h.j(this.ap(c, true));
|
|
67261
67362
|
this.h.j("\"");
|
|
67262
67363
|
if (e == "name") {
|
|
67263
67364
|
this.h.k("");
|
|
67264
|
-
this.h.j("id =\"" + this.
|
|
67365
|
+
this.h.j("id =\"" + this.ap(c, true) + "\"");
|
|
67265
67366
|
}
|
|
67266
67367
|
};
|
|
67267
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67368
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.y = function (a) {
|
|
67268
67369
|
var b = a.c;
|
|
67269
67370
|
switch (b.a) {
|
|
67270
67371
|
case 3: return b.b;
|
|
@@ -67274,26 +67375,26 @@ var WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter = /** @class *
|
|
|
67274
67375
|
}
|
|
67275
67376
|
return b.b;
|
|
67276
67377
|
};
|
|
67277
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67378
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.am = function () {
|
|
67278
67379
|
return "null";
|
|
67279
67380
|
};
|
|
67280
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67381
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.ah = function (a) {
|
|
67281
67382
|
return CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
67282
67383
|
};
|
|
67283
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67384
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.an = function (a) {
|
|
67284
67385
|
return CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
67285
67386
|
};
|
|
67286
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67387
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.aj = function (a) {
|
|
67287
67388
|
if (!stringIsNullOrEmpty(a.a.e)) {
|
|
67288
|
-
this.
|
|
67289
|
-
if (!this.
|
|
67389
|
+
this.a8(a);
|
|
67390
|
+
if (!this.a9.contains(a.a.e)) {
|
|
67290
67391
|
this.g.k("this." + CodeGeneratingComponentRenderer.dp(a.a.e) + " = " + "this." + CodeGeneratingComponentRenderer.dp(a.a.e) + ".bind(this);");
|
|
67291
67392
|
}
|
|
67292
67393
|
return "this." + CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
67293
67394
|
}
|
|
67294
|
-
return this.
|
|
67395
|
+
return this.am();
|
|
67295
67396
|
};
|
|
67296
|
-
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67397
|
+
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.a1 = function (a, b, c, d) {
|
|
67297
67398
|
var e_5, _a;
|
|
67298
67399
|
if (c.b.knownType == 9) {
|
|
67299
67400
|
var e = typeCast(IList_$type, c.c);
|
|
@@ -67438,25 +67539,25 @@ var TSCodeGeneratingComponentRendererDataEmitter = /** @class */ /*@__PURE__*/ (
|
|
|
67438
67539
|
}
|
|
67439
67540
|
this.g.k("private " + this.ao(a) + ": " + f + " = " + g + ";");
|
|
67440
67541
|
if (b == 2 || (c != null && c.isAsync)) {
|
|
67441
|
-
this.g.k("private " + this.ao(a) + "
|
|
67542
|
+
this.g.k("private " + this.ao(a) + "Fetching: boolean = false;");
|
|
67442
67543
|
}
|
|
67443
67544
|
this.g.k("public get " + this.u(a) + "(): " + f + " {");
|
|
67444
67545
|
this.g.h();
|
|
67445
67546
|
if (c != null && c.isAsync) {
|
|
67446
|
-
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)");
|
|
67447
67548
|
this.g.k("{");
|
|
67448
67549
|
this.g.h();
|
|
67449
|
-
this.g.k("this." + this.ao(a) + "
|
|
67550
|
+
this.g.k("this." + this.ao(a) + "Fetching = true;");
|
|
67450
67551
|
this.g.k("( async () => { this." + this.ao(a) + " = await (await " + this.v(a, false) + ".fetch()); " + e + " })();");
|
|
67451
67552
|
this.g.f();
|
|
67452
67553
|
this.g.k("}");
|
|
67453
67554
|
}
|
|
67454
67555
|
else {
|
|
67455
67556
|
if (b == 2) {
|
|
67456
|
-
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)");
|
|
67457
67558
|
this.g.k("{");
|
|
67458
67559
|
this.g.h();
|
|
67459
|
-
this.g.k(this.ao(a) + "
|
|
67560
|
+
this.g.k(this.ao(a) + "Fetching = true;");
|
|
67460
67561
|
this.g.k("( async () => { this." + this.ao(a) + " = await (await fetch('" + d + "')).json(); " + e + " })();");
|
|
67461
67562
|
this.g.f();
|
|
67462
67563
|
this.g.k("}");
|
|
@@ -67654,9 +67755,13 @@ var TSCodeGeneratingComponentRendererDataEmitter = /** @class */ /*@__PURE__*/ (
|
|
|
67654
67755
|
var AngularTemplateCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
67655
67756
|
__extends(AngularTemplateCodeGeneratingComponentRendererCodeEmitter, _super);
|
|
67656
67757
|
function AngularTemplateCodeGeneratingComponentRendererCodeEmitter(a, b) {
|
|
67657
|
-
|
|
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;
|
|
67658
67763
|
}
|
|
67659
|
-
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67764
|
+
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.af = function (a) {
|
|
67660
67765
|
if (a.c == null) {
|
|
67661
67766
|
return "null";
|
|
67662
67767
|
}
|
|
@@ -67670,36 +67775,73 @@ var AngularTemplateCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*
|
|
|
67670
67775
|
}
|
|
67671
67776
|
return c;
|
|
67672
67777
|
};
|
|
67673
|
-
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67778
|
+
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.get_r = function () {
|
|
67674
67779
|
return true;
|
|
67675
67780
|
};
|
|
67676
|
-
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67781
|
+
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.get_ar = function () {
|
|
67677
67782
|
return "Igx";
|
|
67678
67783
|
};
|
|
67679
|
-
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67680
|
-
_super.prototype.
|
|
67681
|
-
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
|
+
}
|
|
67796
|
+
};
|
|
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
|
+
}
|
|
67682
67819
|
};
|
|
67683
|
-
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67820
|
+
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.bc = function (a) {
|
|
67684
67821
|
if (stringEndsWith(a, "Component")) {
|
|
67685
67822
|
a = a.substr(0, a.length - ("Component").length);
|
|
67686
67823
|
}
|
|
67687
67824
|
return CodeGeneratingComponentRenderer.dr(a);
|
|
67688
67825
|
};
|
|
67689
|
-
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67826
|
+
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.a7 = function () {
|
|
67690
67827
|
this.h.k(">");
|
|
67691
67828
|
this.h.h();
|
|
67692
67829
|
};
|
|
67693
|
-
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67830
|
+
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.a2 = function (a) {
|
|
67694
67831
|
this.h.f();
|
|
67695
|
-
this.h.k("</" + this.
|
|
67696
|
-
_super.prototype.
|
|
67832
|
+
this.h.k("</" + this.bc(a) + ">");
|
|
67833
|
+
_super.prototype.a2.call(this, a);
|
|
67697
67834
|
};
|
|
67698
|
-
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67835
|
+
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.a0 = function (a, b, c, d) {
|
|
67699
67836
|
var e = CodeGeneratingComponentRenderer.dp(b);
|
|
67700
67837
|
if (this.n(c)) {
|
|
67701
|
-
this.
|
|
67702
|
-
|
|
67838
|
+
this.a8(c);
|
|
67839
|
+
if (this.p(c)) {
|
|
67840
|
+
e = "(" + e + ")";
|
|
67841
|
+
}
|
|
67842
|
+
else {
|
|
67843
|
+
e = "[" + e + "]";
|
|
67844
|
+
}
|
|
67703
67845
|
}
|
|
67704
67846
|
if (a > 0) {
|
|
67705
67847
|
this.h.k("");
|
|
@@ -67707,21 +67849,21 @@ var AngularTemplateCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*
|
|
|
67707
67849
|
this.h.j(e);
|
|
67708
67850
|
this.h.j("=");
|
|
67709
67851
|
this.h.j("\"");
|
|
67710
|
-
this.h.j(this.
|
|
67852
|
+
this.h.j(this.ap(c, true));
|
|
67711
67853
|
this.h.j("\"");
|
|
67712
67854
|
if (e == "name") {
|
|
67713
67855
|
this.h.k("");
|
|
67714
|
-
this.h.j("#" + CodeGeneratingComponentRenderer.dp(this.
|
|
67856
|
+
this.h.j("#" + CodeGeneratingComponentRenderer.dp(this.ap(c, true)));
|
|
67715
67857
|
}
|
|
67716
67858
|
};
|
|
67717
|
-
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67859
|
+
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.aj = function (a) {
|
|
67718
67860
|
if (!stringIsNullOrEmpty(a.a.e)) {
|
|
67719
|
-
this.
|
|
67861
|
+
this.a8(a);
|
|
67720
67862
|
return "this." + CodeGeneratingComponentRenderer.dp(a.a.e) + "($event)";
|
|
67721
67863
|
}
|
|
67722
|
-
return this.
|
|
67864
|
+
return this.am();
|
|
67723
67865
|
};
|
|
67724
|
-
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67866
|
+
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.y = function (a) {
|
|
67725
67867
|
var b = a.c;
|
|
67726
67868
|
switch (b.a) {
|
|
67727
67869
|
case 3: return b.b;
|
|
@@ -67731,17 +67873,17 @@ var AngularTemplateCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*
|
|
|
67731
67873
|
}
|
|
67732
67874
|
return b.b;
|
|
67733
67875
|
};
|
|
67734
|
-
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67876
|
+
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.am = function () {
|
|
67735
67877
|
return "null";
|
|
67736
67878
|
};
|
|
67737
|
-
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67879
|
+
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.ah = function (a) {
|
|
67738
67880
|
return CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
67739
67881
|
};
|
|
67740
|
-
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67882
|
+
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.an = function (a) {
|
|
67741
67883
|
return CodeGeneratingComponentRenderer.dp(a.a.e);
|
|
67742
67884
|
};
|
|
67743
|
-
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
67744
|
-
var
|
|
67885
|
+
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.a1 = function (a, b, c, d) {
|
|
67886
|
+
var e_8, _a;
|
|
67745
67887
|
if (c.b.knownType == 9) {
|
|
67746
67888
|
var e = typeCast(IList_$type, c.c);
|
|
67747
67889
|
if (e != null) {
|
|
@@ -67754,8 +67896,8 @@ var AngularTemplateCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*
|
|
|
67754
67896
|
}
|
|
67755
67897
|
}
|
|
67756
67898
|
}
|
|
67757
|
-
catch (
|
|
67758
|
-
|
|
67899
|
+
catch (e_8_1) {
|
|
67900
|
+
e_8 = { error: e_8_1 };
|
|
67759
67901
|
}
|
|
67760
67902
|
finally {
|
|
67761
67903
|
try {
|
|
@@ -67763,8 +67905,8 @@ var AngularTemplateCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*
|
|
|
67763
67905
|
_a.call(_b);
|
|
67764
67906
|
}
|
|
67765
67907
|
finally {
|
|
67766
|
-
if (
|
|
67767
|
-
throw
|
|
67908
|
+
if (e_8)
|
|
67909
|
+
throw e_8.error;
|
|
67768
67910
|
}
|
|
67769
67911
|
}
|
|
67770
67912
|
}
|
|
@@ -67839,7 +67981,7 @@ var DotNetCodeGeneratingComponentRendererDataEmitter = /** @class */ /*@__PURE__
|
|
|
67839
67981
|
return "_" + CodeGeneratingComponentRenderer.dp(a);
|
|
67840
67982
|
};
|
|
67841
67983
|
DotNetCodeGeneratingComponentRendererDataEmitter.prototype.aj = function (a, b, c, d, e) {
|
|
67842
|
-
var
|
|
67984
|
+
var e_9, _a;
|
|
67843
67985
|
_super.prototype.aj.call(this, a, b, c, d, e);
|
|
67844
67986
|
var f = this.r(this.v(a, true), this.v(a, false), b, c);
|
|
67845
67987
|
try {
|
|
@@ -67848,8 +67990,8 @@ var DotNetCodeGeneratingComponentRendererDataEmitter = /** @class */ /*@__PURE__
|
|
|
67848
67990
|
this.ab(g, d, e);
|
|
67849
67991
|
}
|
|
67850
67992
|
}
|
|
67851
|
-
catch (
|
|
67852
|
-
|
|
67993
|
+
catch (e_9_1) {
|
|
67994
|
+
e_9 = { error: e_9_1 };
|
|
67853
67995
|
}
|
|
67854
67996
|
finally {
|
|
67855
67997
|
try {
|
|
@@ -67857,8 +67999,8 @@ var DotNetCodeGeneratingComponentRendererDataEmitter = /** @class */ /*@__PURE__
|
|
|
67857
67999
|
_a.call(_b);
|
|
67858
68000
|
}
|
|
67859
68001
|
finally {
|
|
67860
|
-
if (
|
|
67861
|
-
throw
|
|
68002
|
+
if (e_9)
|
|
68003
|
+
throw e_9.error;
|
|
67862
68004
|
}
|
|
67863
68005
|
}
|
|
67864
68006
|
d.k("public class " + this.v(a, false));
|
|
@@ -68086,10 +68228,10 @@ var WPFXamlCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE_
|
|
|
68086
68228
|
function WPFXamlCodeGeneratingComponentRendererCodeEmitter(a, b) {
|
|
68087
68229
|
return _super.call(this, a, b) || this;
|
|
68088
68230
|
}
|
|
68089
|
-
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
68231
|
+
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.get_s = function () {
|
|
68090
68232
|
return false;
|
|
68091
68233
|
};
|
|
68092
|
-
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
68234
|
+
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.af = function (a) {
|
|
68093
68235
|
if (a.c == null) {
|
|
68094
68236
|
return "null";
|
|
68095
68237
|
}
|
|
@@ -68103,20 +68245,20 @@ var WPFXamlCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE_
|
|
|
68103
68245
|
}
|
|
68104
68246
|
return c;
|
|
68105
68247
|
};
|
|
68106
|
-
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
68107
|
-
_super.prototype.
|
|
68248
|
+
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.au = function (a) {
|
|
68249
|
+
_super.prototype.au.call(this, a);
|
|
68108
68250
|
this.h.k("<ig:" + a + "");
|
|
68109
68251
|
};
|
|
68110
|
-
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
68252
|
+
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.a7 = function () {
|
|
68111
68253
|
this.h.k(">");
|
|
68112
68254
|
this.h.h();
|
|
68113
68255
|
};
|
|
68114
|
-
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
68256
|
+
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.a2 = function (a) {
|
|
68115
68257
|
this.h.f();
|
|
68116
68258
|
this.h.k("</ig:" + a + ">");
|
|
68117
|
-
_super.prototype.
|
|
68259
|
+
_super.prototype.a2.call(this, a);
|
|
68118
68260
|
};
|
|
68119
|
-
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
68261
|
+
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.a0 = function (a, b, c, d) {
|
|
68120
68262
|
if (b == "Label" && c.b != null && stringContains(c.b.owningType, "Axis")) {
|
|
68121
68263
|
if (c.c != null && stringContains(c.c, "{")) {
|
|
68122
68264
|
if (a > 0) {
|
|
@@ -68125,7 +68267,7 @@ var WPFXamlCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE_
|
|
|
68125
68267
|
this.h.j(b);
|
|
68126
68268
|
this.h.j("=");
|
|
68127
68269
|
this.h.j("\"");
|
|
68128
|
-
this.h.j("{}" + this.
|
|
68270
|
+
this.h.j("{}" + this.ap(c, true));
|
|
68129
68271
|
this.h.j("\"");
|
|
68130
68272
|
return;
|
|
68131
68273
|
}
|
|
@@ -68136,10 +68278,10 @@ var WPFXamlCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE_
|
|
|
68136
68278
|
this.h.j(b);
|
|
68137
68279
|
this.h.j("=");
|
|
68138
68280
|
this.h.j("\"");
|
|
68139
|
-
this.h.j(this.
|
|
68281
|
+
this.h.j(this.ap(c, true));
|
|
68140
68282
|
this.h.j("\"");
|
|
68141
68283
|
};
|
|
68142
|
-
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
68284
|
+
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.y = function (a) {
|
|
68143
68285
|
var b = a.c;
|
|
68144
68286
|
switch (b.a) {
|
|
68145
68287
|
case 3: return b.b;
|
|
@@ -68149,25 +68291,25 @@ var WPFXamlCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE_
|
|
|
68149
68291
|
}
|
|
68150
68292
|
return b.b;
|
|
68151
68293
|
};
|
|
68152
|
-
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
68294
|
+
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.am = function () {
|
|
68153
68295
|
return "{x:Null}";
|
|
68154
68296
|
};
|
|
68155
|
-
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
68297
|
+
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.ah = function (a) {
|
|
68156
68298
|
return "{Binding ElementName=" + a.a.e + "}";
|
|
68157
68299
|
};
|
|
68158
|
-
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
68300
|
+
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.a9 = function (a) {
|
|
68159
68301
|
a = stringReplace(a, "-", "_");
|
|
68160
68302
|
return CodeGeneratingComponentRenderer.dq(a);
|
|
68161
68303
|
};
|
|
68162
|
-
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
68163
|
-
this.
|
|
68164
|
-
return "{Binding " + this.
|
|
68304
|
+
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.an = function (a) {
|
|
68305
|
+
this.a8(a);
|
|
68306
|
+
return "{Binding " + this.a9(a.a.e) + "}";
|
|
68165
68307
|
};
|
|
68166
|
-
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
68167
|
-
var
|
|
68308
|
+
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.a1 = function (a, b, c, d) {
|
|
68309
|
+
var e_10, _a;
|
|
68168
68310
|
this.h.j("<ig:");
|
|
68169
68311
|
{
|
|
68170
|
-
this.h.j(this.
|
|
68312
|
+
this.h.j(this.ae);
|
|
68171
68313
|
this.h.j(".");
|
|
68172
68314
|
}
|
|
68173
68315
|
this.h.j(b);
|
|
@@ -68185,8 +68327,8 @@ var WPFXamlCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE_
|
|
|
68185
68327
|
}
|
|
68186
68328
|
}
|
|
68187
68329
|
}
|
|
68188
|
-
catch (
|
|
68189
|
-
|
|
68330
|
+
catch (e_10_1) {
|
|
68331
|
+
e_10 = { error: e_10_1 };
|
|
68190
68332
|
}
|
|
68191
68333
|
finally {
|
|
68192
68334
|
try {
|
|
@@ -68194,8 +68336,8 @@ var WPFXamlCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE_
|
|
|
68194
68336
|
_a.call(_b);
|
|
68195
68337
|
}
|
|
68196
68338
|
finally {
|
|
68197
|
-
if (
|
|
68198
|
-
throw
|
|
68339
|
+
if (e_10)
|
|
68340
|
+
throw e_10.error;
|
|
68199
68341
|
}
|
|
68200
68342
|
}
|
|
68201
68343
|
}
|
|
@@ -68209,13 +68351,13 @@ var WPFXamlCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@__PURE_
|
|
|
68209
68351
|
this.h.f();
|
|
68210
68352
|
this.h.j("</ig:");
|
|
68211
68353
|
{
|
|
68212
|
-
this.h.j(this.
|
|
68354
|
+
this.h.j(this.ae);
|
|
68213
68355
|
this.h.j(".");
|
|
68214
68356
|
}
|
|
68215
68357
|
this.h.j(b);
|
|
68216
68358
|
this.h.k(">");
|
|
68217
68359
|
};
|
|
68218
|
-
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
68360
|
+
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.get_ar = function () {
|
|
68219
68361
|
return "Xam";
|
|
68220
68362
|
};
|
|
68221
68363
|
WPFXamlCodeGeneratingComponentRendererCodeEmitter.$t = markType(WPFXamlCodeGeneratingComponentRendererCodeEmitter, 'WPFXamlCodeGeneratingComponentRendererCodeEmitter', CodeGeneratingComponentRendererCodeEmitter.$);
|
|
@@ -68229,7 +68371,7 @@ var WPFCodeBehindCodeGeneratingComponentRendererCodeEmitter = /** @class */ /*@_
|
|
|
68229
68371
|
function WPFCodeBehindCodeGeneratingComponentRendererCodeEmitter(a, b) {
|
|
68230
68372
|
return _super.call(this, a, b) || this;
|
|
68231
68373
|
}
|
|
68232
|
-
WPFCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.
|
|
68374
|
+
WPFCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.get_s = function () {
|
|
68233
68375
|
return false;
|
|
68234
68376
|
};
|
|
68235
68377
|
WPFCodeBehindCodeGeneratingComponentRendererCodeEmitter.$t = markType(WPFCodeBehindCodeGeneratingComponentRendererCodeEmitter, 'WPFCodeBehindCodeGeneratingComponentRendererCodeEmitter', CodeGeneratingComponentRendererCodeEmitter.$);
|
|
@@ -68405,7 +68547,7 @@ var CodeGeneratingComponentRenderer = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
68405
68547
|
return null;
|
|
68406
68548
|
};
|
|
68407
68549
|
CodeGeneratingComponentRenderer.prototype.emitCode = function (a) {
|
|
68408
|
-
var
|
|
68550
|
+
var e_11, _a, e_12, _b, e_13, _c;
|
|
68409
68551
|
var b = new CodeGeneratingRendererResult();
|
|
68410
68552
|
b.platform = this.dj;
|
|
68411
68553
|
b.generationOptions = this.di;
|
|
@@ -68415,7 +68557,7 @@ var CodeGeneratingComponentRenderer = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
68415
68557
|
var d = c;
|
|
68416
68558
|
var e = d.id;
|
|
68417
68559
|
try {
|
|
68418
|
-
for (var _f = (
|
|
68560
|
+
for (var _f = (e_12 = void 0, __values(fromEnum(d.a))), _g = _f.next(); !_g.done; _g = _f.next()) {
|
|
68419
68561
|
var f = _g.value;
|
|
68420
68562
|
if (f.i("Name") != null) {
|
|
68421
68563
|
b.trackDescriptionField(e, f.i("Name"));
|
|
@@ -68425,8 +68567,8 @@ var CodeGeneratingComponentRenderer = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
68425
68567
|
}
|
|
68426
68568
|
}
|
|
68427
68569
|
}
|
|
68428
|
-
catch (
|
|
68429
|
-
|
|
68570
|
+
catch (e_12_1) {
|
|
68571
|
+
e_12 = { error: e_12_1 };
|
|
68430
68572
|
}
|
|
68431
68573
|
finally {
|
|
68432
68574
|
try {
|
|
@@ -68434,14 +68576,14 @@ var CodeGeneratingComponentRenderer = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
68434
68576
|
_b.call(_f);
|
|
68435
68577
|
}
|
|
68436
68578
|
finally {
|
|
68437
|
-
if (
|
|
68438
|
-
throw
|
|
68579
|
+
if (e_12)
|
|
68580
|
+
throw e_12.error;
|
|
68439
68581
|
}
|
|
68440
68582
|
}
|
|
68441
68583
|
}
|
|
68442
68584
|
}
|
|
68443
|
-
catch (
|
|
68444
|
-
|
|
68585
|
+
catch (e_11_1) {
|
|
68586
|
+
e_11 = { error: e_11_1 };
|
|
68445
68587
|
}
|
|
68446
68588
|
finally {
|
|
68447
68589
|
try {
|
|
@@ -68449,8 +68591,8 @@ var CodeGeneratingComponentRenderer = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
68449
68591
|
_a.call(_d);
|
|
68450
68592
|
}
|
|
68451
68593
|
finally {
|
|
68452
|
-
if (
|
|
68453
|
-
throw
|
|
68594
|
+
if (e_11)
|
|
68595
|
+
throw e_11.error;
|
|
68454
68596
|
}
|
|
68455
68597
|
}
|
|
68456
68598
|
try {
|
|
@@ -68460,8 +68602,8 @@ var CodeGeneratingComponentRenderer = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
68460
68602
|
h.c(b, this, this.di);
|
|
68461
68603
|
}
|
|
68462
68604
|
}
|
|
68463
|
-
catch (
|
|
68464
|
-
|
|
68605
|
+
catch (e_13_1) {
|
|
68606
|
+
e_13 = { error: e_13_1 };
|
|
68465
68607
|
}
|
|
68466
68608
|
finally {
|
|
68467
68609
|
try {
|
|
@@ -68469,13 +68611,13 @@ var CodeGeneratingComponentRenderer = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
68469
68611
|
_c.call(_h);
|
|
68470
68612
|
}
|
|
68471
68613
|
finally {
|
|
68472
|
-
if (
|
|
68473
|
-
throw
|
|
68614
|
+
if (e_13)
|
|
68615
|
+
throw e_13.error;
|
|
68474
68616
|
}
|
|
68475
68617
|
}
|
|
68476
68618
|
if (this.dk != null) {
|
|
68477
68619
|
var i = this.dg(this.di, b);
|
|
68478
|
-
i.
|
|
68620
|
+
i.m(this.dk);
|
|
68479
68621
|
}
|
|
68480
68622
|
if (this.dm != null) {
|
|
68481
68623
|
if (typeCast(JsonDictionaryObject.$, this.dm) !== null) {
|
|
@@ -68565,7 +68707,7 @@ var CodeGenerationContainer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
68565
68707
|
configurable: true
|
|
68566
68708
|
});
|
|
68567
68709
|
CodeGenerationContainer.prototype.c = function (a, b, c) {
|
|
68568
|
-
var
|
|
68710
|
+
var e_14, _a;
|
|
68569
68711
|
var d = new StringBuilder(0);
|
|
68570
68712
|
var e = new StringBuilder(0);
|
|
68571
68713
|
var f = new StringBuilder(0);
|
|
@@ -68577,14 +68719,14 @@ var CodeGenerationContainer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
68577
68719
|
h.p(i, true);
|
|
68578
68720
|
var j = i.toString();
|
|
68579
68721
|
a.addContainerResult(this.id, j);
|
|
68580
|
-
i.
|
|
68581
|
-
i.
|
|
68582
|
-
i.
|
|
68583
|
-
i.
|
|
68722
|
+
i.aw(d);
|
|
68723
|
+
i.az(e);
|
|
68724
|
+
i.av(f);
|
|
68725
|
+
i.ax(g);
|
|
68584
68726
|
}
|
|
68585
68727
|
}
|
|
68586
|
-
catch (
|
|
68587
|
-
|
|
68728
|
+
catch (e_14_1) {
|
|
68729
|
+
e_14 = { error: e_14_1 };
|
|
68588
68730
|
}
|
|
68589
68731
|
finally {
|
|
68590
68732
|
try {
|
|
@@ -68592,8 +68734,8 @@ var CodeGenerationContainer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
68592
68734
|
_a.call(_b);
|
|
68593
68735
|
}
|
|
68594
68736
|
finally {
|
|
68595
|
-
if (
|
|
68596
|
-
throw
|
|
68737
|
+
if (e_14)
|
|
68738
|
+
throw e_14.error;
|
|
68597
68739
|
}
|
|
68598
68740
|
}
|
|
68599
68741
|
a.addContainerResult("bindingFields", d.toString());
|
|
@@ -68673,31 +68815,31 @@ var CodeGenerationItemBuilder = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
68673
68815
|
return null;
|
|
68674
68816
|
};
|
|
68675
68817
|
CodeGenerationItemBuilder.prototype.p = function (a, b) {
|
|
68676
|
-
var
|
|
68818
|
+
var e_15, _a, e_16, _b;
|
|
68677
68819
|
var c = this.m();
|
|
68678
68820
|
if (b) {
|
|
68679
68821
|
var d = this.n();
|
|
68680
|
-
a.
|
|
68822
|
+
a.aq = d;
|
|
68681
68823
|
}
|
|
68682
68824
|
var e = false;
|
|
68683
68825
|
var f = false;
|
|
68684
68826
|
if (this.f.containsKey("Name")) {
|
|
68685
68827
|
e = true;
|
|
68686
|
-
a.
|
|
68828
|
+
a.a6(this.f.item("Name").c);
|
|
68687
68829
|
}
|
|
68688
68830
|
else if (this.f.containsKey("name")) {
|
|
68689
68831
|
e = true;
|
|
68690
|
-
a.
|
|
68832
|
+
a.a6(this.f.item("name").c);
|
|
68691
68833
|
}
|
|
68692
68834
|
else {
|
|
68693
68835
|
if (this.e(a)) {
|
|
68694
68836
|
f = true;
|
|
68695
|
-
a.
|
|
68696
|
-
if (a.
|
|
68837
|
+
a.a5(c);
|
|
68838
|
+
if (a.s) {
|
|
68697
68839
|
this.g.add("name");
|
|
68698
68840
|
this.f.addItem("name", ((function () {
|
|
68699
68841
|
var $ret = new CodeGenerationItemBuilderPropertyInfo();
|
|
68700
|
-
$ret.c = a.
|
|
68842
|
+
$ret.c = a.ad;
|
|
68701
68843
|
return $ret;
|
|
68702
68844
|
})()));
|
|
68703
68845
|
}
|
|
@@ -68705,13 +68847,13 @@ var CodeGenerationItemBuilder = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
68705
68847
|
this.g.add("Name");
|
|
68706
68848
|
this.f.addItem("Name", ((function () {
|
|
68707
68849
|
var $ret = new CodeGenerationItemBuilderPropertyInfo();
|
|
68708
|
-
$ret.c = a.
|
|
68850
|
+
$ret.c = a.ad;
|
|
68709
68851
|
return $ret;
|
|
68710
68852
|
})()));
|
|
68711
68853
|
}
|
|
68712
68854
|
}
|
|
68713
68855
|
}
|
|
68714
|
-
a.
|
|
68856
|
+
a.au(c);
|
|
68715
68857
|
var g = 0;
|
|
68716
68858
|
try {
|
|
68717
68859
|
for (var _c = __values(fromEnum(this.g)), _d = _c.next(); !_d.done; _d = _c.next()) {
|
|
@@ -68721,13 +68863,13 @@ var CodeGenerationItemBuilder = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
68721
68863
|
continue;
|
|
68722
68864
|
}
|
|
68723
68865
|
if (this.d(h, i)) {
|
|
68724
|
-
a.
|
|
68866
|
+
a.a0(g, h, i, this.c);
|
|
68725
68867
|
g++;
|
|
68726
68868
|
}
|
|
68727
68869
|
}
|
|
68728
68870
|
}
|
|
68729
|
-
catch (
|
|
68730
|
-
|
|
68871
|
+
catch (e_15_1) {
|
|
68872
|
+
e_15 = { error: e_15_1 };
|
|
68731
68873
|
}
|
|
68732
68874
|
finally {
|
|
68733
68875
|
try {
|
|
@@ -68735,11 +68877,11 @@ var CodeGenerationItemBuilder = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
68735
68877
|
_a.call(_c);
|
|
68736
68878
|
}
|
|
68737
68879
|
finally {
|
|
68738
|
-
if (
|
|
68739
|
-
throw
|
|
68880
|
+
if (e_15)
|
|
68881
|
+
throw e_15.error;
|
|
68740
68882
|
}
|
|
68741
68883
|
}
|
|
68742
|
-
a.
|
|
68884
|
+
a.a7();
|
|
68743
68885
|
var j = 0;
|
|
68744
68886
|
try {
|
|
68745
68887
|
for (var _e = __values(fromEnum(this.g)), _f = _e.next(); !_f.done; _f = _e.next()) {
|
|
@@ -68749,13 +68891,13 @@ var CodeGenerationItemBuilder = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
68749
68891
|
continue;
|
|
68750
68892
|
}
|
|
68751
68893
|
if (!this.d(k, l)) {
|
|
68752
|
-
a.
|
|
68894
|
+
a.a1(j, k, l, this.c);
|
|
68753
68895
|
j++;
|
|
68754
68896
|
}
|
|
68755
68897
|
}
|
|
68756
68898
|
}
|
|
68757
|
-
catch (
|
|
68758
|
-
|
|
68899
|
+
catch (e_16_1) {
|
|
68900
|
+
e_16 = { error: e_16_1 };
|
|
68759
68901
|
}
|
|
68760
68902
|
finally {
|
|
68761
68903
|
try {
|
|
@@ -68763,22 +68905,22 @@ var CodeGenerationItemBuilder = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
68763
68905
|
_b.call(_e);
|
|
68764
68906
|
}
|
|
68765
68907
|
finally {
|
|
68766
|
-
if (
|
|
68767
|
-
throw
|
|
68908
|
+
if (e_16)
|
|
68909
|
+
throw e_16.error;
|
|
68768
68910
|
}
|
|
68769
68911
|
}
|
|
68770
|
-
a.
|
|
68912
|
+
a.a2(c);
|
|
68771
68913
|
if (e) {
|
|
68772
|
-
a.
|
|
68914
|
+
a.a4();
|
|
68773
68915
|
}
|
|
68774
68916
|
else {
|
|
68775
68917
|
if (f) {
|
|
68776
|
-
a.
|
|
68918
|
+
a.a3();
|
|
68777
68919
|
}
|
|
68778
68920
|
}
|
|
68779
68921
|
};
|
|
68780
68922
|
CodeGenerationItemBuilder.prototype.e = function (a) {
|
|
68781
|
-
var
|
|
68923
|
+
var e_17, _a;
|
|
68782
68924
|
try {
|
|
68783
68925
|
for (var _b = __values(fromEnum(this.g)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
68784
68926
|
var b = _c.value;
|
|
@@ -68788,8 +68930,8 @@ var CodeGenerationItemBuilder = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
68788
68930
|
}
|
|
68789
68931
|
}
|
|
68790
68932
|
}
|
|
68791
|
-
catch (
|
|
68792
|
-
|
|
68933
|
+
catch (e_17_1) {
|
|
68934
|
+
e_17 = { error: e_17_1 };
|
|
68793
68935
|
}
|
|
68794
68936
|
finally {
|
|
68795
68937
|
try {
|
|
@@ -68797,8 +68939,8 @@ var CodeGenerationItemBuilder = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
68797
68939
|
_a.call(_b);
|
|
68798
68940
|
}
|
|
68799
68941
|
finally {
|
|
68800
|
-
if (
|
|
68801
|
-
throw
|
|
68942
|
+
if (e_17)
|
|
68943
|
+
throw e_17.error;
|
|
68802
68944
|
}
|
|
68803
68945
|
}
|
|
68804
68946
|
return false;
|
|
@@ -70091,51 +70233,55 @@ var CodeGenerationFolderTemplate = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
70091
70233
|
for (var i = 0; i < h.length; i++) {
|
|
70092
70234
|
d.add_1(h[i]);
|
|
70093
70235
|
}
|
|
70094
|
-
|
|
70095
|
-
|
|
70096
|
-
|
|
70097
|
-
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]);
|
|
70098
70239
|
}
|
|
70099
70240
|
for (var l = 0; l < this.b.count; l++) {
|
|
70100
|
-
var m =
|
|
70101
|
-
|
|
70102
|
-
|
|
70103
|
-
|
|
70104
|
-
|
|
70105
|
-
|
|
70106
|
-
var
|
|
70107
|
-
q =
|
|
70108
|
-
|
|
70109
|
-
|
|
70110
|
-
|
|
70111
|
-
|
|
70112
|
-
|
|
70113
|
-
|
|
70114
|
-
|
|
70115
|
-
|
|
70116
|
-
|
|
70117
|
-
|
|
70118
|
-
|
|
70119
|
-
|
|
70120
|
-
|
|
70121
|
-
|
|
70122
|
-
|
|
70123
|
-
|
|
70124
|
-
|
|
70125
|
-
|
|
70126
|
-
|
|
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;
|
|
70127
70273
|
}
|
|
70128
70274
|
}
|
|
70129
70275
|
try {
|
|
70130
70276
|
for (var _c = __values(fromEnum(a.getNewFiles())), _d = _c.next(); !_d.done; _d = _c.next()) {
|
|
70131
|
-
var
|
|
70132
|
-
var
|
|
70133
|
-
var
|
|
70277
|
+
var ae = _d.value;
|
|
70278
|
+
var af = a.getNewFileContent(ae);
|
|
70279
|
+
var ag = "";
|
|
70134
70280
|
try {
|
|
70135
70281
|
for (var _e = (e_2 = void 0, __values(fromEnum(this.d))), _f = _e.next(); !_f.done; _f = _e.next()) {
|
|
70136
|
-
var
|
|
70137
|
-
if (stringStartsWith(
|
|
70138
|
-
|
|
70282
|
+
var ah = _f.value;
|
|
70283
|
+
if (stringStartsWith(ah, "src")) {
|
|
70284
|
+
ag = "src/";
|
|
70139
70285
|
}
|
|
70140
70286
|
}
|
|
70141
70287
|
}
|
|
@@ -70152,8 +70298,8 @@ var CodeGenerationFolderTemplate = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
70152
70298
|
throw e_2.error;
|
|
70153
70299
|
}
|
|
70154
70300
|
}
|
|
70155
|
-
this.d.add(
|
|
70156
|
-
this.c.add(
|
|
70301
|
+
this.d.add(ag + ae);
|
|
70302
|
+
this.c.add(af);
|
|
70157
70303
|
}
|
|
70158
70304
|
}
|
|
70159
70305
|
catch (e_1_1) {
|
|
@@ -70182,7 +70328,7 @@ var CodeGenerationFolderTemplate = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
70182
70328
|
var g = new CodeGeneratingRegexHelper("(?:(<!--)|(\\/\\/))\\s*insert " + e + "(?:(\\s*-->)?)[\\w\\W\\r\\n]*?(?:(<!--)|(\\/\\/))\\s*end " + e + "(?:(\\s*-->)?)((\\r\\n)|(\\n))");
|
|
70183
70329
|
a = g.b(a, function (h, i, j) {
|
|
70184
70330
|
var e_4, _a;
|
|
70185
|
-
var k = c.
|
|
70331
|
+
var k = c.q(e);
|
|
70186
70332
|
var l = new CodeGeneratingImportManager();
|
|
70187
70333
|
try {
|
|
70188
70334
|
for (var _b = (e_4 = void 0, __values(fromEnum(k))), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
@@ -128258,50 +128404,50 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128258
128404
|
__extends(StackedFragmentSeriesDescription, _super);
|
|
128259
128405
|
function StackedFragmentSeriesDescription() {
|
|
128260
128406
|
var _this = _super.call(this) || this;
|
|
128261
|
-
_this.
|
|
128262
|
-
_this.
|
|
128263
|
-
_this.
|
|
128407
|
+
_this.b6 = null;
|
|
128408
|
+
_this.b5 = null;
|
|
128409
|
+
_this.bn = null;
|
|
128264
128410
|
_this.j = false;
|
|
128265
128411
|
_this.f = false;
|
|
128266
128412
|
_this.an = 0;
|
|
128267
128413
|
_this.ac = 0;
|
|
128268
|
-
_this.
|
|
128269
|
-
_this.
|
|
128414
|
+
_this.cl = null;
|
|
128415
|
+
_this.bz = null;
|
|
128270
128416
|
_this.m = false;
|
|
128271
128417
|
_this.i = false;
|
|
128272
128418
|
_this.ao = 0;
|
|
128273
128419
|
_this.ad = 0;
|
|
128274
128420
|
_this.ap = 0;
|
|
128275
128421
|
_this.ae = 0;
|
|
128276
|
-
_this.b7 = null;
|
|
128277
|
-
_this.bo = null;
|
|
128278
|
-
_this.b8 = null;
|
|
128279
|
-
_this.bp = null;
|
|
128280
128422
|
_this.b9 = null;
|
|
128281
128423
|
_this.bq = null;
|
|
128282
|
-
_this.b6 = null;
|
|
128283
|
-
_this.b5 = null;
|
|
128284
|
-
_this.bn = null;
|
|
128285
|
-
_this.bm = null;
|
|
128286
128424
|
_this.ca = null;
|
|
128287
128425
|
_this.br = null;
|
|
128288
128426
|
_this.cb = null;
|
|
128289
128427
|
_this.bs = null;
|
|
128428
|
+
_this.b8 = null;
|
|
128429
|
+
_this.b7 = null;
|
|
128430
|
+
_this.bp = null;
|
|
128431
|
+
_this.bo = null;
|
|
128290
128432
|
_this.cc = null;
|
|
128291
128433
|
_this.bt = null;
|
|
128292
128434
|
_this.cd = null;
|
|
128293
128435
|
_this.bu = null;
|
|
128294
128436
|
_this.ce = null;
|
|
128437
|
+
_this.bv = null;
|
|
128438
|
+
_this.cf = null;
|
|
128439
|
+
_this.bw = null;
|
|
128440
|
+
_this.cg = null;
|
|
128295
128441
|
_this.ak = 0;
|
|
128296
128442
|
_this.z = 0;
|
|
128297
|
-
_this.
|
|
128298
|
-
_this.
|
|
128443
|
+
_this.ch = null;
|
|
128444
|
+
_this.bx = null;
|
|
128299
128445
|
_this.ag = 0;
|
|
128300
128446
|
_this.v = 0;
|
|
128301
128447
|
_this.ai = 0;
|
|
128302
128448
|
_this.x = 0;
|
|
128303
|
-
_this.
|
|
128304
|
-
_this.
|
|
128449
|
+
_this.ci = null;
|
|
128450
|
+
_this.by = null;
|
|
128305
128451
|
_this.ah = 0;
|
|
128306
128452
|
_this.w = 0;
|
|
128307
128453
|
_this.al = 0;
|
|
@@ -128314,28 +128460,28 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128314
128460
|
_this.af = 0;
|
|
128315
128461
|
_this.aj = 0;
|
|
128316
128462
|
_this.y = 0;
|
|
128317
|
-
_this.
|
|
128318
|
-
_this.
|
|
128463
|
+
_this.bl = null;
|
|
128464
|
+
_this.cm = null;
|
|
128319
128465
|
_this.bf = 0;
|
|
128320
128466
|
_this.bg = 0;
|
|
128321
|
-
_this.cm = null;
|
|
128322
128467
|
_this.cn = null;
|
|
128323
|
-
_this.l = false;
|
|
128324
128468
|
_this.co = null;
|
|
128469
|
+
_this.l = false;
|
|
128470
|
+
_this.cp = null;
|
|
128325
128471
|
_this.h = false;
|
|
128326
128472
|
_this.be = 0;
|
|
128327
|
-
_this.
|
|
128473
|
+
_this.b2 = null;
|
|
128474
|
+
_this.b3 = null;
|
|
128328
128475
|
_this.b1 = null;
|
|
128329
|
-
_this.
|
|
128330
|
-
_this.by = null;
|
|
128476
|
+
_this.b0 = null;
|
|
128331
128477
|
_this.bd = 0;
|
|
128332
|
-
_this.cr = null;
|
|
128333
|
-
_this.cp = null;
|
|
128334
|
-
_this.cq = null;
|
|
128335
128478
|
_this.cs = null;
|
|
128336
|
-
_this.
|
|
128337
|
-
_this.
|
|
128338
|
-
_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;
|
|
128339
128485
|
return _this;
|
|
128340
128486
|
}
|
|
128341
128487
|
StackedFragmentSeriesDescription.prototype.get_type = function () {
|
|
@@ -128350,10 +128496,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128350
128496
|
});
|
|
128351
128497
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "dataSourceRef", {
|
|
128352
128498
|
get: function () {
|
|
128353
|
-
return this.
|
|
128499
|
+
return this.b6;
|
|
128354
128500
|
},
|
|
128355
128501
|
set: function (a) {
|
|
128356
|
-
this.
|
|
128502
|
+
this.b6 = a;
|
|
128357
128503
|
this.e("DataSourceRef");
|
|
128358
128504
|
},
|
|
128359
128505
|
enumerable: false,
|
|
@@ -128361,10 +128507,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128361
128507
|
});
|
|
128362
128508
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "brush", {
|
|
128363
128509
|
get: function () {
|
|
128364
|
-
return this.
|
|
128510
|
+
return this.b5;
|
|
128365
128511
|
},
|
|
128366
128512
|
set: function (a) {
|
|
128367
|
-
this.
|
|
128513
|
+
this.b5 = a;
|
|
128368
128514
|
this.e("Brush");
|
|
128369
128515
|
},
|
|
128370
128516
|
enumerable: false,
|
|
@@ -128372,10 +128518,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128372
128518
|
});
|
|
128373
128519
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualBrush", {
|
|
128374
128520
|
get: function () {
|
|
128375
|
-
return this.
|
|
128521
|
+
return this.bn;
|
|
128376
128522
|
},
|
|
128377
128523
|
set: function (a) {
|
|
128378
|
-
this.
|
|
128524
|
+
this.bn = a;
|
|
128379
128525
|
this.e("ActualBrush");
|
|
128380
128526
|
},
|
|
128381
128527
|
enumerable: false,
|
|
@@ -128427,10 +128573,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128427
128573
|
});
|
|
128428
128574
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "shadowColor", {
|
|
128429
128575
|
get: function () {
|
|
128430
|
-
return this.
|
|
128576
|
+
return this.cl;
|
|
128431
128577
|
},
|
|
128432
128578
|
set: function (a) {
|
|
128433
|
-
this.
|
|
128579
|
+
this.cl = a;
|
|
128434
128580
|
this.e("ShadowColor");
|
|
128435
128581
|
},
|
|
128436
128582
|
enumerable: false,
|
|
@@ -128438,10 +128584,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128438
128584
|
});
|
|
128439
128585
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualShadowColor", {
|
|
128440
128586
|
get: function () {
|
|
128441
|
-
return this.
|
|
128587
|
+
return this.bz;
|
|
128442
128588
|
},
|
|
128443
128589
|
set: function (a) {
|
|
128444
|
-
this.
|
|
128590
|
+
this.bz = a;
|
|
128445
128591
|
this.e("ActualShadowColor");
|
|
128446
128592
|
},
|
|
128447
128593
|
enumerable: false,
|
|
@@ -128515,10 +128661,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128515
128661
|
});
|
|
128516
128662
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "legendItemBadgeTemplateRef", {
|
|
128517
128663
|
get: function () {
|
|
128518
|
-
return this.
|
|
128664
|
+
return this.b9;
|
|
128519
128665
|
},
|
|
128520
128666
|
set: function (a) {
|
|
128521
|
-
this.
|
|
128667
|
+
this.b9 = a;
|
|
128522
128668
|
this.e("LegendItemBadgeTemplateRef");
|
|
128523
128669
|
},
|
|
128524
128670
|
enumerable: false,
|
|
@@ -128526,10 +128672,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128526
128672
|
});
|
|
128527
128673
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualLegendItemBadgeTemplateRef", {
|
|
128528
128674
|
get: function () {
|
|
128529
|
-
return this.
|
|
128675
|
+
return this.bq;
|
|
128530
128676
|
},
|
|
128531
128677
|
set: function (a) {
|
|
128532
|
-
this.
|
|
128678
|
+
this.bq = a;
|
|
128533
128679
|
this.e("ActualLegendItemBadgeTemplateRef");
|
|
128534
128680
|
},
|
|
128535
128681
|
enumerable: false,
|
|
@@ -128537,10 +128683,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128537
128683
|
});
|
|
128538
128684
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "legendItemTemplateRef", {
|
|
128539
128685
|
get: function () {
|
|
128540
|
-
return this.
|
|
128686
|
+
return this.ca;
|
|
128541
128687
|
},
|
|
128542
128688
|
set: function (a) {
|
|
128543
|
-
this.
|
|
128689
|
+
this.ca = a;
|
|
128544
128690
|
this.e("LegendItemTemplateRef");
|
|
128545
128691
|
},
|
|
128546
128692
|
enumerable: false,
|
|
@@ -128548,10 +128694,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128548
128694
|
});
|
|
128549
128695
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualLegendItemTemplateRef", {
|
|
128550
128696
|
get: function () {
|
|
128551
|
-
return this.
|
|
128697
|
+
return this.br;
|
|
128552
128698
|
},
|
|
128553
128699
|
set: function (a) {
|
|
128554
|
-
this.
|
|
128700
|
+
this.br = a;
|
|
128555
128701
|
this.e("ActualLegendItemTemplateRef");
|
|
128556
128702
|
},
|
|
128557
128703
|
enumerable: false,
|
|
@@ -128559,10 +128705,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128559
128705
|
});
|
|
128560
128706
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "legendItemVisibility", {
|
|
128561
128707
|
get: function () {
|
|
128562
|
-
return this.
|
|
128708
|
+
return this.cb;
|
|
128563
128709
|
},
|
|
128564
128710
|
set: function (a) {
|
|
128565
|
-
this.
|
|
128711
|
+
this.cb = a;
|
|
128566
128712
|
this.e("LegendItemVisibility");
|
|
128567
128713
|
},
|
|
128568
128714
|
enumerable: false,
|
|
@@ -128570,10 +128716,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128570
128716
|
});
|
|
128571
128717
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualLegendItemVisibility", {
|
|
128572
128718
|
get: function () {
|
|
128573
|
-
return this.
|
|
128719
|
+
return this.bs;
|
|
128574
128720
|
},
|
|
128575
128721
|
set: function (a) {
|
|
128576
|
-
this.
|
|
128722
|
+
this.bs = a;
|
|
128577
128723
|
this.e("ActualLegendItemVisibility");
|
|
128578
128724
|
},
|
|
128579
128725
|
enumerable: false,
|
|
@@ -128581,10 +128727,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128581
128727
|
});
|
|
128582
128728
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "legendItemBadgeShape", {
|
|
128583
128729
|
get: function () {
|
|
128584
|
-
return this.
|
|
128730
|
+
return this.b8;
|
|
128585
128731
|
},
|
|
128586
128732
|
set: function (a) {
|
|
128587
|
-
this.
|
|
128733
|
+
this.b8 = a;
|
|
128588
128734
|
this.e("LegendItemBadgeShape");
|
|
128589
128735
|
},
|
|
128590
128736
|
enumerable: false,
|
|
@@ -128592,10 +128738,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128592
128738
|
});
|
|
128593
128739
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "legendItemBadgeMode", {
|
|
128594
128740
|
get: function () {
|
|
128595
|
-
return this.
|
|
128741
|
+
return this.b7;
|
|
128596
128742
|
},
|
|
128597
128743
|
set: function (a) {
|
|
128598
|
-
this.
|
|
128744
|
+
this.b7 = a;
|
|
128599
128745
|
this.e("LegendItemBadgeMode");
|
|
128600
128746
|
},
|
|
128601
128747
|
enumerable: false,
|
|
@@ -128603,10 +128749,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128603
128749
|
});
|
|
128604
128750
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualLegendItemBadgeShape", {
|
|
128605
128751
|
get: function () {
|
|
128606
|
-
return this.
|
|
128752
|
+
return this.bp;
|
|
128607
128753
|
},
|
|
128608
128754
|
set: function (a) {
|
|
128609
|
-
this.
|
|
128755
|
+
this.bp = a;
|
|
128610
128756
|
this.e("ActualLegendItemBadgeShape");
|
|
128611
128757
|
},
|
|
128612
128758
|
enumerable: false,
|
|
@@ -128614,10 +128760,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128614
128760
|
});
|
|
128615
128761
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualLegendItemBadgeMode", {
|
|
128616
128762
|
get: function () {
|
|
128617
|
-
return this.
|
|
128763
|
+
return this.bo;
|
|
128618
128764
|
},
|
|
128619
128765
|
set: function (a) {
|
|
128620
|
-
this.
|
|
128766
|
+
this.bo = a;
|
|
128621
128767
|
this.e("ActualLegendItemBadgeMode");
|
|
128622
128768
|
},
|
|
128623
128769
|
enumerable: false,
|
|
@@ -128625,10 +128771,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128625
128771
|
});
|
|
128626
128772
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "markerBrush", {
|
|
128627
128773
|
get: function () {
|
|
128628
|
-
return this.
|
|
128774
|
+
return this.cc;
|
|
128629
128775
|
},
|
|
128630
128776
|
set: function (a) {
|
|
128631
|
-
this.
|
|
128777
|
+
this.cc = a;
|
|
128632
128778
|
this.e("MarkerBrush");
|
|
128633
128779
|
},
|
|
128634
128780
|
enumerable: false,
|
|
@@ -128636,10 +128782,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128636
128782
|
});
|
|
128637
128783
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualMarkerBrush", {
|
|
128638
128784
|
get: function () {
|
|
128639
|
-
return this.
|
|
128785
|
+
return this.bt;
|
|
128640
128786
|
},
|
|
128641
128787
|
set: function (a) {
|
|
128642
|
-
this.
|
|
128788
|
+
this.bt = a;
|
|
128643
128789
|
this.e("ActualMarkerBrush");
|
|
128644
128790
|
},
|
|
128645
128791
|
enumerable: false,
|
|
@@ -128647,10 +128793,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128647
128793
|
});
|
|
128648
128794
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "markerOutline", {
|
|
128649
128795
|
get: function () {
|
|
128650
|
-
return this.
|
|
128796
|
+
return this.cd;
|
|
128651
128797
|
},
|
|
128652
128798
|
set: function (a) {
|
|
128653
|
-
this.
|
|
128799
|
+
this.cd = a;
|
|
128654
128800
|
this.e("MarkerOutline");
|
|
128655
128801
|
},
|
|
128656
128802
|
enumerable: false,
|
|
@@ -128658,10 +128804,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128658
128804
|
});
|
|
128659
128805
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualMarkerOutline", {
|
|
128660
128806
|
get: function () {
|
|
128661
|
-
return this.
|
|
128807
|
+
return this.bu;
|
|
128662
128808
|
},
|
|
128663
128809
|
set: function (a) {
|
|
128664
|
-
this.
|
|
128810
|
+
this.bu = a;
|
|
128665
128811
|
this.e("ActualMarkerOutline");
|
|
128666
128812
|
},
|
|
128667
128813
|
enumerable: false,
|
|
@@ -128669,10 +128815,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128669
128815
|
});
|
|
128670
128816
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "markerTemplateRef", {
|
|
128671
128817
|
get: function () {
|
|
128672
|
-
return this.
|
|
128818
|
+
return this.ce;
|
|
128673
128819
|
},
|
|
128674
128820
|
set: function (a) {
|
|
128675
|
-
this.
|
|
128821
|
+
this.ce = a;
|
|
128676
128822
|
this.e("MarkerTemplateRef");
|
|
128677
128823
|
},
|
|
128678
128824
|
enumerable: false,
|
|
@@ -128680,10 +128826,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128680
128826
|
});
|
|
128681
128827
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualMarkerTemplateRef", {
|
|
128682
128828
|
get: function () {
|
|
128683
|
-
return this.
|
|
128829
|
+
return this.bv;
|
|
128684
128830
|
},
|
|
128685
128831
|
set: function (a) {
|
|
128686
|
-
this.
|
|
128832
|
+
this.bv = a;
|
|
128687
128833
|
this.e("ActualMarkerTemplateRef");
|
|
128688
128834
|
},
|
|
128689
128835
|
enumerable: false,
|
|
@@ -128691,10 +128837,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128691
128837
|
});
|
|
128692
128838
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "markerType", {
|
|
128693
128839
|
get: function () {
|
|
128694
|
-
return this.
|
|
128840
|
+
return this.cf;
|
|
128695
128841
|
},
|
|
128696
128842
|
set: function (a) {
|
|
128697
|
-
this.
|
|
128843
|
+
this.cf = a;
|
|
128698
128844
|
this.e("MarkerType");
|
|
128699
128845
|
},
|
|
128700
128846
|
enumerable: false,
|
|
@@ -128702,10 +128848,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128702
128848
|
});
|
|
128703
128849
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualMarkerType", {
|
|
128704
128850
|
get: function () {
|
|
128705
|
-
return this.
|
|
128851
|
+
return this.bw;
|
|
128706
128852
|
},
|
|
128707
128853
|
set: function (a) {
|
|
128708
|
-
this.
|
|
128854
|
+
this.bw = a;
|
|
128709
128855
|
this.e("ActualMarkerType");
|
|
128710
128856
|
},
|
|
128711
128857
|
enumerable: false,
|
|
@@ -128713,10 +128859,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128713
128859
|
});
|
|
128714
128860
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "name", {
|
|
128715
128861
|
get: function () {
|
|
128716
|
-
return this.
|
|
128862
|
+
return this.cg;
|
|
128717
128863
|
},
|
|
128718
128864
|
set: function (a) {
|
|
128719
|
-
this.
|
|
128865
|
+
this.cg = a;
|
|
128720
128866
|
this.e("Name");
|
|
128721
128867
|
},
|
|
128722
128868
|
enumerable: false,
|
|
@@ -128746,10 +128892,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128746
128892
|
});
|
|
128747
128893
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "outline", {
|
|
128748
128894
|
get: function () {
|
|
128749
|
-
return this.
|
|
128895
|
+
return this.ch;
|
|
128750
128896
|
},
|
|
128751
128897
|
set: function (a) {
|
|
128752
|
-
this.
|
|
128898
|
+
this.ch = a;
|
|
128753
128899
|
this.e("Outline");
|
|
128754
128900
|
},
|
|
128755
128901
|
enumerable: false,
|
|
@@ -128757,10 +128903,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128757
128903
|
});
|
|
128758
128904
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualOutline", {
|
|
128759
128905
|
get: function () {
|
|
128760
|
-
return this.
|
|
128906
|
+
return this.bx;
|
|
128761
128907
|
},
|
|
128762
128908
|
set: function (a) {
|
|
128763
|
-
this.
|
|
128909
|
+
this.bx = a;
|
|
128764
128910
|
this.e("ActualOutline");
|
|
128765
128911
|
},
|
|
128766
128912
|
enumerable: false,
|
|
@@ -128812,10 +128958,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128812
128958
|
});
|
|
128813
128959
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "outlineMode", {
|
|
128814
128960
|
get: function () {
|
|
128815
|
-
return this.
|
|
128961
|
+
return this.ci;
|
|
128816
128962
|
},
|
|
128817
128963
|
set: function (a) {
|
|
128818
|
-
this.
|
|
128964
|
+
this.ci = a;
|
|
128819
128965
|
this.e("OutlineMode");
|
|
128820
128966
|
},
|
|
128821
128967
|
enumerable: false,
|
|
@@ -128823,10 +128969,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128823
128969
|
});
|
|
128824
128970
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualOutlineMode", {
|
|
128825
128971
|
get: function () {
|
|
128826
|
-
return this.
|
|
128972
|
+
return this.by;
|
|
128827
128973
|
},
|
|
128828
128974
|
set: function (a) {
|
|
128829
|
-
this.
|
|
128975
|
+
this.by = a;
|
|
128830
128976
|
this.e("ActualOutlineMode");
|
|
128831
128977
|
},
|
|
128832
128978
|
enumerable: false,
|
|
@@ -128964,23 +129110,23 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
128964
129110
|
enumerable: false,
|
|
128965
129111
|
configurable: true
|
|
128966
129112
|
});
|
|
128967
|
-
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "
|
|
129113
|
+
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "title", {
|
|
128968
129114
|
get: function () {
|
|
128969
|
-
return this.
|
|
129115
|
+
return this.bl;
|
|
128970
129116
|
},
|
|
128971
129117
|
set: function (a) {
|
|
128972
|
-
this.
|
|
128973
|
-
this.e("
|
|
129118
|
+
this.bl = a;
|
|
129119
|
+
this.e("Title");
|
|
128974
129120
|
},
|
|
128975
129121
|
enumerable: false,
|
|
128976
129122
|
configurable: true
|
|
128977
129123
|
});
|
|
128978
129124
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "transitionEasingFunctionRef", {
|
|
128979
129125
|
get: function () {
|
|
128980
|
-
return this.
|
|
129126
|
+
return this.cm;
|
|
128981
129127
|
},
|
|
128982
129128
|
set: function (a) {
|
|
128983
|
-
this.
|
|
129129
|
+
this.cm = a;
|
|
128984
129130
|
this.e("TransitionEasingFunctionRef");
|
|
128985
129131
|
},
|
|
128986
129132
|
enumerable: false,
|
|
@@ -129010,10 +129156,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
129010
129156
|
});
|
|
129011
129157
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "transitionInEasingFunctionRef", {
|
|
129012
129158
|
get: function () {
|
|
129013
|
-
return this.
|
|
129159
|
+
return this.cn;
|
|
129014
129160
|
},
|
|
129015
129161
|
set: function (a) {
|
|
129016
|
-
this.
|
|
129162
|
+
this.cn = a;
|
|
129017
129163
|
this.e("TransitionInEasingFunctionRef");
|
|
129018
129164
|
},
|
|
129019
129165
|
enumerable: false,
|
|
@@ -129021,10 +129167,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
129021
129167
|
});
|
|
129022
129168
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "transitionInMode", {
|
|
129023
129169
|
get: function () {
|
|
129024
|
-
return this.
|
|
129170
|
+
return this.co;
|
|
129025
129171
|
},
|
|
129026
129172
|
set: function (a) {
|
|
129027
|
-
this.
|
|
129173
|
+
this.co = a;
|
|
129028
129174
|
this.e("TransitionInMode");
|
|
129029
129175
|
},
|
|
129030
129176
|
enumerable: false,
|
|
@@ -129043,10 +129189,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
129043
129189
|
});
|
|
129044
129190
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "transitionInSpeedType", {
|
|
129045
129191
|
get: function () {
|
|
129046
|
-
return this.
|
|
129192
|
+
return this.cp;
|
|
129047
129193
|
},
|
|
129048
129194
|
set: function (a) {
|
|
129049
|
-
this.
|
|
129195
|
+
this.cp = a;
|
|
129050
129196
|
this.e("TransitionInSpeedType");
|
|
129051
129197
|
},
|
|
129052
129198
|
enumerable: false,
|
|
@@ -129076,10 +129222,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
129076
129222
|
});
|
|
129077
129223
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualTransitionInMode", {
|
|
129078
129224
|
get: function () {
|
|
129079
|
-
return this.
|
|
129225
|
+
return this.b2;
|
|
129080
129226
|
},
|
|
129081
129227
|
set: function (a) {
|
|
129082
|
-
this.
|
|
129228
|
+
this.b2 = a;
|
|
129083
129229
|
this.e("ActualTransitionInMode");
|
|
129084
129230
|
},
|
|
129085
129231
|
enumerable: false,
|
|
@@ -129087,10 +129233,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
129087
129233
|
});
|
|
129088
129234
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualTransitionInSpeedType", {
|
|
129089
129235
|
get: function () {
|
|
129090
|
-
return this.
|
|
129236
|
+
return this.b3;
|
|
129091
129237
|
},
|
|
129092
129238
|
set: function (a) {
|
|
129093
|
-
this.
|
|
129239
|
+
this.b3 = a;
|
|
129094
129240
|
this.e("ActualTransitionInSpeedType");
|
|
129095
129241
|
},
|
|
129096
129242
|
enumerable: false,
|
|
@@ -129098,10 +129244,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
129098
129244
|
});
|
|
129099
129245
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualTransitionInEasingFunctionRef", {
|
|
129100
129246
|
get: function () {
|
|
129101
|
-
return this.
|
|
129247
|
+
return this.b1;
|
|
129102
129248
|
},
|
|
129103
129249
|
set: function (a) {
|
|
129104
|
-
this.
|
|
129250
|
+
this.b1 = a;
|
|
129105
129251
|
this.e("ActualTransitionInEasingFunctionRef");
|
|
129106
129252
|
},
|
|
129107
129253
|
enumerable: false,
|
|
@@ -129109,10 +129255,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
129109
129255
|
});
|
|
129110
129256
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualTransitionEasingFunctionRef", {
|
|
129111
129257
|
get: function () {
|
|
129112
|
-
return this.
|
|
129258
|
+
return this.b0;
|
|
129113
129259
|
},
|
|
129114
129260
|
set: function (a) {
|
|
129115
|
-
this.
|
|
129261
|
+
this.b0 = a;
|
|
129116
129262
|
this.e("ActualTransitionEasingFunctionRef");
|
|
129117
129263
|
},
|
|
129118
129264
|
enumerable: false,
|
|
@@ -129131,10 +129277,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
129131
129277
|
});
|
|
129132
129278
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "valueMemberPath", {
|
|
129133
129279
|
get: function () {
|
|
129134
|
-
return this.
|
|
129280
|
+
return this.cs;
|
|
129135
129281
|
},
|
|
129136
129282
|
set: function (a) {
|
|
129137
|
-
this.
|
|
129283
|
+
this.cs = a;
|
|
129138
129284
|
this.e("ValueMemberPath");
|
|
129139
129285
|
},
|
|
129140
129286
|
enumerable: false,
|
|
@@ -129142,10 +129288,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
129142
129288
|
});
|
|
129143
129289
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "valueMemberAsLegendLabel", {
|
|
129144
129290
|
get: function () {
|
|
129145
|
-
return this.
|
|
129291
|
+
return this.cq;
|
|
129146
129292
|
},
|
|
129147
129293
|
set: function (a) {
|
|
129148
|
-
this.
|
|
129294
|
+
this.cq = a;
|
|
129149
129295
|
this.e("ValueMemberAsLegendLabel");
|
|
129150
129296
|
},
|
|
129151
129297
|
enumerable: false,
|
|
@@ -129153,10 +129299,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
129153
129299
|
});
|
|
129154
129300
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "valueMemberAsLegendUnit", {
|
|
129155
129301
|
get: function () {
|
|
129156
|
-
return this.
|
|
129302
|
+
return this.cr;
|
|
129157
129303
|
},
|
|
129158
129304
|
set: function (a) {
|
|
129159
|
-
this.
|
|
129305
|
+
this.cr = a;
|
|
129160
129306
|
this.e("ValueMemberAsLegendUnit");
|
|
129161
129307
|
},
|
|
129162
129308
|
enumerable: false,
|
|
@@ -129164,10 +129310,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
129164
129310
|
});
|
|
129165
129311
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "visibility", {
|
|
129166
129312
|
get: function () {
|
|
129167
|
-
return this.
|
|
129313
|
+
return this.ct;
|
|
129168
129314
|
},
|
|
129169
129315
|
set: function (a) {
|
|
129170
|
-
this.
|
|
129316
|
+
this.ct = a;
|
|
129171
129317
|
this.e("Visibility");
|
|
129172
129318
|
},
|
|
129173
129319
|
enumerable: false,
|
|
@@ -129175,10 +129321,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
129175
129321
|
});
|
|
129176
129322
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "actualVisibility", {
|
|
129177
129323
|
get: function () {
|
|
129178
|
-
return this.
|
|
129324
|
+
return this.b4;
|
|
129179
129325
|
},
|
|
129180
129326
|
set: function (a) {
|
|
129181
|
-
this.
|
|
129327
|
+
this.b4 = a;
|
|
129182
129328
|
this.e("ActualVisibility");
|
|
129183
129329
|
},
|
|
129184
129330
|
enumerable: false,
|
|
@@ -129186,10 +129332,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
129186
129332
|
});
|
|
129187
129333
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "parentOrLocalBrush", {
|
|
129188
129334
|
get: function () {
|
|
129189
|
-
return this.
|
|
129335
|
+
return this.cj;
|
|
129190
129336
|
},
|
|
129191
129337
|
set: function (a) {
|
|
129192
|
-
this.
|
|
129338
|
+
this.cj = a;
|
|
129193
129339
|
this.e("ParentOrLocalBrush");
|
|
129194
129340
|
},
|
|
129195
129341
|
enumerable: false,
|
|
@@ -129197,10 +129343,10 @@ var StackedFragmentSeriesDescription = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
129197
129343
|
});
|
|
129198
129344
|
Object.defineProperty(StackedFragmentSeriesDescription.prototype, "propertyUpdatedRef", {
|
|
129199
129345
|
get: function () {
|
|
129200
|
-
return this.
|
|
129346
|
+
return this.ck;
|
|
129201
129347
|
},
|
|
129202
129348
|
set: function (a) {
|
|
129203
|
-
this.
|
|
129349
|
+
this.ck = a;
|
|
129204
129350
|
this.e("PropertyUpdatedRef");
|
|
129205
129351
|
},
|
|
129206
129352
|
enumerable: false,
|
|
@@ -129302,7 +129448,7 @@ var StackedFragmentSeriesDescriptionMetadata = /** @class */ /*@__PURE__*/ (func
|
|
|
129302
129448
|
a.item("ActualThickness", "Number:double");
|
|
129303
129449
|
a.item("MarkerThickness", "Number:double");
|
|
129304
129450
|
a.item("ActualMarkerThickness", "Number:double");
|
|
129305
|
-
a.item("
|
|
129451
|
+
a.item("Title", "Unknown");
|
|
129306
129452
|
a.item("TransitionEasingFunctionRef", "(w:TransitionEasingFunction,wf:TransitionEasingFunction)MethodRef");
|
|
129307
129453
|
a.item("TransitionDuration", "Number:int");
|
|
129308
129454
|
a.item("TransitionInDuration", "Number:int");
|
|
@@ -176677,6 +176823,87 @@ var WebTreeDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
176677
176823
|
return WebTreeDescription;
|
|
176678
176824
|
}(Description));
|
|
176679
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
|
+
|
|
176680
176907
|
/*
|
|
176681
176908
|
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
176682
176909
|
https://www.infragistics.com/legal/license/igultimate-la
|
|
@@ -176703,13 +176930,13 @@ var WebTreeSelectionOptionsEventArgsDescription = /** @class */ /*@__PURE__*/ (f
|
|
|
176703
176930
|
enumerable: false,
|
|
176704
176931
|
configurable: true
|
|
176705
176932
|
});
|
|
176706
|
-
Object.defineProperty(WebTreeSelectionOptionsEventArgsDescription.prototype, "
|
|
176933
|
+
Object.defineProperty(WebTreeSelectionOptionsEventArgsDescription.prototype, "detail", {
|
|
176707
176934
|
get: function () {
|
|
176708
176935
|
return this.f;
|
|
176709
176936
|
},
|
|
176710
176937
|
set: function (a) {
|
|
176711
176938
|
this.f = a;
|
|
176712
|
-
this.e("
|
|
176939
|
+
this.e("Detail");
|
|
176713
176940
|
},
|
|
176714
176941
|
enumerable: false,
|
|
176715
176942
|
configurable: true
|
|
@@ -176741,10 +176968,11 @@ var WebTreeSelectionOptionsEventArgsDescriptionMetadata = /** @class */ /*@__PUR
|
|
|
176741
176968
|
return;
|
|
176742
176969
|
}
|
|
176743
176970
|
a.s(WebTreeSelectionOptionsEventArgsDescriptionMetadata.a);
|
|
176971
|
+
WebTreeSelectionOptionsEventDetailDescriptionMetadata.d(a);
|
|
176744
176972
|
};
|
|
176745
176973
|
WebTreeSelectionOptionsEventArgsDescriptionMetadata.c = function (a) {
|
|
176746
176974
|
a.item("__qualifiedNameTS", "String:TreeSelectionOptionsEventArgs");
|
|
176747
|
-
a.item("
|
|
176975
|
+
a.item("Detail", "ExportedType:WebTreeSelectionOptionsEventDetail");
|
|
176748
176976
|
};
|
|
176749
176977
|
WebTreeSelectionOptionsEventArgsDescriptionMetadata.d = function (a) {
|
|
176750
176978
|
WebTreeSelectionOptionsEventArgsDescriptionMetadata.b(a);
|
|
@@ -217903,4 +218131,4 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
|
|
|
217903
218131
|
* Generated bundle index. Do not edit.
|
|
217904
218132
|
*/
|
|
217905
218133
|
|
|
217906
|
-
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 };
|