igniteui-angular-core 18.2.0 → 19.0.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 +1190 -972
- package/bundles/igniteui-angular-core.umd.min.js +1 -1
- package/esm2015/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +251 -251
- package/esm2015/lib/ComponentRendererReferenceResolverEventArgs.js +33 -0
- package/esm2015/lib/ComponentRenderer_combined.js +586 -556
- package/esm2015/lib/DescriptionTreeReconciler.js +48 -46
- package/esm2015/lib/FunnelChartDescription.js +130 -114
- package/esm2015/lib/FunnelChartDescriptionMetadata.js +4 -0
- package/esm2015/lib/FunnelChartSelectedItemsChangedEventArgsDescription.js +50 -0
- package/esm2015/lib/FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata.js +39 -0
- package/esm2015/lib/IDataSeriesAdapterRule_combined.js +14 -6
- package/esm2015/lib/igx-component-renderer-container-component.js +5 -1
- package/esm2015/public_api.js +3 -0
- package/esm5/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +251 -251
- package/esm5/lib/ComponentRendererReferenceResolverEventArgs.js +43 -0
- package/esm5/lib/ComponentRenderer_combined.js +585 -555
- package/esm5/lib/DescriptionTreeReconciler.js +48 -46
- package/esm5/lib/FunnelChartDescription.js +137 -113
- package/esm5/lib/FunnelChartDescriptionMetadata.js +4 -0
- package/esm5/lib/FunnelChartSelectedItemsChangedEventArgsDescription.js +68 -0
- package/esm5/lib/FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata.js +43 -0
- package/esm5/lib/IDataSeriesAdapterRule_combined.js +14 -6
- package/esm5/lib/igx-component-renderer-container-component.js +5 -1
- package/esm5/public_api.js +3 -0
- package/fesm2015/igniteui-angular-core.js +1153 -972
- package/fesm5/igniteui-angular-core.js +1188 -973
- package/lib/CodeGeneratingComponentRendererCodeEmitter_combined.d.ts +26 -26
- package/lib/ComponentRendererReferenceResolverEventArgs.d.ts +13 -0
- package/lib/ComponentRenderer_combined.d.ts +115 -110
- package/lib/FunnelChartDescription.d.ts +46 -40
- package/lib/FunnelChartSelectedItemsChangedEventArgsDescription.d.ts +20 -0
- package/lib/FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata.d.ts +13 -0
- package/package.json +4 -4
- package/public_api.d.ts +3 -0
|
@@ -60796,13 +60796,15 @@
|
|
|
60796
60796
|
}
|
|
60797
60797
|
}
|
|
60798
60798
|
}
|
|
60799
|
-
|
|
60800
|
-
|
|
60801
|
-
var
|
|
60802
|
-
|
|
60803
|
-
|
|
60799
|
+
if (d.c.actualSchema != null) {
|
|
60800
|
+
var p = d.c.actualSchema.propertyNames;
|
|
60801
|
+
for (var r = 0; r < p.length; r++) {
|
|
60802
|
+
var q = p[r];
|
|
60803
|
+
if (e.contains(q) && p.length > 1) {
|
|
60804
|
+
continue;
|
|
60805
|
+
}
|
|
60806
|
+
b.add_1(new Tuple$2(String_$type, String_$type, q, c.analyzer.expandCamelCasedWords(q)));
|
|
60804
60807
|
}
|
|
60805
|
-
b.add_1(new Tuple$2(String_$type, String_$type, q, c.analyzer.expandCamelCasedWords(q)));
|
|
60806
60808
|
}
|
|
60807
60809
|
};
|
|
60808
60810
|
DataSeriesAdapterImplementation.prototype.bg = function () {
|
|
@@ -61066,9 +61068,15 @@
|
|
|
61066
61068
|
if (e) {
|
|
61067
61069
|
this.ay(c);
|
|
61068
61070
|
}
|
|
61071
|
+
else if (c.c != null) {
|
|
61072
|
+
c.c.flushAutoRefresh();
|
|
61073
|
+
}
|
|
61069
61074
|
return c;
|
|
61070
61075
|
}
|
|
61071
61076
|
c.c = h_1;
|
|
61077
|
+
if (c.c != null) {
|
|
61078
|
+
c.c.flushAutoRefresh();
|
|
61079
|
+
}
|
|
61072
61080
|
return c;
|
|
61073
61081
|
}
|
|
61074
61082
|
if (b && this.ae) {
|
|
@@ -77441,7 +77449,11 @@
|
|
|
77441
77449
|
};
|
|
77442
77450
|
IgxComponentRendererContainerComponent.prototype.replaceRootItem = function (t, deferAttach, continueActions) {
|
|
77443
77451
|
if (this._currentRoot != null) {
|
|
77444
|
-
this.
|
|
77452
|
+
if (this._currentRootRef) {
|
|
77453
|
+
this._currentRootRef.destroy();
|
|
77454
|
+
this._currentRootRef = null;
|
|
77455
|
+
this._currentRoot = null;
|
|
77456
|
+
}
|
|
77445
77457
|
}
|
|
77446
77458
|
var cf = this._componentFactoryResolver.resolveComponentFactory(t);
|
|
77447
77459
|
var cr = this._dynamicContent.createComponent(cf);
|
|
@@ -80266,6 +80278,47 @@
|
|
|
80266
80278
|
return TypeDescriptionCleanups;
|
|
80267
80279
|
}(Base));
|
|
80268
80280
|
|
|
80281
|
+
/*
|
|
80282
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
80283
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
80284
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
80285
|
+
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.
|
|
80286
|
+
*/
|
|
80287
|
+
/**
|
|
80288
|
+
* @hidden
|
|
80289
|
+
*/
|
|
80290
|
+
var ComponentRendererReferenceResolverEventArgs = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
80291
|
+
tslib.__extends(ComponentRendererReferenceResolverEventArgs, _super);
|
|
80292
|
+
function ComponentRendererReferenceResolverEventArgs() {
|
|
80293
|
+
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
80294
|
+
_this._found = false;
|
|
80295
|
+
_this._referenceValue = null;
|
|
80296
|
+
return _this;
|
|
80297
|
+
}
|
|
80298
|
+
Object.defineProperty(ComponentRendererReferenceResolverEventArgs.prototype, "found", {
|
|
80299
|
+
get: function () {
|
|
80300
|
+
return this._found;
|
|
80301
|
+
},
|
|
80302
|
+
set: function (a) {
|
|
80303
|
+
this._found = a;
|
|
80304
|
+
},
|
|
80305
|
+
enumerable: false,
|
|
80306
|
+
configurable: true
|
|
80307
|
+
});
|
|
80308
|
+
Object.defineProperty(ComponentRendererReferenceResolverEventArgs.prototype, "referenceValue", {
|
|
80309
|
+
get: function () {
|
|
80310
|
+
return this._referenceValue;
|
|
80311
|
+
},
|
|
80312
|
+
set: function (a) {
|
|
80313
|
+
this._referenceValue = a;
|
|
80314
|
+
},
|
|
80315
|
+
enumerable: false,
|
|
80316
|
+
configurable: true
|
|
80317
|
+
});
|
|
80318
|
+
ComponentRendererReferenceResolverEventArgs.$t = markType(ComponentRendererReferenceResolverEventArgs, 'ComponentRendererReferenceResolverEventArgs');
|
|
80319
|
+
return ComponentRendererReferenceResolverEventArgs;
|
|
80320
|
+
}(Base));
|
|
80321
|
+
|
|
80269
80322
|
/*
|
|
80270
80323
|
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
80271
80324
|
https://www.infragistics.com/legal/license/igultimate-la
|
|
@@ -82164,56 +82217,58 @@
|
|
|
82164
82217
|
else {
|
|
82165
82218
|
var ai = ah.b;
|
|
82166
82219
|
var aj = c.a(ah.c).b;
|
|
82167
|
-
|
|
82168
|
-
var
|
|
82169
|
-
|
|
82170
|
-
|
|
82171
|
-
|
|
82172
|
-
|
|
82173
|
-
|
|
82174
|
-
|
|
82175
|
-
|
|
82176
|
-
|
|
82177
|
-
|
|
82178
|
-
|
|
82179
|
-
var
|
|
82180
|
-
|
|
82181
|
-
|
|
82182
|
-
|
|
82183
|
-
|
|
82220
|
+
if (ai != null) {
|
|
82221
|
+
for (var ak = 0; ak < ai.length; ak++) {
|
|
82222
|
+
var al = ai[ak];
|
|
82223
|
+
var am = aj[ak];
|
|
82224
|
+
if (typeCast(DescriptionTreeNode.$, al) !== null && typeCast(DescriptionTreeNode.$, am) !== null) {
|
|
82225
|
+
var an = al;
|
|
82226
|
+
var ao = am;
|
|
82227
|
+
var ap = false;
|
|
82228
|
+
var aq = an.i == ao.i && an.i == "EmbeddedRef";
|
|
82229
|
+
if (aq) {
|
|
82230
|
+
var ar = an.f().toArray();
|
|
82231
|
+
var as = ao.f().toArray();
|
|
82232
|
+
for (var at = 0; at <= ar.length - 1; at++) {
|
|
82233
|
+
var au = ar[at];
|
|
82234
|
+
var av = as[at];
|
|
82235
|
+
if (au.c != av.c || au.b != av.b) {
|
|
82236
|
+
ap = true;
|
|
82237
|
+
break;
|
|
82238
|
+
}
|
|
82184
82239
|
}
|
|
82185
82240
|
}
|
|
82186
|
-
|
|
82187
|
-
|
|
82188
|
-
|
|
82241
|
+
if (an.i == ao.i && !ap) {
|
|
82242
|
+
DescriptionTreeReconciler.g(a, an, ao, d);
|
|
82243
|
+
}
|
|
82244
|
+
else {
|
|
82245
|
+
var aw = new DescriptionTreeAction();
|
|
82246
|
+
aw.j = ah.c;
|
|
82247
|
+
aw.d = ah.a;
|
|
82248
|
+
aw.c = b;
|
|
82249
|
+
aw.b = c;
|
|
82250
|
+
aw.a = 3;
|
|
82251
|
+
aw.f = ak;
|
|
82252
|
+
aw.e = ak;
|
|
82253
|
+
aw.h = an;
|
|
82254
|
+
aw.g = ao;
|
|
82255
|
+
a.add(aw);
|
|
82256
|
+
}
|
|
82189
82257
|
}
|
|
82190
82258
|
else {
|
|
82191
|
-
|
|
82192
|
-
|
|
82193
|
-
|
|
82194
|
-
|
|
82195
|
-
|
|
82196
|
-
|
|
82197
|
-
|
|
82198
|
-
|
|
82199
|
-
|
|
82200
|
-
|
|
82201
|
-
|
|
82202
|
-
|
|
82203
|
-
|
|
82204
|
-
else {
|
|
82205
|
-
if (!Base.equalsStatic(al, am)) {
|
|
82206
|
-
var ax = new DescriptionTreeAction();
|
|
82207
|
-
ax.j = ah.c;
|
|
82208
|
-
ax.d = ah.a;
|
|
82209
|
-
ax.c = b;
|
|
82210
|
-
ax.b = c;
|
|
82211
|
-
ax.a = 3;
|
|
82212
|
-
ax.f = ak;
|
|
82213
|
-
ax.e = ak;
|
|
82214
|
-
ax.h = al;
|
|
82215
|
-
ax.g = am;
|
|
82216
|
-
a.add(ax);
|
|
82259
|
+
if (!Base.equalsStatic(al, am)) {
|
|
82260
|
+
var ax = new DescriptionTreeAction();
|
|
82261
|
+
ax.j = ah.c;
|
|
82262
|
+
ax.d = ah.a;
|
|
82263
|
+
ax.c = b;
|
|
82264
|
+
ax.b = c;
|
|
82265
|
+
ax.a = 3;
|
|
82266
|
+
ax.f = ak;
|
|
82267
|
+
ax.e = ak;
|
|
82268
|
+
ax.h = al;
|
|
82269
|
+
ax.g = am;
|
|
82270
|
+
a.add(ax);
|
|
82271
|
+
}
|
|
82217
82272
|
}
|
|
82218
82273
|
}
|
|
82219
82274
|
}
|
|
@@ -82618,34 +82673,35 @@
|
|
|
82618
82673
|
_this._adapter = null;
|
|
82619
82674
|
_this._context = null;
|
|
82620
82675
|
_this._isProceedOnErrorEnabled = false;
|
|
82621
|
-
_this.j = null;
|
|
82622
82676
|
_this.k = null;
|
|
82677
|
+
_this.l = null;
|
|
82623
82678
|
_this._preserveKeyOrder = false;
|
|
82624
82679
|
_this._allowNullForRemove = false;
|
|
82625
|
-
_this.
|
|
82626
|
-
_this.
|
|
82627
|
-
_this.a2 = new Dictionary$2(Base.$,
|
|
82680
|
+
_this.bf = new List$1(Delegate_$type, 0);
|
|
82681
|
+
_this.bh = new List$1(Delegate_$type, 0);
|
|
82682
|
+
_this.a2 = new Dictionary$2(Base.$, Description.$, 0);
|
|
82628
82683
|
_this.a3 = new Dictionary$2(Base.$, Boolean_$type, 0);
|
|
82629
|
-
_this.
|
|
82630
|
-
_this.
|
|
82631
|
-
_this.az = new Dictionary$2(Base.$,
|
|
82632
|
-
_this.
|
|
82633
|
-
_this.
|
|
82634
|
-
_this.
|
|
82635
|
-
_this.
|
|
82636
|
-
_this.
|
|
82637
|
-
_this.
|
|
82638
|
-
_this.
|
|
82639
|
-
_this.
|
|
82640
|
-
_this.
|
|
82641
|
-
_this.
|
|
82684
|
+
_this.a4 = new Dictionary$2(Base.$, Boolean_$type, 0);
|
|
82685
|
+
_this.a1 = new Dictionary$2(Base.$, Boolean_$type, 0);
|
|
82686
|
+
_this.az = new Dictionary$2(Base.$, String_$type, 0);
|
|
82687
|
+
_this.a0 = new Dictionary$2(Base.$, Number_$type, 0);
|
|
82688
|
+
_this.ax = new Dictionary$2(Base.$, DescriptionTreeNode.$, 0);
|
|
82689
|
+
_this.a8 = new Dictionary$2(Base.$, ContainerState.$, 0);
|
|
82690
|
+
_this.a5 = new Dictionary$2(Base.$, Queue$1.$.specialize(Queue$1.$.specialize(DescriptionTreeAction.$)), 0);
|
|
82691
|
+
_this.ay = new Dictionary$2(Base.$, List$1.$.specialize(Delegate_$type), 0);
|
|
82692
|
+
_this.aw = new Dictionary$2(Base.$, Boolean_$type, 0);
|
|
82693
|
+
_this.a7 = new Dictionary$2(String_$type, DescriptionRef.$, 0);
|
|
82694
|
+
_this.a9 = new Dictionary$2(String_$type, Base.$, 0);
|
|
82695
|
+
_this.bb = new Dictionary$2(String_$type, Base.$, 0);
|
|
82696
|
+
_this.a6 = new Dictionary$2(Base.$, String_$type, 0);
|
|
82697
|
+
_this.bn = null;
|
|
82698
|
+
_this.bi = new List$1(Delegate_$type, 0);
|
|
82699
|
+
_this.ba = new Dictionary$2(String_$type, List$1.$.specialize(Delegate_$type), 0);
|
|
82700
|
+
_this.be = new List$1(Delegate_$type, 0);
|
|
82642
82701
|
_this.bg = new List$1(Delegate_$type, 0);
|
|
82643
|
-
_this.
|
|
82644
|
-
_this.bd = new List$1(Delegate_$type, 0);
|
|
82645
|
-
_this.bf = new List$1(Delegate_$type, 0);
|
|
82646
|
-
_this.bc = null;
|
|
82702
|
+
_this.bd = null;
|
|
82647
82703
|
_this._shouldNamespaceSystemRefValues = false;
|
|
82648
|
-
var a = _this.
|
|
82704
|
+
var a = _this.j();
|
|
82649
82705
|
_this.adapter = a;
|
|
82650
82706
|
var adapter_ = _this.adapter;
|
|
82651
82707
|
var b = (adapter_._platform);
|
|
@@ -82656,8 +82712,8 @@
|
|
|
82656
82712
|
ComponentRenderer.platform = 2;
|
|
82657
82713
|
}
|
|
82658
82714
|
_this.context = new TypeDescriptionContext(_this.adapter, ComponentRenderer.platform);
|
|
82659
|
-
_this.
|
|
82660
|
-
_this.
|
|
82715
|
+
_this.k = new TypeDescriptionPropretyTransforms();
|
|
82716
|
+
_this.l = new TypeDescriptionCleanups();
|
|
82661
82717
|
return _this;
|
|
82662
82718
|
}
|
|
82663
82719
|
Object.defineProperty(ComponentRenderer, "defaultInstance", {
|
|
@@ -82700,7 +82756,7 @@
|
|
|
82700
82756
|
enumerable: false,
|
|
82701
82757
|
configurable: true
|
|
82702
82758
|
});
|
|
82703
|
-
ComponentRenderer.prototype.
|
|
82759
|
+
ComponentRenderer.prototype.j = function () {
|
|
82704
82760
|
return (new ComponentRendererAdapter());
|
|
82705
82761
|
};
|
|
82706
82762
|
ComponentRenderer.prototype.toJson = function (a) {
|
|
@@ -82713,7 +82769,7 @@
|
|
|
82713
82769
|
b.i();
|
|
82714
82770
|
var d = true;
|
|
82715
82771
|
try {
|
|
82716
|
-
for (var _c = tslib.__values(fromEnum(this.
|
|
82772
|
+
for (var _c = tslib.__values(fromEnum(this.ax.keys)), _d = _c.next(); !_d.done; _d = _c.next()) {
|
|
82717
82773
|
var e = _d.value;
|
|
82718
82774
|
if (d) {
|
|
82719
82775
|
d = false;
|
|
@@ -82722,7 +82778,7 @@
|
|
|
82722
82778
|
b.f(",");
|
|
82723
82779
|
}
|
|
82724
82780
|
var f = e;
|
|
82725
|
-
var g = this.
|
|
82781
|
+
var g = this.ax.item(e);
|
|
82726
82782
|
var h = "root";
|
|
82727
82783
|
h = a(f);
|
|
82728
82784
|
if (stringIsNullOrEmpty(h)) {
|
|
@@ -82749,18 +82805,18 @@
|
|
|
82749
82805
|
b.f("");
|
|
82750
82806
|
b.h();
|
|
82751
82807
|
b.e("}");
|
|
82752
|
-
if (this.
|
|
82808
|
+
if (this.bb.count > 0) {
|
|
82753
82809
|
b.e(",");
|
|
82754
82810
|
}
|
|
82755
82811
|
b.f("");
|
|
82756
|
-
if (this.
|
|
82812
|
+
if (this.bb.count > 0) {
|
|
82757
82813
|
d = true;
|
|
82758
82814
|
b.f("refs: {");
|
|
82759
82815
|
b.i();
|
|
82760
82816
|
try {
|
|
82761
|
-
for (var _e = tslib.__values(fromEnum(this.
|
|
82817
|
+
for (var _e = tslib.__values(fromEnum(this.bb.keys)), _f = _e.next(); !_f.done; _f = _e.next()) {
|
|
82762
82818
|
var i = _f.value;
|
|
82763
|
-
if (!this.
|
|
82819
|
+
if (!this.r(i, this.bb.item(i))) {
|
|
82764
82820
|
continue;
|
|
82765
82821
|
}
|
|
82766
82822
|
if (d) {
|
|
@@ -82769,7 +82825,7 @@
|
|
|
82769
82825
|
else {
|
|
82770
82826
|
b.f(",");
|
|
82771
82827
|
}
|
|
82772
|
-
this.
|
|
82828
|
+
this.ek(b, i, this.bb.item(i));
|
|
82773
82829
|
}
|
|
82774
82830
|
}
|
|
82775
82831
|
catch (e_2_1) {
|
|
@@ -82793,12 +82849,12 @@
|
|
|
82793
82849
|
b.f("}");
|
|
82794
82850
|
return b.toString();
|
|
82795
82851
|
};
|
|
82796
|
-
ComponentRenderer.prototype.
|
|
82852
|
+
ComponentRenderer.prototype.ek = function (a, b, c) {
|
|
82797
82853
|
a.e("\"" + b + "\": ");
|
|
82798
|
-
this.
|
|
82854
|
+
this.el(a, c);
|
|
82799
82855
|
};
|
|
82800
|
-
ComponentRenderer.prototype.
|
|
82801
|
-
if (this.
|
|
82856
|
+
ComponentRenderer.prototype.el = function (a, b) {
|
|
82857
|
+
if (this.aa(b)) {
|
|
82802
82858
|
if (typeof b === 'string') {
|
|
82803
82859
|
a.e(b == null ? "null" : "\"" + b.toString() + "\"");
|
|
82804
82860
|
}
|
|
@@ -82839,7 +82895,7 @@
|
|
|
82839
82895
|
a.e("null");
|
|
82840
82896
|
return;
|
|
82841
82897
|
}
|
|
82842
|
-
if (this.
|
|
82898
|
+
if (this.x(b)) {
|
|
82843
82899
|
a.f("[");
|
|
82844
82900
|
a.i();
|
|
82845
82901
|
var c = new DataSourceLocalDataProvider();
|
|
@@ -82848,7 +82904,7 @@
|
|
|
82848
82904
|
if (d > 0) {
|
|
82849
82905
|
a.f(",");
|
|
82850
82906
|
}
|
|
82851
|
-
this.
|
|
82907
|
+
this.ej(a, c, d);
|
|
82852
82908
|
}
|
|
82853
82909
|
a.f("");
|
|
82854
82910
|
a.h();
|
|
@@ -82858,11 +82914,11 @@
|
|
|
82858
82914
|
var e = [b];
|
|
82859
82915
|
var f = new DataSourceLocalDataProvider();
|
|
82860
82916
|
f.dataSource = e;
|
|
82861
|
-
this.
|
|
82917
|
+
this.ej(a, f, 0);
|
|
82862
82918
|
}
|
|
82863
82919
|
}
|
|
82864
82920
|
};
|
|
82865
|
-
ComponentRenderer.prototype.
|
|
82921
|
+
ComponentRenderer.prototype.aa = function (a) {
|
|
82866
82922
|
if (typeof a === 'string') {
|
|
82867
82923
|
return true;
|
|
82868
82924
|
}
|
|
@@ -82877,7 +82933,7 @@
|
|
|
82877
82933
|
}
|
|
82878
82934
|
return false;
|
|
82879
82935
|
};
|
|
82880
|
-
ComponentRenderer.prototype.
|
|
82936
|
+
ComponentRenderer.prototype.x = function (a) {
|
|
82881
82937
|
if (typeCast(Array_$type, a) !== null) {
|
|
82882
82938
|
return true;
|
|
82883
82939
|
}
|
|
@@ -82886,7 +82942,7 @@
|
|
|
82886
82942
|
}
|
|
82887
82943
|
return false;
|
|
82888
82944
|
};
|
|
82889
|
-
ComponentRenderer.prototype.
|
|
82945
|
+
ComponentRenderer.prototype.ej = function (a, b, c) {
|
|
82890
82946
|
a.f("{");
|
|
82891
82947
|
a.i();
|
|
82892
82948
|
var d = b.actualSchema;
|
|
@@ -82922,14 +82978,14 @@
|
|
|
82922
82978
|
a.e("\"" + (v_.toJSON()) + "\"");
|
|
82923
82979
|
break;
|
|
82924
82980
|
case 11:
|
|
82925
|
-
this.
|
|
82981
|
+
this.el(a, g);
|
|
82926
82982
|
break;
|
|
82927
82983
|
}
|
|
82928
82984
|
}
|
|
82929
82985
|
a.h();
|
|
82930
82986
|
a.f("}");
|
|
82931
82987
|
};
|
|
82932
|
-
ComponentRenderer.prototype.
|
|
82988
|
+
ComponentRenderer.prototype.r = function (a, b) {
|
|
82933
82989
|
if (b == null) {
|
|
82934
82990
|
return true;
|
|
82935
82991
|
}
|
|
@@ -82949,23 +83005,23 @@
|
|
|
82949
83005
|
return null;
|
|
82950
83006
|
}
|
|
82951
83007
|
var h = DescriptionTreeBuilder.createTree(this.context, g.result);
|
|
82952
|
-
var i = this.
|
|
83008
|
+
var i = this.a8.item(b);
|
|
82953
83009
|
if (h.c("Type")) {
|
|
82954
83010
|
var j = h.a("Type").b;
|
|
82955
|
-
return this.
|
|
83011
|
+
return this.b8(j, h, b, i, true, -1, null);
|
|
82956
83012
|
}
|
|
82957
83013
|
else {
|
|
82958
|
-
return this.
|
|
83014
|
+
return this.b7(typeCast(JsonDictionaryObject.$, d));
|
|
82959
83015
|
}
|
|
82960
83016
|
};
|
|
82961
83017
|
ComponentRenderer.prototype.loadJson = function (a, b) {
|
|
82962
|
-
this.
|
|
83018
|
+
this.dq(a, b, null, false, false, false);
|
|
82963
83019
|
};
|
|
82964
83020
|
ComponentRenderer.prototype.loadJsonOverlay = function (a, b, c) {
|
|
82965
|
-
this.
|
|
83021
|
+
this.dq(a, b, c, true, false, true);
|
|
82966
83022
|
};
|
|
82967
83023
|
ComponentRenderer.prototype.loadJsonDelta = function (a, b, c) {
|
|
82968
|
-
this.
|
|
83024
|
+
this.dq(a, b, null, true, c, false);
|
|
82969
83025
|
};
|
|
82970
83026
|
Object.defineProperty(ComponentRenderer.prototype, "preserveKeyOrder", {
|
|
82971
83027
|
get: function () {
|
|
@@ -82977,10 +83033,10 @@
|
|
|
82977
83033
|
enumerable: false,
|
|
82978
83034
|
configurable: true
|
|
82979
83035
|
});
|
|
82980
|
-
ComponentRenderer.prototype.
|
|
83036
|
+
ComponentRenderer.prototype.at = function () {
|
|
82981
83037
|
return false;
|
|
82982
83038
|
};
|
|
82983
|
-
ComponentRenderer.prototype.
|
|
83039
|
+
ComponentRenderer.prototype.ds = function (a) {
|
|
82984
83040
|
};
|
|
82985
83041
|
Object.defineProperty(ComponentRenderer.prototype, "allowNullForRemove", {
|
|
82986
83042
|
get: function () {
|
|
@@ -82992,23 +83048,23 @@
|
|
|
82992
83048
|
enumerable: false,
|
|
82993
83049
|
configurable: true
|
|
82994
83050
|
});
|
|
82995
|
-
ComponentRenderer.prototype.
|
|
83051
|
+
ComponentRenderer.prototype.dq = function (a, b, c, d, e, f) {
|
|
82996
83052
|
var g = new JsonDictionaryParser();
|
|
82997
83053
|
var h = g.parse(a);
|
|
82998
83054
|
var i = new DescriptionSerializer();
|
|
82999
83055
|
i.h = this.isProceedOnErrorEnabled;
|
|
83000
|
-
i.g = this.
|
|
83056
|
+
i.g = this.at();
|
|
83001
83057
|
var j = null;
|
|
83002
83058
|
if (typeCast(JsonDictionaryObject.$, h) !== null) {
|
|
83003
83059
|
var k = h;
|
|
83004
83060
|
if (k.g("skipAlterDataCasing")) {
|
|
83005
83061
|
var l = k.item("skipAlterDataCasing");
|
|
83006
83062
|
if (l.value) {
|
|
83007
|
-
this.
|
|
83063
|
+
this.ds(true);
|
|
83008
83064
|
}
|
|
83009
83065
|
}
|
|
83010
83066
|
else {
|
|
83011
|
-
this.
|
|
83067
|
+
this.ds(false);
|
|
83012
83068
|
}
|
|
83013
83069
|
var m = null;
|
|
83014
83070
|
if (k.g("animationIdleRef") || k.g("hasAnimations")) {
|
|
@@ -83035,7 +83091,7 @@
|
|
|
83035
83091
|
}
|
|
83036
83092
|
j = u;
|
|
83037
83093
|
var v = false;
|
|
83038
|
-
var w = this.
|
|
83094
|
+
var w = this.bl();
|
|
83039
83095
|
if (w != null) {
|
|
83040
83096
|
v = true;
|
|
83041
83097
|
}
|
|
@@ -83055,7 +83111,7 @@
|
|
|
83055
83111
|
continue;
|
|
83056
83112
|
}
|
|
83057
83113
|
if (f) {
|
|
83058
|
-
if (!this.
|
|
83114
|
+
if (!this.bc.containsKey(u)) {
|
|
83059
83115
|
var z = null;
|
|
83060
83116
|
if (this.isProceedOnErrorEnabled) {
|
|
83061
83117
|
try {
|
|
@@ -83068,21 +83124,21 @@
|
|
|
83068
83124
|
else {
|
|
83069
83125
|
z = i.d(this.context, t, v, w, true);
|
|
83070
83126
|
}
|
|
83071
|
-
this.
|
|
83127
|
+
this.ee(z.result, u, d, true, false, m, n);
|
|
83072
83128
|
m = null;
|
|
83073
83129
|
var ab = c(s);
|
|
83074
|
-
var ac = this.
|
|
83075
|
-
this.
|
|
83130
|
+
var ac = this.bc.item(u);
|
|
83131
|
+
this.dj(this.ax.item(u), ab, ac, u);
|
|
83076
83132
|
}
|
|
83077
83133
|
}
|
|
83078
|
-
this.
|
|
83134
|
+
this.ee(x.result, u, d, e, false, m, n);
|
|
83079
83135
|
m = null;
|
|
83080
83136
|
}
|
|
83081
83137
|
}
|
|
83082
83138
|
}
|
|
83083
83139
|
if (k.g("refs") && j != null) {
|
|
83084
83140
|
var ad = k.item("refs");
|
|
83085
|
-
var ae = this.
|
|
83141
|
+
var ae = this.aj(ad);
|
|
83086
83142
|
if (!ae && typeCast(JsonDictionaryObject.$, ad) !== null) {
|
|
83087
83143
|
var af = ad;
|
|
83088
83144
|
var ag = af.e();
|
|
@@ -83099,7 +83155,7 @@
|
|
|
83099
83155
|
this.provideRefValue(j, ai, am);
|
|
83100
83156
|
}
|
|
83101
83157
|
else {
|
|
83102
|
-
var an = this.
|
|
83158
|
+
var an = this.b7(aj);
|
|
83103
83159
|
this.provideRefValue(j, ai, an);
|
|
83104
83160
|
}
|
|
83105
83161
|
}
|
|
@@ -83107,19 +83163,19 @@
|
|
|
83107
83163
|
}
|
|
83108
83164
|
if (k.g("modules") && j != null) {
|
|
83109
83165
|
var ao = k.item("modules");
|
|
83110
|
-
this.
|
|
83166
|
+
this.ag(ao);
|
|
83111
83167
|
}
|
|
83112
83168
|
if (k.g("strings") && j != null) {
|
|
83113
83169
|
var ap = k.item("strings");
|
|
83114
|
-
this.
|
|
83170
|
+
this.an(ap);
|
|
83115
83171
|
}
|
|
83116
83172
|
if (k.g("onInit") && j != null) {
|
|
83117
83173
|
var aq = k.item("onInit");
|
|
83118
|
-
this.
|
|
83174
|
+
this.ah(aq);
|
|
83119
83175
|
}
|
|
83120
83176
|
if (k.g("onViewInit") && j != null) {
|
|
83121
83177
|
var ar = k.item("onViewInit");
|
|
83122
|
-
this.
|
|
83178
|
+
this.ai(ar);
|
|
83123
83179
|
}
|
|
83124
83180
|
}
|
|
83125
83181
|
};
|
|
@@ -83137,45 +83193,61 @@
|
|
|
83137
83193
|
this.provideRefValue(a, d, i);
|
|
83138
83194
|
}
|
|
83139
83195
|
else {
|
|
83140
|
-
var j = this.
|
|
83196
|
+
var j = this.b7(f);
|
|
83141
83197
|
this.provideRefValue(a, d, j);
|
|
83142
83198
|
}
|
|
83143
83199
|
};
|
|
83144
83200
|
ComponentRenderer.prototype.addMemberPathTransformer = function (a) {
|
|
83145
|
-
this.
|
|
83201
|
+
this.bf.add(a);
|
|
83146
83202
|
};
|
|
83147
83203
|
ComponentRenderer.prototype.removeMemberPathTransformer = function (a) {
|
|
83148
|
-
this.
|
|
83204
|
+
this.bf.remove(a);
|
|
83205
|
+
};
|
|
83206
|
+
ComponentRenderer.prototype.addReferenceResolver = function (a) {
|
|
83207
|
+
this.bh.add(a);
|
|
83208
|
+
};
|
|
83209
|
+
ComponentRenderer.prototype.removeReferenceResolver = function (a) {
|
|
83210
|
+
this.bh.remove(a);
|
|
83211
|
+
};
|
|
83212
|
+
ComponentRenderer.prototype.e = function (a) {
|
|
83213
|
+
if (this.bh.count == 0) {
|
|
83214
|
+
return null;
|
|
83215
|
+
}
|
|
83216
|
+
var b = new ComponentRendererReferenceResolverEventArgs();
|
|
83217
|
+
for (var c = 0; c < this.bh.count; c++) {
|
|
83218
|
+
this.bh._inner[c](a, b);
|
|
83219
|
+
}
|
|
83220
|
+
return b;
|
|
83149
83221
|
};
|
|
83150
|
-
ComponentRenderer.prototype.
|
|
83222
|
+
ComponentRenderer.prototype.bl = function () {
|
|
83151
83223
|
var _this = this;
|
|
83152
|
-
if (this.
|
|
83224
|
+
if (this.bf.count > 0) {
|
|
83153
83225
|
return function (a) {
|
|
83154
83226
|
var b = a;
|
|
83155
|
-
for (var c = 0; c < _this.
|
|
83156
|
-
b = _this.
|
|
83227
|
+
for (var c = 0; c < _this.bf.count; c++) {
|
|
83228
|
+
b = _this.bf._inner[c](b);
|
|
83157
83229
|
}
|
|
83158
83230
|
return b;
|
|
83159
83231
|
};
|
|
83160
83232
|
}
|
|
83161
83233
|
return null;
|
|
83162
83234
|
};
|
|
83163
|
-
ComponentRenderer.prototype.
|
|
83235
|
+
ComponentRenderer.prototype.aj = function (a) {
|
|
83164
83236
|
return false;
|
|
83165
83237
|
};
|
|
83166
|
-
ComponentRenderer.prototype.
|
|
83238
|
+
ComponentRenderer.prototype.ag = function (a) {
|
|
83167
83239
|
return false;
|
|
83168
83240
|
};
|
|
83169
|
-
ComponentRenderer.prototype.
|
|
83241
|
+
ComponentRenderer.prototype.an = function (a) {
|
|
83170
83242
|
return false;
|
|
83171
83243
|
};
|
|
83172
|
-
ComponentRenderer.prototype.
|
|
83244
|
+
ComponentRenderer.prototype.ah = function (a) {
|
|
83173
83245
|
return false;
|
|
83174
83246
|
};
|
|
83175
|
-
ComponentRenderer.prototype.
|
|
83247
|
+
ComponentRenderer.prototype.ai = function (a) {
|
|
83176
83248
|
return false;
|
|
83177
83249
|
};
|
|
83178
|
-
ComponentRenderer.prototype.
|
|
83250
|
+
ComponentRenderer.prototype.cy = function (a, b, c) {
|
|
83179
83251
|
var d = a;
|
|
83180
83252
|
if (c != null) {
|
|
83181
83253
|
d = c.k(b);
|
|
@@ -83190,15 +83262,15 @@
|
|
|
83190
83262
|
}
|
|
83191
83263
|
return d;
|
|
83192
83264
|
};
|
|
83193
|
-
ComponentRenderer.prototype.
|
|
83265
|
+
ComponentRenderer.prototype.dj = function (a, b, c, d) {
|
|
83194
83266
|
var e_3, _a;
|
|
83195
83267
|
if (!c.b(b)) {
|
|
83196
|
-
c.k(d, this.
|
|
83268
|
+
c.k(d, this.ax.item(d).g, b, this.ax.item(d), runOn(this, this.dx), -1);
|
|
83197
83269
|
}
|
|
83198
83270
|
try {
|
|
83199
83271
|
for (var _b = tslib.__values(fromEnum(a.f())), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
83200
83272
|
var e = _c.value;
|
|
83201
|
-
this.
|
|
83273
|
+
this.dk(this.cy(e.c, ComponentRenderer.platform, e.a), e.b, b, c, d, a.g);
|
|
83202
83274
|
}
|
|
83203
83275
|
}
|
|
83204
83276
|
catch (e_3_1) {
|
|
@@ -83215,19 +83287,19 @@
|
|
|
83215
83287
|
}
|
|
83216
83288
|
}
|
|
83217
83289
|
};
|
|
83218
|
-
ComponentRenderer.prototype.
|
|
83290
|
+
ComponentRenderer.prototype.dk = function (a, b, c, d, e, f) {
|
|
83219
83291
|
var e_4, _a;
|
|
83220
83292
|
var _this = this;
|
|
83221
83293
|
if (typeCast(DescriptionTreeNode.$, b) !== null) {
|
|
83222
83294
|
var g = b;
|
|
83223
83295
|
var h = this.adapter.getPropertyValue(c, a);
|
|
83224
83296
|
if (!d.b(h) && !d.a(g.g)) {
|
|
83225
|
-
d.k(e, g.g, h, g, runOn(this, this.
|
|
83297
|
+
d.k(e, g.g, h, g, runOn(this, this.dx), f);
|
|
83226
83298
|
}
|
|
83227
83299
|
try {
|
|
83228
83300
|
for (var _b = tslib.__values(fromEnum(g.f())), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
83229
83301
|
var i = _c.value;
|
|
83230
|
-
this.
|
|
83302
|
+
this.dk(a + "." + this.cy(i.c, ComponentRenderer.platform, i.a), i.b, c, d, e, g.g);
|
|
83231
83303
|
}
|
|
83232
83304
|
}
|
|
83233
83305
|
catch (e_4_1) {
|
|
@@ -83264,12 +83336,12 @@
|
|
|
83264
83336
|
if (j_1.containsKey(k_1)) {
|
|
83265
83337
|
var s = j_1.item(k_1);
|
|
83266
83338
|
if (!d.b(r) && !d.a(s.g)) {
|
|
83267
|
-
d.k(e, s.g, r, s, runOn(_this, _this.
|
|
83339
|
+
d.k(e, s.g, r, s, runOn(_this, _this.dx), f);
|
|
83268
83340
|
}
|
|
83269
83341
|
try {
|
|
83270
83342
|
for (var _b = tslib.__values(fromEnum(s.f())), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
83271
83343
|
var t = _c.value;
|
|
83272
|
-
_this.
|
|
83344
|
+
_this.dk(a + "." + t.c, t.b, c, d, e, s.g);
|
|
83273
83345
|
}
|
|
83274
83346
|
}
|
|
83275
83347
|
catch (e_5_1) {
|
|
@@ -83289,18 +83361,18 @@
|
|
|
83289
83361
|
k_1++;
|
|
83290
83362
|
});
|
|
83291
83363
|
if (l > 0 && k_1 == 0) {
|
|
83292
|
-
var r_1 = this.
|
|
83364
|
+
var r_1 = this.c3(a);
|
|
83293
83365
|
this.adapter.forPropertyValueItem(c, r_1, function (s) {
|
|
83294
83366
|
var e_6, _a;
|
|
83295
83367
|
if (j_1.containsKey(k_1)) {
|
|
83296
83368
|
var t = j_1.item(k_1);
|
|
83297
83369
|
if (!d.b(s) && !d.a(t.g)) {
|
|
83298
|
-
d.k(e, t.g, s, t, runOn(_this, _this.
|
|
83370
|
+
d.k(e, t.g, s, t, runOn(_this, _this.dx), f);
|
|
83299
83371
|
}
|
|
83300
83372
|
try {
|
|
83301
83373
|
for (var _b = tslib.__values(fromEnum(t.f())), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
83302
83374
|
var u = _c.value;
|
|
83303
|
-
_this.
|
|
83375
|
+
_this.dk(r_1 + "." + u.c, u.b, c, d, e, t.g);
|
|
83304
83376
|
}
|
|
83305
83377
|
}
|
|
83306
83378
|
catch (e_6_1) {
|
|
@@ -83322,7 +83394,7 @@
|
|
|
83322
83394
|
}
|
|
83323
83395
|
}
|
|
83324
83396
|
};
|
|
83325
|
-
ComponentRenderer.prototype.
|
|
83397
|
+
ComponentRenderer.prototype.c3 = function (a) {
|
|
83326
83398
|
var b = a.lastIndexOf('.');
|
|
83327
83399
|
var c = null;
|
|
83328
83400
|
var d = a;
|
|
@@ -83330,24 +83402,24 @@
|
|
|
83330
83402
|
c = a.substr(0, b);
|
|
83331
83403
|
d = a.substr(b + 1);
|
|
83332
83404
|
}
|
|
83333
|
-
d = "actual" + this.
|
|
83405
|
+
d = "actual" + this.c0(d);
|
|
83334
83406
|
if (c != null) {
|
|
83335
83407
|
return c + "." + d;
|
|
83336
83408
|
}
|
|
83337
83409
|
return d;
|
|
83338
83410
|
};
|
|
83339
|
-
ComponentRenderer.prototype.
|
|
83411
|
+
ComponentRenderer.prototype.c0 = function (a) {
|
|
83340
83412
|
return a.substr(0, 1).toUpperCase() + a.substr(1);
|
|
83341
83413
|
};
|
|
83342
83414
|
ComponentRenderer.prototype.a = function (a) {
|
|
83343
83415
|
var b = new Array(a.items.length);
|
|
83344
83416
|
for (var c = 0; c < a.items.length; c++) {
|
|
83345
|
-
var d = this.
|
|
83417
|
+
var d = this.b7(a.items[c]);
|
|
83346
83418
|
b[c] = d;
|
|
83347
83419
|
}
|
|
83348
83420
|
return b;
|
|
83349
83421
|
};
|
|
83350
|
-
ComponentRenderer.prototype.
|
|
83422
|
+
ComponentRenderer.prototype.b7 = function (a) {
|
|
83351
83423
|
if (a == null) {
|
|
83352
83424
|
return null;
|
|
83353
83425
|
}
|
|
@@ -83357,7 +83429,7 @@
|
|
|
83357
83429
|
for (var d = 0; d < c.length; d++) {
|
|
83358
83430
|
var key_ = c[d];
|
|
83359
83431
|
if (typeCast(JsonDictionaryObject.$, a.item(key_)) !== null) {
|
|
83360
|
-
var val_ = this.
|
|
83432
|
+
var val_ = this.b7(a.item(key_));
|
|
83361
83433
|
dict_[key_] = val_;
|
|
83362
83434
|
}
|
|
83363
83435
|
else if (typeCast(JsonDictionaryArray.$, a.item(key_)) !== null) {
|
|
@@ -83371,51 +83443,51 @@
|
|
|
83371
83443
|
}
|
|
83372
83444
|
return dict_;
|
|
83373
83445
|
};
|
|
83374
|
-
Object.defineProperty(ComponentRenderer.prototype, "
|
|
83446
|
+
Object.defineProperty(ComponentRenderer.prototype, "bc", {
|
|
83375
83447
|
get: function () {
|
|
83376
|
-
return this.
|
|
83448
|
+
return this.a8;
|
|
83377
83449
|
},
|
|
83378
83450
|
enumerable: false,
|
|
83379
83451
|
configurable: true
|
|
83380
83452
|
});
|
|
83381
83453
|
ComponentRenderer.prototype.cleanup = function (a, b) {
|
|
83382
|
-
this.
|
|
83383
|
-
this.
|
|
83454
|
+
this.bn = a;
|
|
83455
|
+
this.ee(null, a, false, false, b, null, 0);
|
|
83384
83456
|
};
|
|
83385
83457
|
ComponentRenderer.prototype.render = function (a, b) {
|
|
83386
|
-
this.
|
|
83458
|
+
this.ee(a, b, false, false, false, null, 0);
|
|
83387
83459
|
};
|
|
83388
|
-
ComponentRenderer.prototype.
|
|
83460
|
+
ComponentRenderer.prototype.ee = function (a, b, c, d, e, f, g) {
|
|
83389
83461
|
var _this = this;
|
|
83390
|
-
if (!this.
|
|
83391
|
-
this.
|
|
83392
|
-
this.
|
|
83393
|
-
}
|
|
83394
|
-
this.
|
|
83395
|
-
this.
|
|
83396
|
-
this.
|
|
83397
|
-
this.
|
|
83398
|
-
this.
|
|
83399
|
-
this.
|
|
83400
|
-
this.
|
|
83401
|
-
};
|
|
83402
|
-
ComponentRenderer.prototype.
|
|
83462
|
+
if (!this.a8.containsKey(b)) {
|
|
83463
|
+
this.a8.item(b, new ContainerState());
|
|
83464
|
+
this.a8.item(b).i = b;
|
|
83465
|
+
}
|
|
83466
|
+
this.a2.item(b, a);
|
|
83467
|
+
this.a3.item(b, c);
|
|
83468
|
+
this.a4.item(b, d);
|
|
83469
|
+
this.a1.item(b, e);
|
|
83470
|
+
this.az.item(b, f);
|
|
83471
|
+
this.a0.item(b, g);
|
|
83472
|
+
this.dt(b, function () { return _this.ec(b); });
|
|
83473
|
+
};
|
|
83474
|
+
ComponentRenderer.prototype.dt = function (a, b) {
|
|
83403
83475
|
this.adapter.onUIThread(a, b);
|
|
83404
83476
|
};
|
|
83405
|
-
ComponentRenderer.prototype.
|
|
83477
|
+
ComponentRenderer.prototype.ec = function (a) {
|
|
83406
83478
|
var e_7, _a, e_8, _b, e_9, _c, e_10, _d;
|
|
83407
83479
|
var _this = this;
|
|
83408
|
-
if (this.
|
|
83409
|
-
var b = this.
|
|
83410
|
-
var c = this.
|
|
83411
|
-
var d = this.
|
|
83412
|
-
var e = this.
|
|
83413
|
-
var f = this.
|
|
83414
|
-
this.
|
|
83480
|
+
if (this.a2.containsKey(a)) {
|
|
83481
|
+
var b = this.a3.containsKey(a) ? this.a3.item(a) : false;
|
|
83482
|
+
var c = this.a4.containsKey(a) ? this.a4.item(a) : false;
|
|
83483
|
+
var d = this.a2.item(a);
|
|
83484
|
+
var e = this.az.containsKey(a) ? this.az.item(a) : null;
|
|
83485
|
+
var f = this.a0.containsKey(a) ? this.a0.item(a) : 0;
|
|
83486
|
+
this.a2.removeItem(a);
|
|
83415
83487
|
var g = DescriptionTreeBuilder.createTreeWithOptions(this.context, d, this.preserveKeyOrder);
|
|
83416
83488
|
var h = null;
|
|
83417
|
-
if (this.
|
|
83418
|
-
h = this.
|
|
83489
|
+
if (this.ax.containsKey(a)) {
|
|
83490
|
+
h = this.ax.item(a);
|
|
83419
83491
|
}
|
|
83420
83492
|
var i = DescriptionTreeReconciler.c(h, g, b);
|
|
83421
83493
|
if (!c && b) {
|
|
@@ -83428,21 +83500,21 @@
|
|
|
83428
83500
|
}
|
|
83429
83501
|
if (c) {
|
|
83430
83502
|
var k = DescriptionTreeReconciler.a(h, i);
|
|
83431
|
-
if (!this.
|
|
83432
|
-
this.
|
|
83503
|
+
if (!this.a8.containsKey(a)) {
|
|
83504
|
+
this.a8.addItem(a, ((function () {
|
|
83433
83505
|
var $ret = new ContainerState();
|
|
83434
83506
|
$ret.i = a;
|
|
83435
83507
|
return $ret;
|
|
83436
83508
|
})()));
|
|
83437
83509
|
}
|
|
83438
|
-
var l_1 = this.
|
|
83510
|
+
var l_1 = this.a8.item(a);
|
|
83439
83511
|
if (k.a.count > 0) {
|
|
83440
83512
|
try {
|
|
83441
83513
|
for (var _e = tslib.__values(fromEnum(k.a)), _f = _e.next(); !_f.done; _f = _e.next()) {
|
|
83442
83514
|
var m = _f.value;
|
|
83443
83515
|
if (l_1.a(m)) {
|
|
83444
83516
|
var n = l_1.j(m);
|
|
83445
|
-
this.
|
|
83517
|
+
this.dh(a, n, l_1);
|
|
83446
83518
|
}
|
|
83447
83519
|
}
|
|
83448
83520
|
}
|
|
@@ -83464,14 +83536,14 @@
|
|
|
83464
83536
|
try {
|
|
83465
83537
|
for (var _g = tslib.__values(fromEnum(k.c)), _h = _g.next(); !_h.done; _h = _g.next()) {
|
|
83466
83538
|
var o = _h.value;
|
|
83467
|
-
var p = this.
|
|
83539
|
+
var p = this.ce(a, l_1, o);
|
|
83468
83540
|
var q = this.adapter.getPropertyValue(p, o.j);
|
|
83469
83541
|
if (q != null) {
|
|
83470
83542
|
if (!l_1.b(q)) {
|
|
83471
83543
|
var r = o.g;
|
|
83472
83544
|
if (typeCast(DescriptionTreeNode.$, r) !== null) {
|
|
83473
83545
|
var s = r.g;
|
|
83474
|
-
l_1.k(a, s, q, r, runOn(this, this.
|
|
83546
|
+
l_1.k(a, s, q, r, runOn(this, this.dx), o.c.g);
|
|
83475
83547
|
}
|
|
83476
83548
|
}
|
|
83477
83549
|
}
|
|
@@ -83501,7 +83573,7 @@
|
|
|
83501
83573
|
var v = t.g;
|
|
83502
83574
|
if (typeCast(DescriptionTreeNode.$, v) !== null) {
|
|
83503
83575
|
var w = v.g;
|
|
83504
|
-
this.
|
|
83576
|
+
this.ax.item(a, v);
|
|
83505
83577
|
}
|
|
83506
83578
|
}
|
|
83507
83579
|
}
|
|
@@ -83540,7 +83612,7 @@
|
|
|
83540
83612
|
if (z.count == 0) {
|
|
83541
83613
|
return "continue";
|
|
83542
83614
|
}
|
|
83543
|
-
var ad = this_1.
|
|
83615
|
+
var ad = this_1.ce(a, l_1, x);
|
|
83544
83616
|
var ae = this_1.adapter.getPropertyValue(ad, x.j);
|
|
83545
83617
|
if (ae != null) {
|
|
83546
83618
|
var af_1 = 0;
|
|
@@ -83550,7 +83622,7 @@
|
|
|
83550
83622
|
var ah = z.item(_this.adapter.getPropertyValue(ag, "Name").toString());
|
|
83551
83623
|
if (typeCast(DescriptionTreeNode.$, ah) !== null) {
|
|
83552
83624
|
var ai = ah.g;
|
|
83553
|
-
l_1.k(a, ai, ag, ah, runOn(_this, _this.
|
|
83625
|
+
l_1.k(a, ai, ag, ah, runOn(_this, _this.dx), x.c.g);
|
|
83554
83626
|
}
|
|
83555
83627
|
}
|
|
83556
83628
|
}
|
|
@@ -83581,11 +83653,11 @@
|
|
|
83581
83653
|
}
|
|
83582
83654
|
}
|
|
83583
83655
|
else {
|
|
83584
|
-
this.
|
|
83656
|
+
this.ax.item(a, g);
|
|
83585
83657
|
}
|
|
83586
83658
|
if (!c) {
|
|
83587
|
-
if (e != null && this.
|
|
83588
|
-
var ag_1 = this.
|
|
83659
|
+
if (e != null && this.w(e)) {
|
|
83660
|
+
var ag_1 = this.bb.item(e);
|
|
83589
83661
|
if (ag_1 != null) {
|
|
83590
83662
|
var ah = GlobalAnimationState.d.i();
|
|
83591
83663
|
if (f > 0) {
|
|
@@ -83596,56 +83668,56 @@
|
|
|
83596
83668
|
}
|
|
83597
83669
|
}
|
|
83598
83670
|
}
|
|
83599
|
-
this.
|
|
83671
|
+
this.ed(a, i);
|
|
83600
83672
|
}
|
|
83601
|
-
if (this.
|
|
83602
|
-
this.
|
|
83603
|
-
if (this.
|
|
83604
|
-
this.
|
|
83673
|
+
if (this.a1.item(a)) {
|
|
83674
|
+
this.ea(a);
|
|
83675
|
+
if (this.a8.containsKey(a)) {
|
|
83676
|
+
this.a8.removeItem(a);
|
|
83605
83677
|
}
|
|
83606
83678
|
}
|
|
83607
83679
|
}
|
|
83608
|
-
if (this.
|
|
83609
|
-
if (this.
|
|
83610
|
-
this.
|
|
83680
|
+
if (this.bn != null) {
|
|
83681
|
+
if (this.a2.containsKey(this.bn)) {
|
|
83682
|
+
this.a2.removeItem(this.bn);
|
|
83611
83683
|
}
|
|
83612
|
-
if (this.
|
|
83613
|
-
this.
|
|
83684
|
+
if (this.a3.containsKey(this.bn)) {
|
|
83685
|
+
this.a3.removeItem(this.bn);
|
|
83614
83686
|
}
|
|
83615
|
-
if (this.
|
|
83616
|
-
this.
|
|
83687
|
+
if (this.a4.containsKey(this.bn)) {
|
|
83688
|
+
this.a4.removeItem(this.bn);
|
|
83617
83689
|
}
|
|
83618
|
-
if (this.
|
|
83619
|
-
this.
|
|
83690
|
+
if (this.a1.containsKey(this.bn)) {
|
|
83691
|
+
this.a1.removeItem(this.bn);
|
|
83620
83692
|
}
|
|
83621
|
-
if (this.
|
|
83622
|
-
this.
|
|
83693
|
+
if (this.ax.containsKey(this.bn)) {
|
|
83694
|
+
this.ax.removeItem(this.bn);
|
|
83623
83695
|
}
|
|
83624
|
-
if (this.
|
|
83625
|
-
this.
|
|
83696
|
+
if (this.a5.containsKey(this.bn)) {
|
|
83697
|
+
this.a5.removeItem(this.bn);
|
|
83626
83698
|
}
|
|
83627
|
-
if (this.
|
|
83628
|
-
this.
|
|
83699
|
+
if (this.ay.containsKey(this.bn)) {
|
|
83700
|
+
this.ay.removeItem(this.bn);
|
|
83629
83701
|
}
|
|
83630
|
-
if (this.
|
|
83631
|
-
this.
|
|
83702
|
+
if (this.aw.containsKey(this.bn)) {
|
|
83703
|
+
this.aw.removeItem(this.bn);
|
|
83632
83704
|
}
|
|
83633
|
-
if (this.
|
|
83634
|
-
this.
|
|
83705
|
+
if (this.a0.containsKey(this.bn)) {
|
|
83706
|
+
this.a0.removeItem(this.bn);
|
|
83635
83707
|
}
|
|
83636
|
-
if (this.
|
|
83637
|
-
this.
|
|
83708
|
+
if (this.az.containsKey(this.bn)) {
|
|
83709
|
+
this.az.removeItem(this.bn);
|
|
83638
83710
|
}
|
|
83639
|
-
this.
|
|
83711
|
+
this.bn = null;
|
|
83640
83712
|
}
|
|
83641
83713
|
};
|
|
83642
83714
|
ComponentRenderer.prototype.getTargetValue = function (a, b, c) {
|
|
83643
|
-
var d = this.context.getMetadata(a, this.
|
|
83715
|
+
var d = this.context.getMetadata(a, this.c0(b));
|
|
83644
83716
|
var e = d.k(ComponentRenderer.platform);
|
|
83645
83717
|
return this.adapter.getPropertyValue(c, e);
|
|
83646
83718
|
};
|
|
83647
83719
|
ComponentRenderer.prototype.setTargetValue = function (a, b, c, d, e) {
|
|
83648
|
-
var f = this.context.getMetadata(a, this.
|
|
83720
|
+
var f = this.context.getMetadata(a, this.c0(b));
|
|
83649
83721
|
var g = f.k(ComponentRenderer.platform);
|
|
83650
83722
|
this.adapter.setPropertyValue(c, g, f, d, e, null);
|
|
83651
83723
|
};
|
|
@@ -83653,15 +83725,15 @@
|
|
|
83653
83725
|
var _this = this;
|
|
83654
83726
|
var d = new JsonDictionaryParser();
|
|
83655
83727
|
var e = d.parse(b);
|
|
83656
|
-
if (!this.
|
|
83657
|
-
this.
|
|
83658
|
-
this.
|
|
83728
|
+
if (!this.a8.containsKey(a)) {
|
|
83729
|
+
this.a8.item(a, new ContainerState());
|
|
83730
|
+
this.a8.item(a).i = a;
|
|
83659
83731
|
}
|
|
83660
|
-
var f = this.
|
|
83732
|
+
var f = this.a8.item(a);
|
|
83661
83733
|
var g = new DescriptionSerializer();
|
|
83662
83734
|
g.h = this.isProceedOnErrorEnabled;
|
|
83663
|
-
g.g = this.
|
|
83664
|
-
var h = this.
|
|
83735
|
+
g.g = this.at();
|
|
83736
|
+
var h = this.ax.item(a);
|
|
83665
83737
|
var i = null;
|
|
83666
83738
|
var j = new List$1(Base.$, 0);
|
|
83667
83739
|
var k = new List$1(TypeDescriptionMetadata.$, 0);
|
|
@@ -83669,15 +83741,15 @@
|
|
|
83669
83741
|
var l = null;
|
|
83670
83742
|
var m = e;
|
|
83671
83743
|
if (m.g("targetRef")) {
|
|
83672
|
-
l = this.
|
|
83744
|
+
l = this.cw(m, "targetRef");
|
|
83673
83745
|
}
|
|
83674
83746
|
var n = null;
|
|
83675
83747
|
if (m.g("methodName")) {
|
|
83676
|
-
n = this.
|
|
83748
|
+
n = this.cw(m, "methodName");
|
|
83677
83749
|
}
|
|
83678
83750
|
if (l != null) {
|
|
83679
|
-
if (this.
|
|
83680
|
-
i = this.
|
|
83751
|
+
if (this.a9.containsKey(l)) {
|
|
83752
|
+
i = this.a9.item(l);
|
|
83681
83753
|
}
|
|
83682
83754
|
}
|
|
83683
83755
|
else {
|
|
@@ -83687,16 +83759,16 @@
|
|
|
83687
83759
|
var o = m.item("args");
|
|
83688
83760
|
for (var p = 0; p < o.items.length; p++) {
|
|
83689
83761
|
var q = o.items[p];
|
|
83690
|
-
var r = this.
|
|
83762
|
+
var r = this.h(h, q, g);
|
|
83691
83763
|
var s = null;
|
|
83692
83764
|
if (typeCast(DescriptionTreeNode.$, r.g) !== null && r.g.i == "EmbeddedRef") {
|
|
83693
|
-
s = this.
|
|
83765
|
+
s = this.cg(a, r.g);
|
|
83694
83766
|
}
|
|
83695
83767
|
else {
|
|
83696
|
-
s = this.
|
|
83768
|
+
s = this.cb(r, a, f);
|
|
83697
83769
|
}
|
|
83698
83770
|
if (r.d.knownType == 8 && r.d.specificType == "string") {
|
|
83699
|
-
s = this.
|
|
83771
|
+
s = this.bw(r.d.specificExternalType, s, r.d);
|
|
83700
83772
|
}
|
|
83701
83773
|
j.add1(s);
|
|
83702
83774
|
k.add(r.d);
|
|
@@ -83705,16 +83777,16 @@
|
|
|
83705
83777
|
var t_1 = null;
|
|
83706
83778
|
if (m.g("return")) {
|
|
83707
83779
|
var u = m.item("return");
|
|
83708
|
-
var v = this.
|
|
83780
|
+
var v = this.h(h, u, g);
|
|
83709
83781
|
t_1 = v.d;
|
|
83710
83782
|
}
|
|
83711
83783
|
this.adapter.executeMethod(i, n, j.toArray(), k.toArray(), function (w) {
|
|
83712
|
-
var x = _this.
|
|
83784
|
+
var x = _this.c1(w, t_1);
|
|
83713
83785
|
c(x);
|
|
83714
83786
|
});
|
|
83715
83787
|
}
|
|
83716
83788
|
};
|
|
83717
|
-
ComponentRenderer.prototype.
|
|
83789
|
+
ComponentRenderer.prototype.cg = function (a, b) {
|
|
83718
83790
|
if (b.i == "EmbeddedRef") {
|
|
83719
83791
|
var c = "uuid";
|
|
83720
83792
|
var d = null;
|
|
@@ -83727,19 +83799,19 @@
|
|
|
83727
83799
|
}
|
|
83728
83800
|
}
|
|
83729
83801
|
if (d != null) {
|
|
83730
|
-
for (var f = 0; f < this.
|
|
83731
|
-
var g = this.
|
|
83802
|
+
for (var f = 0; f < this.be.count; f++) {
|
|
83803
|
+
var g = this.be._inner[f](a, c, d);
|
|
83732
83804
|
if (g != null) {
|
|
83733
83805
|
return g;
|
|
83734
83806
|
}
|
|
83735
83807
|
}
|
|
83736
83808
|
if (c == "name") {
|
|
83737
83809
|
var h = d;
|
|
83738
|
-
if (this.
|
|
83739
|
-
return this.
|
|
83810
|
+
if (this.a9.containsKey(h)) {
|
|
83811
|
+
return this.a9.item(h);
|
|
83740
83812
|
}
|
|
83741
|
-
if (this.
|
|
83742
|
-
return this.
|
|
83813
|
+
if (this.bb.containsKey(h)) {
|
|
83814
|
+
return this.bb.item(h);
|
|
83743
83815
|
}
|
|
83744
83816
|
}
|
|
83745
83817
|
return null;
|
|
@@ -83747,7 +83819,7 @@
|
|
|
83747
83819
|
}
|
|
83748
83820
|
return null;
|
|
83749
83821
|
};
|
|
83750
|
-
ComponentRenderer.
|
|
83822
|
+
ComponentRenderer.bk = function (a) {
|
|
83751
83823
|
if (typeCast(Date_$type, a) !== null) {
|
|
83752
83824
|
return a.getTime();
|
|
83753
83825
|
}
|
|
@@ -83756,7 +83828,7 @@
|
|
|
83756
83828
|
}
|
|
83757
83829
|
return a;
|
|
83758
83830
|
};
|
|
83759
|
-
ComponentRenderer.prototype.
|
|
83831
|
+
ComponentRenderer.prototype.c1 = function (a, b) {
|
|
83760
83832
|
var _this = this;
|
|
83761
83833
|
var c = new JsonDictionaryObject();
|
|
83762
83834
|
c.item("knownType", ((function () {
|
|
@@ -83795,7 +83867,7 @@
|
|
|
83795
83867
|
c.item("result", ((function () {
|
|
83796
83868
|
var $ret = new JsonDictionaryValue();
|
|
83797
83869
|
$ret.e = 0;
|
|
83798
|
-
$ret.value = ComponentRenderer.
|
|
83870
|
+
$ret.value = ComponentRenderer.bk(a);
|
|
83799
83871
|
return $ret;
|
|
83800
83872
|
})()));
|
|
83801
83873
|
break;
|
|
@@ -83819,7 +83891,7 @@
|
|
|
83819
83891
|
c.item("result", ((function () {
|
|
83820
83892
|
var $ret = new JsonDictionaryValue();
|
|
83821
83893
|
$ret.e = 2;
|
|
83822
|
-
$ret.value = _this.
|
|
83894
|
+
$ret.value = _this.ch(a);
|
|
83823
83895
|
return $ret;
|
|
83824
83896
|
})()));
|
|
83825
83897
|
break;
|
|
@@ -83827,7 +83899,7 @@
|
|
|
83827
83899
|
c.item("result", ((function () {
|
|
83828
83900
|
var $ret = new JsonDictionaryValue();
|
|
83829
83901
|
$ret.e = 2;
|
|
83830
|
-
$ret.value = _this.
|
|
83902
|
+
$ret.value = _this.cj(a);
|
|
83831
83903
|
return $ret;
|
|
83832
83904
|
})()));
|
|
83833
83905
|
break;
|
|
@@ -83835,7 +83907,7 @@
|
|
|
83835
83907
|
c.item("result", ((function () {
|
|
83836
83908
|
var $ret = new JsonDictionaryValue();
|
|
83837
83909
|
$ret.e = 2;
|
|
83838
|
-
$ret.value = _this.
|
|
83910
|
+
$ret.value = _this.ci(a);
|
|
83839
83911
|
return $ret;
|
|
83840
83912
|
})()));
|
|
83841
83913
|
break;
|
|
@@ -83854,19 +83926,19 @@
|
|
|
83854
83926
|
c.item("result", ((function () {
|
|
83855
83927
|
var $ret = new JsonDictionaryValue();
|
|
83856
83928
|
$ret.e = 2;
|
|
83857
|
-
$ret.value = _this.
|
|
83929
|
+
$ret.value = _this.cm(a);
|
|
83858
83930
|
return $ret;
|
|
83859
83931
|
})()));
|
|
83860
83932
|
break;
|
|
83861
83933
|
case 12:
|
|
83862
|
-
c.item("result", this.
|
|
83934
|
+
c.item("result", this.co(a));
|
|
83863
83935
|
break;
|
|
83864
83936
|
case 13: break;
|
|
83865
83937
|
case 14:
|
|
83866
83938
|
c.item("result", ((function () {
|
|
83867
83939
|
var $ret = new JsonDictionaryValue();
|
|
83868
83940
|
$ret.e = 2;
|
|
83869
|
-
$ret.value = _this.
|
|
83941
|
+
$ret.value = _this.cn(a);
|
|
83870
83942
|
return $ret;
|
|
83871
83943
|
})()));
|
|
83872
83944
|
break;
|
|
@@ -83875,7 +83947,7 @@
|
|
|
83875
83947
|
c.item("result", ((function () {
|
|
83876
83948
|
var $ret = new JsonDictionaryValue();
|
|
83877
83949
|
$ret.e = 2;
|
|
83878
|
-
$ret.value = _this.
|
|
83950
|
+
$ret.value = _this.ck(a);
|
|
83879
83951
|
return $ret;
|
|
83880
83952
|
})()));
|
|
83881
83953
|
break;
|
|
@@ -83887,7 +83959,7 @@
|
|
|
83887
83959
|
c.item("result", ((function () {
|
|
83888
83960
|
var $ret = new JsonDictionaryValue();
|
|
83889
83961
|
$ret.e = 2;
|
|
83890
|
-
$ret.value = _this.
|
|
83962
|
+
$ret.value = _this.cp(a);
|
|
83891
83963
|
return $ret;
|
|
83892
83964
|
})()));
|
|
83893
83965
|
break;
|
|
@@ -83896,41 +83968,41 @@
|
|
|
83896
83968
|
c.item("result", ((function () {
|
|
83897
83969
|
var $ret = new JsonDictionaryValue();
|
|
83898
83970
|
$ret.e = 2;
|
|
83899
|
-
$ret.value = _this.
|
|
83971
|
+
$ret.value = _this.cl(a);
|
|
83900
83972
|
return $ret;
|
|
83901
83973
|
})()));
|
|
83902
83974
|
break;
|
|
83903
83975
|
}
|
|
83904
83976
|
return c.b();
|
|
83905
83977
|
};
|
|
83906
|
-
ComponentRenderer.prototype.
|
|
83978
|
+
ComponentRenderer.prototype.cl = function (a) {
|
|
83907
83979
|
return this.adapter.serializeDoubleCollection(a);
|
|
83908
83980
|
};
|
|
83909
|
-
ComponentRenderer.prototype.
|
|
83981
|
+
ComponentRenderer.prototype.cp = function (a) {
|
|
83910
83982
|
return this.adapter.serializeTimespan(a);
|
|
83911
83983
|
};
|
|
83912
|
-
ComponentRenderer.prototype.
|
|
83984
|
+
ComponentRenderer.prototype.ck = function (a) {
|
|
83913
83985
|
return this.adapter.serializeColorCollection(a);
|
|
83914
83986
|
};
|
|
83915
|
-
ComponentRenderer.prototype.
|
|
83987
|
+
ComponentRenderer.prototype.cn = function (a) {
|
|
83916
83988
|
return this.adapter.serializeRect(a);
|
|
83917
83989
|
};
|
|
83918
|
-
ComponentRenderer.prototype.
|
|
83990
|
+
ComponentRenderer.prototype.co = function (a) {
|
|
83919
83991
|
return this.adapter.serializeSize(a);
|
|
83920
83992
|
};
|
|
83921
|
-
ComponentRenderer.prototype.
|
|
83993
|
+
ComponentRenderer.prototype.cm = function (a) {
|
|
83922
83994
|
return this.adapter.serializePoint(a);
|
|
83923
83995
|
};
|
|
83924
|
-
ComponentRenderer.prototype.
|
|
83996
|
+
ComponentRenderer.prototype.ci = function (a) {
|
|
83925
83997
|
return this.adapter.serializeBrushCollection(a);
|
|
83926
83998
|
};
|
|
83927
|
-
ComponentRenderer.prototype.
|
|
83999
|
+
ComponentRenderer.prototype.cj = function (a) {
|
|
83928
84000
|
return this.adapter.serializeColor(a);
|
|
83929
84001
|
};
|
|
83930
|
-
ComponentRenderer.prototype.
|
|
84002
|
+
ComponentRenderer.prototype.ch = function (a) {
|
|
83931
84003
|
return this.adapter.serializeBrush(a);
|
|
83932
84004
|
};
|
|
83933
|
-
ComponentRenderer.prototype.
|
|
84005
|
+
ComponentRenderer.prototype.h = function (a, b, c) {
|
|
83934
84006
|
var d = new DescriptionTreeAction();
|
|
83935
84007
|
d.a = 0;
|
|
83936
84008
|
d.c = a;
|
|
@@ -83938,20 +84010,20 @@
|
|
|
83938
84010
|
var e = new TypeDescriptionMetadata();
|
|
83939
84011
|
e.propertyName = "*argument";
|
|
83940
84012
|
var f;
|
|
83941
|
-
var g = this.
|
|
84013
|
+
var g = this.cw(b, "knownType");
|
|
83942
84014
|
var h = EnumUtil.tryParse$1(TypeDescriptionWellKnownType_$type, g, true, f);
|
|
83943
84015
|
f = h.p2;
|
|
83944
84016
|
e.knownType = f;
|
|
83945
|
-
e.specificExternalType = this.
|
|
83946
|
-
e.specificType = this.
|
|
83947
|
-
e.collectionElementType = this.
|
|
84017
|
+
e.specificExternalType = this.cw(b, "specificExternalType");
|
|
84018
|
+
e.specificType = this.cw(b, "specificType");
|
|
84019
|
+
e.collectionElementType = this.cw(b, "collectionElementType");
|
|
83948
84020
|
d.d = e;
|
|
83949
84021
|
var i = null;
|
|
83950
|
-
i = this.
|
|
84022
|
+
i = this.ca(e, b, c);
|
|
83951
84023
|
d.g = i;
|
|
83952
84024
|
return d;
|
|
83953
84025
|
};
|
|
83954
|
-
ComponentRenderer.prototype.
|
|
84026
|
+
ComponentRenderer.prototype.cw = function (a, b) {
|
|
83955
84027
|
if (typeCast(JsonDictionaryObject.$, a) !== null) {
|
|
83956
84028
|
var c = a;
|
|
83957
84029
|
if (c.g(b)) {
|
|
@@ -83960,17 +84032,17 @@
|
|
|
83960
84032
|
}
|
|
83961
84033
|
return null;
|
|
83962
84034
|
};
|
|
83963
|
-
ComponentRenderer.prototype.
|
|
84035
|
+
ComponentRenderer.prototype.ca = function (a, b, c) {
|
|
83964
84036
|
if (typeCast(JsonDictionaryObject.$, b) !== null) {
|
|
83965
84037
|
var d = b;
|
|
83966
84038
|
if (d.g("value")) {
|
|
83967
84039
|
var e = (d.item("value")) != null ? (d.item("value")) : null;
|
|
83968
|
-
return this.
|
|
84040
|
+
return this.b6(a.knownType, a.specificType, a.specificExternalType, a.collectionElementType, e, c);
|
|
83969
84041
|
}
|
|
83970
84042
|
}
|
|
83971
84043
|
return null;
|
|
83972
84044
|
};
|
|
83973
|
-
ComponentRenderer.prototype.
|
|
84045
|
+
ComponentRenderer.prototype.b6 = function (a, b, c, d, e, f) {
|
|
83974
84046
|
if (typeCast(JsonDictionaryObject.$, e) !== null) {
|
|
83975
84047
|
var g = e;
|
|
83976
84048
|
if (g.g("type") || g.g("refType")) {
|
|
@@ -84013,7 +84085,7 @@
|
|
|
84013
84085
|
var r = void 0;
|
|
84014
84086
|
var s = void 0;
|
|
84015
84087
|
var t = void 0;
|
|
84016
|
-
var u = this.
|
|
84088
|
+
var u = this.dm(o, n, b, c, q, r, s, t);
|
|
84017
84089
|
q = u.p4;
|
|
84018
84090
|
r = u.p5;
|
|
84019
84091
|
s = u.p6;
|
|
@@ -84021,7 +84093,7 @@
|
|
|
84021
84093
|
if (m.items != null) {
|
|
84022
84094
|
for (var v = 0; v < m.items.length; v++) {
|
|
84023
84095
|
var w = m.items[v];
|
|
84024
|
-
var x = this.
|
|
84096
|
+
var x = this.b6(q, r, s, t, w, f);
|
|
84025
84097
|
p[v] = x;
|
|
84026
84098
|
}
|
|
84027
84099
|
}
|
|
@@ -84032,7 +84104,7 @@
|
|
|
84032
84104
|
}
|
|
84033
84105
|
return e;
|
|
84034
84106
|
};
|
|
84035
|
-
ComponentRenderer.prototype.
|
|
84107
|
+
ComponentRenderer.prototype.dm = function (a, b, c, d, e, f, g, h) {
|
|
84036
84108
|
if (a) {
|
|
84037
84109
|
e = 8;
|
|
84038
84110
|
f = b;
|
|
@@ -84121,45 +84193,45 @@
|
|
|
84121
84193
|
};
|
|
84122
84194
|
ComponentRenderer.prototype.resolveRefValue = function (a, b, c) {
|
|
84123
84195
|
var _this = this;
|
|
84124
|
-
this.
|
|
84125
|
-
if (!_this.
|
|
84126
|
-
_this.
|
|
84196
|
+
this.dt(a, function () {
|
|
84197
|
+
if (!_this.a8.containsKey(a)) {
|
|
84198
|
+
_this.a8.addItem(a, ((function () {
|
|
84127
84199
|
var $ret = new ContainerState();
|
|
84128
84200
|
$ret.i = a;
|
|
84129
84201
|
return $ret;
|
|
84130
84202
|
})()));
|
|
84131
84203
|
}
|
|
84132
|
-
var d = _this.
|
|
84204
|
+
var d = _this.a8.item(a);
|
|
84133
84205
|
if (!_this.hasRef(b)) {
|
|
84134
|
-
if (_this.
|
|
84135
|
-
c(_this.
|
|
84206
|
+
if (_this.a9.containsKey(b)) {
|
|
84207
|
+
c(_this.a9.item(b));
|
|
84136
84208
|
return;
|
|
84137
84209
|
}
|
|
84138
|
-
if (!_this.
|
|
84210
|
+
if (!_this.y(a)) {
|
|
84139
84211
|
_this.queueForIdle(a, function () { return _this.resolveRefValue(a, b, c); });
|
|
84140
84212
|
return;
|
|
84141
84213
|
}
|
|
84142
84214
|
c(null);
|
|
84143
84215
|
return;
|
|
84144
84216
|
}
|
|
84145
|
-
var e = _this.
|
|
84146
|
-
var f = _this.
|
|
84217
|
+
var e = _this.g(b);
|
|
84218
|
+
var f = _this.cd(e);
|
|
84147
84219
|
c(f);
|
|
84148
84220
|
});
|
|
84149
84221
|
};
|
|
84150
84222
|
ComponentRenderer.prototype.resolveRefName = function (a, b, c) {
|
|
84151
84223
|
var _this = this;
|
|
84152
|
-
this.
|
|
84153
|
-
if (!_this.
|
|
84154
|
-
_this.
|
|
84224
|
+
this.dt(a, function () {
|
|
84225
|
+
if (!_this.a8.containsKey(a)) {
|
|
84226
|
+
_this.a8.addItem(a, ((function () {
|
|
84155
84227
|
var $ret = new ContainerState();
|
|
84156
84228
|
$ret.i = a;
|
|
84157
84229
|
return $ret;
|
|
84158
84230
|
})()));
|
|
84159
84231
|
}
|
|
84160
|
-
var d = _this.
|
|
84161
|
-
if (b != null && _this.
|
|
84162
|
-
c(_this.
|
|
84232
|
+
var d = _this.a8.item(a);
|
|
84233
|
+
if (b != null && _this.a6.containsKey(b)) {
|
|
84234
|
+
c(_this.a6.item(b));
|
|
84163
84235
|
return;
|
|
84164
84236
|
}
|
|
84165
84237
|
c(null);
|
|
@@ -84167,40 +84239,40 @@
|
|
|
84167
84239
|
};
|
|
84168
84240
|
ComponentRenderer.prototype.provideRefValue = function (a, b, c) {
|
|
84169
84241
|
var _this = this;
|
|
84170
|
-
this.
|
|
84171
|
-
if (!_this.
|
|
84172
|
-
_this.
|
|
84242
|
+
this.dt(a, function () {
|
|
84243
|
+
if (!_this.a8.containsKey(a)) {
|
|
84244
|
+
_this.a8.addItem(a, ((function () {
|
|
84173
84245
|
var $ret = new ContainerState();
|
|
84174
84246
|
$ret.i = a;
|
|
84175
84247
|
return $ret;
|
|
84176
84248
|
})()));
|
|
84177
84249
|
}
|
|
84178
|
-
var d = _this.
|
|
84179
|
-
_this.
|
|
84250
|
+
var d = _this.a8.item(a);
|
|
84251
|
+
_this.dx(a, b, c, true);
|
|
84180
84252
|
});
|
|
84181
84253
|
};
|
|
84182
84254
|
ComponentRenderer.prototype.removeRefValue = function (a, b) {
|
|
84183
84255
|
var _this = this;
|
|
84184
|
-
this.
|
|
84185
|
-
if (!_this.
|
|
84186
|
-
_this.
|
|
84256
|
+
this.dt(a, function () {
|
|
84257
|
+
if (!_this.a8.containsKey(a)) {
|
|
84258
|
+
_this.a8.addItem(a, ((function () {
|
|
84187
84259
|
var $ret = new ContainerState();
|
|
84188
84260
|
$ret.i = a;
|
|
84189
84261
|
return $ret;
|
|
84190
84262
|
})()));
|
|
84191
84263
|
}
|
|
84192
|
-
var c = _this.
|
|
84264
|
+
var c = _this.a8.item(a);
|
|
84193
84265
|
_this.removeRefValueCore(a, b, true);
|
|
84194
84266
|
});
|
|
84195
84267
|
};
|
|
84196
|
-
ComponentRenderer.prototype.
|
|
84268
|
+
ComponentRenderer.prototype.ea = function (a) {
|
|
84197
84269
|
var e_11, _a;
|
|
84198
|
-
var b = this.
|
|
84270
|
+
var b = this.a8.item(a);
|
|
84199
84271
|
var c = new List$1(String_$type, 0);
|
|
84200
84272
|
try {
|
|
84201
|
-
for (var _b = tslib.__values(fromEnum(this.
|
|
84273
|
+
for (var _b = tslib.__values(fromEnum(this.a7.keys)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
84202
84274
|
var d = _c.value;
|
|
84203
|
-
if (this.
|
|
84275
|
+
if (this.a7.item(d).c == 0) {
|
|
84204
84276
|
c.add(d);
|
|
84205
84277
|
}
|
|
84206
84278
|
}
|
|
@@ -84221,164 +84293,164 @@
|
|
|
84221
84293
|
for (var e = 0; e < c.count; e++) {
|
|
84222
84294
|
var f = this.shouldNamespaceSystemRefValues;
|
|
84223
84295
|
this.shouldNamespaceSystemRefValues = false;
|
|
84224
|
-
this.removeRefValueCore(a, c._inner[e], this.
|
|
84296
|
+
this.removeRefValueCore(a, c._inner[e], this.bb.containsKey(c._inner[e]));
|
|
84225
84297
|
this.shouldNamespaceSystemRefValues = f;
|
|
84226
|
-
if (this.
|
|
84227
|
-
for (var g = 0; g < this.
|
|
84228
|
-
this.
|
|
84298
|
+
if (this.bd != null && this.bd.count > 0) {
|
|
84299
|
+
for (var g = 0; g < this.bd.count; g++) {
|
|
84300
|
+
this.bd._inner[g](a, c._inner[e]);
|
|
84229
84301
|
}
|
|
84230
84302
|
}
|
|
84231
84303
|
}
|
|
84232
84304
|
};
|
|
84233
84305
|
ComponentRenderer.prototype.clearRefValues = function (a) {
|
|
84234
84306
|
var _this = this;
|
|
84235
|
-
this.
|
|
84236
|
-
if (!_this.
|
|
84237
|
-
_this.
|
|
84307
|
+
this.dt(a, function () {
|
|
84308
|
+
if (!_this.a8.containsKey(a)) {
|
|
84309
|
+
_this.a8.addItem(a, ((function () {
|
|
84238
84310
|
var $ret = new ContainerState();
|
|
84239
84311
|
$ret.i = a;
|
|
84240
84312
|
return $ret;
|
|
84241
84313
|
})()));
|
|
84242
84314
|
}
|
|
84243
|
-
var b = _this.
|
|
84315
|
+
var b = _this.a8.item(a);
|
|
84244
84316
|
_this.clearUserRefValues();
|
|
84245
84317
|
});
|
|
84246
84318
|
};
|
|
84247
|
-
ComponentRenderer.prototype.
|
|
84248
|
-
if (this.
|
|
84319
|
+
ComponentRenderer.prototype.y = function (a) {
|
|
84320
|
+
if (this.aw.containsKey(a) && this.aw.item(a)) {
|
|
84249
84321
|
return false;
|
|
84250
84322
|
}
|
|
84251
|
-
if (this.
|
|
84323
|
+
if (this.a5.containsKey(a) && this.a5.item(a).count > 0) {
|
|
84252
84324
|
return false;
|
|
84253
84325
|
}
|
|
84254
84326
|
return true;
|
|
84255
84327
|
};
|
|
84256
84328
|
ComponentRenderer.prototype.queueForIdle = function (a, b) {
|
|
84257
84329
|
var _this = this;
|
|
84258
|
-
this.
|
|
84259
|
-
if (_this.
|
|
84330
|
+
this.dt(a, function () {
|
|
84331
|
+
if (_this.y(a)) {
|
|
84260
84332
|
b();
|
|
84261
84333
|
}
|
|
84262
84334
|
else {
|
|
84263
|
-
if (!_this.
|
|
84264
|
-
_this.
|
|
84335
|
+
if (!_this.ay.containsKey(a)) {
|
|
84336
|
+
_this.ay.item(a, new List$1(Delegate_$type, 0));
|
|
84265
84337
|
}
|
|
84266
|
-
_this.
|
|
84338
|
+
_this.ay.item(a).add(b);
|
|
84267
84339
|
}
|
|
84268
84340
|
});
|
|
84269
84341
|
};
|
|
84270
84342
|
ComponentRenderer.prototype.tryFlushIdleActions = function (a) {
|
|
84271
|
-
if (this.
|
|
84272
|
-
if (this.
|
|
84273
|
-
var b = new List$1(Delegate_$type, 1, this.
|
|
84274
|
-
this.
|
|
84343
|
+
if (this.y(a)) {
|
|
84344
|
+
if (this.ay.containsKey(a)) {
|
|
84345
|
+
var b = new List$1(Delegate_$type, 1, this.ay.item(a));
|
|
84346
|
+
this.ay.item(a).clear();
|
|
84275
84347
|
for (var c = 0; c < b.count; c++) {
|
|
84276
84348
|
b._inner[c]();
|
|
84277
84349
|
}
|
|
84278
84350
|
}
|
|
84279
84351
|
}
|
|
84280
84352
|
};
|
|
84281
|
-
ComponentRenderer.prototype.
|
|
84282
|
-
var c = this.
|
|
84283
|
-
this.
|
|
84353
|
+
ComponentRenderer.prototype.ed = function (a, b) {
|
|
84354
|
+
var c = this.a8.item(a);
|
|
84355
|
+
this.du(a, c, b);
|
|
84284
84356
|
};
|
|
84285
|
-
ComponentRenderer.prototype.
|
|
84357
|
+
ComponentRenderer.prototype.ei = function (a, b) {
|
|
84286
84358
|
if (this.isProceedOnErrorEnabled) {
|
|
84287
84359
|
try {
|
|
84288
|
-
this.
|
|
84360
|
+
this.di(a, b, true);
|
|
84289
84361
|
}
|
|
84290
84362
|
catch (c) {
|
|
84291
|
-
this.
|
|
84363
|
+
this.aw.item(a, false);
|
|
84292
84364
|
}
|
|
84293
84365
|
}
|
|
84294
84366
|
else {
|
|
84295
|
-
this.
|
|
84367
|
+
this.di(a, b, true);
|
|
84296
84368
|
}
|
|
84297
84369
|
};
|
|
84298
|
-
ComponentRenderer.prototype.
|
|
84370
|
+
ComponentRenderer.prototype.ep = function (a, b) {
|
|
84299
84371
|
if (this.isProceedOnErrorEnabled) {
|
|
84300
84372
|
try {
|
|
84301
|
-
this.
|
|
84373
|
+
this.di(a, b, false);
|
|
84302
84374
|
}
|
|
84303
84375
|
catch (c) {
|
|
84304
|
-
this.
|
|
84376
|
+
this.aw.item(a, false);
|
|
84305
84377
|
}
|
|
84306
84378
|
}
|
|
84307
84379
|
else {
|
|
84308
|
-
this.
|
|
84380
|
+
this.di(a, b, false);
|
|
84309
84381
|
}
|
|
84310
84382
|
};
|
|
84311
|
-
ComponentRenderer.prototype.
|
|
84383
|
+
ComponentRenderer.prototype.di = function (a, b, c) {
|
|
84312
84384
|
if (!c) {
|
|
84313
|
-
if (this.
|
|
84385
|
+
if (this.aw.containsKey(a) && this.aw.item(a)) {
|
|
84314
84386
|
return;
|
|
84315
84387
|
}
|
|
84316
84388
|
}
|
|
84317
|
-
this.
|
|
84389
|
+
this.aw.item(a, true);
|
|
84318
84390
|
var d = true;
|
|
84319
|
-
while (d && this.
|
|
84320
|
-
while (this.
|
|
84321
|
-
this.
|
|
84391
|
+
while (d && this.a5.item(a).count > 0) {
|
|
84392
|
+
while (this.a5.item(a).count > 0 && this.a5.item(a).c().count < 1) {
|
|
84393
|
+
this.a5.item(a).b();
|
|
84322
84394
|
}
|
|
84323
|
-
if (this.
|
|
84395
|
+
if (this.a5.item(a).count < 1) {
|
|
84324
84396
|
break;
|
|
84325
84397
|
}
|
|
84326
|
-
var e = this.
|
|
84398
|
+
var e = this.a5.item(a).c();
|
|
84327
84399
|
while (e.count > 0) {
|
|
84328
84400
|
var f = e.b();
|
|
84329
|
-
d = this.
|
|
84401
|
+
d = this.ad(a, b, f);
|
|
84330
84402
|
if (!d) {
|
|
84331
84403
|
break;
|
|
84332
84404
|
}
|
|
84333
84405
|
}
|
|
84334
84406
|
}
|
|
84335
84407
|
if (d) {
|
|
84336
|
-
this.
|
|
84408
|
+
this.aw.item(a, false);
|
|
84337
84409
|
}
|
|
84338
|
-
if (this.
|
|
84410
|
+
if (this.y(a)) {
|
|
84339
84411
|
this.tryFlushIdleActions(a);
|
|
84340
84412
|
}
|
|
84341
84413
|
};
|
|
84342
|
-
ComponentRenderer.prototype.
|
|
84414
|
+
ComponentRenderer.prototype.du = function (a, b, c) {
|
|
84343
84415
|
var d = new Queue$1(DescriptionTreeAction.$);
|
|
84344
84416
|
for (var e = 0; e < c.count; e++) {
|
|
84345
84417
|
d.g(c._inner[e]);
|
|
84346
84418
|
}
|
|
84347
|
-
if (!this.
|
|
84348
|
-
this.
|
|
84419
|
+
if (!this.a5.containsKey(a)) {
|
|
84420
|
+
this.a5.addItem(a, new Queue$1(Queue$1.$.specialize(DescriptionTreeAction.$)));
|
|
84349
84421
|
}
|
|
84350
|
-
this.
|
|
84351
|
-
this.
|
|
84422
|
+
this.a5.item(a).g(d);
|
|
84423
|
+
this.ep(a, b);
|
|
84352
84424
|
};
|
|
84353
|
-
ComponentRenderer.prototype.
|
|
84425
|
+
ComponentRenderer.prototype.dv = function (a, b, c) {
|
|
84354
84426
|
for (var d = 0; d < c.count; d++) {
|
|
84355
|
-
this.
|
|
84427
|
+
this.ad(a, b, c._inner[d]);
|
|
84356
84428
|
}
|
|
84357
84429
|
};
|
|
84358
|
-
ComponentRenderer.prototype.
|
|
84430
|
+
ComponentRenderer.prototype.ad = function (a, b, c) {
|
|
84359
84431
|
switch (c.a) {
|
|
84360
|
-
case 5: return this.
|
|
84361
|
-
case 2: return this.
|
|
84362
|
-
case 4: return this.
|
|
84363
|
-
case 3: return this.
|
|
84364
|
-
case 1: return this.
|
|
84365
|
-
case 0: return this.
|
|
84432
|
+
case 5: return this.ae(a, b, c);
|
|
84433
|
+
case 2: return this.af(a, b, c);
|
|
84434
|
+
case 4: return this.ak(a, b, c);
|
|
84435
|
+
case 3: return this.al(a, b, c);
|
|
84436
|
+
case 1: return this.am(a, b, c);
|
|
84437
|
+
case 0: return this.ao(a, b, c);
|
|
84366
84438
|
}
|
|
84367
84439
|
return true;
|
|
84368
84440
|
};
|
|
84369
|
-
ComponentRenderer.prototype.
|
|
84370
|
-
var d = this.
|
|
84371
|
-
this.
|
|
84441
|
+
ComponentRenderer.prototype.ao = function (a, b, c) {
|
|
84442
|
+
var d = this.ce(a, b, c);
|
|
84443
|
+
this.av(a, b, c, d);
|
|
84372
84444
|
return true;
|
|
84373
84445
|
};
|
|
84374
|
-
ComponentRenderer.prototype.
|
|
84375
|
-
var e = this.
|
|
84376
|
-
e = this.
|
|
84446
|
+
ComponentRenderer.prototype.av = function (a, b, c, d) {
|
|
84447
|
+
var e = this.cb(c, a, b);
|
|
84448
|
+
e = this.k.transform(ComponentRenderer.platform, e, c);
|
|
84377
84449
|
var f = false;
|
|
84378
|
-
if (this.
|
|
84379
|
-
for (var g = 0; g < this.
|
|
84380
|
-
var h = this.
|
|
84381
|
-
var i = this.
|
|
84450
|
+
if (this.bi != null && this.bi.count > 0) {
|
|
84451
|
+
for (var g = 0; g < this.bi.count; g++) {
|
|
84452
|
+
var h = this.bi._inner[g];
|
|
84453
|
+
var i = this.cz(a, c);
|
|
84382
84454
|
if (h(i, d, e)) {
|
|
84383
84455
|
f = true;
|
|
84384
84456
|
}
|
|
@@ -84391,18 +84463,18 @@
|
|
|
84391
84463
|
return true;
|
|
84392
84464
|
}
|
|
84393
84465
|
if (c.d != null && c.d.knownType == 9) {
|
|
84394
|
-
this.
|
|
84466
|
+
this.as(a, b, c.i(ComponentRenderer.platform), c.d, e, d);
|
|
84395
84467
|
}
|
|
84396
84468
|
else {
|
|
84397
|
-
this.
|
|
84469
|
+
this.em(a, b, c.i(ComponentRenderer.platform), c.d, e, c.h, d);
|
|
84398
84470
|
}
|
|
84399
84471
|
return true;
|
|
84400
84472
|
};
|
|
84401
|
-
ComponentRenderer.prototype.
|
|
84473
|
+
ComponentRenderer.prototype.cz = function (a, b) {
|
|
84402
84474
|
var c = b.c;
|
|
84403
84475
|
var d = "";
|
|
84404
|
-
if (c != this.
|
|
84405
|
-
var e = this.
|
|
84476
|
+
if (c != this.ax.item(a)) {
|
|
84477
|
+
var e = this.cx(a, c);
|
|
84406
84478
|
d = e;
|
|
84407
84479
|
}
|
|
84408
84480
|
if (d.length > 0) {
|
|
@@ -84411,17 +84483,17 @@
|
|
|
84411
84483
|
d += b.j;
|
|
84412
84484
|
return d;
|
|
84413
84485
|
};
|
|
84414
|
-
ComponentRenderer.prototype.
|
|
84486
|
+
ComponentRenderer.prototype.cx = function (a, b) {
|
|
84415
84487
|
if (b == null) {
|
|
84416
84488
|
return "";
|
|
84417
84489
|
}
|
|
84418
|
-
var c = this.
|
|
84490
|
+
var c = this.c4("", this.ax.item(a), b);
|
|
84419
84491
|
if (c.c) {
|
|
84420
84492
|
return c.d;
|
|
84421
84493
|
}
|
|
84422
84494
|
return "";
|
|
84423
84495
|
};
|
|
84424
|
-
ComponentRenderer.prototype.
|
|
84496
|
+
ComponentRenderer.prototype.c4 = function (a, b, c) {
|
|
84425
84497
|
if (b == c) {
|
|
84426
84498
|
return new Tuple$2(Boolean_$type, String_$type, true, a);
|
|
84427
84499
|
}
|
|
@@ -84438,7 +84510,7 @@
|
|
|
84438
84510
|
}
|
|
84439
84511
|
else {
|
|
84440
84512
|
var g = a + f.c;
|
|
84441
|
-
var h = this.
|
|
84513
|
+
var h = this.c4(g, f.b, c);
|
|
84442
84514
|
if (h.c) {
|
|
84443
84515
|
return h;
|
|
84444
84516
|
}
|
|
@@ -84455,7 +84527,7 @@
|
|
|
84455
84527
|
}
|
|
84456
84528
|
else {
|
|
84457
84529
|
var l = a + f.c + "[" + j + "]";
|
|
84458
|
-
var m = this.
|
|
84530
|
+
var m = this.c4(l, k, c);
|
|
84459
84531
|
if (m.c) {
|
|
84460
84532
|
return m;
|
|
84461
84533
|
}
|
|
@@ -84466,11 +84538,11 @@
|
|
|
84466
84538
|
}
|
|
84467
84539
|
return new Tuple$2(Boolean_$type, String_$type, false, a);
|
|
84468
84540
|
};
|
|
84469
|
-
ComponentRenderer.prototype.
|
|
84541
|
+
ComponentRenderer.prototype.as = function (a, b, c, d, e, f) {
|
|
84470
84542
|
var e_12, _a;
|
|
84471
|
-
if (this.
|
|
84543
|
+
if (this.ba.containsKey(c)) {
|
|
84472
84544
|
try {
|
|
84473
|
-
for (var _b = tslib.__values(fromEnum(this.
|
|
84545
|
+
for (var _b = tslib.__values(fromEnum(this.ba.item(c))), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
84474
84546
|
var g = _c.value;
|
|
84475
84547
|
g(c, f, e);
|
|
84476
84548
|
}
|
|
@@ -84492,43 +84564,43 @@
|
|
|
84492
84564
|
this.adapter.setOrUpdateCollectionOnTarget(a, c, d, this.context, f, e);
|
|
84493
84565
|
return true;
|
|
84494
84566
|
};
|
|
84495
|
-
ComponentRenderer.prototype.
|
|
84567
|
+
ComponentRenderer.prototype.cb = function (a, b, c) {
|
|
84496
84568
|
if (a.d == null) {
|
|
84497
84569
|
return a.g;
|
|
84498
84570
|
}
|
|
84499
84571
|
switch (a.d.knownType) {
|
|
84500
|
-
case 10: return this.
|
|
84501
|
-
case 7: return this.
|
|
84502
|
-
case 4: return this.
|
|
84503
|
-
case 6: return this.
|
|
84504
|
-
case 23: return this.
|
|
84505
|
-
case 9: return this.
|
|
84506
|
-
case 5: return this.
|
|
84507
|
-
case 16: return this.
|
|
84508
|
-
case 20: return this.
|
|
84509
|
-
case 22: return this.
|
|
84572
|
+
case 10: return this.bo(a, b, c);
|
|
84573
|
+
case 7: return this.bp(a);
|
|
84574
|
+
case 4: return this.bq(a);
|
|
84575
|
+
case 6: return this.br(a);
|
|
84576
|
+
case 23: return this.bv(a);
|
|
84577
|
+
case 9: return this.bo(a, b, c);
|
|
84578
|
+
case 5: return this.bs(a);
|
|
84579
|
+
case 16: return this.bt(a);
|
|
84580
|
+
case 20: return this.cq(a, c);
|
|
84581
|
+
case 22: return this.ct(a, c);
|
|
84510
84582
|
case 15: return null;
|
|
84511
|
-
case 3: return this.
|
|
84512
|
-
case 19: return this.
|
|
84513
|
-
case 8: return this.
|
|
84583
|
+
case 3: return this.bu(a);
|
|
84584
|
+
case 19: return this.cr(a, c);
|
|
84585
|
+
case 8: return this.bx(a, b, c);
|
|
84514
84586
|
case 13: return null;
|
|
84515
|
-
case 18: return this.
|
|
84516
|
-
case 1: return this.
|
|
84517
|
-
case 11: return this.
|
|
84518
|
-
case 14: return this.
|
|
84519
|
-
case 12: return this.
|
|
84520
|
-
case 2: return this.
|
|
84521
|
-
case 21: return this.
|
|
84522
|
-
case 17: return this.
|
|
84587
|
+
case 18: return this.cs(a, c);
|
|
84588
|
+
case 1: return this.by(a);
|
|
84589
|
+
case 11: return this.bz(a);
|
|
84590
|
+
case 14: return this.b0(a);
|
|
84591
|
+
case 12: return this.b1(a);
|
|
84592
|
+
case 2: return this.b2(a);
|
|
84593
|
+
case 21: return this.b3(a);
|
|
84594
|
+
case 17: return this.b4(a, b, c);
|
|
84523
84595
|
case 0: return null;
|
|
84524
84596
|
}
|
|
84525
84597
|
return null;
|
|
84526
84598
|
};
|
|
84527
|
-
ComponentRenderer.prototype.
|
|
84528
|
-
var d = this.
|
|
84599
|
+
ComponentRenderer.prototype.b4 = function (a, b, c) {
|
|
84600
|
+
var d = this.b5(a.g, a, b, c);
|
|
84529
84601
|
return d;
|
|
84530
84602
|
};
|
|
84531
|
-
ComponentRenderer.prototype.
|
|
84603
|
+
ComponentRenderer.prototype.b5 = function (a, b, c, d) {
|
|
84532
84604
|
if (typeof a === 'string') {
|
|
84533
84605
|
if (stringStartsWith(a, "@d:")) {
|
|
84534
84606
|
var v_ = a.substr(3);
|
|
@@ -84539,7 +84611,7 @@
|
|
|
84539
84611
|
var e = a;
|
|
84540
84612
|
var f = new Array(e.length);
|
|
84541
84613
|
for (var g = 0; g < e.length; g++) {
|
|
84542
|
-
var h = this.
|
|
84614
|
+
var h = this.b5(e[g], b, c, d);
|
|
84543
84615
|
f[g] = h;
|
|
84544
84616
|
}
|
|
84545
84617
|
a = f;
|
|
@@ -84547,25 +84619,25 @@
|
|
|
84547
84619
|
if (typeCast(DescriptionTreeNode.$, a) !== null) {
|
|
84548
84620
|
var i = a;
|
|
84549
84621
|
if (i.i == "EmbeddedRef") {
|
|
84550
|
-
return this.
|
|
84622
|
+
return this.b8(i.i, a, c, d, false, b.c.g, b.d);
|
|
84551
84623
|
}
|
|
84552
84624
|
}
|
|
84553
84625
|
return a;
|
|
84554
84626
|
};
|
|
84555
|
-
ComponentRenderer.prototype.
|
|
84627
|
+
ComponentRenderer.prototype.b3 = function (a) {
|
|
84556
84628
|
return a.g;
|
|
84557
84629
|
};
|
|
84558
|
-
ComponentRenderer.prototype.
|
|
84630
|
+
ComponentRenderer.prototype.b2 = function (a) {
|
|
84559
84631
|
return a.g != null ? a.g.toString() : null;
|
|
84560
84632
|
};
|
|
84561
|
-
ComponentRenderer.prototype.
|
|
84633
|
+
ComponentRenderer.prototype.b1 = function (a) {
|
|
84562
84634
|
var b = a.g;
|
|
84563
84635
|
var width_ = b.width;
|
|
84564
84636
|
var height_ = b.height;
|
|
84565
84637
|
var c = { width: width_, height: height_ };
|
|
84566
84638
|
return c;
|
|
84567
84639
|
};
|
|
84568
|
-
ComponentRenderer.prototype.
|
|
84640
|
+
ComponentRenderer.prototype.b0 = function (a) {
|
|
84569
84641
|
var b = a.g;
|
|
84570
84642
|
var top_ = b.top;
|
|
84571
84643
|
var left_ = b.left;
|
|
@@ -84574,14 +84646,14 @@
|
|
|
84574
84646
|
var c = { left: left_, top: top_, width: width_, height: height_ };
|
|
84575
84647
|
return c;
|
|
84576
84648
|
};
|
|
84577
|
-
ComponentRenderer.prototype.
|
|
84649
|
+
ComponentRenderer.prototype.bz = function (a) {
|
|
84578
84650
|
var b = a.g;
|
|
84579
84651
|
var x_ = b.x;
|
|
84580
84652
|
var y_ = b.y;
|
|
84581
84653
|
var c = { x: x_, y: y_ };
|
|
84582
84654
|
return c;
|
|
84583
84655
|
};
|
|
84584
|
-
ComponentRenderer.prototype.
|
|
84656
|
+
ComponentRenderer.prototype.by = function (a) {
|
|
84585
84657
|
if (a.g == null) {
|
|
84586
84658
|
if (a.d != null && ((a.d.specificType == "double" || a.d.specificType == "float") || (a.d.specificExternalType == "double" || a.d.specificExternalType == "float"))) {
|
|
84587
84659
|
return NaN;
|
|
@@ -84610,19 +84682,19 @@
|
|
|
84610
84682
|
}
|
|
84611
84683
|
return b;
|
|
84612
84684
|
};
|
|
84613
|
-
ComponentRenderer.prototype.
|
|
84614
|
-
if (this.
|
|
84615
|
-
var b = this.
|
|
84685
|
+
ComponentRenderer.prototype.f = function (a) {
|
|
84686
|
+
if (this.a7.containsKey(a)) {
|
|
84687
|
+
var b = this.a7.item(a);
|
|
84616
84688
|
return b;
|
|
84617
84689
|
}
|
|
84618
84690
|
var c = new DescriptionRef(a);
|
|
84619
|
-
this.
|
|
84691
|
+
this.a7.addItem(a, c);
|
|
84620
84692
|
return c;
|
|
84621
84693
|
};
|
|
84622
|
-
ComponentRenderer.prototype.
|
|
84623
|
-
return a.g == null ? null : this.
|
|
84694
|
+
ComponentRenderer.prototype.cs = function (a, b) {
|
|
84695
|
+
return a.g == null ? null : this.f(a.g);
|
|
84624
84696
|
};
|
|
84625
|
-
ComponentRenderer.prototype.
|
|
84697
|
+
ComponentRenderer.prototype.bx = function (a, b, c) {
|
|
84626
84698
|
var d = a.d.specificType;
|
|
84627
84699
|
if (d == null) {
|
|
84628
84700
|
d = a.d.specificExternalType;
|
|
@@ -84633,54 +84705,54 @@
|
|
|
84633
84705
|
d = e.a("Type").b;
|
|
84634
84706
|
}
|
|
84635
84707
|
}
|
|
84636
|
-
var f = this.
|
|
84708
|
+
var f = this.b8(d, a.g, b, c, false, a.c.g, a.d);
|
|
84637
84709
|
return f;
|
|
84638
84710
|
};
|
|
84639
|
-
ComponentRenderer.prototype.
|
|
84640
|
-
return a.g == null ? null : this.
|
|
84711
|
+
ComponentRenderer.prototype.cr = function (a, b) {
|
|
84712
|
+
return a.g == null ? null : this.f(a.g);
|
|
84641
84713
|
};
|
|
84642
|
-
ComponentRenderer.prototype.
|
|
84714
|
+
ComponentRenderer.prototype.bu = function (a) {
|
|
84643
84715
|
if (typeof a.g === 'string') {
|
|
84644
84716
|
var v_ = a.g;
|
|
84645
84717
|
a.g = new Date(v_);
|
|
84646
84718
|
}
|
|
84647
84719
|
return a.g;
|
|
84648
84720
|
};
|
|
84649
|
-
ComponentRenderer.prototype.
|
|
84650
|
-
return a.g == null ? null : this.
|
|
84721
|
+
ComponentRenderer.prototype.cq = function (a, b) {
|
|
84722
|
+
return a.g == null ? null : this.f(a.g);
|
|
84651
84723
|
};
|
|
84652
|
-
ComponentRenderer.prototype.
|
|
84653
|
-
return a.g == null ? null : this.
|
|
84724
|
+
ComponentRenderer.prototype.ct = function (a, b) {
|
|
84725
|
+
return a.g == null ? null : this.f(a.g);
|
|
84654
84726
|
};
|
|
84655
|
-
ComponentRenderer.prototype.
|
|
84727
|
+
ComponentRenderer.prototype.cv = function (a) {
|
|
84656
84728
|
return a;
|
|
84657
84729
|
};
|
|
84658
|
-
ComponentRenderer.prototype.
|
|
84730
|
+
ComponentRenderer.prototype.bt = function (a) {
|
|
84659
84731
|
var b = a.g;
|
|
84660
84732
|
if (b == null) {
|
|
84661
84733
|
return null;
|
|
84662
84734
|
}
|
|
84663
84735
|
var c = new Array(b.length);
|
|
84664
84736
|
for (var d = 0; d < b.length; d++) {
|
|
84665
|
-
c[d] = this.
|
|
84737
|
+
c[d] = this.cv(b[d]);
|
|
84666
84738
|
}
|
|
84667
84739
|
return c;
|
|
84668
84740
|
};
|
|
84669
|
-
ComponentRenderer.prototype.
|
|
84670
|
-
return this.
|
|
84741
|
+
ComponentRenderer.prototype.bs = function (a) {
|
|
84742
|
+
return this.cv(a.g);
|
|
84671
84743
|
};
|
|
84672
|
-
ComponentRenderer.prototype.
|
|
84744
|
+
ComponentRenderer.prototype.br = function (a) {
|
|
84673
84745
|
var b = a.g;
|
|
84674
84746
|
if (b == null) {
|
|
84675
84747
|
return null;
|
|
84676
84748
|
}
|
|
84677
84749
|
var c = new Array(b.length);
|
|
84678
84750
|
for (var d = 0; d < b.length; d++) {
|
|
84679
|
-
c[d] = this.
|
|
84751
|
+
c[d] = this.cu(b[d]);
|
|
84680
84752
|
}
|
|
84681
84753
|
return c;
|
|
84682
84754
|
};
|
|
84683
|
-
ComponentRenderer.prototype.
|
|
84755
|
+
ComponentRenderer.prototype.bv = function (a) {
|
|
84684
84756
|
var b = a.g;
|
|
84685
84757
|
if (b == null) {
|
|
84686
84758
|
return null;
|
|
@@ -84691,59 +84763,59 @@
|
|
|
84691
84763
|
}
|
|
84692
84764
|
return c;
|
|
84693
84765
|
};
|
|
84694
|
-
ComponentRenderer.prototype.
|
|
84766
|
+
ComponentRenderer.prototype.cu = function (a) {
|
|
84695
84767
|
return a;
|
|
84696
84768
|
};
|
|
84697
|
-
ComponentRenderer.prototype.
|
|
84698
|
-
return this.
|
|
84769
|
+
ComponentRenderer.prototype.bq = function (a) {
|
|
84770
|
+
return this.cu(a.g);
|
|
84699
84771
|
};
|
|
84700
|
-
ComponentRenderer.prototype.
|
|
84772
|
+
ComponentRenderer.prototype.bp = function (a) {
|
|
84701
84773
|
return a.g;
|
|
84702
84774
|
};
|
|
84703
84775
|
ComponentRenderer.prototype.addTargetPropertyUpdatingListener = function (a) {
|
|
84704
|
-
this.
|
|
84776
|
+
this.bi.add(a);
|
|
84705
84777
|
};
|
|
84706
84778
|
ComponentRenderer.prototype.removeTargetPropertyUpdatingListener = function (a) {
|
|
84707
|
-
this.
|
|
84779
|
+
this.bi.remove(a);
|
|
84708
84780
|
};
|
|
84709
84781
|
ComponentRenderer.prototype.addPropertyUpdatingListener = function (a, b) {
|
|
84710
|
-
if (!this.
|
|
84711
|
-
this.
|
|
84782
|
+
if (!this.ba.containsKey(a)) {
|
|
84783
|
+
this.ba.addItem(a, new List$1(Delegate_$type, 0));
|
|
84712
84784
|
}
|
|
84713
|
-
this.
|
|
84785
|
+
this.ba.item(a).add(b);
|
|
84714
84786
|
};
|
|
84715
84787
|
ComponentRenderer.prototype.addReferenceLookupListener = function (a) {
|
|
84716
|
-
this.
|
|
84788
|
+
this.be.add(a);
|
|
84717
84789
|
};
|
|
84718
84790
|
ComponentRenderer.prototype.removeReferenceLookupListener = function (a) {
|
|
84719
|
-
this.
|
|
84791
|
+
this.be.remove(a);
|
|
84720
84792
|
};
|
|
84721
84793
|
ComponentRenderer.prototype.removePropertyUpdatingListener = function (a, b) {
|
|
84722
|
-
if (this.
|
|
84723
|
-
this.
|
|
84724
|
-
if (this.
|
|
84725
|
-
this.
|
|
84794
|
+
if (this.ba.containsKey(a)) {
|
|
84795
|
+
this.ba.item(a).remove(b);
|
|
84796
|
+
if (this.ba.item(a).count == 0) {
|
|
84797
|
+
this.ba.removeItem(a);
|
|
84726
84798
|
}
|
|
84727
84799
|
}
|
|
84728
84800
|
};
|
|
84729
84801
|
ComponentRenderer.prototype.addNamespaceLookupListener = function (a) {
|
|
84730
|
-
this.
|
|
84802
|
+
this.bg.add(a);
|
|
84731
84803
|
};
|
|
84732
84804
|
ComponentRenderer.prototype.removeNamespaceLookupListener = function (a) {
|
|
84733
|
-
this.
|
|
84805
|
+
this.bg.remove(a);
|
|
84734
84806
|
};
|
|
84735
84807
|
ComponentRenderer.prototype.addCleanupListener = function (a) {
|
|
84736
|
-
if (this.
|
|
84737
|
-
this.
|
|
84808
|
+
if (this.bd == null) {
|
|
84809
|
+
this.bd = new List$1(Delegate_$type, 0);
|
|
84738
84810
|
}
|
|
84739
|
-
this.
|
|
84811
|
+
this.bd.add(a);
|
|
84740
84812
|
};
|
|
84741
84813
|
ComponentRenderer.prototype.removeCleanupListener = function (a) {
|
|
84742
|
-
if (this.
|
|
84743
|
-
this.
|
|
84814
|
+
if (this.bd != null) {
|
|
84815
|
+
this.bd.remove(a);
|
|
84744
84816
|
}
|
|
84745
84817
|
};
|
|
84746
|
-
ComponentRenderer.prototype.
|
|
84818
|
+
ComponentRenderer.prototype.bo = function (a, b, c) {
|
|
84747
84819
|
if (a.g == null) {
|
|
84748
84820
|
return null;
|
|
84749
84821
|
}
|
|
@@ -84767,19 +84839,19 @@
|
|
|
84767
84839
|
h = i.a("Type").b;
|
|
84768
84840
|
}
|
|
84769
84841
|
}
|
|
84770
|
-
var j = this.
|
|
84842
|
+
var j = this.b8(h, d[g], b, c, false, a.c.g, a.d);
|
|
84771
84843
|
e.add1(j);
|
|
84772
84844
|
}
|
|
84773
84845
|
return e.toArray();
|
|
84774
84846
|
};
|
|
84775
|
-
ComponentRenderer.prototype.
|
|
84847
|
+
ComponentRenderer.prototype.em = function (a, b, c, d, e, f, g) {
|
|
84776
84848
|
var _this = this;
|
|
84777
84849
|
if (typeCast(DescriptionRef.$, e) !== null) {
|
|
84778
84850
|
var h = e;
|
|
84779
84851
|
var i = false;
|
|
84780
84852
|
if (f != null && typeof f === 'string') {
|
|
84781
84853
|
if (this.hasRef(f)) {
|
|
84782
|
-
var j = this.
|
|
84854
|
+
var j = this.g(f);
|
|
84783
84855
|
if (Base.equalsStatic(j, e)) {
|
|
84784
84856
|
i = true;
|
|
84785
84857
|
}
|
|
@@ -84788,13 +84860,13 @@
|
|
|
84788
84860
|
}
|
|
84789
84861
|
}
|
|
84790
84862
|
}
|
|
84791
|
-
if (this.
|
|
84863
|
+
if (this.v(e)) {
|
|
84792
84864
|
var k = e;
|
|
84793
|
-
if (k.e != null && k.e.length > 0 && this.
|
|
84865
|
+
if (k.e != null && k.e.length > 0 && this.a9.containsKey(k.e)) {
|
|
84794
84866
|
k.a = true;
|
|
84795
84867
|
}
|
|
84796
|
-
e = this.
|
|
84797
|
-
this.
|
|
84868
|
+
e = this.cd(e);
|
|
84869
|
+
this.en(g, c, d, e, f, k);
|
|
84798
84870
|
}
|
|
84799
84871
|
else {
|
|
84800
84872
|
this.adapter.onPendingRef(g, c, d, e);
|
|
@@ -84802,21 +84874,33 @@
|
|
|
84802
84874
|
var l = null;
|
|
84803
84875
|
l = function (m, n) {
|
|
84804
84876
|
var o = m;
|
|
84805
|
-
if (o.e != null && o.e.length > 0 && _this.
|
|
84877
|
+
if (o.e != null && o.e.length > 0 && _this.a9.containsKey(o.e)) {
|
|
84806
84878
|
o.a = true;
|
|
84807
84879
|
}
|
|
84808
|
-
var p = _this.
|
|
84809
|
-
_this.
|
|
84880
|
+
var p = _this.cd(m);
|
|
84881
|
+
_this.en(g, c, d, p, n.b, o);
|
|
84810
84882
|
};
|
|
84811
84883
|
if (!i) {
|
|
84812
84884
|
h.g(a, g, c, l);
|
|
84885
|
+
if (typeCast(DescriptionRef.$, e) !== null) {
|
|
84886
|
+
var m = e;
|
|
84887
|
+
var n = false;
|
|
84888
|
+
if (m.e != null && m.e.length > 0) {
|
|
84889
|
+
var o = this.e(m.e);
|
|
84890
|
+
if (o != null && o.found) {
|
|
84891
|
+
n = true;
|
|
84892
|
+
var p = o.referenceValue;
|
|
84893
|
+
this.provideRefValue(a, m.e, p);
|
|
84894
|
+
}
|
|
84895
|
+
}
|
|
84896
|
+
}
|
|
84813
84897
|
}
|
|
84814
84898
|
return;
|
|
84815
84899
|
}
|
|
84816
|
-
this.
|
|
84900
|
+
this.en(g, c, d, e, f, null);
|
|
84817
84901
|
};
|
|
84818
|
-
ComponentRenderer.prototype.
|
|
84819
|
-
return this.
|
|
84902
|
+
ComponentRenderer.prototype.w = function (a) {
|
|
84903
|
+
return this.bb.containsKey(a);
|
|
84820
84904
|
};
|
|
84821
84905
|
Object.defineProperty(ComponentRenderer.prototype, "shouldNamespaceSystemRefValues", {
|
|
84822
84906
|
get: function () {
|
|
@@ -84828,80 +84912,80 @@
|
|
|
84828
84912
|
enumerable: false,
|
|
84829
84913
|
configurable: true
|
|
84830
84914
|
});
|
|
84831
|
-
ComponentRenderer.prototype.
|
|
84915
|
+
ComponentRenderer.prototype.dx = function (a, b, c, d) {
|
|
84832
84916
|
var e = null;
|
|
84833
84917
|
if (d) {
|
|
84834
|
-
if (this.
|
|
84835
|
-
e = this.
|
|
84918
|
+
if (this.bb.containsKey(b)) {
|
|
84919
|
+
e = this.bb.item(b);
|
|
84836
84920
|
}
|
|
84837
|
-
this.
|
|
84921
|
+
this.bb.item(b, c);
|
|
84838
84922
|
if (c != null) {
|
|
84839
|
-
this.
|
|
84923
|
+
this.a6.item(c, b);
|
|
84840
84924
|
}
|
|
84841
84925
|
}
|
|
84842
84926
|
else {
|
|
84843
84927
|
if (this.shouldNamespaceSystemRefValues) {
|
|
84844
84928
|
var f = "";
|
|
84845
|
-
if (this.
|
|
84846
|
-
for (var g = 0; g < this.
|
|
84847
|
-
f = this.
|
|
84929
|
+
if (this.bg != null && this.bg.count > 0) {
|
|
84930
|
+
for (var g = 0; g < this.bg.count; g++) {
|
|
84931
|
+
f = this.bg._inner[g](a);
|
|
84848
84932
|
}
|
|
84849
84933
|
}
|
|
84850
84934
|
if (!stringIsNullOrEmpty(f)) {
|
|
84851
84935
|
b = f + "/" + b;
|
|
84852
84936
|
}
|
|
84853
84937
|
}
|
|
84854
|
-
if (this.
|
|
84855
|
-
e = this.
|
|
84938
|
+
if (this.a9.containsKey(b)) {
|
|
84939
|
+
e = this.a9.item(b);
|
|
84856
84940
|
}
|
|
84857
|
-
this.
|
|
84941
|
+
this.a9.item(b, c);
|
|
84858
84942
|
if (c != null) {
|
|
84859
|
-
this.
|
|
84943
|
+
this.a6.item(c, b);
|
|
84860
84944
|
}
|
|
84861
|
-
if (this.
|
|
84862
|
-
this.
|
|
84945
|
+
if (this.a7.containsKey(b)) {
|
|
84946
|
+
this.a7.item(b).a = true;
|
|
84863
84947
|
}
|
|
84864
84948
|
}
|
|
84865
|
-
if (this.
|
|
84866
|
-
this.
|
|
84949
|
+
if (this.a7.containsKey(b)) {
|
|
84950
|
+
this.a7.item(b).f(e, c);
|
|
84867
84951
|
}
|
|
84868
84952
|
};
|
|
84869
84953
|
ComponentRenderer.prototype.removeRefValueCore = function (a, b, c) {
|
|
84870
84954
|
var d = null;
|
|
84871
84955
|
if (c) {
|
|
84872
|
-
if (this.
|
|
84873
|
-
d = this.
|
|
84956
|
+
if (this.bb.containsKey(b)) {
|
|
84957
|
+
d = this.bb.item(b);
|
|
84874
84958
|
}
|
|
84875
|
-
this.
|
|
84876
|
-
if (d != null && this.
|
|
84877
|
-
this.
|
|
84959
|
+
this.bb.removeItem(b);
|
|
84960
|
+
if (d != null && this.a6.containsKey(d)) {
|
|
84961
|
+
this.a6.removeItem(d);
|
|
84878
84962
|
}
|
|
84879
84963
|
}
|
|
84880
84964
|
else {
|
|
84881
84965
|
if (this.shouldNamespaceSystemRefValues) {
|
|
84882
84966
|
var e = "";
|
|
84883
|
-
if (this.
|
|
84884
|
-
for (var f = 0; f < this.
|
|
84885
|
-
e = this.
|
|
84967
|
+
if (this.bg != null && this.bg.count > 0) {
|
|
84968
|
+
for (var f = 0; f < this.bg.count; f++) {
|
|
84969
|
+
e = this.bg._inner[f](a);
|
|
84886
84970
|
}
|
|
84887
84971
|
}
|
|
84888
84972
|
if (!stringIsNullOrEmpty(e)) {
|
|
84889
84973
|
b = e + "/" + b;
|
|
84890
84974
|
}
|
|
84891
84975
|
}
|
|
84892
|
-
if (this.
|
|
84893
|
-
d = this.
|
|
84976
|
+
if (this.a9.containsKey(b)) {
|
|
84977
|
+
d = this.a9.item(b);
|
|
84894
84978
|
}
|
|
84895
|
-
this.
|
|
84896
|
-
if (d != null && this.
|
|
84897
|
-
this.
|
|
84979
|
+
this.a9.removeItem(b);
|
|
84980
|
+
if (d != null && this.a6.containsKey(d)) {
|
|
84981
|
+
this.a6.removeItem(d);
|
|
84898
84982
|
}
|
|
84899
84983
|
}
|
|
84900
|
-
if (this.
|
|
84901
|
-
this.
|
|
84902
|
-
if (this.
|
|
84903
|
-
this.
|
|
84904
|
-
this.
|
|
84984
|
+
if (this.a7.containsKey(b)) {
|
|
84985
|
+
this.a7.item(b).f(d, this.cd(this.a7.item(b)));
|
|
84986
|
+
if (this.a7.item(b).c <= 0) {
|
|
84987
|
+
this.a7.item(b).h();
|
|
84988
|
+
this.a7.removeItem(b);
|
|
84905
84989
|
}
|
|
84906
84990
|
}
|
|
84907
84991
|
};
|
|
@@ -84909,7 +84993,7 @@
|
|
|
84909
84993
|
var e_13, _a, e_14, _b;
|
|
84910
84994
|
var a = new List$1(String_$type, 0);
|
|
84911
84995
|
try {
|
|
84912
|
-
for (var _c = tslib.__values(fromEnum(this.
|
|
84996
|
+
for (var _c = tslib.__values(fromEnum(this.bb.keys)), _d = _c.next(); !_d.done; _d = _c.next()) {
|
|
84913
84997
|
var b = _d.value;
|
|
84914
84998
|
a.add(b);
|
|
84915
84999
|
}
|
|
@@ -84947,31 +85031,31 @@
|
|
|
84947
85031
|
}
|
|
84948
85032
|
}
|
|
84949
85033
|
};
|
|
84950
|
-
ComponentRenderer.prototype.
|
|
84951
|
-
return this.
|
|
85034
|
+
ComponentRenderer.prototype.v = function (a) {
|
|
85035
|
+
return this.bb.containsKey(a.e) || this.a9.containsKey(a.e);
|
|
84952
85036
|
};
|
|
84953
|
-
ComponentRenderer.prototype.
|
|
84954
|
-
if (this.
|
|
84955
|
-
return this.
|
|
85037
|
+
ComponentRenderer.prototype.cd = function (a) {
|
|
85038
|
+
if (this.bb.containsKey(a.e)) {
|
|
85039
|
+
return this.bb.item(a.e);
|
|
84956
85040
|
}
|
|
84957
|
-
if (this.
|
|
84958
|
-
return this.
|
|
85041
|
+
if (this.a9.containsKey(a.e)) {
|
|
85042
|
+
return this.a9.item(a.e);
|
|
84959
85043
|
}
|
|
84960
85044
|
return null;
|
|
84961
85045
|
};
|
|
84962
85046
|
ComponentRenderer.prototype.hasRef = function (a) {
|
|
84963
|
-
return this.
|
|
85047
|
+
return this.a7.containsKey(a);
|
|
84964
85048
|
};
|
|
84965
|
-
ComponentRenderer.prototype.
|
|
84966
|
-
return this.
|
|
85049
|
+
ComponentRenderer.prototype.g = function (a) {
|
|
85050
|
+
return this.a7.item(a);
|
|
84967
85051
|
};
|
|
84968
85052
|
ComponentRenderer.prototype.getMissingRefs = function () {
|
|
84969
85053
|
var e_15, _a;
|
|
84970
85054
|
var a = new List$1(String_$type, 0);
|
|
84971
85055
|
try {
|
|
84972
|
-
for (var _b = tslib.__values(fromEnum(this.
|
|
85056
|
+
for (var _b = tslib.__values(fromEnum(this.a7.keys)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
84973
85057
|
var b = _c.value;
|
|
84974
|
-
if (!this.
|
|
85058
|
+
if (!this.v(this.a7.item(b))) {
|
|
84975
85059
|
a.add(b);
|
|
84976
85060
|
}
|
|
84977
85061
|
}
|
|
@@ -84994,7 +85078,7 @@
|
|
|
84994
85078
|
ComponentRenderer.prototype.getRefChangeInfos = function (a) {
|
|
84995
85079
|
var e_16, _a;
|
|
84996
85080
|
var b = new List$1(DescriptionRefTargetInfo.$, 0);
|
|
84997
|
-
if (this.
|
|
85081
|
+
if (this.a7.containsKey(a)) {
|
|
84998
85082
|
var _loop_2 = function (c) {
|
|
84999
85083
|
b.add(((function () {
|
|
85000
85084
|
var $ret = new DescriptionRefTargetInfo();
|
|
@@ -85005,7 +85089,7 @@
|
|
|
85005
85089
|
})()));
|
|
85006
85090
|
};
|
|
85007
85091
|
try {
|
|
85008
|
-
for (var _b = tslib.__values(fromEnum(this.
|
|
85092
|
+
for (var _b = tslib.__values(fromEnum(this.a7.item(a).b)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
85009
85093
|
var c = _c.value;
|
|
85010
85094
|
_loop_2(c);
|
|
85011
85095
|
}
|
|
@@ -85026,29 +85110,29 @@
|
|
|
85026
85110
|
}
|
|
85027
85111
|
return b.toArray();
|
|
85028
85112
|
};
|
|
85029
|
-
ComponentRenderer.prototype.
|
|
85113
|
+
ComponentRenderer.prototype.ce = function (a, b, c) {
|
|
85030
85114
|
return b.j(c.c.g);
|
|
85031
85115
|
};
|
|
85032
|
-
ComponentRenderer.prototype.
|
|
85033
|
-
var d = this.
|
|
85034
|
-
this.
|
|
85116
|
+
ComponentRenderer.prototype.am = function (a, b, c) {
|
|
85117
|
+
var d = this.ce(a, b, c);
|
|
85118
|
+
this.ar(a, b, c, d);
|
|
85035
85119
|
return true;
|
|
85036
85120
|
};
|
|
85037
|
-
ComponentRenderer.prototype.
|
|
85121
|
+
ComponentRenderer.prototype.ar = function (a, b, c, d) {
|
|
85038
85122
|
this.adapter.resetPropertyOnTarget(a, c.i(ComponentRenderer.platform), c.d, d);
|
|
85039
85123
|
return true;
|
|
85040
85124
|
};
|
|
85041
|
-
ComponentRenderer.prototype.
|
|
85125
|
+
ComponentRenderer.prototype.al = function (a, b, c) {
|
|
85042
85126
|
if (c.c == null) {
|
|
85043
|
-
return this.
|
|
85127
|
+
return this.aq(a, b, c);
|
|
85044
85128
|
}
|
|
85045
85129
|
else {
|
|
85046
|
-
var d = this.
|
|
85047
|
-
this.
|
|
85130
|
+
var d = this.ce(a, b, c);
|
|
85131
|
+
this.ef(a, b, c, d);
|
|
85048
85132
|
}
|
|
85049
85133
|
return true;
|
|
85050
85134
|
};
|
|
85051
|
-
ComponentRenderer.prototype.
|
|
85135
|
+
ComponentRenderer.prototype.ef = function (a, b, c, d) {
|
|
85052
85136
|
var e = c.i(ComponentRenderer.platform);
|
|
85053
85137
|
var f = c.d.collectionElementType;
|
|
85054
85138
|
if (typeCast(DescriptionTreeNode.$, c.g) !== null) {
|
|
@@ -85060,23 +85144,23 @@
|
|
|
85060
85144
|
if (f == null) {
|
|
85061
85145
|
f = c.d.specificExternalType;
|
|
85062
85146
|
}
|
|
85063
|
-
var h = this.
|
|
85147
|
+
var h = this.b8(f, c.g, a, b, false, c.c.g, c.d);
|
|
85064
85148
|
this.adapter.replaceItemInCollection(e, c.d, d, c.e, h);
|
|
85065
85149
|
if (c.h != null && typeCast(DescriptionTreeNode.$, c.h) !== null) {
|
|
85066
85150
|
var i = c.h.g;
|
|
85067
85151
|
if (i >= 0) {
|
|
85068
85152
|
var j = b.j(i);
|
|
85069
85153
|
if (j != null) {
|
|
85070
|
-
this.
|
|
85154
|
+
this.dh(a, j, b);
|
|
85071
85155
|
}
|
|
85072
85156
|
}
|
|
85073
85157
|
}
|
|
85074
85158
|
};
|
|
85075
|
-
ComponentRenderer.prototype.
|
|
85159
|
+
ComponentRenderer.prototype.aq = function (a, b, c) {
|
|
85076
85160
|
var _this = this;
|
|
85077
85161
|
var d = this.adapter.getRootObject(a);
|
|
85078
85162
|
if (d != null) {
|
|
85079
|
-
this.
|
|
85163
|
+
this.dh(a, d, b);
|
|
85080
85164
|
}
|
|
85081
85165
|
if (!(typeCast(DescriptionTreeNode.$, c.g) !== null)) {
|
|
85082
85166
|
throw new NotImplementedException(0);
|
|
@@ -85085,21 +85169,21 @@
|
|
|
85085
85169
|
var f = false;
|
|
85086
85170
|
this.adapter.replaceRootItem(a, e.i, this.context, function (g) {
|
|
85087
85171
|
var h = _this.adapter.getRootObject(a);
|
|
85088
|
-
b.k(a, e.g, h, e, runOn(_this, _this.
|
|
85089
|
-
var i = _this.
|
|
85090
|
-
_this.
|
|
85172
|
+
b.k(a, e.g, h, e, runOn(_this, _this.dx), -1);
|
|
85173
|
+
var i = _this.bj(e);
|
|
85174
|
+
_this.dv(a, b, i);
|
|
85091
85175
|
f = true;
|
|
85092
85176
|
if (g) {
|
|
85093
|
-
_this.
|
|
85177
|
+
_this.ei(a, b);
|
|
85094
85178
|
}
|
|
85095
85179
|
});
|
|
85096
85180
|
return f;
|
|
85097
85181
|
};
|
|
85098
|
-
ComponentRenderer.prototype.
|
|
85182
|
+
ComponentRenderer.prototype.dh = function (a, b, c) {
|
|
85099
85183
|
var e_17, _a;
|
|
85100
|
-
var d = this.
|
|
85184
|
+
var d = this.bm(a, b, c);
|
|
85101
85185
|
try {
|
|
85102
|
-
for (var _b = tslib.__values(fromEnum(this.
|
|
85186
|
+
for (var _b = tslib.__values(fromEnum(this.a7.values)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
85103
85187
|
var e = _c.value;
|
|
85104
85188
|
e.i(b);
|
|
85105
85189
|
}
|
|
@@ -85120,22 +85204,22 @@
|
|
|
85120
85204
|
if (d != -1) {
|
|
85121
85205
|
c.l(this, a, d, runOn(this, this.removeRefValueCore));
|
|
85122
85206
|
}
|
|
85123
|
-
this.
|
|
85207
|
+
this.l.b(ComponentRenderer.platform, b);
|
|
85124
85208
|
};
|
|
85125
|
-
ComponentRenderer.prototype.
|
|
85209
|
+
ComponentRenderer.prototype.bm = function (a, b, c) {
|
|
85126
85210
|
return c.h(b);
|
|
85127
85211
|
};
|
|
85128
|
-
ComponentRenderer.prototype.
|
|
85212
|
+
ComponentRenderer.prototype.ak = function (a, b, c) {
|
|
85129
85213
|
if (c.c == null) {
|
|
85130
|
-
return this.
|
|
85214
|
+
return this.ap(a, b, c);
|
|
85131
85215
|
}
|
|
85132
85216
|
else {
|
|
85133
|
-
var d = this.
|
|
85134
|
-
this.
|
|
85217
|
+
var d = this.ce(a, b, c);
|
|
85218
|
+
this.d1(a, b, c, d);
|
|
85135
85219
|
}
|
|
85136
85220
|
return true;
|
|
85137
85221
|
};
|
|
85138
|
-
ComponentRenderer.prototype.
|
|
85222
|
+
ComponentRenderer.prototype.d1 = function (a, b, c, d) {
|
|
85139
85223
|
var e = c.i(ComponentRenderer.platform);
|
|
85140
85224
|
this.adapter.removeItemFromCollection(e, c.d, d, c.f);
|
|
85141
85225
|
if (c.h != null && typeCast(DescriptionTreeNode.$, c.h) !== null) {
|
|
@@ -85143,37 +85227,37 @@
|
|
|
85143
85227
|
if (f >= 0) {
|
|
85144
85228
|
var g = b.j(f);
|
|
85145
85229
|
if (g != null) {
|
|
85146
|
-
this.
|
|
85230
|
+
this.dh(a, g, b);
|
|
85147
85231
|
}
|
|
85148
85232
|
}
|
|
85149
85233
|
}
|
|
85150
85234
|
};
|
|
85151
|
-
ComponentRenderer.prototype.
|
|
85235
|
+
ComponentRenderer.prototype.ap = function (a, b, c) {
|
|
85152
85236
|
var _this = this;
|
|
85153
85237
|
var d = this.adapter.getRootObject(a);
|
|
85154
85238
|
if (d != null) {
|
|
85155
|
-
this.
|
|
85239
|
+
this.dh(a, d, b);
|
|
85156
85240
|
}
|
|
85157
85241
|
var e = false;
|
|
85158
85242
|
this.adapter.removeRootItem(a, this.context, function (f) {
|
|
85159
85243
|
e = true;
|
|
85160
85244
|
if (f) {
|
|
85161
|
-
_this.
|
|
85245
|
+
_this.ei(a, b);
|
|
85162
85246
|
}
|
|
85163
85247
|
});
|
|
85164
85248
|
return e;
|
|
85165
85249
|
};
|
|
85166
|
-
ComponentRenderer.prototype.
|
|
85250
|
+
ComponentRenderer.prototype.af = function (a, b, c) {
|
|
85167
85251
|
if (c.c == null) {
|
|
85168
|
-
return this.
|
|
85252
|
+
return this.o(a, b, c);
|
|
85169
85253
|
}
|
|
85170
85254
|
else {
|
|
85171
|
-
var d = this.
|
|
85172
|
-
this.
|
|
85255
|
+
var d = this.ce(a, b, c);
|
|
85256
|
+
this.c6(a, b, c, d);
|
|
85173
85257
|
}
|
|
85174
85258
|
return true;
|
|
85175
85259
|
};
|
|
85176
|
-
ComponentRenderer.prototype.
|
|
85260
|
+
ComponentRenderer.prototype.o = function (a, b, c) {
|
|
85177
85261
|
var _this = this;
|
|
85178
85262
|
if (!(typeCast(DescriptionTreeNode.$, c.g) !== null)) {
|
|
85179
85263
|
throw new NotImplementedException(0);
|
|
@@ -85182,17 +85266,17 @@
|
|
|
85182
85266
|
var e = false;
|
|
85183
85267
|
this.adapter.replaceRootItem(a, d.i, this.context, function (f) {
|
|
85184
85268
|
var g = _this.adapter.getRootObject(a);
|
|
85185
|
-
b.k(a, d.g, g, d, runOn(_this, _this.
|
|
85186
|
-
var h = _this.
|
|
85187
|
-
_this.
|
|
85269
|
+
b.k(a, d.g, g, d, runOn(_this, _this.dx), -1);
|
|
85270
|
+
var h = _this.bj(d);
|
|
85271
|
+
_this.dv(a, b, h);
|
|
85188
85272
|
e = true;
|
|
85189
85273
|
if (f) {
|
|
85190
|
-
_this.
|
|
85274
|
+
_this.ei(a, b);
|
|
85191
85275
|
}
|
|
85192
85276
|
});
|
|
85193
85277
|
return e;
|
|
85194
85278
|
};
|
|
85195
|
-
ComponentRenderer.prototype.
|
|
85279
|
+
ComponentRenderer.prototype.c6 = function (a, b, c, d) {
|
|
85196
85280
|
var e = c.i(ComponentRenderer.platform);
|
|
85197
85281
|
var f = c.d.collectionElementType;
|
|
85198
85282
|
if (typeCast(DescriptionTreeNode.$, c.g) !== null) {
|
|
@@ -85204,11 +85288,11 @@
|
|
|
85204
85288
|
if (f == null) {
|
|
85205
85289
|
f = c.d.specificExternalType;
|
|
85206
85290
|
}
|
|
85207
|
-
var h = this.
|
|
85291
|
+
var h = this.b8(f, c.g, a, b, false, c.c.g, c.d);
|
|
85208
85292
|
this.adapter.addItemToCollection(e, c.d, d, c.e, h);
|
|
85209
85293
|
};
|
|
85210
|
-
ComponentRenderer.prototype.
|
|
85211
|
-
if (this.
|
|
85294
|
+
ComponentRenderer.prototype.b8 = function (a, b, c, d, e, f, g) {
|
|
85295
|
+
if (this.z(a)) {
|
|
85212
85296
|
return b;
|
|
85213
85297
|
}
|
|
85214
85298
|
var h = null;
|
|
@@ -85220,17 +85304,17 @@
|
|
|
85220
85304
|
if (!stringIsNullOrEmpty(j)) {
|
|
85221
85305
|
if (this.shouldNamespaceSystemRefValues) {
|
|
85222
85306
|
var k = "";
|
|
85223
|
-
if (this.
|
|
85224
|
-
for (var l = 0; l < this.
|
|
85225
|
-
k = this.
|
|
85307
|
+
if (this.bg != null && this.bg.count > 0) {
|
|
85308
|
+
for (var l = 0; l < this.bg.count; l++) {
|
|
85309
|
+
k = this.bg._inner[l](c);
|
|
85226
85310
|
}
|
|
85227
85311
|
}
|
|
85228
85312
|
if (!stringIsNullOrEmpty(k)) {
|
|
85229
85313
|
j = k + "/" + j;
|
|
85230
85314
|
}
|
|
85231
85315
|
}
|
|
85232
|
-
if (this.
|
|
85233
|
-
var m = this.
|
|
85316
|
+
if (this.a9.containsKey(j)) {
|
|
85317
|
+
var m = this.a9.item(j);
|
|
85234
85318
|
h = m;
|
|
85235
85319
|
}
|
|
85236
85320
|
}
|
|
@@ -85259,33 +85343,33 @@
|
|
|
85259
85343
|
}
|
|
85260
85344
|
}
|
|
85261
85345
|
if (p != null) {
|
|
85262
|
-
for (var r = 0; r < this.
|
|
85263
|
-
var s = this.
|
|
85346
|
+
for (var r = 0; r < this.be.count; r++) {
|
|
85347
|
+
var s = this.be._inner[r](c, o, p);
|
|
85264
85348
|
if (s != null) {
|
|
85265
85349
|
return s;
|
|
85266
85350
|
}
|
|
85267
85351
|
}
|
|
85268
85352
|
if (o == "name") {
|
|
85269
85353
|
var t = p;
|
|
85270
|
-
if (this.
|
|
85271
|
-
return this.
|
|
85354
|
+
if (this.a9.containsKey(t)) {
|
|
85355
|
+
return this.a9.item(t);
|
|
85272
85356
|
}
|
|
85273
85357
|
}
|
|
85274
85358
|
return null;
|
|
85275
85359
|
}
|
|
85276
85360
|
}
|
|
85277
85361
|
else {
|
|
85278
|
-
if (!this.
|
|
85279
|
-
this.
|
|
85362
|
+
if (!this.a8.containsKey(c)) {
|
|
85363
|
+
this.a8.addItem(c, ((function () {
|
|
85280
85364
|
var $ret = new ContainerState();
|
|
85281
85365
|
$ret.i = c;
|
|
85282
85366
|
return $ret;
|
|
85283
85367
|
})()));
|
|
85284
|
-
d = this.
|
|
85368
|
+
d = this.a8.item(c);
|
|
85285
85369
|
}
|
|
85286
|
-
d.k(c, n.g, h, n, runOn(this, this.
|
|
85287
|
-
var u = this.
|
|
85288
|
-
this.
|
|
85370
|
+
d.k(c, n.g, h, n, runOn(this, this.dx), f);
|
|
85371
|
+
var u = this.bj(n);
|
|
85372
|
+
this.dv(c, d, u);
|
|
85289
85373
|
if (e) {
|
|
85290
85374
|
d.l(this, c, n.g, runOn(this, this.removeRefValueCore));
|
|
85291
85375
|
}
|
|
@@ -85299,23 +85383,23 @@
|
|
|
85299
85383
|
return x;
|
|
85300
85384
|
}
|
|
85301
85385
|
if (!v && typeof b === 'string' && a.toLowerCase() != "string") {
|
|
85302
|
-
return this.
|
|
85386
|
+
return this.bw(a, b, g);
|
|
85303
85387
|
}
|
|
85304
85388
|
if (v) {
|
|
85305
85389
|
return b;
|
|
85306
85390
|
}
|
|
85307
85391
|
return h;
|
|
85308
85392
|
};
|
|
85309
|
-
ComponentRenderer.prototype.
|
|
85393
|
+
ComponentRenderer.prototype.z = function (a) {
|
|
85310
85394
|
return a == "int" || a == "Int32" || a == "short" || a == "Int16" || a == "double" || a == "Double" || a == "float" || a == "Float" || a == "Single" || a == "single" || a == "DateTime" || a == "decimal" || a == "Decimal" || a == "long" || a == "Int64" || a == "byte" || a == "bool" || a == "string" || a == "String";
|
|
85311
85395
|
};
|
|
85312
|
-
ComponentRenderer.prototype.
|
|
85313
|
-
return this.context.t(a, b, c, this.
|
|
85396
|
+
ComponentRenderer.prototype.bw = function (a, b, c) {
|
|
85397
|
+
return this.context.t(a, b, c, this.p());
|
|
85314
85398
|
};
|
|
85315
|
-
ComponentRenderer.prototype.
|
|
85399
|
+
ComponentRenderer.prototype.p = function () {
|
|
85316
85400
|
return true;
|
|
85317
85401
|
};
|
|
85318
|
-
ComponentRenderer.prototype.
|
|
85402
|
+
ComponentRenderer.prototype.bj = function (a) {
|
|
85319
85403
|
var b = a.f();
|
|
85320
85404
|
var c = new List$1(DescriptionTreeAction.$, 0);
|
|
85321
85405
|
for (var d = 0; d < b.count; d++) {
|
|
@@ -85335,17 +85419,17 @@
|
|
|
85335
85419
|
}
|
|
85336
85420
|
return c;
|
|
85337
85421
|
};
|
|
85338
|
-
ComponentRenderer.prototype.
|
|
85422
|
+
ComponentRenderer.prototype.ae = function (a, b, c) {
|
|
85339
85423
|
if (c.c == null) {
|
|
85340
|
-
return this.
|
|
85424
|
+
return this.t(a, b, c);
|
|
85341
85425
|
}
|
|
85342
85426
|
else {
|
|
85343
|
-
var d = this.
|
|
85344
|
-
this.
|
|
85427
|
+
var d = this.ce(a, b, c);
|
|
85428
|
+
this.de(a, b, c, d);
|
|
85345
85429
|
}
|
|
85346
85430
|
return true;
|
|
85347
85431
|
};
|
|
85348
|
-
ComponentRenderer.prototype.
|
|
85432
|
+
ComponentRenderer.prototype.de = function (a, b, c, d) {
|
|
85349
85433
|
var e = c.i(ComponentRenderer.platform);
|
|
85350
85434
|
this.adapter.clearCollection(d, e, c.d);
|
|
85351
85435
|
if (c.h != null && typeCast(Array_$type, c.h) !== null) {
|
|
@@ -85357,18 +85441,18 @@
|
|
|
85357
85441
|
if (i >= 0) {
|
|
85358
85442
|
var j = b.j(i);
|
|
85359
85443
|
if (j != null) {
|
|
85360
|
-
this.
|
|
85444
|
+
this.dh(a, j, b);
|
|
85361
85445
|
}
|
|
85362
85446
|
}
|
|
85363
85447
|
}
|
|
85364
85448
|
}
|
|
85365
85449
|
}
|
|
85366
85450
|
};
|
|
85367
|
-
ComponentRenderer.prototype.
|
|
85451
|
+
ComponentRenderer.prototype.en = function (a, b, c, d, e, f) {
|
|
85368
85452
|
var e_18, _a;
|
|
85369
|
-
if (this.
|
|
85453
|
+
if (this.ba.containsKey(b)) {
|
|
85370
85454
|
try {
|
|
85371
|
-
for (var _b = tslib.__values(fromEnum(this.
|
|
85455
|
+
for (var _b = tslib.__values(fromEnum(this.ba.item(b))), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
85372
85456
|
var g = _c.value;
|
|
85373
85457
|
g(b, a, d);
|
|
85374
85458
|
}
|
|
@@ -85389,23 +85473,23 @@
|
|
|
85389
85473
|
}
|
|
85390
85474
|
this.adapter.setPropertyValue(a, b, c, d, e, f);
|
|
85391
85475
|
};
|
|
85392
|
-
ComponentRenderer.prototype.
|
|
85476
|
+
ComponentRenderer.prototype.cc = function (a, b) {
|
|
85393
85477
|
return this.adapter.getPropertyValue(a, b);
|
|
85394
85478
|
};
|
|
85395
|
-
ComponentRenderer.prototype.
|
|
85396
|
-
return this.
|
|
85479
|
+
ComponentRenderer.prototype.t = function (a, b, c) {
|
|
85480
|
+
return this.s(a, b);
|
|
85397
85481
|
};
|
|
85398
|
-
ComponentRenderer.prototype.
|
|
85482
|
+
ComponentRenderer.prototype.s = function (a, b) {
|
|
85399
85483
|
var _this = this;
|
|
85400
85484
|
var c = this.adapter.getRootObject(a);
|
|
85401
85485
|
if (c != null) {
|
|
85402
|
-
this.
|
|
85486
|
+
this.dh(a, c, b);
|
|
85403
85487
|
}
|
|
85404
85488
|
var d = false;
|
|
85405
85489
|
this.adapter.clearContainer(a, this.context, function (e) {
|
|
85406
85490
|
d = true;
|
|
85407
85491
|
if (e) {
|
|
85408
|
-
_this.
|
|
85492
|
+
_this.ei(a, b);
|
|
85409
85493
|
}
|
|
85410
85494
|
});
|
|
85411
85495
|
return d;
|
|
@@ -85463,7 +85547,7 @@
|
|
|
85463
85547
|
for (var f = 0; f < e.count; f++) {
|
|
85464
85548
|
if (!this.g.containsKey(e._inner[f]) || this.g.item(e._inner[f]).count < 1 || (this.g.item(e._inner[f]).count == 1 && this.g.item(e._inner[f]).contains(c))) {
|
|
85465
85549
|
if (this.e.containsKey(e._inner[f])) {
|
|
85466
|
-
a.
|
|
85550
|
+
a.dh(b, this.e.item(e._inner[f]), this);
|
|
85467
85551
|
}
|
|
85468
85552
|
}
|
|
85469
85553
|
}
|
|
@@ -87361,7 +87445,7 @@
|
|
|
87361
87445
|
};
|
|
87362
87446
|
CodeGeneratingComponentRendererCodeEmitter.prototype.au = function (a) {
|
|
87363
87447
|
var b = stringReplace(stringReplace(a, this.a7, ""), "Component", "");
|
|
87364
|
-
b = CodeGeneratingComponentRenderer.
|
|
87448
|
+
b = CodeGeneratingComponentRenderer.e5(b);
|
|
87365
87449
|
return this.j.v(b);
|
|
87366
87450
|
};
|
|
87367
87451
|
CodeGeneratingComponentRendererCodeEmitter.prototype.bm = function () {
|
|
@@ -87384,7 +87468,7 @@
|
|
|
87384
87468
|
return this.ad.d();
|
|
87385
87469
|
}
|
|
87386
87470
|
var a = stringReplace(stringReplace(this.aq, this.a7, ""), "Component", "");
|
|
87387
|
-
return CodeGeneratingComponentRenderer.
|
|
87471
|
+
return CodeGeneratingComponentRenderer.e5(a);
|
|
87388
87472
|
},
|
|
87389
87473
|
enumerable: false,
|
|
87390
87474
|
configurable: true
|
|
@@ -87491,26 +87575,26 @@
|
|
|
87491
87575
|
});
|
|
87492
87576
|
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.ar = function (a, b, c, d) {
|
|
87493
87577
|
d = _super.prototype.ar.call(this, a, b, c, d);
|
|
87494
|
-
this.f.l("private " + b.n() + " _" + CodeGeneratingComponentRenderer.
|
|
87495
|
-
this.f.l("public " + b.n() + " " + CodeGeneratingComponentRenderer.
|
|
87578
|
+
this.f.l("private " + b.n() + " _" + CodeGeneratingComponentRenderer.e5(d) + " = null;");
|
|
87579
|
+
this.f.l("public " + b.n() + " " + CodeGeneratingComponentRenderer.e6(d));
|
|
87496
87580
|
this.f.l("{");
|
|
87497
87581
|
this.f.h();
|
|
87498
87582
|
this.f.l("get");
|
|
87499
87583
|
this.f.l("{");
|
|
87500
87584
|
this.f.h();
|
|
87501
|
-
this.f.l("if (this._" + CodeGeneratingComponentRenderer.
|
|
87585
|
+
this.f.l("if (this._" + CodeGeneratingComponentRenderer.e5(d) + " == null)");
|
|
87502
87586
|
this.f.l("{");
|
|
87503
87587
|
this.f.h();
|
|
87504
87588
|
this.f.k(c);
|
|
87505
|
-
this.f.l("this._" + CodeGeneratingComponentRenderer.
|
|
87589
|
+
this.f.l("this._" + CodeGeneratingComponentRenderer.e5(d) + " = " + d + ";");
|
|
87506
87590
|
this.f.f();
|
|
87507
87591
|
this.f.l("}");
|
|
87508
|
-
this.f.l("return this._" + CodeGeneratingComponentRenderer.
|
|
87592
|
+
this.f.l("return this._" + CodeGeneratingComponentRenderer.e5(d) + ";");
|
|
87509
87593
|
this.f.f();
|
|
87510
87594
|
this.f.l("}");
|
|
87511
87595
|
this.f.f();
|
|
87512
87596
|
this.f.l("}");
|
|
87513
|
-
return CodeGeneratingComponentRenderer.
|
|
87597
|
+
return CodeGeneratingComponentRenderer.e6(d);
|
|
87514
87598
|
};
|
|
87515
87599
|
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.as = function (a, b, c, d, e) {
|
|
87516
87600
|
e = _super.prototype.as.call(this, a, b, c, d, e);
|
|
@@ -87522,30 +87606,30 @@
|
|
|
87522
87606
|
var g = a.b.specificExternalType;
|
|
87523
87607
|
f = CodeGenerationItemBuilder.o(this.k.platform, g, b, this.al, this.am) + "[]";
|
|
87524
87608
|
}
|
|
87525
|
-
this.f.l("private " + f + " _" + CodeGeneratingComponentRenderer.
|
|
87526
|
-
this.f.l("public " + f + " " + CodeGeneratingComponentRenderer.
|
|
87609
|
+
this.f.l("private " + f + " _" + CodeGeneratingComponentRenderer.e5(e) + " = null;");
|
|
87610
|
+
this.f.l("public " + f + " " + CodeGeneratingComponentRenderer.e6(e));
|
|
87527
87611
|
this.f.l("{");
|
|
87528
87612
|
this.f.h();
|
|
87529
87613
|
this.f.l("get");
|
|
87530
87614
|
this.f.l("{");
|
|
87531
87615
|
this.f.h();
|
|
87532
|
-
this.f.l("if (this._" + CodeGeneratingComponentRenderer.
|
|
87616
|
+
this.f.l("if (this._" + CodeGeneratingComponentRenderer.e5(e) + " == null)");
|
|
87533
87617
|
this.f.l("{");
|
|
87534
87618
|
this.f.h();
|
|
87535
|
-
this.f.k("var " + CodeGeneratingComponentRenderer.
|
|
87619
|
+
this.f.k("var " + CodeGeneratingComponentRenderer.e5(e) + " = new " + stringReplace(f, "[]", "") + "[" + c.count + "];");
|
|
87536
87620
|
for (var h = 0; h < c.count; h++) {
|
|
87537
87621
|
this.f.k(d._inner[h]);
|
|
87538
87622
|
this.f.k(e + "[" + h + "] = " + c._inner[h].u + ";");
|
|
87539
87623
|
}
|
|
87540
|
-
this.f.l("this._" + CodeGeneratingComponentRenderer.
|
|
87624
|
+
this.f.l("this._" + CodeGeneratingComponentRenderer.e5(e) + " = " + e + ";");
|
|
87541
87625
|
this.f.f();
|
|
87542
87626
|
this.f.l("}");
|
|
87543
|
-
this.f.l("return this._" + CodeGeneratingComponentRenderer.
|
|
87627
|
+
this.f.l("return this._" + CodeGeneratingComponentRenderer.e5(e) + ";");
|
|
87544
87628
|
this.f.f();
|
|
87545
87629
|
this.f.l("}");
|
|
87546
87630
|
this.f.f();
|
|
87547
87631
|
this.f.l("}");
|
|
87548
|
-
return CodeGeneratingComponentRenderer.
|
|
87632
|
+
return CodeGeneratingComponentRenderer.e6(e);
|
|
87549
87633
|
};
|
|
87550
87634
|
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.i = function (a, b) {
|
|
87551
87635
|
return new BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter(a, b);
|
|
@@ -87613,14 +87697,14 @@
|
|
|
87613
87697
|
this.bt.add_1(this.aq);
|
|
87614
87698
|
this.bb(this.aq);
|
|
87615
87699
|
}
|
|
87616
|
-
this.f.l("private " + this.aq + " " + CodeGeneratingComponentRenderer.
|
|
87700
|
+
this.f.l("private " + this.aq + " " + CodeGeneratingComponentRenderer.e5(this.ap) + ";");
|
|
87617
87701
|
if (!this.p) {
|
|
87618
87702
|
if (this.v) {
|
|
87619
|
-
this.g.l("var " + CodeGeneratingComponentRenderer.
|
|
87703
|
+
this.g.l("var " + CodeGeneratingComponentRenderer.e5(this.ap) + " = this." + CodeGeneratingComponentRenderer.e5(this.ap) + ";");
|
|
87620
87704
|
}
|
|
87621
87705
|
}
|
|
87622
87706
|
else {
|
|
87623
|
-
this.g.l("var " + CodeGeneratingComponentRenderer.
|
|
87707
|
+
this.g.l("var " + CodeGeneratingComponentRenderer.e5(this.ap) + " = this." + CodeGeneratingComponentRenderer.e5(this.ap) + ";");
|
|
87624
87708
|
}
|
|
87625
87709
|
}
|
|
87626
87710
|
};
|
|
@@ -87635,7 +87719,7 @@
|
|
|
87635
87719
|
_super.prototype.bl.call(this, a);
|
|
87636
87720
|
};
|
|
87637
87721
|
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.bi = function (a, b, c, d) {
|
|
87638
|
-
if (c.b != null && d.hasNameBinding(c.b.owningType, CodeGeneratingComponentRenderer.
|
|
87722
|
+
if (c.b != null && d.hasNameBinding(c.b.owningType, CodeGeneratingComponentRenderer.e6(c.b.propertyName)) && this.q(d, c)) {
|
|
87639
87723
|
this.br(c);
|
|
87640
87724
|
if (a > 0) {
|
|
87641
87725
|
this.h.l("");
|
|
@@ -87656,22 +87740,22 @@
|
|
|
87656
87740
|
this.bt.add_1(this.aq);
|
|
87657
87741
|
this.bb(this.aq);
|
|
87658
87742
|
}
|
|
87659
|
-
this.f.l("private " + this.aq + " " + CodeGeneratingComponentRenderer.
|
|
87743
|
+
this.f.l("private " + this.aq + " " + CodeGeneratingComponentRenderer.e5(this.ap) + ";");
|
|
87660
87744
|
if (!this.p) {
|
|
87661
87745
|
if (this.v) {
|
|
87662
|
-
this.g.l("var " + CodeGeneratingComponentRenderer.
|
|
87746
|
+
this.g.l("var " + CodeGeneratingComponentRenderer.e5(this.ap) + " = this." + CodeGeneratingComponentRenderer.e5(this.ap) + ";");
|
|
87663
87747
|
}
|
|
87664
87748
|
}
|
|
87665
87749
|
else {
|
|
87666
|
-
this.g.l("var " + CodeGeneratingComponentRenderer.
|
|
87750
|
+
this.g.l("var " + CodeGeneratingComponentRenderer.e5(this.ap) + " = this." + CodeGeneratingComponentRenderer.e5(this.ap) + ";");
|
|
87667
87751
|
}
|
|
87668
87752
|
}
|
|
87669
|
-
var e = CodeGeneratingComponentRenderer.
|
|
87753
|
+
var e = CodeGeneratingComponentRenderer.e5(this.a3(d, c, true));
|
|
87670
87754
|
var f = e;
|
|
87671
87755
|
if (f != "null" && !stringStartsWith(f, "this.")) {
|
|
87672
87756
|
f = "this." + f;
|
|
87673
87757
|
}
|
|
87674
|
-
this.e.l(CodeGeneratingComponentRenderer.
|
|
87758
|
+
this.e.l(CodeGeneratingComponentRenderer.e5(this.ap) + "." + b + " = " + f + ";");
|
|
87675
87759
|
return;
|
|
87676
87760
|
}
|
|
87677
87761
|
if (a > 0) {
|
|
@@ -87703,7 +87787,7 @@
|
|
|
87703
87787
|
}
|
|
87704
87788
|
if (b == "Name") {
|
|
87705
87789
|
this.h.l("");
|
|
87706
|
-
this.h.j("@ref=\"" + CodeGeneratingComponentRenderer.
|
|
87790
|
+
this.h.j("@ref=\"" + CodeGeneratingComponentRenderer.e5(this.a3(d, c, true)) + "\"");
|
|
87707
87791
|
}
|
|
87708
87792
|
};
|
|
87709
87793
|
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.aw = function (a) {
|
|
@@ -87761,15 +87845,15 @@
|
|
|
87761
87845
|
return "@null";
|
|
87762
87846
|
};
|
|
87763
87847
|
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.av = function (a) {
|
|
87764
|
-
return CodeGeneratingComponentRenderer.
|
|
87848
|
+
return CodeGeneratingComponentRenderer.e5(CodeGeneratingComponentRenderer.e5(a.a.e));
|
|
87765
87849
|
};
|
|
87766
87850
|
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.bw = function (a) {
|
|
87767
87851
|
a = stringReplace(a, "-", "_");
|
|
87768
|
-
return CodeGeneratingComponentRenderer.
|
|
87852
|
+
return CodeGeneratingComponentRenderer.e6(a);
|
|
87769
87853
|
};
|
|
87770
87854
|
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.a1 = function (a) {
|
|
87771
87855
|
this.br(a);
|
|
87772
|
-
return CodeGeneratingComponentRenderer.
|
|
87856
|
+
return CodeGeneratingComponentRenderer.e6(a.a.e);
|
|
87773
87857
|
};
|
|
87774
87858
|
BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.bj = function (a, b, c, d) {
|
|
87775
87859
|
var e_2, _a;
|
|
@@ -87887,14 +87971,14 @@
|
|
|
87887
87971
|
this.bt.add_1(this.aq);
|
|
87888
87972
|
this.bb(this.aq);
|
|
87889
87973
|
}
|
|
87890
|
-
this.f.l("private " + this.aq + " " + CodeGeneratingComponentRenderer.
|
|
87974
|
+
this.f.l("private " + this.aq + " " + CodeGeneratingComponentRenderer.e5(this.ap) + ";");
|
|
87891
87975
|
if (!this.p) {
|
|
87892
87976
|
if (this.v) {
|
|
87893
|
-
this.g.l("var " + CodeGeneratingComponentRenderer.
|
|
87977
|
+
this.g.l("var " + CodeGeneratingComponentRenderer.e5(this.ap) + " = this." + CodeGeneratingComponentRenderer.e5(this.ap) + ";");
|
|
87894
87978
|
}
|
|
87895
87979
|
}
|
|
87896
87980
|
else {
|
|
87897
|
-
this.g.l("var " + CodeGeneratingComponentRenderer.
|
|
87981
|
+
this.g.l("var " + CodeGeneratingComponentRenderer.e5(this.ap) + " = this." + CodeGeneratingComponentRenderer.e5(this.ap) + ";");
|
|
87898
87982
|
}
|
|
87899
87983
|
}
|
|
87900
87984
|
};
|
|
@@ -87904,7 +87988,7 @@
|
|
|
87904
87988
|
_super.prototype.bl.call(this, a);
|
|
87905
87989
|
};
|
|
87906
87990
|
BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.bi = function (a, b, c, d) {
|
|
87907
|
-
if (c.b != null && d.hasNameBinding(c.b.owningType, CodeGeneratingComponentRenderer.
|
|
87991
|
+
if (c.b != null && d.hasNameBinding(c.b.owningType, CodeGeneratingComponentRenderer.e6(c.b.propertyName)) && this.q(d, c)) {
|
|
87908
87992
|
this.br(c);
|
|
87909
87993
|
if (a > 0) {
|
|
87910
87994
|
this.h.l("");
|
|
@@ -87925,22 +88009,22 @@
|
|
|
87925
88009
|
this.bt.add_1(this.aq);
|
|
87926
88010
|
this.bb(this.aq);
|
|
87927
88011
|
}
|
|
87928
|
-
this.f.l("private " + this.aq + " " + CodeGeneratingComponentRenderer.
|
|
88012
|
+
this.f.l("private " + this.aq + " " + CodeGeneratingComponentRenderer.e5(this.ap) + ";");
|
|
87929
88013
|
if (!this.p) {
|
|
87930
88014
|
if (this.v) {
|
|
87931
|
-
this.g.l("var " + CodeGeneratingComponentRenderer.
|
|
88015
|
+
this.g.l("var " + CodeGeneratingComponentRenderer.e5(this.ap) + " = this." + CodeGeneratingComponentRenderer.e5(this.ap) + ";");
|
|
87932
88016
|
}
|
|
87933
88017
|
}
|
|
87934
88018
|
else {
|
|
87935
|
-
this.g.l("var " + CodeGeneratingComponentRenderer.
|
|
88019
|
+
this.g.l("var " + CodeGeneratingComponentRenderer.e5(this.ap) + " = this." + CodeGeneratingComponentRenderer.e5(this.ap) + ";");
|
|
87936
88020
|
}
|
|
87937
88021
|
}
|
|
87938
|
-
var e = CodeGeneratingComponentRenderer.
|
|
88022
|
+
var e = CodeGeneratingComponentRenderer.e5(this.a3(d, c, true));
|
|
87939
88023
|
var f = e;
|
|
87940
88024
|
if (f != "null" && !stringStartsWith(f, "this.")) {
|
|
87941
88025
|
f = "this." + f;
|
|
87942
88026
|
}
|
|
87943
|
-
this.e.l(CodeGeneratingComponentRenderer.
|
|
88027
|
+
this.e.l(CodeGeneratingComponentRenderer.e5(this.ap) + "." + b + " = " + f + ";");
|
|
87944
88028
|
return;
|
|
87945
88029
|
}
|
|
87946
88030
|
if (a > 0) {
|
|
@@ -88038,15 +88122,15 @@
|
|
|
88038
88122
|
return "null";
|
|
88039
88123
|
};
|
|
88040
88124
|
BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.av = function (a) {
|
|
88041
|
-
return CodeGeneratingComponentRenderer.
|
|
88125
|
+
return CodeGeneratingComponentRenderer.e5(CodeGeneratingComponentRenderer.e5(a.a.e));
|
|
88042
88126
|
};
|
|
88043
88127
|
BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.bw = function (a) {
|
|
88044
88128
|
a = stringReplace(a, "-", "_");
|
|
88045
|
-
return CodeGeneratingComponentRenderer.
|
|
88129
|
+
return CodeGeneratingComponentRenderer.e6(a);
|
|
88046
88130
|
};
|
|
88047
88131
|
BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.a1 = function (a) {
|
|
88048
88132
|
this.br(a);
|
|
88049
|
-
return CodeGeneratingComponentRenderer.
|
|
88133
|
+
return CodeGeneratingComponentRenderer.e6(a.a.e);
|
|
88050
88134
|
};
|
|
88051
88135
|
BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.bj = function (a, b, c, d) {
|
|
88052
88136
|
var e_3, _a;
|
|
@@ -88133,20 +88217,20 @@
|
|
|
88133
88217
|
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.ar = function (a, b, c, d) {
|
|
88134
88218
|
d = _super.prototype.ar.call(this, a, b, c, d);
|
|
88135
88219
|
var e = b.r();
|
|
88136
|
-
this.f.l("private " + " _" + CodeGeneratingComponentRenderer.
|
|
88137
|
-
this.f.l("public get " + CodeGeneratingComponentRenderer.
|
|
88220
|
+
this.f.l("private " + " _" + CodeGeneratingComponentRenderer.e5(d) + ": " + e + " | null = null;");
|
|
88221
|
+
this.f.l("public get " + CodeGeneratingComponentRenderer.e5(d) + "(): " + e + " {");
|
|
88138
88222
|
this.f.h();
|
|
88139
|
-
this.f.l("if (this._" + CodeGeneratingComponentRenderer.
|
|
88223
|
+
this.f.l("if (this._" + CodeGeneratingComponentRenderer.e5(d) + " == null)");
|
|
88140
88224
|
this.f.l("{");
|
|
88141
88225
|
this.f.h();
|
|
88142
88226
|
this.f.k(c);
|
|
88143
|
-
this.f.l("this._" + CodeGeneratingComponentRenderer.
|
|
88227
|
+
this.f.l("this._" + CodeGeneratingComponentRenderer.e5(d) + " = " + d + ";");
|
|
88144
88228
|
this.f.f();
|
|
88145
88229
|
this.f.l("}");
|
|
88146
|
-
this.f.l("return this._" + CodeGeneratingComponentRenderer.
|
|
88230
|
+
this.f.l("return this._" + CodeGeneratingComponentRenderer.e5(d) + ";");
|
|
88147
88231
|
this.f.f();
|
|
88148
88232
|
this.f.l("}");
|
|
88149
|
-
return CodeGeneratingComponentRenderer.
|
|
88233
|
+
return CodeGeneratingComponentRenderer.e6(d);
|
|
88150
88234
|
};
|
|
88151
88235
|
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.as = function (a, b, c, d, e) {
|
|
88152
88236
|
e = _super.prototype.as.call(this, a, b, c, d, e);
|
|
@@ -88158,24 +88242,24 @@
|
|
|
88158
88242
|
var g = a.b.specificExternalType;
|
|
88159
88243
|
f = CodeGenerationItemBuilder.o(this.k.platform, g, b, this.al, this.am) + "[]";
|
|
88160
88244
|
}
|
|
88161
|
-
this.f.l("private" + " _" + CodeGeneratingComponentRenderer.
|
|
88162
|
-
this.f.l("public get " + CodeGeneratingComponentRenderer.
|
|
88245
|
+
this.f.l("private" + " _" + CodeGeneratingComponentRenderer.e5(e) + ": " + f + " | null = null;");
|
|
88246
|
+
this.f.l("public get " + CodeGeneratingComponentRenderer.e5(e) + "(): " + f + " {");
|
|
88163
88247
|
this.f.h();
|
|
88164
|
-
this.f.l("if (this._" + CodeGeneratingComponentRenderer.
|
|
88248
|
+
this.f.l("if (this._" + CodeGeneratingComponentRenderer.e5(e) + " == null)");
|
|
88165
88249
|
this.f.l("{");
|
|
88166
88250
|
this.f.h();
|
|
88167
|
-
this.f.k("let " + CodeGeneratingComponentRenderer.
|
|
88251
|
+
this.f.k("let " + CodeGeneratingComponentRenderer.e5(e) + ": " + f + " = [];");
|
|
88168
88252
|
for (var h = 0; h < c.count; h++) {
|
|
88169
88253
|
this.f.k(d._inner[h]);
|
|
88170
88254
|
this.f.k(e + ".push(" + c._inner[h].u + ")");
|
|
88171
88255
|
}
|
|
88172
|
-
this.f.l("this._" + CodeGeneratingComponentRenderer.
|
|
88256
|
+
this.f.l("this._" + CodeGeneratingComponentRenderer.e5(e) + " = " + e + ";");
|
|
88173
88257
|
this.f.f();
|
|
88174
88258
|
this.f.l("}");
|
|
88175
|
-
this.f.l("return this._" + CodeGeneratingComponentRenderer.
|
|
88259
|
+
this.f.l("return this._" + CodeGeneratingComponentRenderer.e5(e) + ";");
|
|
88176
88260
|
this.f.f();
|
|
88177
88261
|
this.f.l("}");
|
|
88178
|
-
return CodeGeneratingComponentRenderer.
|
|
88262
|
+
return CodeGeneratingComponentRenderer.e6(e);
|
|
88179
88263
|
};
|
|
88180
88264
|
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.i = function (a, b) {
|
|
88181
88265
|
return new ReactCodeBehindCodeGeneratingComponentRendererCodeEmitter(a, b);
|
|
@@ -88227,15 +88311,15 @@
|
|
|
88227
88311
|
}
|
|
88228
88312
|
if (!this.bs.contains(this.ap)) {
|
|
88229
88313
|
this.bs.add_1(this.ap);
|
|
88230
|
-
this.f.l("private " + CodeGeneratingComponentRenderer.
|
|
88314
|
+
this.f.l("private " + CodeGeneratingComponentRenderer.e5(this.ap) + ": " + this.aq);
|
|
88231
88315
|
if (this.v) {
|
|
88232
|
-
this.f.l("private " + CodeGeneratingComponentRenderer.
|
|
88316
|
+
this.f.l("private " + CodeGeneratingComponentRenderer.e5(this.ap) + "Ref(r: " + this.aq + ") {");
|
|
88233
88317
|
this.f.h();
|
|
88234
|
-
this.f.l("this." + CodeGeneratingComponentRenderer.
|
|
88318
|
+
this.f.l("this." + CodeGeneratingComponentRenderer.e5(this.ap) + " = r;");
|
|
88235
88319
|
this.f.l("this.setState({});");
|
|
88236
88320
|
this.f.f();
|
|
88237
88321
|
this.f.l("}");
|
|
88238
|
-
this.g.l("this." + CodeGeneratingComponentRenderer.
|
|
88322
|
+
this.g.l("this." + CodeGeneratingComponentRenderer.e5(this.ap) + "Ref = " + "this." + CodeGeneratingComponentRenderer.e5(this.ap) + "Ref.bind(this);");
|
|
88239
88323
|
}
|
|
88240
88324
|
}
|
|
88241
88325
|
};
|
|
@@ -88243,7 +88327,7 @@
|
|
|
88243
88327
|
if (stringEndsWith(a, "Component")) {
|
|
88244
88328
|
a = a.substr(0, a.length - ("Component").length);
|
|
88245
88329
|
}
|
|
88246
|
-
return CodeGeneratingComponentRenderer.
|
|
88330
|
+
return CodeGeneratingComponentRenderer.e6(a);
|
|
88247
88331
|
};
|
|
88248
88332
|
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.bq = function () {
|
|
88249
88333
|
if (!this.v && !this.p) {
|
|
@@ -88256,7 +88340,7 @@
|
|
|
88256
88340
|
this.h.h();
|
|
88257
88341
|
};
|
|
88258
88342
|
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.bu = function () {
|
|
88259
|
-
var a = CodeGeneratingComponentRenderer.
|
|
88343
|
+
var a = CodeGeneratingComponentRenderer.e5(stringReplace(stringReplace(this.aq, this.a7, ""), "Component", ""));
|
|
88260
88344
|
a = this.k.u(a);
|
|
88261
88345
|
return a;
|
|
88262
88346
|
};
|
|
@@ -88264,9 +88348,9 @@
|
|
|
88264
88348
|
if (!stringIsNullOrEmpty(a.a.e)) {
|
|
88265
88349
|
this.br(a);
|
|
88266
88350
|
if (!this.bs.contains(a.a.e)) {
|
|
88267
|
-
this.g.l("this." + CodeGeneratingComponentRenderer.
|
|
88351
|
+
this.g.l("this." + CodeGeneratingComponentRenderer.e5(a.a.e) + " = " + "this." + CodeGeneratingComponentRenderer.e5(a.a.e) + ".bind(this);");
|
|
88268
88352
|
}
|
|
88269
|
-
return "this." + CodeGeneratingComponentRenderer.
|
|
88353
|
+
return "this." + CodeGeneratingComponentRenderer.e5(a.a.e);
|
|
88270
88354
|
}
|
|
88271
88355
|
return this.a0();
|
|
88272
88356
|
};
|
|
@@ -88276,9 +88360,9 @@
|
|
|
88276
88360
|
_super.prototype.bl.call(this, a);
|
|
88277
88361
|
};
|
|
88278
88362
|
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.bi = function (a, b, c, d) {
|
|
88279
|
-
var e = CodeGeneratingComponentRenderer.
|
|
88363
|
+
var e = CodeGeneratingComponentRenderer.e5(b);
|
|
88280
88364
|
var f = this.a3(d, c, true);
|
|
88281
|
-
if (c.b != null && d.hasNameBinding(c.b.owningType, CodeGeneratingComponentRenderer.
|
|
88365
|
+
if (c.b != null && d.hasNameBinding(c.b.owningType, CodeGeneratingComponentRenderer.e6(c.b.propertyName)) && this.q(d, c)) {
|
|
88282
88366
|
this.br(c);
|
|
88283
88367
|
if (a > 0) {
|
|
88284
88368
|
this.h.l("");
|
|
@@ -88295,7 +88379,7 @@
|
|
|
88295
88379
|
var g = (c.b != null && c.b.knownType == 10);
|
|
88296
88380
|
if (this.q(d, c)) {
|
|
88297
88381
|
this.br(c);
|
|
88298
|
-
var h = CodeGeneratingComponentRenderer.
|
|
88382
|
+
var h = CodeGeneratingComponentRenderer.e5(f);
|
|
88299
88383
|
var i = h;
|
|
88300
88384
|
if (i != "null" && !stringStartsWith(i, "this.")) {
|
|
88301
88385
|
i = "this." + i;
|
|
@@ -88324,7 +88408,7 @@
|
|
|
88324
88408
|
if (a > 0) {
|
|
88325
88409
|
this.h.l("");
|
|
88326
88410
|
}
|
|
88327
|
-
this.h.j("ref={this." + CodeGeneratingComponentRenderer.
|
|
88411
|
+
this.h.j("ref={this." + CodeGeneratingComponentRenderer.e5(this.a3(d, c, true)) + "Ref}");
|
|
88328
88412
|
}
|
|
88329
88413
|
}
|
|
88330
88414
|
};
|
|
@@ -88342,10 +88426,10 @@
|
|
|
88342
88426
|
return "null";
|
|
88343
88427
|
};
|
|
88344
88428
|
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.av = function (a) {
|
|
88345
|
-
return "this." + CodeGeneratingComponentRenderer.
|
|
88429
|
+
return "this." + CodeGeneratingComponentRenderer.e5(a.a.e);
|
|
88346
88430
|
};
|
|
88347
88431
|
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.a1 = function (a) {
|
|
88348
|
-
return "this." + CodeGeneratingComponentRenderer.
|
|
88432
|
+
return "this." + CodeGeneratingComponentRenderer.e5(a.a.e);
|
|
88349
88433
|
};
|
|
88350
88434
|
ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.bj = function (a, b, c, d) {
|
|
88351
88435
|
var e_4, _a;
|
|
@@ -88426,7 +88510,7 @@
|
|
|
88426
88510
|
};
|
|
88427
88511
|
WebCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.aw = function (a) {
|
|
88428
88512
|
if (this.bs(a)) {
|
|
88429
|
-
return "\"" + CodeGeneratingComponentRenderer.
|
|
88513
|
+
return "\"" + CodeGeneratingComponentRenderer.e7(a.c.toString()) + "\"";
|
|
88430
88514
|
}
|
|
88431
88515
|
else {
|
|
88432
88516
|
if (!this.bu.contains(a.b.specificType)) {
|
|
@@ -88497,14 +88581,14 @@
|
|
|
88497
88581
|
this.bu.add_1(this.aq);
|
|
88498
88582
|
this.bb(this.aq);
|
|
88499
88583
|
}
|
|
88500
|
-
this.f.l("private " + CodeGeneratingComponentRenderer.
|
|
88584
|
+
this.f.l("private " + CodeGeneratingComponentRenderer.e5(this.ap) + ": " + this.aq);
|
|
88501
88585
|
if (!this.p) {
|
|
88502
88586
|
if (this.v) {
|
|
88503
|
-
this.g.l("var " + CodeGeneratingComponentRenderer.
|
|
88587
|
+
this.g.l("var " + CodeGeneratingComponentRenderer.e5(this.ap) + " = this." + CodeGeneratingComponentRenderer.e5(this.ap) + " = document.querySelector('" + CodeGeneratingComponentRenderer.e8(stringReplace(this.aq, "Component", "")) + "') as " + this.aq + ";");
|
|
88504
88588
|
}
|
|
88505
88589
|
}
|
|
88506
88590
|
else {
|
|
88507
|
-
this.g.l("var " + CodeGeneratingComponentRenderer.
|
|
88591
|
+
this.g.l("var " + CodeGeneratingComponentRenderer.e5(this.ap) + " = this." + CodeGeneratingComponentRenderer.e5(this.ap) + " = document.getElementById('" + this.ap + "') as " + this.aq + ";");
|
|
88508
88592
|
}
|
|
88509
88593
|
}
|
|
88510
88594
|
};
|
|
@@ -88512,7 +88596,7 @@
|
|
|
88512
88596
|
if (stringEndsWith(a, "Component")) {
|
|
88513
88597
|
a = a.substr(0, a.length - ("Component").length);
|
|
88514
88598
|
}
|
|
88515
|
-
return CodeGeneratingComponentRenderer.
|
|
88599
|
+
return CodeGeneratingComponentRenderer.e8(a);
|
|
88516
88600
|
};
|
|
88517
88601
|
WebCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.bq = function () {
|
|
88518
88602
|
this.h.l("");
|
|
@@ -88526,7 +88610,7 @@
|
|
|
88526
88610
|
_super.prototype.bl.call(this, a);
|
|
88527
88611
|
};
|
|
88528
88612
|
WebCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.bi = function (a, b, c, d) {
|
|
88529
|
-
var e = CodeGeneratingComponentRenderer.
|
|
88613
|
+
var e = CodeGeneratingComponentRenderer.e5(b);
|
|
88530
88614
|
if (e == "name" && c.b == null) {
|
|
88531
88615
|
return;
|
|
88532
88616
|
}
|
|
@@ -88538,30 +88622,30 @@
|
|
|
88538
88622
|
this.bu.add_1(this.aq);
|
|
88539
88623
|
this.bb(this.aq);
|
|
88540
88624
|
}
|
|
88541
|
-
this.f.l("private " + CodeGeneratingComponentRenderer.
|
|
88625
|
+
this.f.l("private " + CodeGeneratingComponentRenderer.e5(this.ap) + ": " + this.aq);
|
|
88542
88626
|
if (!this.p) {
|
|
88543
88627
|
if (this.v) {
|
|
88544
|
-
this.g.l("var " + CodeGeneratingComponentRenderer.
|
|
88628
|
+
this.g.l("var " + CodeGeneratingComponentRenderer.e5(this.ap) + " = this." + CodeGeneratingComponentRenderer.e5(this.ap) + " = document.querySelector('" + CodeGeneratingComponentRenderer.e8(stringReplace(this.aq, "Component", "")) + "') as " + this.aq + ";");
|
|
88545
88629
|
}
|
|
88546
88630
|
}
|
|
88547
88631
|
else {
|
|
88548
|
-
this.g.l("var " + CodeGeneratingComponentRenderer.
|
|
88632
|
+
this.g.l("var " + CodeGeneratingComponentRenderer.e5(this.ap) + " = this." + CodeGeneratingComponentRenderer.e5(this.ap) + " = document.getElementById('" + this.ap + "') as " + this.aq + ";");
|
|
88549
88633
|
}
|
|
88550
88634
|
}
|
|
88551
|
-
var f = CodeGeneratingComponentRenderer.
|
|
88635
|
+
var f = CodeGeneratingComponentRenderer.e5(this.a3(d, c, true));
|
|
88552
88636
|
var g = f;
|
|
88553
88637
|
if (g != "null" && !stringStartsWith(g, "this.")) {
|
|
88554
88638
|
g = "this." + g;
|
|
88555
88639
|
}
|
|
88556
88640
|
if (this.aq == "any" && stringContains(e, "-")) {
|
|
88557
|
-
this.e.l(CodeGeneratingComponentRenderer.
|
|
88641
|
+
this.e.l(CodeGeneratingComponentRenderer.e5(this.ap) + "['" + e + "'] = " + g + ";");
|
|
88558
88642
|
}
|
|
88559
88643
|
else {
|
|
88560
88644
|
if (c.b != null && c.b.isCustomEvent) {
|
|
88561
|
-
this.e.l(CodeGeneratingComponentRenderer.
|
|
88645
|
+
this.e.l(CodeGeneratingComponentRenderer.e5(this.ap) + ".addEventListener(\"" + e + "\", " + g + ");");
|
|
88562
88646
|
}
|
|
88563
88647
|
else {
|
|
88564
|
-
this.e.l(CodeGeneratingComponentRenderer.
|
|
88648
|
+
this.e.l(CodeGeneratingComponentRenderer.e5(this.ap) + "." + e + " = " + g + ";");
|
|
88565
88649
|
}
|
|
88566
88650
|
}
|
|
88567
88651
|
return;
|
|
@@ -88570,10 +88654,10 @@
|
|
|
88570
88654
|
this.h.l("");
|
|
88571
88655
|
}
|
|
88572
88656
|
if (this.aq == "any" && stringContains(e, "-")) {
|
|
88573
|
-
this.h.j(this.ap + "." + CodeGeneratingComponentRenderer.
|
|
88657
|
+
this.h.j(this.ap + "." + CodeGeneratingComponentRenderer.e5(this.ap) + "['" + e + "']");
|
|
88574
88658
|
}
|
|
88575
88659
|
else {
|
|
88576
|
-
this.h.j(this.ap + "." + CodeGeneratingComponentRenderer.
|
|
88660
|
+
this.h.j(this.ap + "." + CodeGeneratingComponentRenderer.e5(e));
|
|
88577
88661
|
}
|
|
88578
88662
|
this.h.j(" = ");
|
|
88579
88663
|
this.h.j(this.a3(d, c, true));
|
|
@@ -88593,18 +88677,18 @@
|
|
|
88593
88677
|
return "null";
|
|
88594
88678
|
};
|
|
88595
88679
|
WebCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.av = function (a) {
|
|
88596
|
-
return CodeGeneratingComponentRenderer.
|
|
88680
|
+
return CodeGeneratingComponentRenderer.e5(a.a.e);
|
|
88597
88681
|
};
|
|
88598
88682
|
WebCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.a1 = function (a) {
|
|
88599
|
-
return CodeGeneratingComponentRenderer.
|
|
88683
|
+
return CodeGeneratingComponentRenderer.e5(a.a.e);
|
|
88600
88684
|
};
|
|
88601
88685
|
WebCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.ax = function (a) {
|
|
88602
88686
|
if (!stringIsNullOrEmpty(a.a.e)) {
|
|
88603
88687
|
this.br(a);
|
|
88604
88688
|
if (!this.bt.contains(a.a.e)) {
|
|
88605
|
-
this.g.l("this." + CodeGeneratingComponentRenderer.
|
|
88689
|
+
this.g.l("this." + CodeGeneratingComponentRenderer.e5(a.a.e) + " = " + "this." + CodeGeneratingComponentRenderer.e5(a.a.e) + ".bind(this);");
|
|
88606
88690
|
}
|
|
88607
|
-
return "this." + CodeGeneratingComponentRenderer.
|
|
88691
|
+
return "this." + CodeGeneratingComponentRenderer.e5(a.a.e);
|
|
88608
88692
|
}
|
|
88609
88693
|
return this.a0();
|
|
88610
88694
|
};
|
|
@@ -88792,7 +88876,7 @@
|
|
|
88792
88876
|
};
|
|
88793
88877
|
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.aw = function (a) {
|
|
88794
88878
|
if (this.bs(a)) {
|
|
88795
|
-
return CodeGeneratingComponentRenderer.
|
|
88879
|
+
return CodeGeneratingComponentRenderer.e7(a.c.toString());
|
|
88796
88880
|
}
|
|
88797
88881
|
else {
|
|
88798
88882
|
return _super.prototype.aw.call(this, a);
|
|
@@ -88804,20 +88888,20 @@
|
|
|
88804
88888
|
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.ar = function (a, b, c, d) {
|
|
88805
88889
|
d = _super.prototype.ar.call(this, a, b, c, d);
|
|
88806
88890
|
var e = b.r();
|
|
88807
|
-
this.f.l("private" + " _" + CodeGeneratingComponentRenderer.
|
|
88808
|
-
this.f.l("public get " + CodeGeneratingComponentRenderer.
|
|
88891
|
+
this.f.l("private" + " _" + CodeGeneratingComponentRenderer.e5(d) + ": " + e + " | null = null;");
|
|
88892
|
+
this.f.l("public get " + CodeGeneratingComponentRenderer.e5(d) + "(): " + e + " {");
|
|
88809
88893
|
this.f.h();
|
|
88810
|
-
this.f.l("if (this._" + CodeGeneratingComponentRenderer.
|
|
88894
|
+
this.f.l("if (this._" + CodeGeneratingComponentRenderer.e5(d) + " == null)");
|
|
88811
88895
|
this.f.l("{");
|
|
88812
88896
|
this.f.h();
|
|
88813
88897
|
this.f.k(c);
|
|
88814
|
-
this.f.l("this._" + CodeGeneratingComponentRenderer.
|
|
88898
|
+
this.f.l("this._" + CodeGeneratingComponentRenderer.e5(d) + " = " + d + ";");
|
|
88815
88899
|
this.f.f();
|
|
88816
88900
|
this.f.l("}");
|
|
88817
|
-
this.f.l("return this._" + CodeGeneratingComponentRenderer.
|
|
88901
|
+
this.f.l("return this._" + CodeGeneratingComponentRenderer.e5(d) + ";");
|
|
88818
88902
|
this.f.f();
|
|
88819
88903
|
this.f.l("}");
|
|
88820
|
-
return CodeGeneratingComponentRenderer.
|
|
88904
|
+
return CodeGeneratingComponentRenderer.e6(d);
|
|
88821
88905
|
};
|
|
88822
88906
|
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.as = function (a, b, c, d, e) {
|
|
88823
88907
|
e = _super.prototype.as.call(this, a, b, c, d, e);
|
|
@@ -88829,24 +88913,24 @@
|
|
|
88829
88913
|
var g = a.b.specificExternalType;
|
|
88830
88914
|
f = CodeGenerationItemBuilder.o(this.k.platform, g, b, this.al, this.am) + "[]";
|
|
88831
88915
|
}
|
|
88832
|
-
this.f.l("private" + " _" + CodeGeneratingComponentRenderer.
|
|
88833
|
-
this.f.l("public get " + CodeGeneratingComponentRenderer.
|
|
88916
|
+
this.f.l("private" + " _" + CodeGeneratingComponentRenderer.e5(e) + ": " + f + " | null = null;");
|
|
88917
|
+
this.f.l("public get " + CodeGeneratingComponentRenderer.e5(e) + "(): " + f + " {");
|
|
88834
88918
|
this.f.h();
|
|
88835
|
-
this.f.l("if (this._" + CodeGeneratingComponentRenderer.
|
|
88919
|
+
this.f.l("if (this._" + CodeGeneratingComponentRenderer.e5(e) + " == null)");
|
|
88836
88920
|
this.f.l("{");
|
|
88837
88921
|
this.f.h();
|
|
88838
|
-
this.f.k("let " + CodeGeneratingComponentRenderer.
|
|
88922
|
+
this.f.k("let " + CodeGeneratingComponentRenderer.e5(e) + ": " + f + " = [];");
|
|
88839
88923
|
for (var h = 0; h < c.count; h++) {
|
|
88840
88924
|
this.f.k(d._inner[h]);
|
|
88841
88925
|
this.f.k(e + ".push(" + c._inner[h].u + ")");
|
|
88842
88926
|
}
|
|
88843
|
-
this.f.l("this._" + CodeGeneratingComponentRenderer.
|
|
88927
|
+
this.f.l("this._" + CodeGeneratingComponentRenderer.e5(e) + " = " + e + ";");
|
|
88844
88928
|
this.f.f();
|
|
88845
88929
|
this.f.l("}");
|
|
88846
|
-
this.f.l("return this._" + CodeGeneratingComponentRenderer.
|
|
88930
|
+
this.f.l("return this._" + CodeGeneratingComponentRenderer.e5(e) + ";");
|
|
88847
88931
|
this.f.f();
|
|
88848
88932
|
this.f.l("}");
|
|
88849
|
-
return CodeGeneratingComponentRenderer.
|
|
88933
|
+
return CodeGeneratingComponentRenderer.e6(e);
|
|
88850
88934
|
};
|
|
88851
88935
|
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.at = function (a, b) {
|
|
88852
88936
|
if (b.c == null) {
|
|
@@ -88874,14 +88958,14 @@
|
|
|
88874
88958
|
this.bu.add_1(this.aq);
|
|
88875
88959
|
this.bb(this.aq);
|
|
88876
88960
|
}
|
|
88877
|
-
this.f.l("private " + CodeGeneratingComponentRenderer.
|
|
88961
|
+
this.f.l("private " + CodeGeneratingComponentRenderer.e5(this.ap) + ": " + this.aq);
|
|
88878
88962
|
if (!this.p) {
|
|
88879
88963
|
if (this.v) {
|
|
88880
|
-
this.g.l("var " + CodeGeneratingComponentRenderer.
|
|
88964
|
+
this.g.l("var " + CodeGeneratingComponentRenderer.e5(this.ap) + " = this." + CodeGeneratingComponentRenderer.e5(this.ap) + " = document.querySelector('" + CodeGeneratingComponentRenderer.e8(stringReplace(this.aq, "Component", "")) + "') as " + this.aq + ";");
|
|
88881
88965
|
}
|
|
88882
88966
|
}
|
|
88883
88967
|
else {
|
|
88884
|
-
this.g.l("var " + CodeGeneratingComponentRenderer.
|
|
88968
|
+
this.g.l("var " + CodeGeneratingComponentRenderer.e5(this.ap) + " = this." + CodeGeneratingComponentRenderer.e5(this.ap) + " = document.getElementById('" + this.ap + "') as " + this.aq + ";");
|
|
88885
88969
|
}
|
|
88886
88970
|
}
|
|
88887
88971
|
};
|
|
@@ -88889,7 +88973,7 @@
|
|
|
88889
88973
|
if (stringEndsWith(a, "Component")) {
|
|
88890
88974
|
a = a.substr(0, a.length - ("Component").length);
|
|
88891
88975
|
}
|
|
88892
|
-
return CodeGeneratingComponentRenderer.
|
|
88976
|
+
return CodeGeneratingComponentRenderer.e8(a);
|
|
88893
88977
|
};
|
|
88894
88978
|
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.bq = function () {
|
|
88895
88979
|
this.h.l(">");
|
|
@@ -88908,7 +88992,7 @@
|
|
|
88908
88992
|
WebImportsHalper.b(this.k, this.a6, this.a5, this.a7, a, b, c);
|
|
88909
88993
|
};
|
|
88910
88994
|
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.bi = function (a, b, c, d) {
|
|
88911
|
-
var e = CodeGeneratingComponentRenderer.
|
|
88995
|
+
var e = CodeGeneratingComponentRenderer.e5(b);
|
|
88912
88996
|
if (this.q(d, c)) {
|
|
88913
88997
|
this.br(c);
|
|
88914
88998
|
if (!this.bt.contains(this.ap)) {
|
|
@@ -88917,33 +89001,33 @@
|
|
|
88917
89001
|
this.bu.add_1(this.aq);
|
|
88918
89002
|
this.bb(this.aq);
|
|
88919
89003
|
}
|
|
88920
|
-
this.f.l("private " + CodeGeneratingComponentRenderer.
|
|
89004
|
+
this.f.l("private " + CodeGeneratingComponentRenderer.e5(this.ap) + ": " + this.aq);
|
|
88921
89005
|
if (!this.p) {
|
|
88922
89006
|
if (this.v) {
|
|
88923
|
-
this.g.l("var " + CodeGeneratingComponentRenderer.
|
|
89007
|
+
this.g.l("var " + CodeGeneratingComponentRenderer.e5(this.ap) + " = this." + CodeGeneratingComponentRenderer.e5(this.ap) + " = document.querySelector('" + CodeGeneratingComponentRenderer.e8(stringReplace(this.aq, "Component", "")) + "') as " + this.aq + ";");
|
|
88924
89008
|
}
|
|
88925
89009
|
}
|
|
88926
89010
|
else {
|
|
88927
|
-
this.g.l("var " + CodeGeneratingComponentRenderer.
|
|
89011
|
+
this.g.l("var " + CodeGeneratingComponentRenderer.e5(this.ap) + " = this." + CodeGeneratingComponentRenderer.e5(this.ap) + " = document.getElementById('" + this.ap + "') as " + this.aq + ";");
|
|
88928
89012
|
}
|
|
88929
89013
|
}
|
|
88930
|
-
var f = CodeGeneratingComponentRenderer.
|
|
89014
|
+
var f = CodeGeneratingComponentRenderer.e5(this.a3(d, c, true));
|
|
88931
89015
|
var g = f;
|
|
88932
89016
|
if (g != "null" && !stringStartsWith(g, "this.")) {
|
|
88933
89017
|
g = "this." + g;
|
|
88934
89018
|
}
|
|
88935
89019
|
if (c.b.isCustomEvent) {
|
|
88936
|
-
this.e.l(CodeGeneratingComponentRenderer.
|
|
89020
|
+
this.e.l(CodeGeneratingComponentRenderer.e5(this.ap) + ".addEventListener(\"" + e + "\", " + g + ");");
|
|
88937
89021
|
}
|
|
88938
89022
|
else {
|
|
88939
|
-
this.e.l(CodeGeneratingComponentRenderer.
|
|
89023
|
+
this.e.l(CodeGeneratingComponentRenderer.e5(this.ap) + "." + e + " = " + g + ";");
|
|
88940
89024
|
}
|
|
88941
89025
|
return;
|
|
88942
89026
|
}
|
|
88943
89027
|
if (a > 0) {
|
|
88944
89028
|
this.h.l("");
|
|
88945
89029
|
}
|
|
88946
|
-
this.h.j(CodeGeneratingComponentRenderer.
|
|
89030
|
+
this.h.j(CodeGeneratingComponentRenderer.e8(e));
|
|
88947
89031
|
this.h.j("=");
|
|
88948
89032
|
this.h.j("\"");
|
|
88949
89033
|
this.h.j(this.a3(d, c, true));
|
|
@@ -88967,18 +89051,18 @@
|
|
|
88967
89051
|
return "null";
|
|
88968
89052
|
};
|
|
88969
89053
|
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.av = function (a) {
|
|
88970
|
-
return CodeGeneratingComponentRenderer.
|
|
89054
|
+
return CodeGeneratingComponentRenderer.e5(a.a.e);
|
|
88971
89055
|
};
|
|
88972
89056
|
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.a1 = function (a) {
|
|
88973
|
-
return CodeGeneratingComponentRenderer.
|
|
89057
|
+
return CodeGeneratingComponentRenderer.e5(a.a.e);
|
|
88974
89058
|
};
|
|
88975
89059
|
WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.ax = function (a) {
|
|
88976
89060
|
if (!stringIsNullOrEmpty(a.a.e)) {
|
|
88977
89061
|
this.br(a);
|
|
88978
89062
|
if (!this.bt.contains(a.a.e)) {
|
|
88979
|
-
this.g.l("this." + CodeGeneratingComponentRenderer.
|
|
89063
|
+
this.g.l("this." + CodeGeneratingComponentRenderer.e5(a.a.e) + " = " + "this." + CodeGeneratingComponentRenderer.e5(a.a.e) + ".bind(this);");
|
|
88980
89064
|
}
|
|
88981
|
-
return "this." + CodeGeneratingComponentRenderer.
|
|
89065
|
+
return "this." + CodeGeneratingComponentRenderer.e5(a.a.e);
|
|
88982
89066
|
}
|
|
88983
89067
|
return this.a0();
|
|
88984
89068
|
};
|
|
@@ -89058,11 +89142,11 @@
|
|
|
89058
89142
|
}
|
|
89059
89143
|
TSCodeGeneratingComponentRendererHandlerEmitter.prototype.t = function (a, b) {
|
|
89060
89144
|
_super.prototype.t.call(this, a, b);
|
|
89061
|
-
this.g.l("this." + CodeGeneratingComponentRenderer.
|
|
89145
|
+
this.g.l("this." + CodeGeneratingComponentRenderer.e5(a) + "();");
|
|
89062
89146
|
};
|
|
89063
89147
|
TSCodeGeneratingComponentRendererHandlerEmitter.prototype.u = function (a, b) {
|
|
89064
89148
|
_super.prototype.u.call(this, a, b);
|
|
89065
|
-
this.h.l("this." + CodeGeneratingComponentRenderer.
|
|
89149
|
+
this.h.l("this." + CodeGeneratingComponentRenderer.e5(a) + "();");
|
|
89066
89150
|
};
|
|
89067
89151
|
Object.defineProperty(TSCodeGeneratingComponentRendererHandlerEmitter.prototype, "aa", {
|
|
89068
89152
|
get: function () {
|
|
@@ -89193,7 +89277,7 @@
|
|
|
89193
89277
|
if (b === void 0) {
|
|
89194
89278
|
b = false;
|
|
89195
89279
|
}
|
|
89196
|
-
a = CodeGeneratingComponentRenderer.
|
|
89280
|
+
a = CodeGeneratingComponentRenderer.e6(a);
|
|
89197
89281
|
a = stringReplace(a, "-", "_");
|
|
89198
89282
|
if (b) {
|
|
89199
89283
|
a += "Item";
|
|
@@ -89205,11 +89289,11 @@
|
|
|
89205
89289
|
if (this.p.g) {
|
|
89206
89290
|
return a;
|
|
89207
89291
|
}
|
|
89208
|
-
return CodeGeneratingComponentRenderer.
|
|
89292
|
+
return CodeGeneratingComponentRenderer.e5(a);
|
|
89209
89293
|
};
|
|
89210
89294
|
TSCodeGeneratingComponentRendererDataEmitter.prototype.aq = function (a) {
|
|
89211
89295
|
a = stringReplace(a, "-", "_");
|
|
89212
|
-
return "_" + CodeGeneratingComponentRenderer.
|
|
89296
|
+
return "_" + CodeGeneratingComponentRenderer.e5(a);
|
|
89213
89297
|
};
|
|
89214
89298
|
TSCodeGeneratingComponentRendererDataEmitter.prototype.get_t = function () {
|
|
89215
89299
|
return ".ts";
|
|
@@ -89287,7 +89371,7 @@
|
|
|
89287
89371
|
if ((b == 3 || b == 2) || (c != null && c.isAsync)) {
|
|
89288
89372
|
this.g.l("private _isFetching: boolean = false;");
|
|
89289
89373
|
}
|
|
89290
|
-
this.g.l("public get " + CodeGeneratingComponentRenderer.
|
|
89374
|
+
this.g.l("public get " + CodeGeneratingComponentRenderer.e5(a) + "(): " + f + " {");
|
|
89291
89375
|
this.g.h();
|
|
89292
89376
|
if (c != null && c.isAsync) {
|
|
89293
89377
|
this.g.l("if (this." + this.aq(a) + " == null && !this._isFetching)");
|
|
@@ -89329,7 +89413,7 @@
|
|
|
89329
89413
|
TSCodeGeneratingComponentRendererDataEmitter.prototype.ai = function (a, b) {
|
|
89330
89414
|
_super.prototype.ai.call(this, a, b);
|
|
89331
89415
|
this.g.l("private " + this.aq(a) + ": " + this.an(b.e) + " = " + this.ao(b) + ";");
|
|
89332
|
-
this.g.l("public get " + CodeGeneratingComponentRenderer.
|
|
89416
|
+
this.g.l("public get " + CodeGeneratingComponentRenderer.e5(a) + "(): " + this.an(b.e) + " {");
|
|
89333
89417
|
this.g.h();
|
|
89334
89418
|
this.g.l("return this." + this.aq(a) + ";");
|
|
89335
89419
|
this.g.f();
|
|
@@ -89339,7 +89423,7 @@
|
|
|
89339
89423
|
TSCodeGeneratingComponentRendererDataEmitter.prototype.aj = function (a, b, c, d) {
|
|
89340
89424
|
_super.prototype.aj.call(this, a, b, c, d);
|
|
89341
89425
|
this.g.l("private " + this.aq(a) + ": " + this.x(a, false) + "Item = null;");
|
|
89342
|
-
this.g.l("public get " + CodeGeneratingComponentRenderer.
|
|
89426
|
+
this.g.l("public get " + CodeGeneratingComponentRenderer.e5(a) + "(): " + this.x(a, false) + "Item {");
|
|
89343
89427
|
this.g.h();
|
|
89344
89428
|
this.g.l("if (this." + this.aq(a) + " == null)");
|
|
89345
89429
|
this.g.l("{");
|
|
@@ -89397,7 +89481,7 @@
|
|
|
89397
89481
|
};
|
|
89398
89482
|
TSCodeGeneratingComponentRendererDataEmitter.prototype.ap = function (a, b, c) {
|
|
89399
89483
|
if (c.d) {
|
|
89400
|
-
return a.d + "_" + CodeGeneratingComponentRenderer.
|
|
89484
|
+
return a.d + "_" + CodeGeneratingComponentRenderer.e6(this.w(b)) + "Item[]";
|
|
89401
89485
|
}
|
|
89402
89486
|
else if (c.f) {
|
|
89403
89487
|
return a.d + "_" + TypeDescriptionContext.ab(this.w(b));
|
|
@@ -89469,7 +89553,7 @@
|
|
|
89469
89553
|
}
|
|
89470
89554
|
e.j(this.w(k) + ": ");
|
|
89471
89555
|
if (l.d) {
|
|
89472
|
-
var m = a + "_" + CodeGeneratingComponentRenderer.
|
|
89556
|
+
var m = a + "_" + CodeGeneratingComponentRenderer.e6(this.w(k)) + "Item";
|
|
89473
89557
|
if (h.g(k)) {
|
|
89474
89558
|
this.ar(m, l.a, l.b, h.item(k), e);
|
|
89475
89559
|
}
|
|
@@ -89478,7 +89562,7 @@
|
|
|
89478
89562
|
}
|
|
89479
89563
|
}
|
|
89480
89564
|
else if (l.f) {
|
|
89481
|
-
var n = a + "_" + CodeGeneratingComponentRenderer.
|
|
89565
|
+
var n = a + "_" + CodeGeneratingComponentRenderer.e6(this.w(k));
|
|
89482
89566
|
this.ar(n, l.a, l.b, h.item(k), e);
|
|
89483
89567
|
}
|
|
89484
89568
|
else {
|
|
@@ -89540,20 +89624,20 @@
|
|
|
89540
89624
|
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.ar = function (a, b, c, d) {
|
|
89541
89625
|
d = _super.prototype.ar.call(this, a, b, c, d);
|
|
89542
89626
|
var e = b.r();
|
|
89543
|
-
this.f.l("private " + " _" + CodeGeneratingComponentRenderer.
|
|
89544
|
-
this.f.l("public get " + CodeGeneratingComponentRenderer.
|
|
89627
|
+
this.f.l("private " + " _" + CodeGeneratingComponentRenderer.e5(d) + ": " + e + " | null = null;");
|
|
89628
|
+
this.f.l("public get " + CodeGeneratingComponentRenderer.e5(d) + "(): " + e + " {");
|
|
89545
89629
|
this.f.h();
|
|
89546
|
-
this.f.l("if (this._" + CodeGeneratingComponentRenderer.
|
|
89630
|
+
this.f.l("if (this._" + CodeGeneratingComponentRenderer.e5(d) + " == null)");
|
|
89547
89631
|
this.f.l("{");
|
|
89548
89632
|
this.f.h();
|
|
89549
89633
|
this.f.k(c);
|
|
89550
|
-
this.f.l("this._" + CodeGeneratingComponentRenderer.
|
|
89634
|
+
this.f.l("this._" + CodeGeneratingComponentRenderer.e5(d) + " = " + d + ";");
|
|
89551
89635
|
this.f.f();
|
|
89552
89636
|
this.f.l("}");
|
|
89553
|
-
this.f.l("return this._" + CodeGeneratingComponentRenderer.
|
|
89637
|
+
this.f.l("return this._" + CodeGeneratingComponentRenderer.e5(d) + ";");
|
|
89554
89638
|
this.f.f();
|
|
89555
89639
|
this.f.l("}");
|
|
89556
|
-
return CodeGeneratingComponentRenderer.
|
|
89640
|
+
return CodeGeneratingComponentRenderer.e5(d);
|
|
89557
89641
|
};
|
|
89558
89642
|
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.as = function (a, b, c, d, e) {
|
|
89559
89643
|
e = _super.prototype.as.call(this, a, b, c, d, e);
|
|
@@ -89565,24 +89649,24 @@
|
|
|
89565
89649
|
var g = a.b.specificExternalType;
|
|
89566
89650
|
f = CodeGenerationItemBuilder.o(this.k.platform, g, b, this.al, this.am) + "[]";
|
|
89567
89651
|
}
|
|
89568
|
-
this.f.l("private" + " _" + CodeGeneratingComponentRenderer.
|
|
89569
|
-
this.f.l("public get " + CodeGeneratingComponentRenderer.
|
|
89652
|
+
this.f.l("private" + " _" + CodeGeneratingComponentRenderer.e5(e) + ": " + f + " | null = null;");
|
|
89653
|
+
this.f.l("public get " + CodeGeneratingComponentRenderer.e5(e) + "(): " + f + " {");
|
|
89570
89654
|
this.f.h();
|
|
89571
|
-
this.f.l("if (this._" + CodeGeneratingComponentRenderer.
|
|
89655
|
+
this.f.l("if (this._" + CodeGeneratingComponentRenderer.e5(e) + " == null)");
|
|
89572
89656
|
this.f.l("{");
|
|
89573
89657
|
this.f.h();
|
|
89574
|
-
this.f.k("let " + CodeGeneratingComponentRenderer.
|
|
89658
|
+
this.f.k("let " + CodeGeneratingComponentRenderer.e5(e) + ": " + f + " = [];");
|
|
89575
89659
|
for (var h = 0; h < c.count; h++) {
|
|
89576
89660
|
this.f.k(d._inner[h]);
|
|
89577
89661
|
this.f.k(e + ".push(" + c._inner[h].u + ")");
|
|
89578
89662
|
}
|
|
89579
|
-
this.f.l("this._" + CodeGeneratingComponentRenderer.
|
|
89663
|
+
this.f.l("this._" + CodeGeneratingComponentRenderer.e5(e) + " = " + e + ";");
|
|
89580
89664
|
this.f.f();
|
|
89581
89665
|
this.f.l("}");
|
|
89582
|
-
this.f.l("return this._" + CodeGeneratingComponentRenderer.
|
|
89666
|
+
this.f.l("return this._" + CodeGeneratingComponentRenderer.e5(e) + ";");
|
|
89583
89667
|
this.f.f();
|
|
89584
89668
|
this.f.l("}");
|
|
89585
|
-
return CodeGeneratingComponentRenderer.
|
|
89669
|
+
return CodeGeneratingComponentRenderer.e6(e);
|
|
89586
89670
|
};
|
|
89587
89671
|
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.i = function (a, b) {
|
|
89588
89672
|
return new AngularCodeBehindCodeGeneratingComponentRendererCodeEmitter(a, b);
|
|
@@ -89616,8 +89700,8 @@
|
|
|
89616
89700
|
this.bt.add_1(this.aq);
|
|
89617
89701
|
this.bb(this.aq);
|
|
89618
89702
|
}
|
|
89619
|
-
this.f.l("@ViewChild(\"" + CodeGeneratingComponentRenderer.
|
|
89620
|
-
this.f.l("private " + CodeGeneratingComponentRenderer.
|
|
89703
|
+
this.f.l("@ViewChild(\"" + CodeGeneratingComponentRenderer.e5(this.ap) + "\", { static: true } )");
|
|
89704
|
+
this.f.l("private " + CodeGeneratingComponentRenderer.e5(this.ap) + ": " + this.aq);
|
|
89621
89705
|
}
|
|
89622
89706
|
};
|
|
89623
89707
|
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.bg = function (a, b, c) {
|
|
@@ -89628,7 +89712,7 @@
|
|
|
89628
89712
|
if (stringEndsWith(a, "Component")) {
|
|
89629
89713
|
a = a.substr(0, a.length - ("Component").length);
|
|
89630
89714
|
}
|
|
89631
|
-
return CodeGeneratingComponentRenderer.
|
|
89715
|
+
return CodeGeneratingComponentRenderer.e8(a);
|
|
89632
89716
|
};
|
|
89633
89717
|
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.bq = function () {
|
|
89634
89718
|
this.h.l(">");
|
|
@@ -89640,7 +89724,7 @@
|
|
|
89640
89724
|
_super.prototype.bl.call(this, a);
|
|
89641
89725
|
};
|
|
89642
89726
|
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.bi = function (a, b, c, d) {
|
|
89643
|
-
var e = CodeGeneratingComponentRenderer.
|
|
89727
|
+
var e = CodeGeneratingComponentRenderer.e5(b);
|
|
89644
89728
|
if (this.q(d, c)) {
|
|
89645
89729
|
this.br(c);
|
|
89646
89730
|
if (this.t(c)) {
|
|
@@ -89660,13 +89744,13 @@
|
|
|
89660
89744
|
this.h.j("\"");
|
|
89661
89745
|
if (e == "name") {
|
|
89662
89746
|
this.h.l("");
|
|
89663
|
-
this.h.j("#" + CodeGeneratingComponentRenderer.
|
|
89747
|
+
this.h.j("#" + CodeGeneratingComponentRenderer.e5(this.a3(d, c, true)));
|
|
89664
89748
|
}
|
|
89665
89749
|
};
|
|
89666
89750
|
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.ax = function (a) {
|
|
89667
89751
|
if (!stringIsNullOrEmpty(a.a.e)) {
|
|
89668
89752
|
this.br(a);
|
|
89669
|
-
return "this." + CodeGeneratingComponentRenderer.
|
|
89753
|
+
return "this." + CodeGeneratingComponentRenderer.e5(a.a.e) + "($event)";
|
|
89670
89754
|
}
|
|
89671
89755
|
return this.a0();
|
|
89672
89756
|
};
|
|
@@ -89684,10 +89768,10 @@
|
|
|
89684
89768
|
return "null";
|
|
89685
89769
|
};
|
|
89686
89770
|
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.av = function (a) {
|
|
89687
|
-
return CodeGeneratingComponentRenderer.
|
|
89771
|
+
return CodeGeneratingComponentRenderer.e5(a.a.e);
|
|
89688
89772
|
};
|
|
89689
89773
|
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.a1 = function (a) {
|
|
89690
|
-
return CodeGeneratingComponentRenderer.
|
|
89774
|
+
return CodeGeneratingComponentRenderer.e5(a.a.e);
|
|
89691
89775
|
};
|
|
89692
89776
|
AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.bj = function (a, b, c, d) {
|
|
89693
89777
|
var e_8, _a;
|
|
@@ -89785,7 +89869,7 @@
|
|
|
89785
89869
|
if (b === void 0) {
|
|
89786
89870
|
b = false;
|
|
89787
89871
|
}
|
|
89788
|
-
a = CodeGeneratingComponentRenderer.
|
|
89872
|
+
a = CodeGeneratingComponentRenderer.e6(a);
|
|
89789
89873
|
a = stringReplace(a, "-", "_");
|
|
89790
89874
|
if (b) {
|
|
89791
89875
|
a += "Item";
|
|
@@ -89794,11 +89878,11 @@
|
|
|
89794
89878
|
};
|
|
89795
89879
|
DotNetCodeGeneratingComponentRendererDataEmitter.prototype.w = function (a) {
|
|
89796
89880
|
a = stringReplace(a, "-", "_");
|
|
89797
|
-
return CodeGeneratingComponentRenderer.
|
|
89881
|
+
return CodeGeneratingComponentRenderer.e6(a);
|
|
89798
89882
|
};
|
|
89799
89883
|
DotNetCodeGeneratingComponentRendererDataEmitter.prototype.aq = function (a) {
|
|
89800
89884
|
a = stringReplace(a, "-", "_");
|
|
89801
|
-
return "_" + CodeGeneratingComponentRenderer.
|
|
89885
|
+
return "_" + CodeGeneratingComponentRenderer.e5(a);
|
|
89802
89886
|
};
|
|
89803
89887
|
DotNetCodeGeneratingComponentRendererDataEmitter.prototype.al = function (a, b, c, d, e, f) {
|
|
89804
89888
|
var e_9, _a;
|
|
@@ -90184,7 +90268,7 @@
|
|
|
90184
90268
|
};
|
|
90185
90269
|
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.bs = function (a) {
|
|
90186
90270
|
a = stringReplace(a, "-", "_");
|
|
90187
|
-
return CodeGeneratingComponentRenderer.
|
|
90271
|
+
return CodeGeneratingComponentRenderer.e6(a);
|
|
90188
90272
|
};
|
|
90189
90273
|
WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.a1 = function (a) {
|
|
90190
90274
|
this.br(a);
|
|
@@ -90288,17 +90372,17 @@
|
|
|
90288
90372
|
tslib.__extends(CodeGeneratingComponentRenderer, _super);
|
|
90289
90373
|
function CodeGeneratingComponentRenderer(a, b) {
|
|
90290
90374
|
var _this = _super.call(this) || this;
|
|
90291
|
-
_this.et = null;
|
|
90292
|
-
_this.eu = 0;
|
|
90293
90375
|
_this.ex = null;
|
|
90294
|
-
_this.ey =
|
|
90376
|
+
_this.ey = 0;
|
|
90377
|
+
_this.e1 = null;
|
|
90378
|
+
_this.e2 = null;
|
|
90379
|
+
_this.e3 = null;
|
|
90380
|
+
_this.e0 = null;
|
|
90295
90381
|
_this.ez = null;
|
|
90296
|
-
_this.
|
|
90297
|
-
_this.
|
|
90298
|
-
_this.et = b;
|
|
90299
|
-
_this.eu = a;
|
|
90382
|
+
_this.ex = b;
|
|
90383
|
+
_this.ey = a;
|
|
90300
90384
|
_this.preserveKeyOrder = true;
|
|
90301
|
-
ComponentRenderer.platform = CodeGeneratingComponentRenderer.
|
|
90385
|
+
ComponentRenderer.platform = CodeGeneratingComponentRenderer.e4(a);
|
|
90302
90386
|
_this.adapter = new CodeGenerationRendererAdapter(a, _this.adapter);
|
|
90303
90387
|
if (b.reusedContext != null) {
|
|
90304
90388
|
_this.context = b.reusedContext;
|
|
@@ -90306,7 +90390,7 @@
|
|
|
90306
90390
|
else {
|
|
90307
90391
|
_this.context = new TypeDescriptionContext(_this.adapter, ComponentRenderer.platform);
|
|
90308
90392
|
}
|
|
90309
|
-
_this.
|
|
90393
|
+
_this.k = new CodeGenerationTransformer(a);
|
|
90310
90394
|
return _this;
|
|
90311
90395
|
}
|
|
90312
90396
|
CodeGeneratingComponentRenderer.prototype.loadCodeJson = function (a) {
|
|
@@ -90318,13 +90402,13 @@
|
|
|
90318
90402
|
})());
|
|
90319
90403
|
});
|
|
90320
90404
|
};
|
|
90321
|
-
CodeGeneratingComponentRenderer.prototype.
|
|
90322
|
-
this.
|
|
90405
|
+
CodeGeneratingComponentRenderer.prototype.ds = function (a) {
|
|
90406
|
+
this.ex.c = a;
|
|
90323
90407
|
};
|
|
90324
|
-
CodeGeneratingComponentRenderer.prototype.
|
|
90408
|
+
CodeGeneratingComponentRenderer.prototype.p = function () {
|
|
90325
90409
|
return false;
|
|
90326
90410
|
};
|
|
90327
|
-
CodeGeneratingComponentRenderer.
|
|
90411
|
+
CodeGeneratingComponentRenderer.e5 = function (a) {
|
|
90328
90412
|
if (a == null) {
|
|
90329
90413
|
return null;
|
|
90330
90414
|
}
|
|
@@ -90333,7 +90417,7 @@
|
|
|
90333
90417
|
}
|
|
90334
90418
|
return a.substr(0, 1).toLowerCase() + a.substr(1);
|
|
90335
90419
|
};
|
|
90336
|
-
CodeGeneratingComponentRenderer.
|
|
90420
|
+
CodeGeneratingComponentRenderer.e7 = function (a) {
|
|
90337
90421
|
if (a == null) {
|
|
90338
90422
|
return null;
|
|
90339
90423
|
}
|
|
@@ -90345,7 +90429,7 @@
|
|
|
90345
90429
|
}
|
|
90346
90430
|
return a.substr(0, 1).toLowerCase() + a.substr(1);
|
|
90347
90431
|
};
|
|
90348
|
-
CodeGeneratingComponentRenderer.
|
|
90432
|
+
CodeGeneratingComponentRenderer.e6 = function (a) {
|
|
90349
90433
|
if (a == null) {
|
|
90350
90434
|
return null;
|
|
90351
90435
|
}
|
|
@@ -90354,7 +90438,7 @@
|
|
|
90354
90438
|
}
|
|
90355
90439
|
return a.substr(0, 1).toUpperCase() + a.substr(1);
|
|
90356
90440
|
};
|
|
90357
|
-
CodeGeneratingComponentRenderer.
|
|
90441
|
+
CodeGeneratingComponentRenderer.e8 = function (a) {
|
|
90358
90442
|
if (a == null) {
|
|
90359
90443
|
return null;
|
|
90360
90444
|
}
|
|
@@ -90389,22 +90473,22 @@
|
|
|
90389
90473
|
}
|
|
90390
90474
|
return j.toString();
|
|
90391
90475
|
};
|
|
90392
|
-
CodeGeneratingComponentRenderer.prototype.
|
|
90476
|
+
CodeGeneratingComponentRenderer.prototype.at = function () {
|
|
90393
90477
|
return true;
|
|
90394
90478
|
};
|
|
90395
|
-
CodeGeneratingComponentRenderer.prototype.
|
|
90479
|
+
CodeGeneratingComponentRenderer.prototype.bz = function (a) {
|
|
90396
90480
|
var b = a.g;
|
|
90397
90481
|
return b == null ? { $type: Point_$type, x: NaN, y: NaN } : { $type: Point_$type, x: b.x, y: b.y };
|
|
90398
90482
|
};
|
|
90399
|
-
CodeGeneratingComponentRenderer.prototype.
|
|
90483
|
+
CodeGeneratingComponentRenderer.prototype.b0 = function (a) {
|
|
90400
90484
|
var b = a.g;
|
|
90401
90485
|
return b == null ? Rect.empty : new Rect(0, b.left, b.top, b.width, b.height);
|
|
90402
90486
|
};
|
|
90403
|
-
CodeGeneratingComponentRenderer.prototype.
|
|
90487
|
+
CodeGeneratingComponentRenderer.prototype.b1 = function (a) {
|
|
90404
90488
|
var b = a.g;
|
|
90405
90489
|
return b == null ? new Size(1, NaN, NaN) : new Size(1, b.width, b.height);
|
|
90406
90490
|
};
|
|
90407
|
-
CodeGeneratingComponentRenderer.prototype.
|
|
90491
|
+
CodeGeneratingComponentRenderer.prototype.b3 = function (a) {
|
|
90408
90492
|
var b = a.g;
|
|
90409
90493
|
if (typeof b === 'number') {
|
|
90410
90494
|
return typeGetValue(b);
|
|
@@ -90417,45 +90501,45 @@
|
|
|
90417
90501
|
}
|
|
90418
90502
|
return NaN;
|
|
90419
90503
|
};
|
|
90420
|
-
CodeGeneratingComponentRenderer.prototype.
|
|
90504
|
+
CodeGeneratingComponentRenderer.prototype.cu = function (a) {
|
|
90421
90505
|
if (a == null) {
|
|
90422
90506
|
return null;
|
|
90423
90507
|
}
|
|
90424
90508
|
return Brush.create(a);
|
|
90425
90509
|
};
|
|
90426
|
-
CodeGeneratingComponentRenderer.prototype.
|
|
90510
|
+
CodeGeneratingComponentRenderer.prototype.cv = function (a) {
|
|
90427
90511
|
if (a == null) {
|
|
90428
90512
|
return null;
|
|
90429
90513
|
}
|
|
90430
90514
|
return Brush.create(a).color;
|
|
90431
90515
|
};
|
|
90432
|
-
CodeGeneratingComponentRenderer.prototype.af = function (a) {
|
|
90433
|
-
_super.prototype.af.call(this, a);
|
|
90434
|
-
this.ex = a;
|
|
90435
|
-
return true;
|
|
90436
|
-
};
|
|
90437
|
-
CodeGeneratingComponentRenderer.prototype.am = function (a) {
|
|
90438
|
-
_super.prototype.am.call(this, a);
|
|
90439
|
-
this.ez = a;
|
|
90440
|
-
return true;
|
|
90441
|
-
};
|
|
90442
90516
|
CodeGeneratingComponentRenderer.prototype.ag = function (a) {
|
|
90443
90517
|
_super.prototype.ag.call(this, a);
|
|
90444
|
-
this.
|
|
90518
|
+
this.e1 = a;
|
|
90519
|
+
return true;
|
|
90520
|
+
};
|
|
90521
|
+
CodeGeneratingComponentRenderer.prototype.an = function (a) {
|
|
90522
|
+
_super.prototype.an.call(this, a);
|
|
90523
|
+
this.e3 = a;
|
|
90445
90524
|
return true;
|
|
90446
90525
|
};
|
|
90447
90526
|
CodeGeneratingComponentRenderer.prototype.ah = function (a) {
|
|
90448
90527
|
_super.prototype.ah.call(this, a);
|
|
90449
|
-
this.
|
|
90528
|
+
this.ez = a;
|
|
90450
90529
|
return true;
|
|
90451
90530
|
};
|
|
90452
90531
|
CodeGeneratingComponentRenderer.prototype.ai = function (a) {
|
|
90453
90532
|
_super.prototype.ai.call(this, a);
|
|
90454
|
-
this.
|
|
90533
|
+
this.e0 = a;
|
|
90534
|
+
return true;
|
|
90535
|
+
};
|
|
90536
|
+
CodeGeneratingComponentRenderer.prototype.aj = function (a) {
|
|
90537
|
+
_super.prototype.aj.call(this, a);
|
|
90538
|
+
this.e2 = a;
|
|
90455
90539
|
return true;
|
|
90456
90540
|
};
|
|
90457
|
-
CodeGeneratingComponentRenderer.prototype.
|
|
90458
|
-
switch (this.
|
|
90541
|
+
CodeGeneratingComponentRenderer.prototype.er = function (a, b, c) {
|
|
90542
|
+
switch (this.ey) {
|
|
90459
90543
|
case 1: if (b.forceCodeBehind) {
|
|
90460
90544
|
return new AngularCodeBehindCodeGeneratingComponentRendererCodeEmitter(b, c);
|
|
90461
90545
|
}
|
|
@@ -90490,8 +90574,8 @@
|
|
|
90490
90574
|
}
|
|
90491
90575
|
return null;
|
|
90492
90576
|
};
|
|
90493
|
-
CodeGeneratingComponentRenderer.prototype.
|
|
90494
|
-
switch (this.
|
|
90577
|
+
CodeGeneratingComponentRenderer.prototype.es = function (a, b) {
|
|
90578
|
+
switch (this.ey) {
|
|
90495
90579
|
case 1: return new TSCodeGeneratingComponentRendererDataEmitter(a, b);
|
|
90496
90580
|
case 2: return new TSCodeGeneratingComponentRendererDataEmitter(a, b);
|
|
90497
90581
|
case 3: return new TSCodeGeneratingComponentRendererDataEmitter(a, b);
|
|
@@ -90501,43 +90585,43 @@
|
|
|
90501
90585
|
}
|
|
90502
90586
|
return null;
|
|
90503
90587
|
};
|
|
90504
|
-
CodeGeneratingComponentRenderer.prototype.
|
|
90505
|
-
switch (this.
|
|
90506
|
-
case 1: return new TSCodeGeneratingComponentRendererHandlerEmitter(a, b, this.
|
|
90507
|
-
case 2: return new TSCodeGeneratingComponentRendererHandlerEmitter(a, b, this.
|
|
90508
|
-
case 3: return new TSCodeGeneratingComponentRendererHandlerEmitter(a, b, this.
|
|
90588
|
+
CodeGeneratingComponentRenderer.prototype.et = function (a, b) {
|
|
90589
|
+
switch (this.ey) {
|
|
90590
|
+
case 1: return new TSCodeGeneratingComponentRendererHandlerEmitter(a, b, this.ey);
|
|
90591
|
+
case 2: return new TSCodeGeneratingComponentRendererHandlerEmitter(a, b, this.ey);
|
|
90592
|
+
case 3: return new TSCodeGeneratingComponentRendererHandlerEmitter(a, b, this.ey);
|
|
90509
90593
|
case 4: break;
|
|
90510
90594
|
case 0:
|
|
90511
90595
|
case 5: return new DotNetCodeGeneratingComponentRendererHandlerEmitter(a, b);
|
|
90512
90596
|
}
|
|
90513
90597
|
return null;
|
|
90514
90598
|
};
|
|
90515
|
-
CodeGeneratingComponentRenderer.prototype.
|
|
90516
|
-
switch (this.
|
|
90517
|
-
case 1: return new TSCodeGeneratingComponentRendererTemplateEmitter(a, b, this.
|
|
90518
|
-
case 2: return new TSCodeGeneratingComponentRendererTemplateEmitter(a, b, this.
|
|
90519
|
-
case 3: return new TSCodeGeneratingComponentRendererTemplateEmitter(a, b, this.
|
|
90599
|
+
CodeGeneratingComponentRenderer.prototype.ev = function (a, b) {
|
|
90600
|
+
switch (this.ey) {
|
|
90601
|
+
case 1: return new TSCodeGeneratingComponentRendererTemplateEmitter(a, b, this.ey);
|
|
90602
|
+
case 2: return new TSCodeGeneratingComponentRendererTemplateEmitter(a, b, this.ey);
|
|
90603
|
+
case 3: return new TSCodeGeneratingComponentRendererTemplateEmitter(a, b, this.ey);
|
|
90520
90604
|
case 4: break;
|
|
90521
90605
|
case 0:
|
|
90522
90606
|
case 5: return new DotNetCodeGeneratingComponentRendererTemplateEmitter(a, b);
|
|
90523
90607
|
}
|
|
90524
90608
|
return null;
|
|
90525
90609
|
};
|
|
90526
|
-
CodeGeneratingComponentRenderer.prototype.
|
|
90527
|
-
switch (this.
|
|
90528
|
-
case 1: return new TSCodeGeneratingComponentRendererModuleEmitter(this.
|
|
90529
|
-
case 2: return new TSCodeGeneratingComponentRendererModuleEmitter(this.
|
|
90530
|
-
case 3: return new TSCodeGeneratingComponentRendererModuleEmitter(this.
|
|
90610
|
+
CodeGeneratingComponentRenderer.prototype.eu = function (a, b) {
|
|
90611
|
+
switch (this.ey) {
|
|
90612
|
+
case 1: return new TSCodeGeneratingComponentRendererModuleEmitter(this.ey, a, b);
|
|
90613
|
+
case 2: return new TSCodeGeneratingComponentRendererModuleEmitter(this.ey, a, b);
|
|
90614
|
+
case 3: return new TSCodeGeneratingComponentRendererModuleEmitter(this.ey, a, b);
|
|
90531
90615
|
case 4: break;
|
|
90532
|
-
case 0: return new DotNetCodeGeneratingComponentRendererModuleEmitter(this.
|
|
90533
|
-
case 5: return new BlazorCodeGeneratingComponentRendererModuleEmitter(this.
|
|
90616
|
+
case 0: return new DotNetCodeGeneratingComponentRendererModuleEmitter(this.ey, a, b);
|
|
90617
|
+
case 5: return new BlazorCodeGeneratingComponentRendererModuleEmitter(this.ey, a, b);
|
|
90534
90618
|
}
|
|
90535
90619
|
return null;
|
|
90536
90620
|
};
|
|
90537
90621
|
CodeGeneratingComponentRenderer.prototype.markRefUsed = function (a) {
|
|
90538
90622
|
var e_11, _a;
|
|
90539
90623
|
try {
|
|
90540
|
-
for (var _b = tslib.__values(fromEnum(this.
|
|
90624
|
+
for (var _b = tslib.__values(fromEnum(this.bc.keys)), _c = _b.next(); !_c.done; _c = _b.next()) {
|
|
90541
90625
|
var b = _c.value;
|
|
90542
90626
|
var c = b;
|
|
90543
90627
|
c.markRefUsed(a);
|
|
@@ -90560,10 +90644,10 @@
|
|
|
90560
90644
|
CodeGeneratingComponentRenderer.prototype.emitCode = function (a) {
|
|
90561
90645
|
var e_12, _a, e_13, _b, e_14, _c;
|
|
90562
90646
|
var b = new CodeGeneratingRendererResult();
|
|
90563
|
-
b.platform = this.
|
|
90564
|
-
b.generationOptions = this.
|
|
90647
|
+
b.platform = this.ey;
|
|
90648
|
+
b.generationOptions = this.ex;
|
|
90565
90649
|
try {
|
|
90566
|
-
for (var _d = tslib.__values(fromEnum(this.
|
|
90650
|
+
for (var _d = tslib.__values(fromEnum(this.bc.keys)), _e = _d.next(); !_e.done; _e = _d.next()) {
|
|
90567
90651
|
var c = _e.value;
|
|
90568
90652
|
var d = c;
|
|
90569
90653
|
var e = d.id;
|
|
@@ -90607,10 +90691,10 @@
|
|
|
90607
90691
|
}
|
|
90608
90692
|
}
|
|
90609
90693
|
try {
|
|
90610
|
-
for (var _h = tslib.__values(fromEnum(this.
|
|
90694
|
+
for (var _h = tslib.__values(fromEnum(this.bc.keys)), _j = _h.next(); !_j.done; _j = _h.next()) {
|
|
90611
90695
|
var g = _j.value;
|
|
90612
90696
|
var h = g;
|
|
90613
|
-
h.d(this.context, b, this, this.
|
|
90697
|
+
h.d(this.context, b, this, this.ex);
|
|
90614
90698
|
}
|
|
90615
90699
|
}
|
|
90616
90700
|
catch (e_14_1) {
|
|
@@ -90626,13 +90710,13 @@
|
|
|
90626
90710
|
throw e_14.error;
|
|
90627
90711
|
}
|
|
90628
90712
|
}
|
|
90629
|
-
if (this.
|
|
90630
|
-
var i = this.
|
|
90631
|
-
i.n(this.
|
|
90713
|
+
if (this.e1 != null) {
|
|
90714
|
+
var i = this.eu(this.ex, b);
|
|
90715
|
+
i.n(this.e1, this.context);
|
|
90632
90716
|
}
|
|
90633
|
-
if (this.
|
|
90634
|
-
if (typeCast(JsonDictionaryObject.$, this.
|
|
90635
|
-
var j = this.
|
|
90717
|
+
if (this.e3 != null) {
|
|
90718
|
+
if (typeCast(JsonDictionaryObject.$, this.e3) !== null) {
|
|
90719
|
+
var j = this.e3;
|
|
90636
90720
|
var m = j.e();
|
|
90637
90721
|
for (var l = 0; l < m.length; l++) {
|
|
90638
90722
|
var k = m[l];
|
|
@@ -90641,15 +90725,15 @@
|
|
|
90641
90725
|
}
|
|
90642
90726
|
}
|
|
90643
90727
|
{
|
|
90644
|
-
var n = this.
|
|
90645
|
-
n.ac(this.
|
|
90728
|
+
var n = this.es(this.ex, b);
|
|
90729
|
+
n.ac(this.e2);
|
|
90646
90730
|
}
|
|
90647
|
-
var o = this.
|
|
90731
|
+
var o = this.et(this.ex, b);
|
|
90648
90732
|
var p = new List$1(String_$type, 0);
|
|
90649
90733
|
var q = new List$1(String_$type, 0);
|
|
90650
|
-
if (this.
|
|
90651
|
-
if (typeCast(JsonDictionaryArray.$, this.
|
|
90652
|
-
var r = this.
|
|
90734
|
+
if (this.ez != null) {
|
|
90735
|
+
if (typeCast(JsonDictionaryArray.$, this.ez) !== null) {
|
|
90736
|
+
var r = this.ez;
|
|
90653
90737
|
if (r.items != null) {
|
|
90654
90738
|
var u = r.items;
|
|
90655
90739
|
for (var t = 0; t < u.length; t++) {
|
|
@@ -90658,14 +90742,14 @@
|
|
|
90658
90742
|
}
|
|
90659
90743
|
}
|
|
90660
90744
|
}
|
|
90661
|
-
else if (typeCast(JsonDictionaryValue.$, this.
|
|
90662
|
-
var v = this.
|
|
90745
|
+
else if (typeCast(JsonDictionaryValue.$, this.ez) !== null) {
|
|
90746
|
+
var v = this.ez;
|
|
90663
90747
|
p.add(v.value.toString());
|
|
90664
90748
|
}
|
|
90665
90749
|
}
|
|
90666
|
-
if (this.
|
|
90667
|
-
if (typeCast(JsonDictionaryArray.$, this.
|
|
90668
|
-
var w = this.
|
|
90750
|
+
if (this.e0 != null) {
|
|
90751
|
+
if (typeCast(JsonDictionaryArray.$, this.e0) !== null) {
|
|
90752
|
+
var w = this.e0;
|
|
90669
90753
|
if (w.items != null) {
|
|
90670
90754
|
var z = w.items;
|
|
90671
90755
|
for (var y = 0; y < z.length; y++) {
|
|
@@ -90674,52 +90758,52 @@
|
|
|
90674
90758
|
}
|
|
90675
90759
|
}
|
|
90676
90760
|
}
|
|
90677
|
-
else if (typeCast(JsonDictionaryValue.$, this.
|
|
90678
|
-
var aa = this.
|
|
90761
|
+
else if (typeCast(JsonDictionaryValue.$, this.e0) !== null) {
|
|
90762
|
+
var aa = this.e0;
|
|
90679
90763
|
q.add(aa.value.toString());
|
|
90680
90764
|
}
|
|
90681
90765
|
}
|
|
90682
90766
|
o.s(p.toArray(), q.toArray());
|
|
90683
|
-
var ab = this.
|
|
90767
|
+
var ab = this.ev(this.ex, b);
|
|
90684
90768
|
ab.r();
|
|
90685
|
-
this.
|
|
90769
|
+
this.fd(b, a);
|
|
90686
90770
|
return b;
|
|
90687
90771
|
};
|
|
90688
|
-
CodeGeneratingComponentRenderer.prototype.
|
|
90772
|
+
CodeGeneratingComponentRenderer.prototype.fd = function (a, b) {
|
|
90689
90773
|
b.execute(a);
|
|
90690
90774
|
};
|
|
90691
|
-
CodeGeneratingComponentRenderer.prototype.
|
|
90692
|
-
return runOn(this, this.
|
|
90775
|
+
CodeGeneratingComponentRenderer.prototype.bl = function () {
|
|
90776
|
+
return runOn(this, this.fa);
|
|
90693
90777
|
};
|
|
90694
|
-
CodeGeneratingComponentRenderer.prototype.
|
|
90778
|
+
CodeGeneratingComponentRenderer.prototype.e9 = function (a) {
|
|
90695
90779
|
a = stringReplace(a, "-", "_");
|
|
90696
|
-
if (!this.
|
|
90697
|
-
switch (this.
|
|
90780
|
+
if (!this.ex.g) {
|
|
90781
|
+
switch (this.ey) {
|
|
90698
90782
|
case 1:
|
|
90699
90783
|
case 2:
|
|
90700
|
-
case 3: return CodeGeneratingComponentRenderer.
|
|
90784
|
+
case 3: return CodeGeneratingComponentRenderer.e5(a);
|
|
90701
90785
|
case 4:
|
|
90702
90786
|
case 0:
|
|
90703
|
-
case 5: return CodeGeneratingComponentRenderer.
|
|
90787
|
+
case 5: return CodeGeneratingComponentRenderer.e6(a);
|
|
90704
90788
|
}
|
|
90705
90789
|
}
|
|
90706
90790
|
return a;
|
|
90707
90791
|
};
|
|
90708
|
-
CodeGeneratingComponentRenderer.prototype.
|
|
90792
|
+
CodeGeneratingComponentRenderer.prototype.fa = function (a) {
|
|
90709
90793
|
var b = a;
|
|
90710
90794
|
if (stringStartsWith(a, "{")) {
|
|
90711
90795
|
if (!stringStartsWith(a, "{[")) {
|
|
90712
90796
|
a = a.substr(1, a.length - 2);
|
|
90713
|
-
a = "{" + this.
|
|
90797
|
+
a = "{" + this.e9(a) + "}";
|
|
90714
90798
|
b = a;
|
|
90715
90799
|
}
|
|
90716
90800
|
}
|
|
90717
90801
|
else {
|
|
90718
|
-
b = this.
|
|
90802
|
+
b = this.e9(a);
|
|
90719
90803
|
}
|
|
90720
90804
|
return b;
|
|
90721
90805
|
};
|
|
90722
|
-
CodeGeneratingComponentRenderer.
|
|
90806
|
+
CodeGeneratingComponentRenderer.e4 = function (a) {
|
|
90723
90807
|
switch (a) {
|
|
90724
90808
|
case 1: return 3;
|
|
90725
90809
|
case 2: return 2;
|
|
@@ -90764,11 +90848,11 @@
|
|
|
90764
90848
|
var h = new CodeGeneratingImportManager();
|
|
90765
90849
|
var _loop_2 = function (i) {
|
|
90766
90850
|
if (!c.hasRef(i)) {
|
|
90767
|
-
c.
|
|
90851
|
+
c.f(i);
|
|
90768
90852
|
}
|
|
90769
90853
|
b.af(((function () {
|
|
90770
90854
|
var $ret = new CodeGenerationItemBuilderPropertyInfo();
|
|
90771
|
-
$ret.a = c.
|
|
90855
|
+
$ret.a = c.g(i);
|
|
90772
90856
|
return $ret;
|
|
90773
90857
|
})()));
|
|
90774
90858
|
};
|
|
@@ -90794,7 +90878,7 @@
|
|
|
90794
90878
|
try {
|
|
90795
90879
|
for (var _e = tslib.__values(fromEnum(this.b)), _f = _e.next(); !_f.done; _f = _e.next()) {
|
|
90796
90880
|
var j = _f.value;
|
|
90797
|
-
var k = c.
|
|
90881
|
+
var k = c.er(j, d, b);
|
|
90798
90882
|
j.v(k, true);
|
|
90799
90883
|
var l = k.toString();
|
|
90800
90884
|
b.addContainerResult(this.id, l);
|
|
@@ -210314,49 +210398,51 @@
|
|
|
210314
210398
|
tslib.__extends(FunnelChartDescription, _super);
|
|
210315
210399
|
function FunnelChartDescription() {
|
|
210316
210400
|
var _this = _super.call(this) || this;
|
|
210317
|
-
_this.
|
|
210318
|
-
_this.
|
|
210319
|
-
_this.
|
|
210320
|
-
_this.v = 0;
|
|
210401
|
+
_this.as = null;
|
|
210402
|
+
_this.bh = null;
|
|
210403
|
+
_this.aw = null;
|
|
210321
210404
|
_this.x = 0;
|
|
210322
|
-
_this.
|
|
210323
|
-
_this.
|
|
210405
|
+
_this.z = 0;
|
|
210406
|
+
_this.ar = null;
|
|
210407
|
+
_this.ax = null;
|
|
210324
210408
|
_this.h = null;
|
|
210325
210409
|
_this.i = null;
|
|
210326
|
-
_this.
|
|
210327
|
-
_this.
|
|
210328
|
-
_this.
|
|
210329
|
-
_this.ax = null;
|
|
210330
|
-
_this.a3 = null;
|
|
210410
|
+
_this.y = 0;
|
|
210411
|
+
_this.ay = null;
|
|
210412
|
+
_this.a2 = null;
|
|
210331
210413
|
_this.az = null;
|
|
210414
|
+
_this.a5 = null;
|
|
210415
|
+
_this.a1 = null;
|
|
210416
|
+
_this.av = null;
|
|
210332
210417
|
_this.at = null;
|
|
210333
|
-
_this.
|
|
210334
|
-
_this.
|
|
210335
|
-
_this.
|
|
210336
|
-
_this.m = false;
|
|
210337
|
-
_this.n = false;
|
|
210338
|
-
_this.l = false;
|
|
210418
|
+
_this.au = null;
|
|
210419
|
+
_this.ap = 0;
|
|
210420
|
+
_this.o = false;
|
|
210339
210421
|
_this.p = false;
|
|
210422
|
+
_this.n = false;
|
|
210423
|
+
_this.r = false;
|
|
210424
|
+
_this.a7 = null;
|
|
210425
|
+
_this.a8 = null;
|
|
210426
|
+
_this.ad = 0;
|
|
210427
|
+
_this.ac = 0;
|
|
210428
|
+
_this.bf = null;
|
|
210429
|
+
_this.bg = null;
|
|
210430
|
+
_this.af = 0;
|
|
210431
|
+
_this.ae = 0;
|
|
210432
|
+
_this.j = null;
|
|
210433
|
+
_this.a0 = null;
|
|
210434
|
+
_this.q = false;
|
|
210435
|
+
_this.be = null;
|
|
210340
210436
|
_this.a4 = null;
|
|
210341
|
-
_this.a5 = null;
|
|
210342
|
-
_this.ab = 0;
|
|
210343
210437
|
_this.aa = 0;
|
|
210344
|
-
_this.
|
|
210438
|
+
_this.ab = 0;
|
|
210439
|
+
_this.a3 = null;
|
|
210345
210440
|
_this.bd = null;
|
|
210346
|
-
_this.ad = 0;
|
|
210347
|
-
_this.ac = 0;
|
|
210348
|
-
_this.ay = null;
|
|
210349
|
-
_this.o = false;
|
|
210350
|
-
_this.bb = null;
|
|
210351
|
-
_this.a2 = null;
|
|
210352
|
-
_this.y = 0;
|
|
210353
|
-
_this.z = 0;
|
|
210354
|
-
_this.a1 = null;
|
|
210355
|
-
_this.ba = null;
|
|
210356
210441
|
_this.a6 = null;
|
|
210357
|
-
_this.a7 = null;
|
|
210358
210442
|
_this.a9 = null;
|
|
210359
|
-
_this.
|
|
210443
|
+
_this.ba = null;
|
|
210444
|
+
_this.bc = null;
|
|
210445
|
+
_this.bb = null;
|
|
210360
210446
|
return _this;
|
|
210361
210447
|
}
|
|
210362
210448
|
FunnelChartDescription.prototype.get_type = function () {
|
|
@@ -210371,10 +210457,10 @@
|
|
|
210371
210457
|
});
|
|
210372
210458
|
Object.defineProperty(FunnelChartDescription.prototype, "dataSourceRef", {
|
|
210373
210459
|
get: function () {
|
|
210374
|
-
return this.
|
|
210460
|
+
return this.as;
|
|
210375
210461
|
},
|
|
210376
210462
|
set: function (a) {
|
|
210377
|
-
this.
|
|
210463
|
+
this.as = a;
|
|
210378
210464
|
this.g("DataSourceRef");
|
|
210379
210465
|
},
|
|
210380
210466
|
enumerable: false,
|
|
@@ -210382,10 +210468,10 @@
|
|
|
210382
210468
|
});
|
|
210383
210469
|
Object.defineProperty(FunnelChartDescription.prototype, "valueMemberPath", {
|
|
210384
210470
|
get: function () {
|
|
210385
|
-
return this.
|
|
210471
|
+
return this.bh;
|
|
210386
210472
|
},
|
|
210387
210473
|
set: function (a) {
|
|
210388
|
-
this.
|
|
210474
|
+
this.bh = a;
|
|
210389
210475
|
this.g("ValueMemberPath");
|
|
210390
210476
|
},
|
|
210391
210477
|
enumerable: false,
|
|
@@ -210393,10 +210479,10 @@
|
|
|
210393
210479
|
});
|
|
210394
210480
|
Object.defineProperty(FunnelChartDescription.prototype, "highlightedValueMemberPath", {
|
|
210395
210481
|
get: function () {
|
|
210396
|
-
return this.
|
|
210482
|
+
return this.aw;
|
|
210397
210483
|
},
|
|
210398
210484
|
set: function (a) {
|
|
210399
|
-
this.
|
|
210485
|
+
this.aw = a;
|
|
210400
210486
|
this.g("HighlightedValueMemberPath");
|
|
210401
210487
|
},
|
|
210402
210488
|
enumerable: false,
|
|
@@ -210404,10 +210490,10 @@
|
|
|
210404
210490
|
});
|
|
210405
210491
|
Object.defineProperty(FunnelChartDescription.prototype, "actualHighlightValueOpacity", {
|
|
210406
210492
|
get: function () {
|
|
210407
|
-
return this.
|
|
210493
|
+
return this.x;
|
|
210408
210494
|
},
|
|
210409
210495
|
set: function (a) {
|
|
210410
|
-
this.
|
|
210496
|
+
this.x = a;
|
|
210411
210497
|
this.g("ActualHighlightValueOpacity");
|
|
210412
210498
|
},
|
|
210413
210499
|
enumerable: false,
|
|
@@ -210415,10 +210501,10 @@
|
|
|
210415
210501
|
});
|
|
210416
210502
|
Object.defineProperty(FunnelChartDescription.prototype, "highlightValueOpacity", {
|
|
210417
210503
|
get: function () {
|
|
210418
|
-
return this.
|
|
210504
|
+
return this.z;
|
|
210419
210505
|
},
|
|
210420
210506
|
set: function (a) {
|
|
210421
|
-
this.
|
|
210507
|
+
this.z = a;
|
|
210422
210508
|
this.g("HighlightValueOpacity");
|
|
210423
210509
|
},
|
|
210424
210510
|
enumerable: false,
|
|
@@ -210426,10 +210512,10 @@
|
|
|
210426
210512
|
});
|
|
210427
210513
|
Object.defineProperty(FunnelChartDescription.prototype, "actualHighlightValueDisplayMode", {
|
|
210428
210514
|
get: function () {
|
|
210429
|
-
return this.
|
|
210515
|
+
return this.ar;
|
|
210430
210516
|
},
|
|
210431
210517
|
set: function (a) {
|
|
210432
|
-
this.
|
|
210518
|
+
this.ar = a;
|
|
210433
210519
|
this.g("ActualHighlightValueDisplayMode");
|
|
210434
210520
|
},
|
|
210435
210521
|
enumerable: false,
|
|
@@ -210437,10 +210523,10 @@
|
|
|
210437
210523
|
});
|
|
210438
210524
|
Object.defineProperty(FunnelChartDescription.prototype, "highlightValueDisplayMode", {
|
|
210439
210525
|
get: function () {
|
|
210440
|
-
return this.
|
|
210526
|
+
return this.ax;
|
|
210441
210527
|
},
|
|
210442
210528
|
set: function (a) {
|
|
210443
|
-
this.
|
|
210529
|
+
this.ax = a;
|
|
210444
210530
|
this.g("HighlightValueDisplayMode");
|
|
210445
210531
|
},
|
|
210446
210532
|
enumerable: false,
|
|
@@ -210470,10 +210556,10 @@
|
|
|
210470
210556
|
});
|
|
210471
210557
|
Object.defineProperty(FunnelChartDescription.prototype, "bottomEdgeWidth", {
|
|
210472
210558
|
get: function () {
|
|
210473
|
-
return this.
|
|
210559
|
+
return this.y;
|
|
210474
210560
|
},
|
|
210475
210561
|
set: function (a) {
|
|
210476
|
-
this.
|
|
210562
|
+
this.y = a;
|
|
210477
210563
|
this.g("BottomEdgeWidth");
|
|
210478
210564
|
},
|
|
210479
210565
|
enumerable: false,
|
|
@@ -210481,10 +210567,10 @@
|
|
|
210481
210567
|
});
|
|
210482
210568
|
Object.defineProperty(FunnelChartDescription.prototype, "innerLabelMemberPath", {
|
|
210483
210569
|
get: function () {
|
|
210484
|
-
return this.
|
|
210570
|
+
return this.ay;
|
|
210485
210571
|
},
|
|
210486
210572
|
set: function (a) {
|
|
210487
|
-
this.
|
|
210573
|
+
this.ay = a;
|
|
210488
210574
|
this.g("InnerLabelMemberPath");
|
|
210489
210575
|
},
|
|
210490
210576
|
enumerable: false,
|
|
@@ -210492,10 +210578,10 @@
|
|
|
210492
210578
|
});
|
|
210493
210579
|
Object.defineProperty(FunnelChartDescription.prototype, "outerLabelMemberPath", {
|
|
210494
210580
|
get: function () {
|
|
210495
|
-
return this.
|
|
210581
|
+
return this.a2;
|
|
210496
210582
|
},
|
|
210497
210583
|
set: function (a) {
|
|
210498
|
-
this.
|
|
210584
|
+
this.a2 = a;
|
|
210499
210585
|
this.g("OuterLabelMemberPath");
|
|
210500
210586
|
},
|
|
210501
210587
|
enumerable: false,
|
|
@@ -210503,10 +210589,10 @@
|
|
|
210503
210589
|
});
|
|
210504
210590
|
Object.defineProperty(FunnelChartDescription.prototype, "innerLabelVisibility", {
|
|
210505
210591
|
get: function () {
|
|
210506
|
-
return this.
|
|
210592
|
+
return this.az;
|
|
210507
210593
|
},
|
|
210508
210594
|
set: function (a) {
|
|
210509
|
-
this.
|
|
210595
|
+
this.az = a;
|
|
210510
210596
|
this.g("InnerLabelVisibility");
|
|
210511
210597
|
},
|
|
210512
210598
|
enumerable: false,
|
|
@@ -210514,10 +210600,10 @@
|
|
|
210514
210600
|
});
|
|
210515
210601
|
Object.defineProperty(FunnelChartDescription.prototype, "outerLabelVisibility", {
|
|
210516
210602
|
get: function () {
|
|
210517
|
-
return this.
|
|
210603
|
+
return this.a5;
|
|
210518
210604
|
},
|
|
210519
210605
|
set: function (a) {
|
|
210520
|
-
this.
|
|
210606
|
+
this.a5 = a;
|
|
210521
210607
|
this.g("OuterLabelVisibility");
|
|
210522
210608
|
},
|
|
210523
210609
|
enumerable: false,
|
|
@@ -210525,10 +210611,10 @@
|
|
|
210525
210611
|
});
|
|
210526
210612
|
Object.defineProperty(FunnelChartDescription.prototype, "outerLabelAlignment", {
|
|
210527
210613
|
get: function () {
|
|
210528
|
-
return this.
|
|
210614
|
+
return this.a1;
|
|
210529
210615
|
},
|
|
210530
210616
|
set: function (a) {
|
|
210531
|
-
this.
|
|
210617
|
+
this.a1 = a;
|
|
210532
210618
|
this.g("OuterLabelAlignment");
|
|
210533
210619
|
},
|
|
210534
210620
|
enumerable: false,
|
|
@@ -210536,10 +210622,10 @@
|
|
|
210536
210622
|
});
|
|
210537
210623
|
Object.defineProperty(FunnelChartDescription.prototype, "funnelSliceDisplay", {
|
|
210538
210624
|
get: function () {
|
|
210539
|
-
return this.
|
|
210625
|
+
return this.av;
|
|
210540
210626
|
},
|
|
210541
210627
|
set: function (a) {
|
|
210542
|
-
this.
|
|
210628
|
+
this.av = a;
|
|
210543
210629
|
this.g("FunnelSliceDisplay");
|
|
210544
210630
|
},
|
|
210545
210631
|
enumerable: false,
|
|
@@ -210547,10 +210633,10 @@
|
|
|
210547
210633
|
});
|
|
210548
210634
|
Object.defineProperty(FunnelChartDescription.prototype, "formatInnerLabelRef", {
|
|
210549
210635
|
get: function () {
|
|
210550
|
-
return this.
|
|
210636
|
+
return this.at;
|
|
210551
210637
|
},
|
|
210552
210638
|
set: function (a) {
|
|
210553
|
-
this.
|
|
210639
|
+
this.at = a;
|
|
210554
210640
|
this.g("FormatInnerLabelRef");
|
|
210555
210641
|
},
|
|
210556
210642
|
enumerable: false,
|
|
@@ -210558,10 +210644,10 @@
|
|
|
210558
210644
|
});
|
|
210559
210645
|
Object.defineProperty(FunnelChartDescription.prototype, "formatOuterLabelRef", {
|
|
210560
210646
|
get: function () {
|
|
210561
|
-
return this.
|
|
210647
|
+
return this.au;
|
|
210562
210648
|
},
|
|
210563
210649
|
set: function (a) {
|
|
210564
|
-
this.
|
|
210650
|
+
this.au = a;
|
|
210565
210651
|
this.g("FormatOuterLabelRef");
|
|
210566
210652
|
},
|
|
210567
210653
|
enumerable: false,
|
|
@@ -210569,10 +210655,10 @@
|
|
|
210569
210655
|
});
|
|
210570
210656
|
Object.defineProperty(FunnelChartDescription.prototype, "transitionDuration", {
|
|
210571
210657
|
get: function () {
|
|
210572
|
-
return this.
|
|
210658
|
+
return this.ap;
|
|
210573
210659
|
},
|
|
210574
210660
|
set: function (a) {
|
|
210575
|
-
this.
|
|
210661
|
+
this.ap = a;
|
|
210576
210662
|
this.g("TransitionDuration");
|
|
210577
210663
|
},
|
|
210578
210664
|
enumerable: false,
|
|
@@ -210580,10 +210666,10 @@
|
|
|
210580
210666
|
});
|
|
210581
210667
|
Object.defineProperty(FunnelChartDescription.prototype, "isInverted", {
|
|
210582
210668
|
get: function () {
|
|
210583
|
-
return this.
|
|
210669
|
+
return this.o;
|
|
210584
210670
|
},
|
|
210585
210671
|
set: function (a) {
|
|
210586
|
-
this.
|
|
210672
|
+
this.o = a;
|
|
210587
210673
|
this.g("IsInverted");
|
|
210588
210674
|
},
|
|
210589
210675
|
enumerable: false,
|
|
@@ -210591,10 +210677,10 @@
|
|
|
210591
210677
|
});
|
|
210592
210678
|
Object.defineProperty(FunnelChartDescription.prototype, "useBezierCurve", {
|
|
210593
210679
|
get: function () {
|
|
210594
|
-
return this.
|
|
210680
|
+
return this.p;
|
|
210595
210681
|
},
|
|
210596
210682
|
set: function (a) {
|
|
210597
|
-
this.
|
|
210683
|
+
this.p = a;
|
|
210598
210684
|
this.g("UseBezierCurve");
|
|
210599
210685
|
},
|
|
210600
210686
|
enumerable: false,
|
|
@@ -210602,10 +210688,10 @@
|
|
|
210602
210688
|
});
|
|
210603
210689
|
Object.defineProperty(FunnelChartDescription.prototype, "allowSliceSelection", {
|
|
210604
210690
|
get: function () {
|
|
210605
|
-
return this.
|
|
210691
|
+
return this.n;
|
|
210606
210692
|
},
|
|
210607
210693
|
set: function (a) {
|
|
210608
|
-
this.
|
|
210694
|
+
this.n = a;
|
|
210609
210695
|
this.g("AllowSliceSelection");
|
|
210610
210696
|
},
|
|
210611
210697
|
enumerable: false,
|
|
@@ -210613,10 +210699,10 @@
|
|
|
210613
210699
|
});
|
|
210614
210700
|
Object.defineProperty(FunnelChartDescription.prototype, "useUnselectedStyle", {
|
|
210615
210701
|
get: function () {
|
|
210616
|
-
return this.
|
|
210702
|
+
return this.r;
|
|
210617
210703
|
},
|
|
210618
210704
|
set: function (a) {
|
|
210619
|
-
this.
|
|
210705
|
+
this.r = a;
|
|
210620
210706
|
this.g("UseUnselectedStyle");
|
|
210621
210707
|
},
|
|
210622
210708
|
enumerable: false,
|
|
@@ -210624,10 +210710,10 @@
|
|
|
210624
210710
|
});
|
|
210625
210711
|
Object.defineProperty(FunnelChartDescription.prototype, "selectedSliceFill", {
|
|
210626
210712
|
get: function () {
|
|
210627
|
-
return this.
|
|
210713
|
+
return this.a7;
|
|
210628
210714
|
},
|
|
210629
210715
|
set: function (a) {
|
|
210630
|
-
this.
|
|
210716
|
+
this.a7 = a;
|
|
210631
210717
|
this.g("SelectedSliceFill");
|
|
210632
210718
|
},
|
|
210633
210719
|
enumerable: false,
|
|
@@ -210635,10 +210721,10 @@
|
|
|
210635
210721
|
});
|
|
210636
210722
|
Object.defineProperty(FunnelChartDescription.prototype, "selectedSliceStroke", {
|
|
210637
210723
|
get: function () {
|
|
210638
|
-
return this.
|
|
210724
|
+
return this.a8;
|
|
210639
210725
|
},
|
|
210640
210726
|
set: function (a) {
|
|
210641
|
-
this.
|
|
210727
|
+
this.a8 = a;
|
|
210642
210728
|
this.g("SelectedSliceStroke");
|
|
210643
210729
|
},
|
|
210644
210730
|
enumerable: false,
|
|
@@ -210646,10 +210732,10 @@
|
|
|
210646
210732
|
});
|
|
210647
210733
|
Object.defineProperty(FunnelChartDescription.prototype, "selectedSliceStrokeThickness", {
|
|
210648
210734
|
get: function () {
|
|
210649
|
-
return this.
|
|
210735
|
+
return this.ad;
|
|
210650
210736
|
},
|
|
210651
210737
|
set: function (a) {
|
|
210652
|
-
this.
|
|
210738
|
+
this.ad = a;
|
|
210653
210739
|
this.g("SelectedSliceStrokeThickness");
|
|
210654
210740
|
},
|
|
210655
210741
|
enumerable: false,
|
|
@@ -210657,10 +210743,10 @@
|
|
|
210657
210743
|
});
|
|
210658
210744
|
Object.defineProperty(FunnelChartDescription.prototype, "selectedSliceOpacity", {
|
|
210659
210745
|
get: function () {
|
|
210660
|
-
return this.
|
|
210746
|
+
return this.ac;
|
|
210661
210747
|
},
|
|
210662
210748
|
set: function (a) {
|
|
210663
|
-
this.
|
|
210749
|
+
this.ac = a;
|
|
210664
210750
|
this.g("SelectedSliceOpacity");
|
|
210665
210751
|
},
|
|
210666
210752
|
enumerable: false,
|
|
@@ -210668,10 +210754,10 @@
|
|
|
210668
210754
|
});
|
|
210669
210755
|
Object.defineProperty(FunnelChartDescription.prototype, "unselectedSliceFill", {
|
|
210670
210756
|
get: function () {
|
|
210671
|
-
return this.
|
|
210757
|
+
return this.bf;
|
|
210672
210758
|
},
|
|
210673
210759
|
set: function (a) {
|
|
210674
|
-
this.
|
|
210760
|
+
this.bf = a;
|
|
210675
210761
|
this.g("UnselectedSliceFill");
|
|
210676
210762
|
},
|
|
210677
210763
|
enumerable: false,
|
|
@@ -210679,10 +210765,10 @@
|
|
|
210679
210765
|
});
|
|
210680
210766
|
Object.defineProperty(FunnelChartDescription.prototype, "unselectedSliceStroke", {
|
|
210681
210767
|
get: function () {
|
|
210682
|
-
return this.
|
|
210768
|
+
return this.bg;
|
|
210683
210769
|
},
|
|
210684
210770
|
set: function (a) {
|
|
210685
|
-
this.
|
|
210771
|
+
this.bg = a;
|
|
210686
210772
|
this.g("UnselectedSliceStroke");
|
|
210687
210773
|
},
|
|
210688
210774
|
enumerable: false,
|
|
@@ -210690,10 +210776,10 @@
|
|
|
210690
210776
|
});
|
|
210691
210777
|
Object.defineProperty(FunnelChartDescription.prototype, "unselectedSliceStrokeThickness", {
|
|
210692
210778
|
get: function () {
|
|
210693
|
-
return this.
|
|
210779
|
+
return this.af;
|
|
210694
210780
|
},
|
|
210695
210781
|
set: function (a) {
|
|
210696
|
-
this.
|
|
210782
|
+
this.af = a;
|
|
210697
210783
|
this.g("UnselectedSliceStrokeThickness");
|
|
210698
210784
|
},
|
|
210699
210785
|
enumerable: false,
|
|
@@ -210701,21 +210787,32 @@
|
|
|
210701
210787
|
});
|
|
210702
210788
|
Object.defineProperty(FunnelChartDescription.prototype, "unselectedSliceOpacity", {
|
|
210703
210789
|
get: function () {
|
|
210704
|
-
return this.
|
|
210790
|
+
return this.ae;
|
|
210705
210791
|
},
|
|
210706
210792
|
set: function (a) {
|
|
210707
|
-
this.
|
|
210793
|
+
this.ae = a;
|
|
210708
210794
|
this.g("UnselectedSliceOpacity");
|
|
210709
210795
|
},
|
|
210710
210796
|
enumerable: false,
|
|
210711
210797
|
configurable: true
|
|
210712
210798
|
});
|
|
210799
|
+
Object.defineProperty(FunnelChartDescription.prototype, "selectedItems", {
|
|
210800
|
+
get: function () {
|
|
210801
|
+
return this.j;
|
|
210802
|
+
},
|
|
210803
|
+
set: function (a) {
|
|
210804
|
+
this.j = a;
|
|
210805
|
+
this.g("SelectedItems");
|
|
210806
|
+
},
|
|
210807
|
+
enumerable: false,
|
|
210808
|
+
configurable: true
|
|
210809
|
+
});
|
|
210713
210810
|
Object.defineProperty(FunnelChartDescription.prototype, "legendItemBadgeTemplateRef", {
|
|
210714
210811
|
get: function () {
|
|
210715
|
-
return this.
|
|
210812
|
+
return this.a0;
|
|
210716
210813
|
},
|
|
210717
210814
|
set: function (a) {
|
|
210718
|
-
this.
|
|
210815
|
+
this.a0 = a;
|
|
210719
210816
|
this.g("LegendItemBadgeTemplateRef");
|
|
210720
210817
|
},
|
|
210721
210818
|
enumerable: false,
|
|
@@ -210723,10 +210820,10 @@
|
|
|
210723
210820
|
});
|
|
210724
210821
|
Object.defineProperty(FunnelChartDescription.prototype, "useOuterLabelsForLegend", {
|
|
210725
210822
|
get: function () {
|
|
210726
|
-
return this.
|
|
210823
|
+
return this.q;
|
|
210727
210824
|
},
|
|
210728
210825
|
set: function (a) {
|
|
210729
|
-
this.
|
|
210826
|
+
this.q = a;
|
|
210730
210827
|
this.g("UseOuterLabelsForLegend");
|
|
210731
210828
|
},
|
|
210732
210829
|
enumerable: false,
|
|
@@ -210734,10 +210831,10 @@
|
|
|
210734
210831
|
});
|
|
210735
210832
|
Object.defineProperty(FunnelChartDescription.prototype, "textStyle", {
|
|
210736
210833
|
get: function () {
|
|
210737
|
-
return this.
|
|
210834
|
+
return this.be;
|
|
210738
210835
|
},
|
|
210739
210836
|
set: function (a) {
|
|
210740
|
-
this.
|
|
210837
|
+
this.be = a;
|
|
210741
210838
|
this.g("TextStyle");
|
|
210742
210839
|
},
|
|
210743
210840
|
enumerable: false,
|
|
@@ -210745,10 +210842,10 @@
|
|
|
210745
210842
|
});
|
|
210746
210843
|
Object.defineProperty(FunnelChartDescription.prototype, "outerLabelTextStyle", {
|
|
210747
210844
|
get: function () {
|
|
210748
|
-
return this.
|
|
210845
|
+
return this.a4;
|
|
210749
210846
|
},
|
|
210750
210847
|
set: function (a) {
|
|
210751
|
-
this.
|
|
210848
|
+
this.a4 = a;
|
|
210752
210849
|
this.g("OuterLabelTextStyle");
|
|
210753
210850
|
},
|
|
210754
210851
|
enumerable: false,
|
|
@@ -210756,10 +210853,10 @@
|
|
|
210756
210853
|
});
|
|
210757
210854
|
Object.defineProperty(FunnelChartDescription.prototype, "outlineThickness", {
|
|
210758
210855
|
get: function () {
|
|
210759
|
-
return this.
|
|
210856
|
+
return this.aa;
|
|
210760
210857
|
},
|
|
210761
210858
|
set: function (a) {
|
|
210762
|
-
this.
|
|
210859
|
+
this.aa = a;
|
|
210763
210860
|
this.g("OutlineThickness");
|
|
210764
210861
|
},
|
|
210765
210862
|
enumerable: false,
|
|
@@ -210767,10 +210864,10 @@
|
|
|
210767
210864
|
});
|
|
210768
210865
|
Object.defineProperty(FunnelChartDescription.prototype, "pixelScalingRatio", {
|
|
210769
210866
|
get: function () {
|
|
210770
|
-
return this.
|
|
210867
|
+
return this.ab;
|
|
210771
210868
|
},
|
|
210772
210869
|
set: function (a) {
|
|
210773
|
-
this.
|
|
210870
|
+
this.ab = a;
|
|
210774
210871
|
this.g("PixelScalingRatio");
|
|
210775
210872
|
},
|
|
210776
210873
|
enumerable: false,
|
|
@@ -210778,10 +210875,10 @@
|
|
|
210778
210875
|
});
|
|
210779
210876
|
Object.defineProperty(FunnelChartDescription.prototype, "outerLabelTextColor", {
|
|
210780
210877
|
get: function () {
|
|
210781
|
-
return this.
|
|
210878
|
+
return this.a3;
|
|
210782
210879
|
},
|
|
210783
210880
|
set: function (a) {
|
|
210784
|
-
this.
|
|
210881
|
+
this.a3 = a;
|
|
210785
210882
|
this.g("OuterLabelTextColor");
|
|
210786
210883
|
},
|
|
210787
210884
|
enumerable: false,
|
|
@@ -210789,21 +210886,32 @@
|
|
|
210789
210886
|
});
|
|
210790
210887
|
Object.defineProperty(FunnelChartDescription.prototype, "textColor", {
|
|
210791
210888
|
get: function () {
|
|
210792
|
-
return this.
|
|
210889
|
+
return this.bd;
|
|
210793
210890
|
},
|
|
210794
210891
|
set: function (a) {
|
|
210795
|
-
this.
|
|
210892
|
+
this.bd = a;
|
|
210796
210893
|
this.g("TextColor");
|
|
210797
210894
|
},
|
|
210798
210895
|
enumerable: false,
|
|
210799
210896
|
configurable: true
|
|
210800
210897
|
});
|
|
210801
|
-
Object.defineProperty(FunnelChartDescription.prototype, "
|
|
210898
|
+
Object.defineProperty(FunnelChartDescription.prototype, "selectedItemsChangedRef", {
|
|
210802
210899
|
get: function () {
|
|
210803
210900
|
return this.a6;
|
|
210804
210901
|
},
|
|
210805
210902
|
set: function (a) {
|
|
210806
210903
|
this.a6 = a;
|
|
210904
|
+
this.g("SelectedItemsChangedRef");
|
|
210905
|
+
},
|
|
210906
|
+
enumerable: false,
|
|
210907
|
+
configurable: true
|
|
210908
|
+
});
|
|
210909
|
+
Object.defineProperty(FunnelChartDescription.prototype, "sliceClickedRef", {
|
|
210910
|
+
get: function () {
|
|
210911
|
+
return this.a9;
|
|
210912
|
+
},
|
|
210913
|
+
set: function (a) {
|
|
210914
|
+
this.a9 = a;
|
|
210807
210915
|
this.g("SliceClickedRef");
|
|
210808
210916
|
},
|
|
210809
210917
|
enumerable: false,
|
|
@@ -210811,10 +210919,10 @@
|
|
|
210811
210919
|
});
|
|
210812
210920
|
Object.defineProperty(FunnelChartDescription.prototype, "sliceEnterRef", {
|
|
210813
210921
|
get: function () {
|
|
210814
|
-
return this.
|
|
210922
|
+
return this.ba;
|
|
210815
210923
|
},
|
|
210816
210924
|
set: function (a) {
|
|
210817
|
-
this.
|
|
210925
|
+
this.ba = a;
|
|
210818
210926
|
this.g("SliceEnterRef");
|
|
210819
210927
|
},
|
|
210820
210928
|
enumerable: false,
|
|
@@ -210822,10 +210930,10 @@
|
|
|
210822
210930
|
});
|
|
210823
210931
|
Object.defineProperty(FunnelChartDescription.prototype, "sliceLeaveRef", {
|
|
210824
210932
|
get: function () {
|
|
210825
|
-
return this.
|
|
210933
|
+
return this.bc;
|
|
210826
210934
|
},
|
|
210827
210935
|
set: function (a) {
|
|
210828
|
-
this.
|
|
210936
|
+
this.bc = a;
|
|
210829
210937
|
this.g("SliceLeaveRef");
|
|
210830
210938
|
},
|
|
210831
210939
|
enumerable: false,
|
|
@@ -210833,10 +210941,10 @@
|
|
|
210833
210941
|
});
|
|
210834
210942
|
Object.defineProperty(FunnelChartDescription.prototype, "sliceHoverRef", {
|
|
210835
210943
|
get: function () {
|
|
210836
|
-
return this.
|
|
210944
|
+
return this.bb;
|
|
210837
210945
|
},
|
|
210838
210946
|
set: function (a) {
|
|
210839
|
-
this.
|
|
210947
|
+
this.bb = a;
|
|
210840
210948
|
this.g("SliceHoverRef");
|
|
210841
210949
|
},
|
|
210842
210950
|
enumerable: false,
|
|
@@ -210846,6 +210954,110 @@
|
|
|
210846
210954
|
return FunnelChartDescription;
|
|
210847
210955
|
}(Description));
|
|
210848
210956
|
|
|
210957
|
+
/*
|
|
210958
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
210959
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
210960
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
210961
|
+
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.
|
|
210962
|
+
*/
|
|
210963
|
+
/**
|
|
210964
|
+
* @hidden
|
|
210965
|
+
*/
|
|
210966
|
+
var FunnelChartSelectedItemsChangedEventArgsDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
210967
|
+
tslib.__extends(FunnelChartSelectedItemsChangedEventArgsDescription, _super);
|
|
210968
|
+
function FunnelChartSelectedItemsChangedEventArgsDescription() {
|
|
210969
|
+
var _this = _super.call(this) || this;
|
|
210970
|
+
_this.j = null;
|
|
210971
|
+
_this.i = null;
|
|
210972
|
+
_this.h = null;
|
|
210973
|
+
return _this;
|
|
210974
|
+
}
|
|
210975
|
+
FunnelChartSelectedItemsChangedEventArgsDescription.prototype.get_type = function () {
|
|
210976
|
+
return "FunnelChartSelectedItemsChangedEventArgs";
|
|
210977
|
+
};
|
|
210978
|
+
Object.defineProperty(FunnelChartSelectedItemsChangedEventArgsDescription.prototype, "type", {
|
|
210979
|
+
get: function () {
|
|
210980
|
+
return this.get_type();
|
|
210981
|
+
},
|
|
210982
|
+
enumerable: false,
|
|
210983
|
+
configurable: true
|
|
210984
|
+
});
|
|
210985
|
+
Object.defineProperty(FunnelChartSelectedItemsChangedEventArgsDescription.prototype, "oldItems", {
|
|
210986
|
+
get: function () {
|
|
210987
|
+
return this.j;
|
|
210988
|
+
},
|
|
210989
|
+
set: function (a) {
|
|
210990
|
+
this.j = a;
|
|
210991
|
+
this.g("OldItems");
|
|
210992
|
+
},
|
|
210993
|
+
enumerable: false,
|
|
210994
|
+
configurable: true
|
|
210995
|
+
});
|
|
210996
|
+
Object.defineProperty(FunnelChartSelectedItemsChangedEventArgsDescription.prototype, "newItems", {
|
|
210997
|
+
get: function () {
|
|
210998
|
+
return this.i;
|
|
210999
|
+
},
|
|
211000
|
+
set: function (a) {
|
|
211001
|
+
this.i = a;
|
|
211002
|
+
this.g("NewItems");
|
|
211003
|
+
},
|
|
211004
|
+
enumerable: false,
|
|
211005
|
+
configurable: true
|
|
211006
|
+
});
|
|
211007
|
+
Object.defineProperty(FunnelChartSelectedItemsChangedEventArgsDescription.prototype, "currentItems", {
|
|
211008
|
+
get: function () {
|
|
211009
|
+
return this.h;
|
|
211010
|
+
},
|
|
211011
|
+
set: function (a) {
|
|
211012
|
+
this.h = a;
|
|
211013
|
+
this.g("CurrentItems");
|
|
211014
|
+
},
|
|
211015
|
+
enumerable: false,
|
|
211016
|
+
configurable: true
|
|
211017
|
+
});
|
|
211018
|
+
FunnelChartSelectedItemsChangedEventArgsDescription.$t = markType(FunnelChartSelectedItemsChangedEventArgsDescription, 'FunnelChartSelectedItemsChangedEventArgsDescription', Description.$);
|
|
211019
|
+
return FunnelChartSelectedItemsChangedEventArgsDescription;
|
|
211020
|
+
}(Description));
|
|
211021
|
+
|
|
211022
|
+
/*
|
|
211023
|
+
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
211024
|
+
https://www.infragistics.com/legal/license/igultimate-la
|
|
211025
|
+
https://www.infragistics.com/legal/license/igultimate-eula
|
|
211026
|
+
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.
|
|
211027
|
+
*/
|
|
211028
|
+
/**
|
|
211029
|
+
* @hidden
|
|
211030
|
+
*/
|
|
211031
|
+
var FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
211032
|
+
tslib.__extends(FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata, _super);
|
|
211033
|
+
function FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata() {
|
|
211034
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
211035
|
+
}
|
|
211036
|
+
FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata.b = function (a) {
|
|
211037
|
+
if (FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata.a == null) {
|
|
211038
|
+
FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
|
|
211039
|
+
FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata.c(FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata.a);
|
|
211040
|
+
}
|
|
211041
|
+
if (a.k(FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata.a)) {
|
|
211042
|
+
return;
|
|
211043
|
+
}
|
|
211044
|
+
a.ac(FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata.a);
|
|
211045
|
+
};
|
|
211046
|
+
FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata.c = function (a) {
|
|
211047
|
+
a.item("OldItems", "Collection:object:FunnelChartSelectedItemsCollection:Object");
|
|
211048
|
+
a.item("NewItems", "Collection:object:FunnelChartSelectedItemsCollection:Object");
|
|
211049
|
+
a.item("CurrentItems", "Collection:object:FunnelChartSelectedItemsCollection:Object");
|
|
211050
|
+
};
|
|
211051
|
+
FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata.d = function (a) {
|
|
211052
|
+
FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata.b(a);
|
|
211053
|
+
a.ae("FunnelChartSelectedItemsChangedEventArgs", function () { return new FunnelChartSelectedItemsChangedEventArgsDescription(); });
|
|
211054
|
+
a.ad("FunnelChartSelectedItemsChangedEventArgs", FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata.a);
|
|
211055
|
+
};
|
|
211056
|
+
FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata.$t = markType(FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata, 'FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata');
|
|
211057
|
+
FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata.a = null;
|
|
211058
|
+
return FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata;
|
|
211059
|
+
}(Base));
|
|
211060
|
+
|
|
210849
211061
|
/*
|
|
210850
211062
|
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
|
|
210851
211063
|
https://www.infragistics.com/legal/license/igultimate-la
|
|
@@ -211090,6 +211302,7 @@
|
|
|
211090
211302
|
return;
|
|
211091
211303
|
}
|
|
211092
211304
|
a.ac(FunnelChartDescriptionMetadata.a);
|
|
211305
|
+
FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata.d(a);
|
|
211093
211306
|
FunnelSliceClickedEventArgsDescriptionMetadata.d(a);
|
|
211094
211307
|
FunnelSliceEventArgsDescriptionMetadata.d(a);
|
|
211095
211308
|
};
|
|
@@ -211131,6 +211344,7 @@
|
|
|
211131
211344
|
a.item("UnselectedSliceStroke", "(w:UnselectedSliceStyle.Stroke,wf:UnselectedSliceStroke)String");
|
|
211132
211345
|
a.item("UnselectedSliceStrokeThickness", "(w:UnselectedSliceStyle.StrokeThickness,wf:UnselectedSliceStrokeThickness)Number:double");
|
|
211133
211346
|
a.item("UnselectedSliceOpacity", "(w:UnselectedSliceStyle.Opacity,wf:UnselectedSliceOpacity)Number:double");
|
|
211347
|
+
a.item("SelectedItems", "Collection:object:FunnelChartSelectedItemsCollection:Object");
|
|
211134
211348
|
a.item("LegendItemBadgeTemplateRef", "(w:LegendItemBadgeTemplate,wf:LegendItemBadgeTemplate)DataRef::object");
|
|
211135
211349
|
a.item("UseOuterLabelsForLegend", "Boolean");
|
|
211136
211350
|
a.item("TextStyle", "String");
|
|
@@ -211139,6 +211353,7 @@
|
|
|
211139
211353
|
a.item("PixelScalingRatio", "Number:double");
|
|
211140
211354
|
a.item("OuterLabelTextColor", "Brush");
|
|
211141
211355
|
a.item("TextColor", "Brush");
|
|
211356
|
+
a.item("SelectedItemsChangedRef", "EventRef::selectedItemsChanged");
|
|
211142
211357
|
a.item("SliceClickedRef", "EventRef::sliceClicked");
|
|
211143
211358
|
a.item("SliceEnterRef", "EventRef::sliceEnter");
|
|
211144
211359
|
a.item("SliceLeaveRef", "EventRef::sliceLeave");
|
|
@@ -317292,6 +317507,7 @@
|
|
|
317292
317507
|
exports.ComponentRendererMethodHelperArgumentBuilder = ComponentRendererMethodHelperArgumentBuilder;
|
|
317293
317508
|
exports.ComponentRendererMethodHelperBuilder = ComponentRendererMethodHelperBuilder;
|
|
317294
317509
|
exports.ComponentRendererMethodHelperReturnBuilder = ComponentRendererMethodHelperReturnBuilder;
|
|
317510
|
+
exports.ComponentRendererReferenceResolverEventArgs = ComponentRendererReferenceResolverEventArgs;
|
|
317295
317511
|
exports.ComponentRendererSerializationHelper = ComponentRendererSerializationHelper;
|
|
317296
317512
|
exports.Compute = Compute;
|
|
317297
317513
|
exports.ContainerState = ContainerState;
|
|
@@ -317879,6 +318095,8 @@
|
|
|
317879
318095
|
exports.FunnelChartDescription = FunnelChartDescription;
|
|
317880
318096
|
exports.FunnelChartDescriptionMetadata = FunnelChartDescriptionMetadata;
|
|
317881
318097
|
exports.FunnelChartDescriptionModule = FunnelChartDescriptionModule;
|
|
318098
|
+
exports.FunnelChartSelectedItemsChangedEventArgsDescription = FunnelChartSelectedItemsChangedEventArgsDescription;
|
|
318099
|
+
exports.FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata = FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata;
|
|
317882
318100
|
exports.FunnelDataContextDescription = FunnelDataContextDescription;
|
|
317883
318101
|
exports.FunnelDataContextDescriptionMetadata = FunnelDataContextDescriptionMetadata;
|
|
317884
318102
|
exports.FunnelSliceClickedEventArgsDescription = FunnelSliceClickedEventArgsDescription;
|