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