igniteui-angular-core 18.2.0-beta.2 → 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.
Files changed (37) hide show
  1. package/bundles/igniteui-angular-core.umd.js +1217 -971
  2. package/bundles/igniteui-angular-core.umd.min.js +1 -1
  3. package/esm2015/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +251 -251
  4. package/esm2015/lib/ComponentRendererReferenceResolverEventArgs.js +33 -0
  5. package/esm2015/lib/ComponentRenderer_combined.js +589 -555
  6. package/esm2015/lib/DescriptionTreeReconciler.js +48 -46
  7. package/esm2015/lib/FunnelChartDescription.js +130 -114
  8. package/esm2015/lib/FunnelChartDescriptionMetadata.js +4 -0
  9. package/esm2015/lib/FunnelChartSelectedItemsChangedEventArgsDescription.js +50 -0
  10. package/esm2015/lib/FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata.js +39 -0
  11. package/esm2015/lib/IDataSeriesAdapterRule_combined.js +14 -6
  12. package/esm2015/lib/ToolActionInfo.js +16 -0
  13. package/esm2015/lib/igx-component-renderer-container-component.js +5 -1
  14. package/esm2015/public_api.js +3 -0
  15. package/esm5/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +251 -251
  16. package/esm5/lib/ComponentRendererReferenceResolverEventArgs.js +43 -0
  17. package/esm5/lib/ComponentRenderer_combined.js +588 -554
  18. package/esm5/lib/DescriptionTreeReconciler.js +48 -46
  19. package/esm5/lib/FunnelChartDescription.js +137 -113
  20. package/esm5/lib/FunnelChartDescriptionMetadata.js +4 -0
  21. package/esm5/lib/FunnelChartSelectedItemsChangedEventArgsDescription.js +68 -0
  22. package/esm5/lib/FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata.js +43 -0
  23. package/esm5/lib/IDataSeriesAdapterRule_combined.js +14 -6
  24. package/esm5/lib/ToolActionInfo.js +24 -0
  25. package/esm5/lib/igx-component-renderer-container-component.js +5 -1
  26. package/esm5/public_api.js +3 -0
  27. package/fesm2015/igniteui-angular-core.js +1172 -971
  28. package/fesm5/igniteui-angular-core.js +1215 -972
  29. package/lib/CodeGeneratingComponentRendererCodeEmitter_combined.d.ts +26 -26
  30. package/lib/ComponentRendererReferenceResolverEventArgs.d.ts +13 -0
  31. package/lib/ComponentRenderer_combined.d.ts +115 -110
  32. package/lib/FunnelChartDescription.d.ts +46 -40
  33. package/lib/FunnelChartSelectedItemsChangedEventArgsDescription.d.ts +20 -0
  34. package/lib/FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata.d.ts +13 -0
  35. package/lib/ToolActionInfo.d.ts +6 -0
  36. package/package.json +4 -4
  37. package/public_api.d.ts +3 -0
@@ -49811,6 +49811,8 @@
49811
49811
  _this._iconViewBoxHeight = 0;
49812
49812
  _this._iconWidth = 0;
49813
49813
  _this._iconHeight = 0;
49814
+ _this._subPanelRowHeight = 0;
49815
+ _this._height = 0;
49814
49816
  _this._isDisabled = false;
49815
49817
  _this._isHighlighted = false;
49816
49818
  _this._textColor = null;
@@ -49820,6 +49822,7 @@
49820
49822
  _this._actions = null;
49821
49823
  _this._contextBindings = null;
49822
49824
  _this.iconCollectionName = "default";
49825
+ _this.subPanelRowHeight = -1;
49823
49826
  _this.iconViewBoxLeft = NaN;
49824
49827
  _this.iconViewBoxTop = NaN;
49825
49828
  _this.iconViewBoxWidth = NaN;
@@ -49832,6 +49835,7 @@
49832
49835
  _this.paddingTop = NaN;
49833
49836
  _this.isDisabled = false;
49834
49837
  _this.isHighlighted = false;
49838
+ _this.height = NaN;
49835
49839
  return _this;
49836
49840
  }
49837
49841
  Object.defineProperty(ToolActionInfo.prototype, "parentId", {
@@ -50024,6 +50028,26 @@
50024
50028
  enumerable: false,
50025
50029
  configurable: true
50026
50030
  });
50031
+ Object.defineProperty(ToolActionInfo.prototype, "subPanelRowHeight", {
50032
+ get: function () {
50033
+ return this._subPanelRowHeight;
50034
+ },
50035
+ set: function (a) {
50036
+ this._subPanelRowHeight = a;
50037
+ },
50038
+ enumerable: false,
50039
+ configurable: true
50040
+ });
50041
+ Object.defineProperty(ToolActionInfo.prototype, "height", {
50042
+ get: function () {
50043
+ return this._height;
50044
+ },
50045
+ set: function (a) {
50046
+ this._height = a;
50047
+ },
50048
+ enumerable: false,
50049
+ configurable: true
50050
+ });
50027
50051
  Object.defineProperty(ToolActionInfo.prototype, "isDisabled", {
50028
50052
  get: function () {
50029
50053
  return this._isDisabled;
@@ -60772,13 +60796,15 @@
60772
60796
  }
60773
60797
  }
60774
60798
  }
60775
- var p = d.c.actualSchema.propertyNames;
60776
- for (var r = 0; r < p.length; r++) {
60777
- var q = p[r];
60778
- if (e.contains(q) && p.length > 1) {
60779
- continue;
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)));
60780
60807
  }
60781
- b.add_1(new Tuple$2(String_$type, String_$type, q, c.analyzer.expandCamelCasedWords(q)));
60782
60808
  }
60783
60809
  };
60784
60810
  DataSeriesAdapterImplementation.prototype.bg = function () {
@@ -61042,9 +61068,15 @@
61042
61068
  if (e) {
61043
61069
  this.ay(c);
61044
61070
  }
61071
+ else if (c.c != null) {
61072
+ c.c.flushAutoRefresh();
61073
+ }
61045
61074
  return c;
61046
61075
  }
61047
61076
  c.c = h_1;
61077
+ if (c.c != null) {
61078
+ c.c.flushAutoRefresh();
61079
+ }
61048
61080
  return c;
61049
61081
  }
61050
61082
  if (b && this.ae) {
@@ -77417,7 +77449,11 @@
77417
77449
  };
77418
77450
  IgxComponentRendererContainerComponent.prototype.replaceRootItem = function (t, deferAttach, continueActions) {
77419
77451
  if (this._currentRoot != null) {
77420
- this._currentRoot;
77452
+ if (this._currentRootRef) {
77453
+ this._currentRootRef.destroy();
77454
+ this._currentRootRef = null;
77455
+ this._currentRoot = null;
77456
+ }
77421
77457
  }
77422
77458
  var cf = this._componentFactoryResolver.resolveComponentFactory(t);
77423
77459
  var cr = this._dynamicContent.createComponent(cf);
@@ -80242,6 +80278,47 @@
80242
80278
  return TypeDescriptionCleanups;
80243
80279
  }(Base));
80244
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
+
80245
80322
  /*
80246
80323
  THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
80247
80324
  https://www.infragistics.com/legal/license/igultimate-la
@@ -82140,56 +82217,58 @@
82140
82217
  else {
82141
82218
  var ai = ah.b;
82142
82219
  var aj = c.a(ah.c).b;
82143
- for (var ak = 0; ak < ai.length; ak++) {
82144
- var al = ai[ak];
82145
- var am = aj[ak];
82146
- if (typeCast(DescriptionTreeNode.$, al) !== null && typeCast(DescriptionTreeNode.$, am) !== null) {
82147
- var an = al;
82148
- var ao = am;
82149
- var ap = false;
82150
- var aq = an.i == ao.i && an.i == "EmbeddedRef";
82151
- if (aq) {
82152
- var ar = an.f().toArray();
82153
- var as = ao.f().toArray();
82154
- for (var at = 0; at <= ar.length - 1; at++) {
82155
- var au = ar[at];
82156
- var av = as[at];
82157
- if (au.c != av.c || au.b != av.b) {
82158
- ap = true;
82159
- break;
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
+ }
82160
82239
  }
82161
82240
  }
82162
- }
82163
- if (an.i == ao.i && !ap) {
82164
- DescriptionTreeReconciler.g(a, an, ao, d);
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
+ }
82165
82257
  }
82166
82258
  else {
82167
- var aw = new DescriptionTreeAction();
82168
- aw.j = ah.c;
82169
- aw.d = ah.a;
82170
- aw.c = b;
82171
- aw.b = c;
82172
- aw.a = 3;
82173
- aw.f = ak;
82174
- aw.e = ak;
82175
- aw.h = an;
82176
- aw.g = ao;
82177
- a.add(aw);
82178
- }
82179
- }
82180
- else {
82181
- if (!Base.equalsStatic(al, am)) {
82182
- var ax = new DescriptionTreeAction();
82183
- ax.j = ah.c;
82184
- ax.d = ah.a;
82185
- ax.c = b;
82186
- ax.b = c;
82187
- ax.a = 3;
82188
- ax.f = ak;
82189
- ax.e = ak;
82190
- ax.h = al;
82191
- ax.g = am;
82192
- 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
+ }
82193
82272
  }
82194
82273
  }
82195
82274
  }
@@ -82594,34 +82673,35 @@
82594
82673
  _this._adapter = null;
82595
82674
  _this._context = null;
82596
82675
  _this._isProceedOnErrorEnabled = false;
82597
- _this.j = null;
82598
82676
  _this.k = null;
82677
+ _this.l = null;
82599
82678
  _this._preserveKeyOrder = false;
82600
82679
  _this._allowNullForRemove = false;
82601
- _this.be = new List$1(Delegate_$type, 0);
82602
- _this.a1 = new Dictionary$2(Base.$, Description.$, 0);
82603
- _this.a2 = new Dictionary$2(Base.$, Boolean_$type, 0);
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);
82604
82683
  _this.a3 = new Dictionary$2(Base.$, Boolean_$type, 0);
82605
- _this.a0 = new Dictionary$2(Base.$, Boolean_$type, 0);
82606
- _this.ay = new Dictionary$2(Base.$, String_$type, 0);
82607
- _this.az = new Dictionary$2(Base.$, Number_$type, 0);
82608
- _this.aw = new Dictionary$2(Base.$, DescriptionTreeNode.$, 0);
82609
- _this.a7 = new Dictionary$2(Base.$, ContainerState.$, 0);
82610
- _this.a4 = new Dictionary$2(Base.$, Queue$1.$.specialize(Queue$1.$.specialize(DescriptionTreeAction.$)), 0);
82611
- _this.ax = new Dictionary$2(Base.$, List$1.$.specialize(Delegate_$type), 0);
82612
- _this.av = new Dictionary$2(Base.$, Boolean_$type, 0);
82613
- _this.a6 = new Dictionary$2(String_$type, DescriptionRef.$, 0);
82614
- _this.a8 = new Dictionary$2(String_$type, Base.$, 0);
82615
- _this.ba = new Dictionary$2(String_$type, Base.$, 0);
82616
- _this.a5 = new Dictionary$2(Base.$, String_$type, 0);
82617
- _this.bl = null;
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);
82618
82701
  _this.bg = new List$1(Delegate_$type, 0);
82619
- _this.a9 = new Dictionary$2(String_$type, List$1.$.specialize(Delegate_$type), 0);
82620
- _this.bd = new List$1(Delegate_$type, 0);
82621
- _this.bf = new List$1(Delegate_$type, 0);
82622
- _this.bc = null;
82702
+ _this.bd = null;
82623
82703
  _this._shouldNamespaceSystemRefValues = false;
82624
- var a = _this.i();
82704
+ var a = _this.j();
82625
82705
  _this.adapter = a;
82626
82706
  var adapter_ = _this.adapter;
82627
82707
  var b = (adapter_._platform);
@@ -82632,8 +82712,8 @@
82632
82712
  ComponentRenderer.platform = 2;
82633
82713
  }
82634
82714
  _this.context = new TypeDescriptionContext(_this.adapter, ComponentRenderer.platform);
82635
- _this.j = new TypeDescriptionPropretyTransforms();
82636
- _this.k = new TypeDescriptionCleanups();
82715
+ _this.k = new TypeDescriptionPropretyTransforms();
82716
+ _this.l = new TypeDescriptionCleanups();
82637
82717
  return _this;
82638
82718
  }
82639
82719
  Object.defineProperty(ComponentRenderer, "defaultInstance", {
@@ -82676,7 +82756,7 @@
82676
82756
  enumerable: false,
82677
82757
  configurable: true
82678
82758
  });
82679
- ComponentRenderer.prototype.i = function () {
82759
+ ComponentRenderer.prototype.j = function () {
82680
82760
  return (new ComponentRendererAdapter());
82681
82761
  };
82682
82762
  ComponentRenderer.prototype.toJson = function (a) {
@@ -82689,7 +82769,7 @@
82689
82769
  b.i();
82690
82770
  var d = true;
82691
82771
  try {
82692
- for (var _c = tslib.__values(fromEnum(this.aw.keys)), _d = _c.next(); !_d.done; _d = _c.next()) {
82772
+ for (var _c = tslib.__values(fromEnum(this.ax.keys)), _d = _c.next(); !_d.done; _d = _c.next()) {
82693
82773
  var e = _d.value;
82694
82774
  if (d) {
82695
82775
  d = false;
@@ -82698,7 +82778,7 @@
82698
82778
  b.f(",");
82699
82779
  }
82700
82780
  var f = e;
82701
- var g = this.aw.item(e);
82781
+ var g = this.ax.item(e);
82702
82782
  var h = "root";
82703
82783
  h = a(f);
82704
82784
  if (stringIsNullOrEmpty(h)) {
@@ -82725,18 +82805,18 @@
82725
82805
  b.f("");
82726
82806
  b.h();
82727
82807
  b.e("}");
82728
- if (this.ba.count > 0) {
82808
+ if (this.bb.count > 0) {
82729
82809
  b.e(",");
82730
82810
  }
82731
82811
  b.f("");
82732
- if (this.ba.count > 0) {
82812
+ if (this.bb.count > 0) {
82733
82813
  d = true;
82734
82814
  b.f("refs: {");
82735
82815
  b.i();
82736
82816
  try {
82737
- for (var _e = tslib.__values(fromEnum(this.ba.keys)), _f = _e.next(); !_f.done; _f = _e.next()) {
82817
+ for (var _e = tslib.__values(fromEnum(this.bb.keys)), _f = _e.next(); !_f.done; _f = _e.next()) {
82738
82818
  var i = _f.value;
82739
- if (!this.q(i, this.ba.item(i))) {
82819
+ if (!this.r(i, this.bb.item(i))) {
82740
82820
  continue;
82741
82821
  }
82742
82822
  if (d) {
@@ -82745,7 +82825,7 @@
82745
82825
  else {
82746
82826
  b.f(",");
82747
82827
  }
82748
- this.eg(b, i, this.ba.item(i));
82828
+ this.ek(b, i, this.bb.item(i));
82749
82829
  }
82750
82830
  }
82751
82831
  catch (e_2_1) {
@@ -82769,12 +82849,12 @@
82769
82849
  b.f("}");
82770
82850
  return b.toString();
82771
82851
  };
82772
- ComponentRenderer.prototype.eg = function (a, b, c) {
82852
+ ComponentRenderer.prototype.ek = function (a, b, c) {
82773
82853
  a.e("\"" + b + "\": ");
82774
- this.eh(a, c);
82854
+ this.el(a, c);
82775
82855
  };
82776
- ComponentRenderer.prototype.eh = function (a, b) {
82777
- if (this.z(b)) {
82856
+ ComponentRenderer.prototype.el = function (a, b) {
82857
+ if (this.aa(b)) {
82778
82858
  if (typeof b === 'string') {
82779
82859
  a.e(b == null ? "null" : "\"" + b.toString() + "\"");
82780
82860
  }
@@ -82815,7 +82895,7 @@
82815
82895
  a.e("null");
82816
82896
  return;
82817
82897
  }
82818
- if (this.w(b)) {
82898
+ if (this.x(b)) {
82819
82899
  a.f("[");
82820
82900
  a.i();
82821
82901
  var c = new DataSourceLocalDataProvider();
@@ -82824,7 +82904,7 @@
82824
82904
  if (d > 0) {
82825
82905
  a.f(",");
82826
82906
  }
82827
- this.ef(a, c, d);
82907
+ this.ej(a, c, d);
82828
82908
  }
82829
82909
  a.f("");
82830
82910
  a.h();
@@ -82834,11 +82914,11 @@
82834
82914
  var e = [b];
82835
82915
  var f = new DataSourceLocalDataProvider();
82836
82916
  f.dataSource = e;
82837
- this.ef(a, f, 0);
82917
+ this.ej(a, f, 0);
82838
82918
  }
82839
82919
  }
82840
82920
  };
82841
- ComponentRenderer.prototype.z = function (a) {
82921
+ ComponentRenderer.prototype.aa = function (a) {
82842
82922
  if (typeof a === 'string') {
82843
82923
  return true;
82844
82924
  }
@@ -82853,7 +82933,7 @@
82853
82933
  }
82854
82934
  return false;
82855
82935
  };
82856
- ComponentRenderer.prototype.w = function (a) {
82936
+ ComponentRenderer.prototype.x = function (a) {
82857
82937
  if (typeCast(Array_$type, a) !== null) {
82858
82938
  return true;
82859
82939
  }
@@ -82862,7 +82942,7 @@
82862
82942
  }
82863
82943
  return false;
82864
82944
  };
82865
- ComponentRenderer.prototype.ef = function (a, b, c) {
82945
+ ComponentRenderer.prototype.ej = function (a, b, c) {
82866
82946
  a.f("{");
82867
82947
  a.i();
82868
82948
  var d = b.actualSchema;
@@ -82898,14 +82978,14 @@
82898
82978
  a.e("\"" + (v_.toJSON()) + "\"");
82899
82979
  break;
82900
82980
  case 11:
82901
- this.eh(a, g);
82981
+ this.el(a, g);
82902
82982
  break;
82903
82983
  }
82904
82984
  }
82905
82985
  a.h();
82906
82986
  a.f("}");
82907
82987
  };
82908
- ComponentRenderer.prototype.q = function (a, b) {
82988
+ ComponentRenderer.prototype.r = function (a, b) {
82909
82989
  if (b == null) {
82910
82990
  return true;
82911
82991
  }
@@ -82925,23 +83005,23 @@
82925
83005
  return null;
82926
83006
  }
82927
83007
  var h = DescriptionTreeBuilder.createTree(this.context, g.result);
82928
- var i = this.a7.item(b);
83008
+ var i = this.a8.item(b);
82929
83009
  if (h.c("Type")) {
82930
83010
  var j = h.a("Type").b;
82931
- return this.b6(j, h, b, i, true, -1, null);
83011
+ return this.b8(j, h, b, i, true, -1, null);
82932
83012
  }
82933
83013
  else {
82934
- return this.b5(typeCast(JsonDictionaryObject.$, d));
83014
+ return this.b7(typeCast(JsonDictionaryObject.$, d));
82935
83015
  }
82936
83016
  };
82937
83017
  ComponentRenderer.prototype.loadJson = function (a, b) {
82938
- this.dm(a, b, null, false, false, false);
83018
+ this.dq(a, b, null, false, false, false);
82939
83019
  };
82940
83020
  ComponentRenderer.prototype.loadJsonOverlay = function (a, b, c) {
82941
- this.dm(a, b, c, true, false, true);
83021
+ this.dq(a, b, c, true, false, true);
82942
83022
  };
82943
83023
  ComponentRenderer.prototype.loadJsonDelta = function (a, b, c) {
82944
- this.dm(a, b, null, true, c, false);
83024
+ this.dq(a, b, null, true, c, false);
82945
83025
  };
82946
83026
  Object.defineProperty(ComponentRenderer.prototype, "preserveKeyOrder", {
82947
83027
  get: function () {
@@ -82953,10 +83033,10 @@
82953
83033
  enumerable: false,
82954
83034
  configurable: true
82955
83035
  });
82956
- ComponentRenderer.prototype.as = function () {
83036
+ ComponentRenderer.prototype.at = function () {
82957
83037
  return false;
82958
83038
  };
82959
- ComponentRenderer.prototype.dp = function (a) {
83039
+ ComponentRenderer.prototype.ds = function (a) {
82960
83040
  };
82961
83041
  Object.defineProperty(ComponentRenderer.prototype, "allowNullForRemove", {
82962
83042
  get: function () {
@@ -82968,23 +83048,23 @@
82968
83048
  enumerable: false,
82969
83049
  configurable: true
82970
83050
  });
82971
- ComponentRenderer.prototype.dm = function (a, b, c, d, e, f) {
83051
+ ComponentRenderer.prototype.dq = function (a, b, c, d, e, f) {
82972
83052
  var g = new JsonDictionaryParser();
82973
83053
  var h = g.parse(a);
82974
83054
  var i = new DescriptionSerializer();
82975
83055
  i.h = this.isProceedOnErrorEnabled;
82976
- i.g = this.as();
83056
+ i.g = this.at();
82977
83057
  var j = null;
82978
83058
  if (typeCast(JsonDictionaryObject.$, h) !== null) {
82979
83059
  var k = h;
82980
83060
  if (k.g("skipAlterDataCasing")) {
82981
83061
  var l = k.item("skipAlterDataCasing");
82982
83062
  if (l.value) {
82983
- this.dp(true);
83063
+ this.ds(true);
82984
83064
  }
82985
83065
  }
82986
83066
  else {
82987
- this.dp(false);
83067
+ this.ds(false);
82988
83068
  }
82989
83069
  var m = null;
82990
83070
  if (k.g("animationIdleRef") || k.g("hasAnimations")) {
@@ -83011,7 +83091,7 @@
83011
83091
  }
83012
83092
  j = u;
83013
83093
  var v = false;
83014
- var w = this.bj();
83094
+ var w = this.bl();
83015
83095
  if (w != null) {
83016
83096
  v = true;
83017
83097
  }
@@ -83031,7 +83111,7 @@
83031
83111
  continue;
83032
83112
  }
83033
83113
  if (f) {
83034
- if (!this.bb.containsKey(u)) {
83114
+ if (!this.bc.containsKey(u)) {
83035
83115
  var z = null;
83036
83116
  if (this.isProceedOnErrorEnabled) {
83037
83117
  try {
@@ -83044,21 +83124,21 @@
83044
83124
  else {
83045
83125
  z = i.d(this.context, t, v, w, true);
83046
83126
  }
83047
- this.ea(z.result, u, d, true, false, m, n);
83127
+ this.ee(z.result, u, d, true, false, m, n);
83048
83128
  m = null;
83049
83129
  var ab = c(s);
83050
- var ac = this.bb.item(u);
83051
- this.dg(this.aw.item(u), ab, ac, u);
83130
+ var ac = this.bc.item(u);
83131
+ this.dj(this.ax.item(u), ab, ac, u);
83052
83132
  }
83053
83133
  }
83054
- this.ea(x.result, u, d, e, false, m, n);
83134
+ this.ee(x.result, u, d, e, false, m, n);
83055
83135
  m = null;
83056
83136
  }
83057
83137
  }
83058
83138
  }
83059
83139
  if (k.g("refs") && j != null) {
83060
83140
  var ad = k.item("refs");
83061
- var ae = this.ai(ad);
83141
+ var ae = this.aj(ad);
83062
83142
  if (!ae && typeCast(JsonDictionaryObject.$, ad) !== null) {
83063
83143
  var af = ad;
83064
83144
  var ag = af.e();
@@ -83075,7 +83155,7 @@
83075
83155
  this.provideRefValue(j, ai, am);
83076
83156
  }
83077
83157
  else {
83078
- var an = this.b5(aj);
83158
+ var an = this.b7(aj);
83079
83159
  this.provideRefValue(j, ai, an);
83080
83160
  }
83081
83161
  }
@@ -83083,19 +83163,19 @@
83083
83163
  }
83084
83164
  if (k.g("modules") && j != null) {
83085
83165
  var ao = k.item("modules");
83086
- this.af(ao);
83166
+ this.ag(ao);
83087
83167
  }
83088
83168
  if (k.g("strings") && j != null) {
83089
83169
  var ap = k.item("strings");
83090
- this.am(ap);
83170
+ this.an(ap);
83091
83171
  }
83092
83172
  if (k.g("onInit") && j != null) {
83093
83173
  var aq = k.item("onInit");
83094
- this.ag(aq);
83174
+ this.ah(aq);
83095
83175
  }
83096
83176
  if (k.g("onViewInit") && j != null) {
83097
83177
  var ar = k.item("onViewInit");
83098
- this.ah(ar);
83178
+ this.ai(ar);
83099
83179
  }
83100
83180
  }
83101
83181
  };
@@ -83113,45 +83193,61 @@
83113
83193
  this.provideRefValue(a, d, i);
83114
83194
  }
83115
83195
  else {
83116
- var j = this.b5(f);
83196
+ var j = this.b7(f);
83117
83197
  this.provideRefValue(a, d, j);
83118
83198
  }
83119
83199
  };
83120
83200
  ComponentRenderer.prototype.addMemberPathTransformer = function (a) {
83121
- this.be.add(a);
83201
+ this.bf.add(a);
83122
83202
  };
83123
83203
  ComponentRenderer.prototype.removeMemberPathTransformer = function (a) {
83124
- this.be.remove(a);
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);
83125
83211
  };
83126
- ComponentRenderer.prototype.bj = function () {
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;
83221
+ };
83222
+ ComponentRenderer.prototype.bl = function () {
83127
83223
  var _this = this;
83128
- if (this.be.count > 0) {
83224
+ if (this.bf.count > 0) {
83129
83225
  return function (a) {
83130
83226
  var b = a;
83131
- for (var c = 0; c < _this.be.count; c++) {
83132
- b = _this.be._inner[c](b);
83227
+ for (var c = 0; c < _this.bf.count; c++) {
83228
+ b = _this.bf._inner[c](b);
83133
83229
  }
83134
83230
  return b;
83135
83231
  };
83136
83232
  }
83137
83233
  return null;
83138
83234
  };
83139
- ComponentRenderer.prototype.ai = function (a) {
83235
+ ComponentRenderer.prototype.aj = function (a) {
83140
83236
  return false;
83141
83237
  };
83142
- ComponentRenderer.prototype.af = function (a) {
83238
+ ComponentRenderer.prototype.ag = function (a) {
83143
83239
  return false;
83144
83240
  };
83145
- ComponentRenderer.prototype.am = function (a) {
83241
+ ComponentRenderer.prototype.an = function (a) {
83146
83242
  return false;
83147
83243
  };
83148
- ComponentRenderer.prototype.ag = function (a) {
83244
+ ComponentRenderer.prototype.ah = function (a) {
83149
83245
  return false;
83150
83246
  };
83151
- ComponentRenderer.prototype.ah = function (a) {
83247
+ ComponentRenderer.prototype.ai = function (a) {
83152
83248
  return false;
83153
83249
  };
83154
- ComponentRenderer.prototype.cw = function (a, b, c) {
83250
+ ComponentRenderer.prototype.cy = function (a, b, c) {
83155
83251
  var d = a;
83156
83252
  if (c != null) {
83157
83253
  d = c.k(b);
@@ -83166,15 +83262,15 @@
83166
83262
  }
83167
83263
  return d;
83168
83264
  };
83169
- ComponentRenderer.prototype.dg = function (a, b, c, d) {
83265
+ ComponentRenderer.prototype.dj = function (a, b, c, d) {
83170
83266
  var e_3, _a;
83171
83267
  if (!c.b(b)) {
83172
- c.k(d, this.aw.item(d).g, b, this.aw.item(d), runOn(this, this.du), -1);
83268
+ c.k(d, this.ax.item(d).g, b, this.ax.item(d), runOn(this, this.dx), -1);
83173
83269
  }
83174
83270
  try {
83175
83271
  for (var _b = tslib.__values(fromEnum(a.f())), _c = _b.next(); !_c.done; _c = _b.next()) {
83176
83272
  var e = _c.value;
83177
- this.dh(this.cw(e.c, ComponentRenderer.platform, e.a), e.b, b, c, d, a.g);
83273
+ this.dk(this.cy(e.c, ComponentRenderer.platform, e.a), e.b, b, c, d, a.g);
83178
83274
  }
83179
83275
  }
83180
83276
  catch (e_3_1) {
@@ -83191,19 +83287,19 @@
83191
83287
  }
83192
83288
  }
83193
83289
  };
83194
- ComponentRenderer.prototype.dh = function (a, b, c, d, e, f) {
83290
+ ComponentRenderer.prototype.dk = function (a, b, c, d, e, f) {
83195
83291
  var e_4, _a;
83196
83292
  var _this = this;
83197
83293
  if (typeCast(DescriptionTreeNode.$, b) !== null) {
83198
83294
  var g = b;
83199
83295
  var h = this.adapter.getPropertyValue(c, a);
83200
83296
  if (!d.b(h) && !d.a(g.g)) {
83201
- d.k(e, g.g, h, g, runOn(this, this.du), f);
83297
+ d.k(e, g.g, h, g, runOn(this, this.dx), f);
83202
83298
  }
83203
83299
  try {
83204
83300
  for (var _b = tslib.__values(fromEnum(g.f())), _c = _b.next(); !_c.done; _c = _b.next()) {
83205
83301
  var i = _c.value;
83206
- this.dh(a + "." + this.cw(i.c, ComponentRenderer.platform, i.a), i.b, c, d, e, g.g);
83302
+ this.dk(a + "." + this.cy(i.c, ComponentRenderer.platform, i.a), i.b, c, d, e, g.g);
83207
83303
  }
83208
83304
  }
83209
83305
  catch (e_4_1) {
@@ -83240,12 +83336,12 @@
83240
83336
  if (j_1.containsKey(k_1)) {
83241
83337
  var s = j_1.item(k_1);
83242
83338
  if (!d.b(r) && !d.a(s.g)) {
83243
- d.k(e, s.g, r, s, runOn(_this, _this.du), f);
83339
+ d.k(e, s.g, r, s, runOn(_this, _this.dx), f);
83244
83340
  }
83245
83341
  try {
83246
83342
  for (var _b = tslib.__values(fromEnum(s.f())), _c = _b.next(); !_c.done; _c = _b.next()) {
83247
83343
  var t = _c.value;
83248
- _this.dh(a + "." + t.c, t.b, c, d, e, s.g);
83344
+ _this.dk(a + "." + t.c, t.b, c, d, e, s.g);
83249
83345
  }
83250
83346
  }
83251
83347
  catch (e_5_1) {
@@ -83265,18 +83361,18 @@
83265
83361
  k_1++;
83266
83362
  });
83267
83363
  if (l > 0 && k_1 == 0) {
83268
- var r_1 = this.c1(a);
83364
+ var r_1 = this.c3(a);
83269
83365
  this.adapter.forPropertyValueItem(c, r_1, function (s) {
83270
83366
  var e_6, _a;
83271
83367
  if (j_1.containsKey(k_1)) {
83272
83368
  var t = j_1.item(k_1);
83273
83369
  if (!d.b(s) && !d.a(t.g)) {
83274
- d.k(e, t.g, s, t, runOn(_this, _this.du), f);
83370
+ d.k(e, t.g, s, t, runOn(_this, _this.dx), f);
83275
83371
  }
83276
83372
  try {
83277
83373
  for (var _b = tslib.__values(fromEnum(t.f())), _c = _b.next(); !_c.done; _c = _b.next()) {
83278
83374
  var u = _c.value;
83279
- _this.dh(r_1 + "." + u.c, u.b, c, d, e, t.g);
83375
+ _this.dk(r_1 + "." + u.c, u.b, c, d, e, t.g);
83280
83376
  }
83281
83377
  }
83282
83378
  catch (e_6_1) {
@@ -83298,7 +83394,7 @@
83298
83394
  }
83299
83395
  }
83300
83396
  };
83301
- ComponentRenderer.prototype.c1 = function (a) {
83397
+ ComponentRenderer.prototype.c3 = function (a) {
83302
83398
  var b = a.lastIndexOf('.');
83303
83399
  var c = null;
83304
83400
  var d = a;
@@ -83306,24 +83402,24 @@
83306
83402
  c = a.substr(0, b);
83307
83403
  d = a.substr(b + 1);
83308
83404
  }
83309
- d = "actual" + this.cy(d);
83405
+ d = "actual" + this.c0(d);
83310
83406
  if (c != null) {
83311
83407
  return c + "." + d;
83312
83408
  }
83313
83409
  return d;
83314
83410
  };
83315
- ComponentRenderer.prototype.cy = function (a) {
83411
+ ComponentRenderer.prototype.c0 = function (a) {
83316
83412
  return a.substr(0, 1).toUpperCase() + a.substr(1);
83317
83413
  };
83318
83414
  ComponentRenderer.prototype.a = function (a) {
83319
83415
  var b = new Array(a.items.length);
83320
83416
  for (var c = 0; c < a.items.length; c++) {
83321
- var d = this.b5(a.items[c]);
83417
+ var d = this.b7(a.items[c]);
83322
83418
  b[c] = d;
83323
83419
  }
83324
83420
  return b;
83325
83421
  };
83326
- ComponentRenderer.prototype.b5 = function (a) {
83422
+ ComponentRenderer.prototype.b7 = function (a) {
83327
83423
  if (a == null) {
83328
83424
  return null;
83329
83425
  }
@@ -83333,7 +83429,7 @@
83333
83429
  for (var d = 0; d < c.length; d++) {
83334
83430
  var key_ = c[d];
83335
83431
  if (typeCast(JsonDictionaryObject.$, a.item(key_)) !== null) {
83336
- var val_ = this.b5(a.item(key_));
83432
+ var val_ = this.b7(a.item(key_));
83337
83433
  dict_[key_] = val_;
83338
83434
  }
83339
83435
  else if (typeCast(JsonDictionaryArray.$, a.item(key_)) !== null) {
@@ -83347,51 +83443,51 @@
83347
83443
  }
83348
83444
  return dict_;
83349
83445
  };
83350
- Object.defineProperty(ComponentRenderer.prototype, "bb", {
83446
+ Object.defineProperty(ComponentRenderer.prototype, "bc", {
83351
83447
  get: function () {
83352
- return this.a7;
83448
+ return this.a8;
83353
83449
  },
83354
83450
  enumerable: false,
83355
83451
  configurable: true
83356
83452
  });
83357
83453
  ComponentRenderer.prototype.cleanup = function (a, b) {
83358
- this.bl = a;
83359
- this.ea(null, a, false, false, b, null, 0);
83454
+ this.bn = a;
83455
+ this.ee(null, a, false, false, b, null, 0);
83360
83456
  };
83361
83457
  ComponentRenderer.prototype.render = function (a, b) {
83362
- this.ea(a, b, false, false, false, null, 0);
83458
+ this.ee(a, b, false, false, false, null, 0);
83363
83459
  };
83364
- ComponentRenderer.prototype.ea = function (a, b, c, d, e, f, g) {
83460
+ ComponentRenderer.prototype.ee = function (a, b, c, d, e, f, g) {
83365
83461
  var _this = this;
83366
- if (!this.a7.containsKey(b)) {
83367
- this.a7.item(b, new ContainerState());
83368
- this.a7.item(b).i = b;
83369
- }
83370
- this.a1.item(b, a);
83371
- this.a2.item(b, c);
83372
- this.a3.item(b, d);
83373
- this.a0.item(b, e);
83374
- this.ay.item(b, f);
83375
- this.az.item(b, g);
83376
- this.dq(b, function () { return _this.d8(b); });
83377
- };
83378
- ComponentRenderer.prototype.dq = function (a, b) {
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) {
83379
83475
  this.adapter.onUIThread(a, b);
83380
83476
  };
83381
- ComponentRenderer.prototype.d8 = function (a) {
83477
+ ComponentRenderer.prototype.ec = function (a) {
83382
83478
  var e_7, _a, e_8, _b, e_9, _c, e_10, _d;
83383
83479
  var _this = this;
83384
- if (this.a1.containsKey(a)) {
83385
- var b = this.a2.containsKey(a) ? this.a2.item(a) : false;
83386
- var c = this.a3.containsKey(a) ? this.a3.item(a) : false;
83387
- var d = this.a1.item(a);
83388
- var e = this.ay.containsKey(a) ? this.ay.item(a) : null;
83389
- var f = this.az.containsKey(a) ? this.az.item(a) : 0;
83390
- this.a1.removeItem(a);
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);
83391
83487
  var g = DescriptionTreeBuilder.createTreeWithOptions(this.context, d, this.preserveKeyOrder);
83392
83488
  var h = null;
83393
- if (this.aw.containsKey(a)) {
83394
- h = this.aw.item(a);
83489
+ if (this.ax.containsKey(a)) {
83490
+ h = this.ax.item(a);
83395
83491
  }
83396
83492
  var i = DescriptionTreeReconciler.c(h, g, b);
83397
83493
  if (!c && b) {
@@ -83404,21 +83500,21 @@
83404
83500
  }
83405
83501
  if (c) {
83406
83502
  var k = DescriptionTreeReconciler.a(h, i);
83407
- if (!this.a7.containsKey(a)) {
83408
- this.a7.addItem(a, ((function () {
83503
+ if (!this.a8.containsKey(a)) {
83504
+ this.a8.addItem(a, ((function () {
83409
83505
  var $ret = new ContainerState();
83410
83506
  $ret.i = a;
83411
83507
  return $ret;
83412
83508
  })()));
83413
83509
  }
83414
- var l_1 = this.a7.item(a);
83510
+ var l_1 = this.a8.item(a);
83415
83511
  if (k.a.count > 0) {
83416
83512
  try {
83417
83513
  for (var _e = tslib.__values(fromEnum(k.a)), _f = _e.next(); !_f.done; _f = _e.next()) {
83418
83514
  var m = _f.value;
83419
83515
  if (l_1.a(m)) {
83420
83516
  var n = l_1.j(m);
83421
- this.de(a, n, l_1);
83517
+ this.dh(a, n, l_1);
83422
83518
  }
83423
83519
  }
83424
83520
  }
@@ -83440,14 +83536,14 @@
83440
83536
  try {
83441
83537
  for (var _g = tslib.__values(fromEnum(k.c)), _h = _g.next(); !_h.done; _h = _g.next()) {
83442
83538
  var o = _h.value;
83443
- var p = this.cc(a, l_1, o);
83539
+ var p = this.ce(a, l_1, o);
83444
83540
  var q = this.adapter.getPropertyValue(p, o.j);
83445
83541
  if (q != null) {
83446
83542
  if (!l_1.b(q)) {
83447
83543
  var r = o.g;
83448
83544
  if (typeCast(DescriptionTreeNode.$, r) !== null) {
83449
83545
  var s = r.g;
83450
- l_1.k(a, s, q, r, runOn(this, this.du), o.c.g);
83546
+ l_1.k(a, s, q, r, runOn(this, this.dx), o.c.g);
83451
83547
  }
83452
83548
  }
83453
83549
  }
@@ -83477,7 +83573,7 @@
83477
83573
  var v = t.g;
83478
83574
  if (typeCast(DescriptionTreeNode.$, v) !== null) {
83479
83575
  var w = v.g;
83480
- this.aw.item(a, v);
83576
+ this.ax.item(a, v);
83481
83577
  }
83482
83578
  }
83483
83579
  }
@@ -83516,7 +83612,7 @@
83516
83612
  if (z.count == 0) {
83517
83613
  return "continue";
83518
83614
  }
83519
- var ad = this_1.cc(a, l_1, x);
83615
+ var ad = this_1.ce(a, l_1, x);
83520
83616
  var ae = this_1.adapter.getPropertyValue(ad, x.j);
83521
83617
  if (ae != null) {
83522
83618
  var af_1 = 0;
@@ -83526,7 +83622,7 @@
83526
83622
  var ah = z.item(_this.adapter.getPropertyValue(ag, "Name").toString());
83527
83623
  if (typeCast(DescriptionTreeNode.$, ah) !== null) {
83528
83624
  var ai = ah.g;
83529
- l_1.k(a, ai, ag, ah, runOn(_this, _this.du), x.c.g);
83625
+ l_1.k(a, ai, ag, ah, runOn(_this, _this.dx), x.c.g);
83530
83626
  }
83531
83627
  }
83532
83628
  }
@@ -83557,11 +83653,11 @@
83557
83653
  }
83558
83654
  }
83559
83655
  else {
83560
- this.aw.item(a, g);
83656
+ this.ax.item(a, g);
83561
83657
  }
83562
83658
  if (!c) {
83563
- if (e != null && this.v(e)) {
83564
- var ag_1 = this.ba.item(e);
83659
+ if (e != null && this.w(e)) {
83660
+ var ag_1 = this.bb.item(e);
83565
83661
  if (ag_1 != null) {
83566
83662
  var ah = GlobalAnimationState.d.i();
83567
83663
  if (f > 0) {
@@ -83572,56 +83668,56 @@
83572
83668
  }
83573
83669
  }
83574
83670
  }
83575
- this.d9(a, i);
83671
+ this.ed(a, i);
83576
83672
  }
83577
- if (this.a0.item(a)) {
83578
- this.d6(a);
83579
- if (this.a7.containsKey(a)) {
83580
- this.a7.removeItem(a);
83673
+ if (this.a1.item(a)) {
83674
+ this.ea(a);
83675
+ if (this.a8.containsKey(a)) {
83676
+ this.a8.removeItem(a);
83581
83677
  }
83582
83678
  }
83583
83679
  }
83584
- if (this.bl != null) {
83585
- if (this.a1.containsKey(this.bl)) {
83586
- this.a1.removeItem(this.bl);
83680
+ if (this.bn != null) {
83681
+ if (this.a2.containsKey(this.bn)) {
83682
+ this.a2.removeItem(this.bn);
83587
83683
  }
83588
- if (this.a2.containsKey(this.bl)) {
83589
- this.a2.removeItem(this.bl);
83684
+ if (this.a3.containsKey(this.bn)) {
83685
+ this.a3.removeItem(this.bn);
83590
83686
  }
83591
- if (this.a3.containsKey(this.bl)) {
83592
- this.a3.removeItem(this.bl);
83687
+ if (this.a4.containsKey(this.bn)) {
83688
+ this.a4.removeItem(this.bn);
83593
83689
  }
83594
- if (this.a0.containsKey(this.bl)) {
83595
- this.a0.removeItem(this.bl);
83690
+ if (this.a1.containsKey(this.bn)) {
83691
+ this.a1.removeItem(this.bn);
83596
83692
  }
83597
- if (this.aw.containsKey(this.bl)) {
83598
- this.aw.removeItem(this.bl);
83693
+ if (this.ax.containsKey(this.bn)) {
83694
+ this.ax.removeItem(this.bn);
83599
83695
  }
83600
- if (this.a4.containsKey(this.bl)) {
83601
- this.a4.removeItem(this.bl);
83696
+ if (this.a5.containsKey(this.bn)) {
83697
+ this.a5.removeItem(this.bn);
83602
83698
  }
83603
- if (this.ax.containsKey(this.bl)) {
83604
- this.ax.removeItem(this.bl);
83699
+ if (this.ay.containsKey(this.bn)) {
83700
+ this.ay.removeItem(this.bn);
83605
83701
  }
83606
- if (this.av.containsKey(this.bl)) {
83607
- this.av.removeItem(this.bl);
83702
+ if (this.aw.containsKey(this.bn)) {
83703
+ this.aw.removeItem(this.bn);
83608
83704
  }
83609
- if (this.az.containsKey(this.bl)) {
83610
- this.az.removeItem(this.bl);
83705
+ if (this.a0.containsKey(this.bn)) {
83706
+ this.a0.removeItem(this.bn);
83611
83707
  }
83612
- if (this.ay.containsKey(this.bl)) {
83613
- this.ay.removeItem(this.bl);
83708
+ if (this.az.containsKey(this.bn)) {
83709
+ this.az.removeItem(this.bn);
83614
83710
  }
83615
- this.bl = null;
83711
+ this.bn = null;
83616
83712
  }
83617
83713
  };
83618
83714
  ComponentRenderer.prototype.getTargetValue = function (a, b, c) {
83619
- var d = this.context.getMetadata(a, this.cy(b));
83715
+ var d = this.context.getMetadata(a, this.c0(b));
83620
83716
  var e = d.k(ComponentRenderer.platform);
83621
83717
  return this.adapter.getPropertyValue(c, e);
83622
83718
  };
83623
83719
  ComponentRenderer.prototype.setTargetValue = function (a, b, c, d, e) {
83624
- var f = this.context.getMetadata(a, this.cy(b));
83720
+ var f = this.context.getMetadata(a, this.c0(b));
83625
83721
  var g = f.k(ComponentRenderer.platform);
83626
83722
  this.adapter.setPropertyValue(c, g, f, d, e, null);
83627
83723
  };
@@ -83629,15 +83725,15 @@
83629
83725
  var _this = this;
83630
83726
  var d = new JsonDictionaryParser();
83631
83727
  var e = d.parse(b);
83632
- if (!this.a7.containsKey(a)) {
83633
- this.a7.item(a, new ContainerState());
83634
- this.a7.item(a).i = a;
83728
+ if (!this.a8.containsKey(a)) {
83729
+ this.a8.item(a, new ContainerState());
83730
+ this.a8.item(a).i = a;
83635
83731
  }
83636
- var f = this.a7.item(a);
83732
+ var f = this.a8.item(a);
83637
83733
  var g = new DescriptionSerializer();
83638
83734
  g.h = this.isProceedOnErrorEnabled;
83639
- g.g = this.as();
83640
- var h = this.aw.item(a);
83735
+ g.g = this.at();
83736
+ var h = this.ax.item(a);
83641
83737
  var i = null;
83642
83738
  var j = new List$1(Base.$, 0);
83643
83739
  var k = new List$1(TypeDescriptionMetadata.$, 0);
@@ -83645,15 +83741,15 @@
83645
83741
  var l = null;
83646
83742
  var m = e;
83647
83743
  if (m.g("targetRef")) {
83648
- l = this.cu(m, "targetRef");
83744
+ l = this.cw(m, "targetRef");
83649
83745
  }
83650
83746
  var n = null;
83651
83747
  if (m.g("methodName")) {
83652
- n = this.cu(m, "methodName");
83748
+ n = this.cw(m, "methodName");
83653
83749
  }
83654
83750
  if (l != null) {
83655
- if (this.a8.containsKey(l)) {
83656
- i = this.a8.item(l);
83751
+ if (this.a9.containsKey(l)) {
83752
+ i = this.a9.item(l);
83657
83753
  }
83658
83754
  }
83659
83755
  else {
@@ -83663,16 +83759,16 @@
83663
83759
  var o = m.item("args");
83664
83760
  for (var p = 0; p < o.items.length; p++) {
83665
83761
  var q = o.items[p];
83666
- var r = this.g(h, q, g);
83762
+ var r = this.h(h, q, g);
83667
83763
  var s = null;
83668
83764
  if (typeCast(DescriptionTreeNode.$, r.g) !== null && r.g.i == "EmbeddedRef") {
83669
- s = this.ce(a, r.g);
83765
+ s = this.cg(a, r.g);
83670
83766
  }
83671
83767
  else {
83672
- s = this.b9(r, a, f);
83768
+ s = this.cb(r, a, f);
83673
83769
  }
83674
83770
  if (r.d.knownType == 8 && r.d.specificType == "string") {
83675
- s = this.bu(r.d.specificExternalType, s, r.d);
83771
+ s = this.bw(r.d.specificExternalType, s, r.d);
83676
83772
  }
83677
83773
  j.add1(s);
83678
83774
  k.add(r.d);
@@ -83681,16 +83777,16 @@
83681
83777
  var t_1 = null;
83682
83778
  if (m.g("return")) {
83683
83779
  var u = m.item("return");
83684
- var v = this.g(h, u, g);
83780
+ var v = this.h(h, u, g);
83685
83781
  t_1 = v.d;
83686
83782
  }
83687
83783
  this.adapter.executeMethod(i, n, j.toArray(), k.toArray(), function (w) {
83688
- var x = _this.cz(w, t_1);
83784
+ var x = _this.c1(w, t_1);
83689
83785
  c(x);
83690
83786
  });
83691
83787
  }
83692
83788
  };
83693
- ComponentRenderer.prototype.ce = function (a, b) {
83789
+ ComponentRenderer.prototype.cg = function (a, b) {
83694
83790
  if (b.i == "EmbeddedRef") {
83695
83791
  var c = "uuid";
83696
83792
  var d = null;
@@ -83703,19 +83799,19 @@
83703
83799
  }
83704
83800
  }
83705
83801
  if (d != null) {
83706
- for (var f = 0; f < this.bd.count; f++) {
83707
- var g = this.bd._inner[f](a, c, d);
83802
+ for (var f = 0; f < this.be.count; f++) {
83803
+ var g = this.be._inner[f](a, c, d);
83708
83804
  if (g != null) {
83709
83805
  return g;
83710
83806
  }
83711
83807
  }
83712
83808
  if (c == "name") {
83713
83809
  var h = d;
83714
- if (this.a8.containsKey(h)) {
83715
- return this.a8.item(h);
83810
+ if (this.a9.containsKey(h)) {
83811
+ return this.a9.item(h);
83716
83812
  }
83717
- if (this.ba.containsKey(h)) {
83718
- return this.ba.item(h);
83813
+ if (this.bb.containsKey(h)) {
83814
+ return this.bb.item(h);
83719
83815
  }
83720
83816
  }
83721
83817
  return null;
@@ -83723,7 +83819,7 @@
83723
83819
  }
83724
83820
  return null;
83725
83821
  };
83726
- ComponentRenderer.bi = function (a) {
83822
+ ComponentRenderer.bk = function (a) {
83727
83823
  if (typeCast(Date_$type, a) !== null) {
83728
83824
  return a.getTime();
83729
83825
  }
@@ -83732,7 +83828,7 @@
83732
83828
  }
83733
83829
  return a;
83734
83830
  };
83735
- ComponentRenderer.prototype.cz = function (a, b) {
83831
+ ComponentRenderer.prototype.c1 = function (a, b) {
83736
83832
  var _this = this;
83737
83833
  var c = new JsonDictionaryObject();
83738
83834
  c.item("knownType", ((function () {
@@ -83771,7 +83867,7 @@
83771
83867
  c.item("result", ((function () {
83772
83868
  var $ret = new JsonDictionaryValue();
83773
83869
  $ret.e = 0;
83774
- $ret.value = ComponentRenderer.bi(a);
83870
+ $ret.value = ComponentRenderer.bk(a);
83775
83871
  return $ret;
83776
83872
  })()));
83777
83873
  break;
@@ -83795,7 +83891,7 @@
83795
83891
  c.item("result", ((function () {
83796
83892
  var $ret = new JsonDictionaryValue();
83797
83893
  $ret.e = 2;
83798
- $ret.value = _this.cf(a);
83894
+ $ret.value = _this.ch(a);
83799
83895
  return $ret;
83800
83896
  })()));
83801
83897
  break;
@@ -83803,7 +83899,7 @@
83803
83899
  c.item("result", ((function () {
83804
83900
  var $ret = new JsonDictionaryValue();
83805
83901
  $ret.e = 2;
83806
- $ret.value = _this.ch(a);
83902
+ $ret.value = _this.cj(a);
83807
83903
  return $ret;
83808
83904
  })()));
83809
83905
  break;
@@ -83811,7 +83907,7 @@
83811
83907
  c.item("result", ((function () {
83812
83908
  var $ret = new JsonDictionaryValue();
83813
83909
  $ret.e = 2;
83814
- $ret.value = _this.cg(a);
83910
+ $ret.value = _this.ci(a);
83815
83911
  return $ret;
83816
83912
  })()));
83817
83913
  break;
@@ -83830,19 +83926,19 @@
83830
83926
  c.item("result", ((function () {
83831
83927
  var $ret = new JsonDictionaryValue();
83832
83928
  $ret.e = 2;
83833
- $ret.value = _this.ck(a);
83929
+ $ret.value = _this.cm(a);
83834
83930
  return $ret;
83835
83931
  })()));
83836
83932
  break;
83837
83933
  case 12:
83838
- c.item("result", this.cm(a));
83934
+ c.item("result", this.co(a));
83839
83935
  break;
83840
83936
  case 13: break;
83841
83937
  case 14:
83842
83938
  c.item("result", ((function () {
83843
83939
  var $ret = new JsonDictionaryValue();
83844
83940
  $ret.e = 2;
83845
- $ret.value = _this.cl(a);
83941
+ $ret.value = _this.cn(a);
83846
83942
  return $ret;
83847
83943
  })()));
83848
83944
  break;
@@ -83851,7 +83947,7 @@
83851
83947
  c.item("result", ((function () {
83852
83948
  var $ret = new JsonDictionaryValue();
83853
83949
  $ret.e = 2;
83854
- $ret.value = _this.ci(a);
83950
+ $ret.value = _this.ck(a);
83855
83951
  return $ret;
83856
83952
  })()));
83857
83953
  break;
@@ -83863,7 +83959,7 @@
83863
83959
  c.item("result", ((function () {
83864
83960
  var $ret = new JsonDictionaryValue();
83865
83961
  $ret.e = 2;
83866
- $ret.value = _this.cn(a);
83962
+ $ret.value = _this.cp(a);
83867
83963
  return $ret;
83868
83964
  })()));
83869
83965
  break;
@@ -83872,41 +83968,41 @@
83872
83968
  c.item("result", ((function () {
83873
83969
  var $ret = new JsonDictionaryValue();
83874
83970
  $ret.e = 2;
83875
- $ret.value = _this.cj(a);
83971
+ $ret.value = _this.cl(a);
83876
83972
  return $ret;
83877
83973
  })()));
83878
83974
  break;
83879
83975
  }
83880
83976
  return c.b();
83881
83977
  };
83882
- ComponentRenderer.prototype.cj = function (a) {
83978
+ ComponentRenderer.prototype.cl = function (a) {
83883
83979
  return this.adapter.serializeDoubleCollection(a);
83884
83980
  };
83885
- ComponentRenderer.prototype.cn = function (a) {
83981
+ ComponentRenderer.prototype.cp = function (a) {
83886
83982
  return this.adapter.serializeTimespan(a);
83887
83983
  };
83888
- ComponentRenderer.prototype.ci = function (a) {
83984
+ ComponentRenderer.prototype.ck = function (a) {
83889
83985
  return this.adapter.serializeColorCollection(a);
83890
83986
  };
83891
- ComponentRenderer.prototype.cl = function (a) {
83987
+ ComponentRenderer.prototype.cn = function (a) {
83892
83988
  return this.adapter.serializeRect(a);
83893
83989
  };
83894
- ComponentRenderer.prototype.cm = function (a) {
83990
+ ComponentRenderer.prototype.co = function (a) {
83895
83991
  return this.adapter.serializeSize(a);
83896
83992
  };
83897
- ComponentRenderer.prototype.ck = function (a) {
83993
+ ComponentRenderer.prototype.cm = function (a) {
83898
83994
  return this.adapter.serializePoint(a);
83899
83995
  };
83900
- ComponentRenderer.prototype.cg = function (a) {
83996
+ ComponentRenderer.prototype.ci = function (a) {
83901
83997
  return this.adapter.serializeBrushCollection(a);
83902
83998
  };
83903
- ComponentRenderer.prototype.ch = function (a) {
83999
+ ComponentRenderer.prototype.cj = function (a) {
83904
84000
  return this.adapter.serializeColor(a);
83905
84001
  };
83906
- ComponentRenderer.prototype.cf = function (a) {
84002
+ ComponentRenderer.prototype.ch = function (a) {
83907
84003
  return this.adapter.serializeBrush(a);
83908
84004
  };
83909
- ComponentRenderer.prototype.g = function (a, b, c) {
84005
+ ComponentRenderer.prototype.h = function (a, b, c) {
83910
84006
  var d = new DescriptionTreeAction();
83911
84007
  d.a = 0;
83912
84008
  d.c = a;
@@ -83914,20 +84010,20 @@
83914
84010
  var e = new TypeDescriptionMetadata();
83915
84011
  e.propertyName = "*argument";
83916
84012
  var f;
83917
- var g = this.cu(b, "knownType");
84013
+ var g = this.cw(b, "knownType");
83918
84014
  var h = EnumUtil.tryParse$1(TypeDescriptionWellKnownType_$type, g, true, f);
83919
84015
  f = h.p2;
83920
84016
  e.knownType = f;
83921
- e.specificExternalType = this.cu(b, "specificExternalType");
83922
- e.specificType = this.cu(b, "specificType");
83923
- e.collectionElementType = this.cu(b, "collectionElementType");
84017
+ e.specificExternalType = this.cw(b, "specificExternalType");
84018
+ e.specificType = this.cw(b, "specificType");
84019
+ e.collectionElementType = this.cw(b, "collectionElementType");
83924
84020
  d.d = e;
83925
84021
  var i = null;
83926
- i = this.b8(e, b, c);
84022
+ i = this.ca(e, b, c);
83927
84023
  d.g = i;
83928
84024
  return d;
83929
84025
  };
83930
- ComponentRenderer.prototype.cu = function (a, b) {
84026
+ ComponentRenderer.prototype.cw = function (a, b) {
83931
84027
  if (typeCast(JsonDictionaryObject.$, a) !== null) {
83932
84028
  var c = a;
83933
84029
  if (c.g(b)) {
@@ -83936,17 +84032,17 @@
83936
84032
  }
83937
84033
  return null;
83938
84034
  };
83939
- ComponentRenderer.prototype.b8 = function (a, b, c) {
84035
+ ComponentRenderer.prototype.ca = function (a, b, c) {
83940
84036
  if (typeCast(JsonDictionaryObject.$, b) !== null) {
83941
84037
  var d = b;
83942
84038
  if (d.g("value")) {
83943
84039
  var e = (d.item("value")) != null ? (d.item("value")) : null;
83944
- return this.b4(a.knownType, a.specificType, a.specificExternalType, a.collectionElementType, e, c);
84040
+ return this.b6(a.knownType, a.specificType, a.specificExternalType, a.collectionElementType, e, c);
83945
84041
  }
83946
84042
  }
83947
84043
  return null;
83948
84044
  };
83949
- ComponentRenderer.prototype.b4 = function (a, b, c, d, e, f) {
84045
+ ComponentRenderer.prototype.b6 = function (a, b, c, d, e, f) {
83950
84046
  if (typeCast(JsonDictionaryObject.$, e) !== null) {
83951
84047
  var g = e;
83952
84048
  if (g.g("type") || g.g("refType")) {
@@ -83989,7 +84085,7 @@
83989
84085
  var r = void 0;
83990
84086
  var s = void 0;
83991
84087
  var t = void 0;
83992
- var u = this.dj(o, n, b, c, q, r, s, t);
84088
+ var u = this.dm(o, n, b, c, q, r, s, t);
83993
84089
  q = u.p4;
83994
84090
  r = u.p5;
83995
84091
  s = u.p6;
@@ -83997,7 +84093,7 @@
83997
84093
  if (m.items != null) {
83998
84094
  for (var v = 0; v < m.items.length; v++) {
83999
84095
  var w = m.items[v];
84000
- var x = this.b4(q, r, s, t, w, f);
84096
+ var x = this.b6(q, r, s, t, w, f);
84001
84097
  p[v] = x;
84002
84098
  }
84003
84099
  }
@@ -84008,7 +84104,7 @@
84008
84104
  }
84009
84105
  return e;
84010
84106
  };
84011
- ComponentRenderer.prototype.dj = function (a, b, c, d, e, f, g, h) {
84107
+ ComponentRenderer.prototype.dm = function (a, b, c, d, e, f, g, h) {
84012
84108
  if (a) {
84013
84109
  e = 8;
84014
84110
  f = b;
@@ -84097,41 +84193,45 @@
84097
84193
  };
84098
84194
  ComponentRenderer.prototype.resolveRefValue = function (a, b, c) {
84099
84195
  var _this = this;
84100
- this.dq(a, function () {
84101
- if (!_this.a7.containsKey(a)) {
84102
- _this.a7.addItem(a, ((function () {
84196
+ this.dt(a, function () {
84197
+ if (!_this.a8.containsKey(a)) {
84198
+ _this.a8.addItem(a, ((function () {
84103
84199
  var $ret = new ContainerState();
84104
84200
  $ret.i = a;
84105
84201
  return $ret;
84106
84202
  })()));
84107
84203
  }
84108
- var d = _this.a7.item(a);
84204
+ var d = _this.a8.item(a);
84109
84205
  if (!_this.hasRef(b)) {
84110
- if (_this.a8.containsKey(b)) {
84111
- c(_this.a8.item(b));
84206
+ if (_this.a9.containsKey(b)) {
84207
+ c(_this.a9.item(b));
84208
+ return;
84209
+ }
84210
+ if (!_this.y(a)) {
84211
+ _this.queueForIdle(a, function () { return _this.resolveRefValue(a, b, c); });
84112
84212
  return;
84113
84213
  }
84114
84214
  c(null);
84115
84215
  return;
84116
84216
  }
84117
- var e = _this.f(b);
84118
- var f = _this.cb(e);
84217
+ var e = _this.g(b);
84218
+ var f = _this.cd(e);
84119
84219
  c(f);
84120
84220
  });
84121
84221
  };
84122
84222
  ComponentRenderer.prototype.resolveRefName = function (a, b, c) {
84123
84223
  var _this = this;
84124
- this.dq(a, function () {
84125
- if (!_this.a7.containsKey(a)) {
84126
- _this.a7.addItem(a, ((function () {
84224
+ this.dt(a, function () {
84225
+ if (!_this.a8.containsKey(a)) {
84226
+ _this.a8.addItem(a, ((function () {
84127
84227
  var $ret = new ContainerState();
84128
84228
  $ret.i = a;
84129
84229
  return $ret;
84130
84230
  })()));
84131
84231
  }
84132
- var d = _this.a7.item(a);
84133
- if (b != null && _this.a5.containsKey(b)) {
84134
- c(_this.a5.item(b));
84232
+ var d = _this.a8.item(a);
84233
+ if (b != null && _this.a6.containsKey(b)) {
84234
+ c(_this.a6.item(b));
84135
84235
  return;
84136
84236
  }
84137
84237
  c(null);
@@ -84139,40 +84239,40 @@
84139
84239
  };
84140
84240
  ComponentRenderer.prototype.provideRefValue = function (a, b, c) {
84141
84241
  var _this = this;
84142
- this.dq(a, function () {
84143
- if (!_this.a7.containsKey(a)) {
84144
- _this.a7.addItem(a, ((function () {
84242
+ this.dt(a, function () {
84243
+ if (!_this.a8.containsKey(a)) {
84244
+ _this.a8.addItem(a, ((function () {
84145
84245
  var $ret = new ContainerState();
84146
84246
  $ret.i = a;
84147
84247
  return $ret;
84148
84248
  })()));
84149
84249
  }
84150
- var d = _this.a7.item(a);
84151
- _this.du(a, b, c, true);
84250
+ var d = _this.a8.item(a);
84251
+ _this.dx(a, b, c, true);
84152
84252
  });
84153
84253
  };
84154
84254
  ComponentRenderer.prototype.removeRefValue = function (a, b) {
84155
84255
  var _this = this;
84156
- this.dq(a, function () {
84157
- if (!_this.a7.containsKey(a)) {
84158
- _this.a7.addItem(a, ((function () {
84256
+ this.dt(a, function () {
84257
+ if (!_this.a8.containsKey(a)) {
84258
+ _this.a8.addItem(a, ((function () {
84159
84259
  var $ret = new ContainerState();
84160
84260
  $ret.i = a;
84161
84261
  return $ret;
84162
84262
  })()));
84163
84263
  }
84164
- var c = _this.a7.item(a);
84264
+ var c = _this.a8.item(a);
84165
84265
  _this.removeRefValueCore(a, b, true);
84166
84266
  });
84167
84267
  };
84168
- ComponentRenderer.prototype.d6 = function (a) {
84268
+ ComponentRenderer.prototype.ea = function (a) {
84169
84269
  var e_11, _a;
84170
- var b = this.a7.item(a);
84270
+ var b = this.a8.item(a);
84171
84271
  var c = new List$1(String_$type, 0);
84172
84272
  try {
84173
- for (var _b = tslib.__values(fromEnum(this.a6.keys)), _c = _b.next(); !_c.done; _c = _b.next()) {
84273
+ for (var _b = tslib.__values(fromEnum(this.a7.keys)), _c = _b.next(); !_c.done; _c = _b.next()) {
84174
84274
  var d = _c.value;
84175
- if (this.a6.item(d).c == 0) {
84275
+ if (this.a7.item(d).c == 0) {
84176
84276
  c.add(d);
84177
84277
  }
84178
84278
  }
@@ -84193,164 +84293,164 @@
84193
84293
  for (var e = 0; e < c.count; e++) {
84194
84294
  var f = this.shouldNamespaceSystemRefValues;
84195
84295
  this.shouldNamespaceSystemRefValues = false;
84196
- this.removeRefValueCore(a, c._inner[e], this.ba.containsKey(c._inner[e]));
84296
+ this.removeRefValueCore(a, c._inner[e], this.bb.containsKey(c._inner[e]));
84197
84297
  this.shouldNamespaceSystemRefValues = f;
84198
- if (this.bc != null && this.bc.count > 0) {
84199
- for (var g = 0; g < this.bc.count; g++) {
84200
- this.bc._inner[g](a, c._inner[e]);
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]);
84201
84301
  }
84202
84302
  }
84203
84303
  }
84204
84304
  };
84205
84305
  ComponentRenderer.prototype.clearRefValues = function (a) {
84206
84306
  var _this = this;
84207
- this.dq(a, function () {
84208
- if (!_this.a7.containsKey(a)) {
84209
- _this.a7.addItem(a, ((function () {
84307
+ this.dt(a, function () {
84308
+ if (!_this.a8.containsKey(a)) {
84309
+ _this.a8.addItem(a, ((function () {
84210
84310
  var $ret = new ContainerState();
84211
84311
  $ret.i = a;
84212
84312
  return $ret;
84213
84313
  })()));
84214
84314
  }
84215
- var b = _this.a7.item(a);
84315
+ var b = _this.a8.item(a);
84216
84316
  _this.clearUserRefValues();
84217
84317
  });
84218
84318
  };
84219
- ComponentRenderer.prototype.x = function (a) {
84220
- if (this.av.containsKey(a) && this.av.item(a)) {
84319
+ ComponentRenderer.prototype.y = function (a) {
84320
+ if (this.aw.containsKey(a) && this.aw.item(a)) {
84221
84321
  return false;
84222
84322
  }
84223
- if (this.a4.containsKey(a) && this.a4.item(a).count > 0) {
84323
+ if (this.a5.containsKey(a) && this.a5.item(a).count > 0) {
84224
84324
  return false;
84225
84325
  }
84226
84326
  return true;
84227
84327
  };
84228
84328
  ComponentRenderer.prototype.queueForIdle = function (a, b) {
84229
84329
  var _this = this;
84230
- this.dq(a, function () {
84231
- if (_this.x(a)) {
84330
+ this.dt(a, function () {
84331
+ if (_this.y(a)) {
84232
84332
  b();
84233
84333
  }
84234
84334
  else {
84235
- if (!_this.ax.containsKey(a)) {
84236
- _this.ax.item(a, new List$1(Delegate_$type, 0));
84335
+ if (!_this.ay.containsKey(a)) {
84336
+ _this.ay.item(a, new List$1(Delegate_$type, 0));
84237
84337
  }
84238
- _this.ax.item(a).add(b);
84338
+ _this.ay.item(a).add(b);
84239
84339
  }
84240
84340
  });
84241
84341
  };
84242
84342
  ComponentRenderer.prototype.tryFlushIdleActions = function (a) {
84243
- if (this.x(a)) {
84244
- if (this.ax.containsKey(a)) {
84245
- var b = new List$1(Delegate_$type, 1, this.ax.item(a));
84246
- this.ax.item(a).clear();
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();
84247
84347
  for (var c = 0; c < b.count; c++) {
84248
84348
  b._inner[c]();
84249
84349
  }
84250
84350
  }
84251
84351
  }
84252
84352
  };
84253
- ComponentRenderer.prototype.d9 = function (a, b) {
84254
- var c = this.a7.item(a);
84255
- this.dr(a, c, b);
84353
+ ComponentRenderer.prototype.ed = function (a, b) {
84354
+ var c = this.a8.item(a);
84355
+ this.du(a, c, b);
84256
84356
  };
84257
- ComponentRenderer.prototype.ee = function (a, b) {
84357
+ ComponentRenderer.prototype.ei = function (a, b) {
84258
84358
  if (this.isProceedOnErrorEnabled) {
84259
84359
  try {
84260
- this.df(a, b, true);
84360
+ this.di(a, b, true);
84261
84361
  }
84262
84362
  catch (c) {
84263
- this.av.item(a, false);
84363
+ this.aw.item(a, false);
84264
84364
  }
84265
84365
  }
84266
84366
  else {
84267
- this.df(a, b, true);
84367
+ this.di(a, b, true);
84268
84368
  }
84269
84369
  };
84270
- ComponentRenderer.prototype.el = function (a, b) {
84370
+ ComponentRenderer.prototype.ep = function (a, b) {
84271
84371
  if (this.isProceedOnErrorEnabled) {
84272
84372
  try {
84273
- this.df(a, b, false);
84373
+ this.di(a, b, false);
84274
84374
  }
84275
84375
  catch (c) {
84276
- this.av.item(a, false);
84376
+ this.aw.item(a, false);
84277
84377
  }
84278
84378
  }
84279
84379
  else {
84280
- this.df(a, b, false);
84380
+ this.di(a, b, false);
84281
84381
  }
84282
84382
  };
84283
- ComponentRenderer.prototype.df = function (a, b, c) {
84383
+ ComponentRenderer.prototype.di = function (a, b, c) {
84284
84384
  if (!c) {
84285
- if (this.av.containsKey(a) && this.av.item(a)) {
84385
+ if (this.aw.containsKey(a) && this.aw.item(a)) {
84286
84386
  return;
84287
84387
  }
84288
84388
  }
84289
- this.av.item(a, true);
84389
+ this.aw.item(a, true);
84290
84390
  var d = true;
84291
- while (d && this.a4.item(a).count > 0) {
84292
- while (this.a4.item(a).count > 0 && this.a4.item(a).c().count < 1) {
84293
- this.a4.item(a).b();
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();
84294
84394
  }
84295
- if (this.a4.item(a).count < 1) {
84395
+ if (this.a5.item(a).count < 1) {
84296
84396
  break;
84297
84397
  }
84298
- var e = this.a4.item(a).c();
84398
+ var e = this.a5.item(a).c();
84299
84399
  while (e.count > 0) {
84300
84400
  var f = e.b();
84301
- d = this.ac(a, b, f);
84401
+ d = this.ad(a, b, f);
84302
84402
  if (!d) {
84303
84403
  break;
84304
84404
  }
84305
84405
  }
84306
84406
  }
84307
84407
  if (d) {
84308
- this.av.item(a, false);
84408
+ this.aw.item(a, false);
84309
84409
  }
84310
- if (this.x(a)) {
84410
+ if (this.y(a)) {
84311
84411
  this.tryFlushIdleActions(a);
84312
84412
  }
84313
84413
  };
84314
- ComponentRenderer.prototype.dr = function (a, b, c) {
84414
+ ComponentRenderer.prototype.du = function (a, b, c) {
84315
84415
  var d = new Queue$1(DescriptionTreeAction.$);
84316
84416
  for (var e = 0; e < c.count; e++) {
84317
84417
  d.g(c._inner[e]);
84318
84418
  }
84319
- if (!this.a4.containsKey(a)) {
84320
- this.a4.addItem(a, new Queue$1(Queue$1.$.specialize(DescriptionTreeAction.$)));
84419
+ if (!this.a5.containsKey(a)) {
84420
+ this.a5.addItem(a, new Queue$1(Queue$1.$.specialize(DescriptionTreeAction.$)));
84321
84421
  }
84322
- this.a4.item(a).g(d);
84323
- this.el(a, b);
84422
+ this.a5.item(a).g(d);
84423
+ this.ep(a, b);
84324
84424
  };
84325
- ComponentRenderer.prototype.ds = function (a, b, c) {
84425
+ ComponentRenderer.prototype.dv = function (a, b, c) {
84326
84426
  for (var d = 0; d < c.count; d++) {
84327
- this.ac(a, b, c._inner[d]);
84427
+ this.ad(a, b, c._inner[d]);
84328
84428
  }
84329
84429
  };
84330
- ComponentRenderer.prototype.ac = function (a, b, c) {
84430
+ ComponentRenderer.prototype.ad = function (a, b, c) {
84331
84431
  switch (c.a) {
84332
- case 5: return this.ad(a, b, c);
84333
- case 2: return this.ae(a, b, c);
84334
- case 4: return this.aj(a, b, c);
84335
- case 3: return this.ak(a, b, c);
84336
- case 1: return this.al(a, b, c);
84337
- case 0: return this.an(a, b, c);
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);
84338
84438
  }
84339
84439
  return true;
84340
84440
  };
84341
- ComponentRenderer.prototype.an = function (a, b, c) {
84342
- var d = this.cc(a, b, c);
84343
- this.au(a, b, c, d);
84441
+ ComponentRenderer.prototype.ao = function (a, b, c) {
84442
+ var d = this.ce(a, b, c);
84443
+ this.av(a, b, c, d);
84344
84444
  return true;
84345
84445
  };
84346
- ComponentRenderer.prototype.au = function (a, b, c, d) {
84347
- var e = this.b9(c, a, b);
84348
- e = this.j.transform(ComponentRenderer.platform, e, c);
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);
84349
84449
  var f = false;
84350
- if (this.bg != null && this.bg.count > 0) {
84351
- for (var g = 0; g < this.bg.count; g++) {
84352
- var h = this.bg._inner[g];
84353
- var i = this.cx(a, c);
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);
84354
84454
  if (h(i, d, e)) {
84355
84455
  f = true;
84356
84456
  }
@@ -84363,18 +84463,18 @@
84363
84463
  return true;
84364
84464
  }
84365
84465
  if (c.d != null && c.d.knownType == 9) {
84366
- this.ar(a, b, c.i(ComponentRenderer.platform), c.d, e, d);
84466
+ this.as(a, b, c.i(ComponentRenderer.platform), c.d, e, d);
84367
84467
  }
84368
84468
  else {
84369
- this.ei(a, b, c.i(ComponentRenderer.platform), c.d, e, c.h, d);
84469
+ this.em(a, b, c.i(ComponentRenderer.platform), c.d, e, c.h, d);
84370
84470
  }
84371
84471
  return true;
84372
84472
  };
84373
- ComponentRenderer.prototype.cx = function (a, b) {
84473
+ ComponentRenderer.prototype.cz = function (a, b) {
84374
84474
  var c = b.c;
84375
84475
  var d = "";
84376
- if (c != this.aw.item(a)) {
84377
- var e = this.cv(a, c);
84476
+ if (c != this.ax.item(a)) {
84477
+ var e = this.cx(a, c);
84378
84478
  d = e;
84379
84479
  }
84380
84480
  if (d.length > 0) {
@@ -84383,17 +84483,17 @@
84383
84483
  d += b.j;
84384
84484
  return d;
84385
84485
  };
84386
- ComponentRenderer.prototype.cv = function (a, b) {
84486
+ ComponentRenderer.prototype.cx = function (a, b) {
84387
84487
  if (b == null) {
84388
84488
  return "";
84389
84489
  }
84390
- var c = this.c2("", this.aw.item(a), b);
84490
+ var c = this.c4("", this.ax.item(a), b);
84391
84491
  if (c.c) {
84392
84492
  return c.d;
84393
84493
  }
84394
84494
  return "";
84395
84495
  };
84396
- ComponentRenderer.prototype.c2 = function (a, b, c) {
84496
+ ComponentRenderer.prototype.c4 = function (a, b, c) {
84397
84497
  if (b == c) {
84398
84498
  return new Tuple$2(Boolean_$type, String_$type, true, a);
84399
84499
  }
@@ -84410,7 +84510,7 @@
84410
84510
  }
84411
84511
  else {
84412
84512
  var g = a + f.c;
84413
- var h = this.c2(g, f.b, c);
84513
+ var h = this.c4(g, f.b, c);
84414
84514
  if (h.c) {
84415
84515
  return h;
84416
84516
  }
@@ -84427,7 +84527,7 @@
84427
84527
  }
84428
84528
  else {
84429
84529
  var l = a + f.c + "[" + j + "]";
84430
- var m = this.c2(l, k, c);
84530
+ var m = this.c4(l, k, c);
84431
84531
  if (m.c) {
84432
84532
  return m;
84433
84533
  }
@@ -84438,11 +84538,11 @@
84438
84538
  }
84439
84539
  return new Tuple$2(Boolean_$type, String_$type, false, a);
84440
84540
  };
84441
- ComponentRenderer.prototype.ar = function (a, b, c, d, e, f) {
84541
+ ComponentRenderer.prototype.as = function (a, b, c, d, e, f) {
84442
84542
  var e_12, _a;
84443
- if (this.a9.containsKey(c)) {
84543
+ if (this.ba.containsKey(c)) {
84444
84544
  try {
84445
- for (var _b = tslib.__values(fromEnum(this.a9.item(c))), _c = _b.next(); !_c.done; _c = _b.next()) {
84545
+ for (var _b = tslib.__values(fromEnum(this.ba.item(c))), _c = _b.next(); !_c.done; _c = _b.next()) {
84446
84546
  var g = _c.value;
84447
84547
  g(c, f, e);
84448
84548
  }
@@ -84464,43 +84564,43 @@
84464
84564
  this.adapter.setOrUpdateCollectionOnTarget(a, c, d, this.context, f, e);
84465
84565
  return true;
84466
84566
  };
84467
- ComponentRenderer.prototype.b9 = function (a, b, c) {
84567
+ ComponentRenderer.prototype.cb = function (a, b, c) {
84468
84568
  if (a.d == null) {
84469
84569
  return a.g;
84470
84570
  }
84471
84571
  switch (a.d.knownType) {
84472
- case 10: return this.bm(a, b, c);
84473
- case 7: return this.bn(a);
84474
- case 4: return this.bo(a);
84475
- case 6: return this.bp(a);
84476
- case 23: return this.bt(a);
84477
- case 9: return this.bm(a, b, c);
84478
- case 5: return this.bq(a);
84479
- case 16: return this.br(a);
84480
- case 20: return this.co(a, c);
84481
- case 22: return this.cr(a, c);
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);
84482
84582
  case 15: return null;
84483
- case 3: return this.bs(a);
84484
- case 19: return this.cp(a, c);
84485
- case 8: return this.bv(a, b, c);
84583
+ case 3: return this.bu(a);
84584
+ case 19: return this.cr(a, c);
84585
+ case 8: return this.bx(a, b, c);
84486
84586
  case 13: return null;
84487
- case 18: return this.cq(a, c);
84488
- case 1: return this.bw(a);
84489
- case 11: return this.bx(a);
84490
- case 14: return this.by(a);
84491
- case 12: return this.bz(a);
84492
- case 2: return this.b0(a);
84493
- case 21: return this.b1(a);
84494
- case 17: return this.b2(a, b, c);
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);
84495
84595
  case 0: return null;
84496
84596
  }
84497
84597
  return null;
84498
84598
  };
84499
- ComponentRenderer.prototype.b2 = function (a, b, c) {
84500
- var d = this.b3(a.g, a, b, c);
84599
+ ComponentRenderer.prototype.b4 = function (a, b, c) {
84600
+ var d = this.b5(a.g, a, b, c);
84501
84601
  return d;
84502
84602
  };
84503
- ComponentRenderer.prototype.b3 = function (a, b, c, d) {
84603
+ ComponentRenderer.prototype.b5 = function (a, b, c, d) {
84504
84604
  if (typeof a === 'string') {
84505
84605
  if (stringStartsWith(a, "@d:")) {
84506
84606
  var v_ = a.substr(3);
@@ -84511,7 +84611,7 @@
84511
84611
  var e = a;
84512
84612
  var f = new Array(e.length);
84513
84613
  for (var g = 0; g < e.length; g++) {
84514
- var h = this.b3(e[g], b, c, d);
84614
+ var h = this.b5(e[g], b, c, d);
84515
84615
  f[g] = h;
84516
84616
  }
84517
84617
  a = f;
@@ -84519,25 +84619,25 @@
84519
84619
  if (typeCast(DescriptionTreeNode.$, a) !== null) {
84520
84620
  var i = a;
84521
84621
  if (i.i == "EmbeddedRef") {
84522
- return this.b6(i.i, a, c, d, false, b.c.g, b.d);
84622
+ return this.b8(i.i, a, c, d, false, b.c.g, b.d);
84523
84623
  }
84524
84624
  }
84525
84625
  return a;
84526
84626
  };
84527
- ComponentRenderer.prototype.b1 = function (a) {
84627
+ ComponentRenderer.prototype.b3 = function (a) {
84528
84628
  return a.g;
84529
84629
  };
84530
- ComponentRenderer.prototype.b0 = function (a) {
84630
+ ComponentRenderer.prototype.b2 = function (a) {
84531
84631
  return a.g != null ? a.g.toString() : null;
84532
84632
  };
84533
- ComponentRenderer.prototype.bz = function (a) {
84633
+ ComponentRenderer.prototype.b1 = function (a) {
84534
84634
  var b = a.g;
84535
84635
  var width_ = b.width;
84536
84636
  var height_ = b.height;
84537
84637
  var c = { width: width_, height: height_ };
84538
84638
  return c;
84539
84639
  };
84540
- ComponentRenderer.prototype.by = function (a) {
84640
+ ComponentRenderer.prototype.b0 = function (a) {
84541
84641
  var b = a.g;
84542
84642
  var top_ = b.top;
84543
84643
  var left_ = b.left;
@@ -84546,14 +84646,14 @@
84546
84646
  var c = { left: left_, top: top_, width: width_, height: height_ };
84547
84647
  return c;
84548
84648
  };
84549
- ComponentRenderer.prototype.bx = function (a) {
84649
+ ComponentRenderer.prototype.bz = function (a) {
84550
84650
  var b = a.g;
84551
84651
  var x_ = b.x;
84552
84652
  var y_ = b.y;
84553
84653
  var c = { x: x_, y: y_ };
84554
84654
  return c;
84555
84655
  };
84556
- ComponentRenderer.prototype.bw = function (a) {
84656
+ ComponentRenderer.prototype.by = function (a) {
84557
84657
  if (a.g == null) {
84558
84658
  if (a.d != null && ((a.d.specificType == "double" || a.d.specificType == "float") || (a.d.specificExternalType == "double" || a.d.specificExternalType == "float"))) {
84559
84659
  return NaN;
@@ -84582,19 +84682,19 @@
84582
84682
  }
84583
84683
  return b;
84584
84684
  };
84585
- ComponentRenderer.prototype.e = function (a) {
84586
- if (this.a6.containsKey(a)) {
84587
- var b = this.a6.item(a);
84685
+ ComponentRenderer.prototype.f = function (a) {
84686
+ if (this.a7.containsKey(a)) {
84687
+ var b = this.a7.item(a);
84588
84688
  return b;
84589
84689
  }
84590
84690
  var c = new DescriptionRef(a);
84591
- this.a6.addItem(a, c);
84691
+ this.a7.addItem(a, c);
84592
84692
  return c;
84593
84693
  };
84594
- ComponentRenderer.prototype.cq = function (a, b) {
84595
- return a.g == null ? null : this.e(a.g);
84694
+ ComponentRenderer.prototype.cs = function (a, b) {
84695
+ return a.g == null ? null : this.f(a.g);
84596
84696
  };
84597
- ComponentRenderer.prototype.bv = function (a, b, c) {
84697
+ ComponentRenderer.prototype.bx = function (a, b, c) {
84598
84698
  var d = a.d.specificType;
84599
84699
  if (d == null) {
84600
84700
  d = a.d.specificExternalType;
@@ -84605,54 +84705,54 @@
84605
84705
  d = e.a("Type").b;
84606
84706
  }
84607
84707
  }
84608
- var f = this.b6(d, a.g, b, c, false, a.c.g, a.d);
84708
+ var f = this.b8(d, a.g, b, c, false, a.c.g, a.d);
84609
84709
  return f;
84610
84710
  };
84611
- ComponentRenderer.prototype.cp = function (a, b) {
84612
- return a.g == null ? null : this.e(a.g);
84711
+ ComponentRenderer.prototype.cr = function (a, b) {
84712
+ return a.g == null ? null : this.f(a.g);
84613
84713
  };
84614
- ComponentRenderer.prototype.bs = function (a) {
84714
+ ComponentRenderer.prototype.bu = function (a) {
84615
84715
  if (typeof a.g === 'string') {
84616
84716
  var v_ = a.g;
84617
84717
  a.g = new Date(v_);
84618
84718
  }
84619
84719
  return a.g;
84620
84720
  };
84621
- ComponentRenderer.prototype.co = function (a, b) {
84622
- return a.g == null ? null : this.e(a.g);
84721
+ ComponentRenderer.prototype.cq = function (a, b) {
84722
+ return a.g == null ? null : this.f(a.g);
84623
84723
  };
84624
- ComponentRenderer.prototype.cr = function (a, b) {
84625
- return a.g == null ? null : this.e(a.g);
84724
+ ComponentRenderer.prototype.ct = function (a, b) {
84725
+ return a.g == null ? null : this.f(a.g);
84626
84726
  };
84627
- ComponentRenderer.prototype.ct = function (a) {
84727
+ ComponentRenderer.prototype.cv = function (a) {
84628
84728
  return a;
84629
84729
  };
84630
- ComponentRenderer.prototype.br = function (a) {
84730
+ ComponentRenderer.prototype.bt = function (a) {
84631
84731
  var b = a.g;
84632
84732
  if (b == null) {
84633
84733
  return null;
84634
84734
  }
84635
84735
  var c = new Array(b.length);
84636
84736
  for (var d = 0; d < b.length; d++) {
84637
- c[d] = this.ct(b[d]);
84737
+ c[d] = this.cv(b[d]);
84638
84738
  }
84639
84739
  return c;
84640
84740
  };
84641
- ComponentRenderer.prototype.bq = function (a) {
84642
- return this.ct(a.g);
84741
+ ComponentRenderer.prototype.bs = function (a) {
84742
+ return this.cv(a.g);
84643
84743
  };
84644
- ComponentRenderer.prototype.bp = function (a) {
84744
+ ComponentRenderer.prototype.br = function (a) {
84645
84745
  var b = a.g;
84646
84746
  if (b == null) {
84647
84747
  return null;
84648
84748
  }
84649
84749
  var c = new Array(b.length);
84650
84750
  for (var d = 0; d < b.length; d++) {
84651
- c[d] = this.cs(b[d]);
84751
+ c[d] = this.cu(b[d]);
84652
84752
  }
84653
84753
  return c;
84654
84754
  };
84655
- ComponentRenderer.prototype.bt = function (a) {
84755
+ ComponentRenderer.prototype.bv = function (a) {
84656
84756
  var b = a.g;
84657
84757
  if (b == null) {
84658
84758
  return null;
@@ -84663,59 +84763,59 @@
84663
84763
  }
84664
84764
  return c;
84665
84765
  };
84666
- ComponentRenderer.prototype.cs = function (a) {
84766
+ ComponentRenderer.prototype.cu = function (a) {
84667
84767
  return a;
84668
84768
  };
84669
- ComponentRenderer.prototype.bo = function (a) {
84670
- return this.cs(a.g);
84769
+ ComponentRenderer.prototype.bq = function (a) {
84770
+ return this.cu(a.g);
84671
84771
  };
84672
- ComponentRenderer.prototype.bn = function (a) {
84772
+ ComponentRenderer.prototype.bp = function (a) {
84673
84773
  return a.g;
84674
84774
  };
84675
84775
  ComponentRenderer.prototype.addTargetPropertyUpdatingListener = function (a) {
84676
- this.bg.add(a);
84776
+ this.bi.add(a);
84677
84777
  };
84678
84778
  ComponentRenderer.prototype.removeTargetPropertyUpdatingListener = function (a) {
84679
- this.bg.remove(a);
84779
+ this.bi.remove(a);
84680
84780
  };
84681
84781
  ComponentRenderer.prototype.addPropertyUpdatingListener = function (a, b) {
84682
- if (!this.a9.containsKey(a)) {
84683
- this.a9.addItem(a, new List$1(Delegate_$type, 0));
84782
+ if (!this.ba.containsKey(a)) {
84783
+ this.ba.addItem(a, new List$1(Delegate_$type, 0));
84684
84784
  }
84685
- this.a9.item(a).add(b);
84785
+ this.ba.item(a).add(b);
84686
84786
  };
84687
84787
  ComponentRenderer.prototype.addReferenceLookupListener = function (a) {
84688
- this.bd.add(a);
84788
+ this.be.add(a);
84689
84789
  };
84690
84790
  ComponentRenderer.prototype.removeReferenceLookupListener = function (a) {
84691
- this.bd.remove(a);
84791
+ this.be.remove(a);
84692
84792
  };
84693
84793
  ComponentRenderer.prototype.removePropertyUpdatingListener = function (a, b) {
84694
- if (this.a9.containsKey(a)) {
84695
- this.a9.item(a).remove(b);
84696
- if (this.a9.item(a).count == 0) {
84697
- this.a9.removeItem(a);
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);
84698
84798
  }
84699
84799
  }
84700
84800
  };
84701
84801
  ComponentRenderer.prototype.addNamespaceLookupListener = function (a) {
84702
- this.bf.add(a);
84802
+ this.bg.add(a);
84703
84803
  };
84704
84804
  ComponentRenderer.prototype.removeNamespaceLookupListener = function (a) {
84705
- this.bf.remove(a);
84805
+ this.bg.remove(a);
84706
84806
  };
84707
84807
  ComponentRenderer.prototype.addCleanupListener = function (a) {
84708
- if (this.bc == null) {
84709
- this.bc = new List$1(Delegate_$type, 0);
84808
+ if (this.bd == null) {
84809
+ this.bd = new List$1(Delegate_$type, 0);
84710
84810
  }
84711
- this.bc.add(a);
84811
+ this.bd.add(a);
84712
84812
  };
84713
84813
  ComponentRenderer.prototype.removeCleanupListener = function (a) {
84714
- if (this.bc != null) {
84715
- this.bc.remove(a);
84814
+ if (this.bd != null) {
84815
+ this.bd.remove(a);
84716
84816
  }
84717
84817
  };
84718
- ComponentRenderer.prototype.bm = function (a, b, c) {
84818
+ ComponentRenderer.prototype.bo = function (a, b, c) {
84719
84819
  if (a.g == null) {
84720
84820
  return null;
84721
84821
  }
@@ -84739,19 +84839,19 @@
84739
84839
  h = i.a("Type").b;
84740
84840
  }
84741
84841
  }
84742
- var j = this.b6(h, d[g], b, c, false, a.c.g, a.d);
84842
+ var j = this.b8(h, d[g], b, c, false, a.c.g, a.d);
84743
84843
  e.add1(j);
84744
84844
  }
84745
84845
  return e.toArray();
84746
84846
  };
84747
- ComponentRenderer.prototype.ei = function (a, b, c, d, e, f, g) {
84847
+ ComponentRenderer.prototype.em = function (a, b, c, d, e, f, g) {
84748
84848
  var _this = this;
84749
84849
  if (typeCast(DescriptionRef.$, e) !== null) {
84750
84850
  var h = e;
84751
84851
  var i = false;
84752
84852
  if (f != null && typeof f === 'string') {
84753
84853
  if (this.hasRef(f)) {
84754
- var j = this.f(f);
84854
+ var j = this.g(f);
84755
84855
  if (Base.equalsStatic(j, e)) {
84756
84856
  i = true;
84757
84857
  }
@@ -84760,13 +84860,13 @@
84760
84860
  }
84761
84861
  }
84762
84862
  }
84763
- if (this.u(e)) {
84863
+ if (this.v(e)) {
84764
84864
  var k = e;
84765
- if (k.e != null && k.e.length > 0 && this.a8.containsKey(k.e)) {
84865
+ if (k.e != null && k.e.length > 0 && this.a9.containsKey(k.e)) {
84766
84866
  k.a = true;
84767
84867
  }
84768
- e = this.cb(e);
84769
- this.ej(g, c, d, e, f, k);
84868
+ e = this.cd(e);
84869
+ this.en(g, c, d, e, f, k);
84770
84870
  }
84771
84871
  else {
84772
84872
  this.adapter.onPendingRef(g, c, d, e);
@@ -84774,21 +84874,33 @@
84774
84874
  var l = null;
84775
84875
  l = function (m, n) {
84776
84876
  var o = m;
84777
- if (o.e != null && o.e.length > 0 && _this.a8.containsKey(o.e)) {
84877
+ if (o.e != null && o.e.length > 0 && _this.a9.containsKey(o.e)) {
84778
84878
  o.a = true;
84779
84879
  }
84780
- var p = _this.cb(m);
84781
- _this.ej(g, c, d, p, n.b, o);
84880
+ var p = _this.cd(m);
84881
+ _this.en(g, c, d, p, n.b, o);
84782
84882
  };
84783
84883
  if (!i) {
84784
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
+ }
84785
84897
  }
84786
84898
  return;
84787
84899
  }
84788
- this.ej(g, c, d, e, f, null);
84900
+ this.en(g, c, d, e, f, null);
84789
84901
  };
84790
- ComponentRenderer.prototype.v = function (a) {
84791
- return this.ba.containsKey(a);
84902
+ ComponentRenderer.prototype.w = function (a) {
84903
+ return this.bb.containsKey(a);
84792
84904
  };
84793
84905
  Object.defineProperty(ComponentRenderer.prototype, "shouldNamespaceSystemRefValues", {
84794
84906
  get: function () {
@@ -84800,80 +84912,80 @@
84800
84912
  enumerable: false,
84801
84913
  configurable: true
84802
84914
  });
84803
- ComponentRenderer.prototype.du = function (a, b, c, d) {
84915
+ ComponentRenderer.prototype.dx = function (a, b, c, d) {
84804
84916
  var e = null;
84805
84917
  if (d) {
84806
- if (this.ba.containsKey(b)) {
84807
- e = this.ba.item(b);
84918
+ if (this.bb.containsKey(b)) {
84919
+ e = this.bb.item(b);
84808
84920
  }
84809
- this.ba.item(b, c);
84921
+ this.bb.item(b, c);
84810
84922
  if (c != null) {
84811
- this.a5.item(c, b);
84923
+ this.a6.item(c, b);
84812
84924
  }
84813
84925
  }
84814
84926
  else {
84815
84927
  if (this.shouldNamespaceSystemRefValues) {
84816
84928
  var f = "";
84817
- if (this.bf != null && this.bf.count > 0) {
84818
- for (var g = 0; g < this.bf.count; g++) {
84819
- f = this.bf._inner[g](a);
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);
84820
84932
  }
84821
84933
  }
84822
84934
  if (!stringIsNullOrEmpty(f)) {
84823
84935
  b = f + "/" + b;
84824
84936
  }
84825
84937
  }
84826
- if (this.a8.containsKey(b)) {
84827
- e = this.a8.item(b);
84938
+ if (this.a9.containsKey(b)) {
84939
+ e = this.a9.item(b);
84828
84940
  }
84829
- this.a8.item(b, c);
84941
+ this.a9.item(b, c);
84830
84942
  if (c != null) {
84831
- this.a5.item(c, b);
84943
+ this.a6.item(c, b);
84832
84944
  }
84833
- if (this.a6.containsKey(b)) {
84834
- this.a6.item(b).a = true;
84945
+ if (this.a7.containsKey(b)) {
84946
+ this.a7.item(b).a = true;
84835
84947
  }
84836
84948
  }
84837
- if (this.a6.containsKey(b)) {
84838
- this.a6.item(b).f(e, c);
84949
+ if (this.a7.containsKey(b)) {
84950
+ this.a7.item(b).f(e, c);
84839
84951
  }
84840
84952
  };
84841
84953
  ComponentRenderer.prototype.removeRefValueCore = function (a, b, c) {
84842
84954
  var d = null;
84843
84955
  if (c) {
84844
- if (this.ba.containsKey(b)) {
84845
- d = this.ba.item(b);
84956
+ if (this.bb.containsKey(b)) {
84957
+ d = this.bb.item(b);
84846
84958
  }
84847
- this.ba.removeItem(b);
84848
- if (d != null && this.a5.containsKey(d)) {
84849
- this.a5.removeItem(d);
84959
+ this.bb.removeItem(b);
84960
+ if (d != null && this.a6.containsKey(d)) {
84961
+ this.a6.removeItem(d);
84850
84962
  }
84851
84963
  }
84852
84964
  else {
84853
84965
  if (this.shouldNamespaceSystemRefValues) {
84854
84966
  var e = "";
84855
- if (this.bf != null && this.bf.count > 0) {
84856
- for (var f = 0; f < this.bf.count; f++) {
84857
- e = this.bf._inner[f](a);
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);
84858
84970
  }
84859
84971
  }
84860
84972
  if (!stringIsNullOrEmpty(e)) {
84861
84973
  b = e + "/" + b;
84862
84974
  }
84863
84975
  }
84864
- if (this.a8.containsKey(b)) {
84865
- d = this.a8.item(b);
84976
+ if (this.a9.containsKey(b)) {
84977
+ d = this.a9.item(b);
84866
84978
  }
84867
- this.a8.removeItem(b);
84868
- if (d != null && this.a5.containsKey(d)) {
84869
- this.a5.removeItem(d);
84979
+ this.a9.removeItem(b);
84980
+ if (d != null && this.a6.containsKey(d)) {
84981
+ this.a6.removeItem(d);
84870
84982
  }
84871
84983
  }
84872
- if (this.a6.containsKey(b)) {
84873
- this.a6.item(b).f(d, this.cb(this.a6.item(b)));
84874
- if (this.a6.item(b).c <= 0) {
84875
- this.a6.item(b).h();
84876
- this.a6.removeItem(b);
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);
84877
84989
  }
84878
84990
  }
84879
84991
  };
@@ -84881,7 +84993,7 @@
84881
84993
  var e_13, _a, e_14, _b;
84882
84994
  var a = new List$1(String_$type, 0);
84883
84995
  try {
84884
- for (var _c = tslib.__values(fromEnum(this.ba.keys)), _d = _c.next(); !_d.done; _d = _c.next()) {
84996
+ for (var _c = tslib.__values(fromEnum(this.bb.keys)), _d = _c.next(); !_d.done; _d = _c.next()) {
84885
84997
  var b = _d.value;
84886
84998
  a.add(b);
84887
84999
  }
@@ -84919,31 +85031,31 @@
84919
85031
  }
84920
85032
  }
84921
85033
  };
84922
- ComponentRenderer.prototype.u = function (a) {
84923
- return this.ba.containsKey(a.e) || this.a8.containsKey(a.e);
85034
+ ComponentRenderer.prototype.v = function (a) {
85035
+ return this.bb.containsKey(a.e) || this.a9.containsKey(a.e);
84924
85036
  };
84925
- ComponentRenderer.prototype.cb = function (a) {
84926
- if (this.ba.containsKey(a.e)) {
84927
- return this.ba.item(a.e);
85037
+ ComponentRenderer.prototype.cd = function (a) {
85038
+ if (this.bb.containsKey(a.e)) {
85039
+ return this.bb.item(a.e);
84928
85040
  }
84929
- if (this.a8.containsKey(a.e)) {
84930
- return this.a8.item(a.e);
85041
+ if (this.a9.containsKey(a.e)) {
85042
+ return this.a9.item(a.e);
84931
85043
  }
84932
85044
  return null;
84933
85045
  };
84934
85046
  ComponentRenderer.prototype.hasRef = function (a) {
84935
- return this.a6.containsKey(a);
85047
+ return this.a7.containsKey(a);
84936
85048
  };
84937
- ComponentRenderer.prototype.f = function (a) {
84938
- return this.a6.item(a);
85049
+ ComponentRenderer.prototype.g = function (a) {
85050
+ return this.a7.item(a);
84939
85051
  };
84940
85052
  ComponentRenderer.prototype.getMissingRefs = function () {
84941
85053
  var e_15, _a;
84942
85054
  var a = new List$1(String_$type, 0);
84943
85055
  try {
84944
- for (var _b = tslib.__values(fromEnum(this.a6.keys)), _c = _b.next(); !_c.done; _c = _b.next()) {
85056
+ for (var _b = tslib.__values(fromEnum(this.a7.keys)), _c = _b.next(); !_c.done; _c = _b.next()) {
84945
85057
  var b = _c.value;
84946
- if (!this.u(this.a6.item(b))) {
85058
+ if (!this.v(this.a7.item(b))) {
84947
85059
  a.add(b);
84948
85060
  }
84949
85061
  }
@@ -84966,7 +85078,7 @@
84966
85078
  ComponentRenderer.prototype.getRefChangeInfos = function (a) {
84967
85079
  var e_16, _a;
84968
85080
  var b = new List$1(DescriptionRefTargetInfo.$, 0);
84969
- if (this.a6.containsKey(a)) {
85081
+ if (this.a7.containsKey(a)) {
84970
85082
  var _loop_2 = function (c) {
84971
85083
  b.add(((function () {
84972
85084
  var $ret = new DescriptionRefTargetInfo();
@@ -84977,7 +85089,7 @@
84977
85089
  })()));
84978
85090
  };
84979
85091
  try {
84980
- for (var _b = tslib.__values(fromEnum(this.a6.item(a).b)), _c = _b.next(); !_c.done; _c = _b.next()) {
85092
+ for (var _b = tslib.__values(fromEnum(this.a7.item(a).b)), _c = _b.next(); !_c.done; _c = _b.next()) {
84981
85093
  var c = _c.value;
84982
85094
  _loop_2(c);
84983
85095
  }
@@ -84998,29 +85110,29 @@
84998
85110
  }
84999
85111
  return b.toArray();
85000
85112
  };
85001
- ComponentRenderer.prototype.cc = function (a, b, c) {
85113
+ ComponentRenderer.prototype.ce = function (a, b, c) {
85002
85114
  return b.j(c.c.g);
85003
85115
  };
85004
- ComponentRenderer.prototype.al = function (a, b, c) {
85005
- var d = this.cc(a, b, c);
85006
- this.aq(a, b, c, d);
85116
+ ComponentRenderer.prototype.am = function (a, b, c) {
85117
+ var d = this.ce(a, b, c);
85118
+ this.ar(a, b, c, d);
85007
85119
  return true;
85008
85120
  };
85009
- ComponentRenderer.prototype.aq = function (a, b, c, d) {
85121
+ ComponentRenderer.prototype.ar = function (a, b, c, d) {
85010
85122
  this.adapter.resetPropertyOnTarget(a, c.i(ComponentRenderer.platform), c.d, d);
85011
85123
  return true;
85012
85124
  };
85013
- ComponentRenderer.prototype.ak = function (a, b, c) {
85125
+ ComponentRenderer.prototype.al = function (a, b, c) {
85014
85126
  if (c.c == null) {
85015
- return this.ap(a, b, c);
85127
+ return this.aq(a, b, c);
85016
85128
  }
85017
85129
  else {
85018
- var d = this.cc(a, b, c);
85019
- this.eb(a, b, c, d);
85130
+ var d = this.ce(a, b, c);
85131
+ this.ef(a, b, c, d);
85020
85132
  }
85021
85133
  return true;
85022
85134
  };
85023
- ComponentRenderer.prototype.eb = function (a, b, c, d) {
85135
+ ComponentRenderer.prototype.ef = function (a, b, c, d) {
85024
85136
  var e = c.i(ComponentRenderer.platform);
85025
85137
  var f = c.d.collectionElementType;
85026
85138
  if (typeCast(DescriptionTreeNode.$, c.g) !== null) {
@@ -85032,23 +85144,23 @@
85032
85144
  if (f == null) {
85033
85145
  f = c.d.specificExternalType;
85034
85146
  }
85035
- var h = this.b6(f, c.g, a, b, false, c.c.g, c.d);
85147
+ var h = this.b8(f, c.g, a, b, false, c.c.g, c.d);
85036
85148
  this.adapter.replaceItemInCollection(e, c.d, d, c.e, h);
85037
85149
  if (c.h != null && typeCast(DescriptionTreeNode.$, c.h) !== null) {
85038
85150
  var i = c.h.g;
85039
85151
  if (i >= 0) {
85040
85152
  var j = b.j(i);
85041
85153
  if (j != null) {
85042
- this.de(a, j, b);
85154
+ this.dh(a, j, b);
85043
85155
  }
85044
85156
  }
85045
85157
  }
85046
85158
  };
85047
- ComponentRenderer.prototype.ap = function (a, b, c) {
85159
+ ComponentRenderer.prototype.aq = function (a, b, c) {
85048
85160
  var _this = this;
85049
85161
  var d = this.adapter.getRootObject(a);
85050
85162
  if (d != null) {
85051
- this.de(a, d, b);
85163
+ this.dh(a, d, b);
85052
85164
  }
85053
85165
  if (!(typeCast(DescriptionTreeNode.$, c.g) !== null)) {
85054
85166
  throw new NotImplementedException(0);
@@ -85057,21 +85169,21 @@
85057
85169
  var f = false;
85058
85170
  this.adapter.replaceRootItem(a, e.i, this.context, function (g) {
85059
85171
  var h = _this.adapter.getRootObject(a);
85060
- b.k(a, e.g, h, e, runOn(_this, _this.du), -1);
85061
- var i = _this.bh(e);
85062
- _this.ds(a, b, i);
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);
85063
85175
  f = true;
85064
85176
  if (g) {
85065
- _this.ee(a, b);
85177
+ _this.ei(a, b);
85066
85178
  }
85067
85179
  });
85068
85180
  return f;
85069
85181
  };
85070
- ComponentRenderer.prototype.de = function (a, b, c) {
85182
+ ComponentRenderer.prototype.dh = function (a, b, c) {
85071
85183
  var e_17, _a;
85072
- var d = this.bk(a, b, c);
85184
+ var d = this.bm(a, b, c);
85073
85185
  try {
85074
- for (var _b = tslib.__values(fromEnum(this.a6.values)), _c = _b.next(); !_c.done; _c = _b.next()) {
85186
+ for (var _b = tslib.__values(fromEnum(this.a7.values)), _c = _b.next(); !_c.done; _c = _b.next()) {
85075
85187
  var e = _c.value;
85076
85188
  e.i(b);
85077
85189
  }
@@ -85092,22 +85204,22 @@
85092
85204
  if (d != -1) {
85093
85205
  c.l(this, a, d, runOn(this, this.removeRefValueCore));
85094
85206
  }
85095
- this.k.b(ComponentRenderer.platform, b);
85207
+ this.l.b(ComponentRenderer.platform, b);
85096
85208
  };
85097
- ComponentRenderer.prototype.bk = function (a, b, c) {
85209
+ ComponentRenderer.prototype.bm = function (a, b, c) {
85098
85210
  return c.h(b);
85099
85211
  };
85100
- ComponentRenderer.prototype.aj = function (a, b, c) {
85212
+ ComponentRenderer.prototype.ak = function (a, b, c) {
85101
85213
  if (c.c == null) {
85102
- return this.ao(a, b, c);
85214
+ return this.ap(a, b, c);
85103
85215
  }
85104
85216
  else {
85105
- var d = this.cc(a, b, c);
85106
- this.dy(a, b, c, d);
85217
+ var d = this.ce(a, b, c);
85218
+ this.d1(a, b, c, d);
85107
85219
  }
85108
85220
  return true;
85109
85221
  };
85110
- ComponentRenderer.prototype.dy = function (a, b, c, d) {
85222
+ ComponentRenderer.prototype.d1 = function (a, b, c, d) {
85111
85223
  var e = c.i(ComponentRenderer.platform);
85112
85224
  this.adapter.removeItemFromCollection(e, c.d, d, c.f);
85113
85225
  if (c.h != null && typeCast(DescriptionTreeNode.$, c.h) !== null) {
@@ -85115,37 +85227,37 @@
85115
85227
  if (f >= 0) {
85116
85228
  var g = b.j(f);
85117
85229
  if (g != null) {
85118
- this.de(a, g, b);
85230
+ this.dh(a, g, b);
85119
85231
  }
85120
85232
  }
85121
85233
  }
85122
85234
  };
85123
- ComponentRenderer.prototype.ao = function (a, b, c) {
85235
+ ComponentRenderer.prototype.ap = function (a, b, c) {
85124
85236
  var _this = this;
85125
85237
  var d = this.adapter.getRootObject(a);
85126
85238
  if (d != null) {
85127
- this.de(a, d, b);
85239
+ this.dh(a, d, b);
85128
85240
  }
85129
85241
  var e = false;
85130
85242
  this.adapter.removeRootItem(a, this.context, function (f) {
85131
85243
  e = true;
85132
85244
  if (f) {
85133
- _this.ee(a, b);
85245
+ _this.ei(a, b);
85134
85246
  }
85135
85247
  });
85136
85248
  return e;
85137
85249
  };
85138
- ComponentRenderer.prototype.ae = function (a, b, c) {
85250
+ ComponentRenderer.prototype.af = function (a, b, c) {
85139
85251
  if (c.c == null) {
85140
- return this.n(a, b, c);
85252
+ return this.o(a, b, c);
85141
85253
  }
85142
85254
  else {
85143
- var d = this.cc(a, b, c);
85144
- this.c4(a, b, c, d);
85255
+ var d = this.ce(a, b, c);
85256
+ this.c6(a, b, c, d);
85145
85257
  }
85146
85258
  return true;
85147
85259
  };
85148
- ComponentRenderer.prototype.n = function (a, b, c) {
85260
+ ComponentRenderer.prototype.o = function (a, b, c) {
85149
85261
  var _this = this;
85150
85262
  if (!(typeCast(DescriptionTreeNode.$, c.g) !== null)) {
85151
85263
  throw new NotImplementedException(0);
@@ -85154,17 +85266,17 @@
85154
85266
  var e = false;
85155
85267
  this.adapter.replaceRootItem(a, d.i, this.context, function (f) {
85156
85268
  var g = _this.adapter.getRootObject(a);
85157
- b.k(a, d.g, g, d, runOn(_this, _this.du), -1);
85158
- var h = _this.bh(d);
85159
- _this.ds(a, b, h);
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);
85160
85272
  e = true;
85161
85273
  if (f) {
85162
- _this.ee(a, b);
85274
+ _this.ei(a, b);
85163
85275
  }
85164
85276
  });
85165
85277
  return e;
85166
85278
  };
85167
- ComponentRenderer.prototype.c4 = function (a, b, c, d) {
85279
+ ComponentRenderer.prototype.c6 = function (a, b, c, d) {
85168
85280
  var e = c.i(ComponentRenderer.platform);
85169
85281
  var f = c.d.collectionElementType;
85170
85282
  if (typeCast(DescriptionTreeNode.$, c.g) !== null) {
@@ -85176,11 +85288,11 @@
85176
85288
  if (f == null) {
85177
85289
  f = c.d.specificExternalType;
85178
85290
  }
85179
- var h = this.b6(f, c.g, a, b, false, c.c.g, c.d);
85291
+ var h = this.b8(f, c.g, a, b, false, c.c.g, c.d);
85180
85292
  this.adapter.addItemToCollection(e, c.d, d, c.e, h);
85181
85293
  };
85182
- ComponentRenderer.prototype.b6 = function (a, b, c, d, e, f, g) {
85183
- if (this.y(a)) {
85294
+ ComponentRenderer.prototype.b8 = function (a, b, c, d, e, f, g) {
85295
+ if (this.z(a)) {
85184
85296
  return b;
85185
85297
  }
85186
85298
  var h = null;
@@ -85192,17 +85304,17 @@
85192
85304
  if (!stringIsNullOrEmpty(j)) {
85193
85305
  if (this.shouldNamespaceSystemRefValues) {
85194
85306
  var k = "";
85195
- if (this.bf != null && this.bf.count > 0) {
85196
- for (var l = 0; l < this.bf.count; l++) {
85197
- k = this.bf._inner[l](c);
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);
85198
85310
  }
85199
85311
  }
85200
85312
  if (!stringIsNullOrEmpty(k)) {
85201
85313
  j = k + "/" + j;
85202
85314
  }
85203
85315
  }
85204
- if (this.a8.containsKey(j)) {
85205
- var m = this.a8.item(j);
85316
+ if (this.a9.containsKey(j)) {
85317
+ var m = this.a9.item(j);
85206
85318
  h = m;
85207
85319
  }
85208
85320
  }
@@ -85231,33 +85343,33 @@
85231
85343
  }
85232
85344
  }
85233
85345
  if (p != null) {
85234
- for (var r = 0; r < this.bd.count; r++) {
85235
- var s = this.bd._inner[r](c, o, p);
85346
+ for (var r = 0; r < this.be.count; r++) {
85347
+ var s = this.be._inner[r](c, o, p);
85236
85348
  if (s != null) {
85237
85349
  return s;
85238
85350
  }
85239
85351
  }
85240
85352
  if (o == "name") {
85241
85353
  var t = p;
85242
- if (this.a8.containsKey(t)) {
85243
- return this.a8.item(t);
85354
+ if (this.a9.containsKey(t)) {
85355
+ return this.a9.item(t);
85244
85356
  }
85245
85357
  }
85246
85358
  return null;
85247
85359
  }
85248
85360
  }
85249
85361
  else {
85250
- if (!this.a7.containsKey(c)) {
85251
- this.a7.addItem(c, ((function () {
85362
+ if (!this.a8.containsKey(c)) {
85363
+ this.a8.addItem(c, ((function () {
85252
85364
  var $ret = new ContainerState();
85253
85365
  $ret.i = c;
85254
85366
  return $ret;
85255
85367
  })()));
85256
- d = this.a7.item(c);
85368
+ d = this.a8.item(c);
85257
85369
  }
85258
- d.k(c, n.g, h, n, runOn(this, this.du), f);
85259
- var u = this.bh(n);
85260
- this.ds(c, d, u);
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);
85261
85373
  if (e) {
85262
85374
  d.l(this, c, n.g, runOn(this, this.removeRefValueCore));
85263
85375
  }
@@ -85271,23 +85383,23 @@
85271
85383
  return x;
85272
85384
  }
85273
85385
  if (!v && typeof b === 'string' && a.toLowerCase() != "string") {
85274
- return this.bu(a, b, g);
85386
+ return this.bw(a, b, g);
85275
85387
  }
85276
85388
  if (v) {
85277
85389
  return b;
85278
85390
  }
85279
85391
  return h;
85280
85392
  };
85281
- ComponentRenderer.prototype.y = function (a) {
85393
+ ComponentRenderer.prototype.z = function (a) {
85282
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";
85283
85395
  };
85284
- ComponentRenderer.prototype.bu = function (a, b, c) {
85285
- return this.context.t(a, b, c, this.o());
85396
+ ComponentRenderer.prototype.bw = function (a, b, c) {
85397
+ return this.context.t(a, b, c, this.p());
85286
85398
  };
85287
- ComponentRenderer.prototype.o = function () {
85399
+ ComponentRenderer.prototype.p = function () {
85288
85400
  return true;
85289
85401
  };
85290
- ComponentRenderer.prototype.bh = function (a) {
85402
+ ComponentRenderer.prototype.bj = function (a) {
85291
85403
  var b = a.f();
85292
85404
  var c = new List$1(DescriptionTreeAction.$, 0);
85293
85405
  for (var d = 0; d < b.count; d++) {
@@ -85307,17 +85419,17 @@
85307
85419
  }
85308
85420
  return c;
85309
85421
  };
85310
- ComponentRenderer.prototype.ad = function (a, b, c) {
85422
+ ComponentRenderer.prototype.ae = function (a, b, c) {
85311
85423
  if (c.c == null) {
85312
- return this.s(a, b, c);
85424
+ return this.t(a, b, c);
85313
85425
  }
85314
85426
  else {
85315
- var d = this.cc(a, b, c);
85316
- this.db(a, b, c, d);
85427
+ var d = this.ce(a, b, c);
85428
+ this.de(a, b, c, d);
85317
85429
  }
85318
85430
  return true;
85319
85431
  };
85320
- ComponentRenderer.prototype.db = function (a, b, c, d) {
85432
+ ComponentRenderer.prototype.de = function (a, b, c, d) {
85321
85433
  var e = c.i(ComponentRenderer.platform);
85322
85434
  this.adapter.clearCollection(d, e, c.d);
85323
85435
  if (c.h != null && typeCast(Array_$type, c.h) !== null) {
@@ -85329,18 +85441,18 @@
85329
85441
  if (i >= 0) {
85330
85442
  var j = b.j(i);
85331
85443
  if (j != null) {
85332
- this.de(a, j, b);
85444
+ this.dh(a, j, b);
85333
85445
  }
85334
85446
  }
85335
85447
  }
85336
85448
  }
85337
85449
  }
85338
85450
  };
85339
- ComponentRenderer.prototype.ej = function (a, b, c, d, e, f) {
85451
+ ComponentRenderer.prototype.en = function (a, b, c, d, e, f) {
85340
85452
  var e_18, _a;
85341
- if (this.a9.containsKey(b)) {
85453
+ if (this.ba.containsKey(b)) {
85342
85454
  try {
85343
- for (var _b = tslib.__values(fromEnum(this.a9.item(b))), _c = _b.next(); !_c.done; _c = _b.next()) {
85455
+ for (var _b = tslib.__values(fromEnum(this.ba.item(b))), _c = _b.next(); !_c.done; _c = _b.next()) {
85344
85456
  var g = _c.value;
85345
85457
  g(b, a, d);
85346
85458
  }
@@ -85361,23 +85473,23 @@
85361
85473
  }
85362
85474
  this.adapter.setPropertyValue(a, b, c, d, e, f);
85363
85475
  };
85364
- ComponentRenderer.prototype.ca = function (a, b) {
85476
+ ComponentRenderer.prototype.cc = function (a, b) {
85365
85477
  return this.adapter.getPropertyValue(a, b);
85366
85478
  };
85367
- ComponentRenderer.prototype.s = function (a, b, c) {
85368
- return this.r(a, b);
85479
+ ComponentRenderer.prototype.t = function (a, b, c) {
85480
+ return this.s(a, b);
85369
85481
  };
85370
- ComponentRenderer.prototype.r = function (a, b) {
85482
+ ComponentRenderer.prototype.s = function (a, b) {
85371
85483
  var _this = this;
85372
85484
  var c = this.adapter.getRootObject(a);
85373
85485
  if (c != null) {
85374
- this.de(a, c, b);
85486
+ this.dh(a, c, b);
85375
85487
  }
85376
85488
  var d = false;
85377
85489
  this.adapter.clearContainer(a, this.context, function (e) {
85378
85490
  d = true;
85379
85491
  if (e) {
85380
- _this.ee(a, b);
85492
+ _this.ei(a, b);
85381
85493
  }
85382
85494
  });
85383
85495
  return d;
@@ -85435,7 +85547,7 @@
85435
85547
  for (var f = 0; f < e.count; f++) {
85436
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))) {
85437
85549
  if (this.e.containsKey(e._inner[f])) {
85438
- a.de(b, this.e.item(e._inner[f]), this);
85550
+ a.dh(b, this.e.item(e._inner[f]), this);
85439
85551
  }
85440
85552
  }
85441
85553
  }
@@ -87333,7 +87445,7 @@
87333
87445
  };
87334
87446
  CodeGeneratingComponentRendererCodeEmitter.prototype.au = function (a) {
87335
87447
  var b = stringReplace(stringReplace(a, this.a7, ""), "Component", "");
87336
- b = CodeGeneratingComponentRenderer.e1(b);
87448
+ b = CodeGeneratingComponentRenderer.e5(b);
87337
87449
  return this.j.v(b);
87338
87450
  };
87339
87451
  CodeGeneratingComponentRendererCodeEmitter.prototype.bm = function () {
@@ -87356,7 +87468,7 @@
87356
87468
  return this.ad.d();
87357
87469
  }
87358
87470
  var a = stringReplace(stringReplace(this.aq, this.a7, ""), "Component", "");
87359
- return CodeGeneratingComponentRenderer.e1(a);
87471
+ return CodeGeneratingComponentRenderer.e5(a);
87360
87472
  },
87361
87473
  enumerable: false,
87362
87474
  configurable: true
@@ -87463,26 +87575,26 @@
87463
87575
  });
87464
87576
  BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.ar = function (a, b, c, d) {
87465
87577
  d = _super.prototype.ar.call(this, a, b, c, d);
87466
- this.f.l("private " + b.n() + " _" + CodeGeneratingComponentRenderer.e1(d) + " = null;");
87467
- this.f.l("public " + b.n() + " " + CodeGeneratingComponentRenderer.e2(d));
87578
+ this.f.l("private " + b.n() + " _" + CodeGeneratingComponentRenderer.e5(d) + " = null;");
87579
+ this.f.l("public " + b.n() + " " + CodeGeneratingComponentRenderer.e6(d));
87468
87580
  this.f.l("{");
87469
87581
  this.f.h();
87470
87582
  this.f.l("get");
87471
87583
  this.f.l("{");
87472
87584
  this.f.h();
87473
- this.f.l("if (this._" + CodeGeneratingComponentRenderer.e1(d) + " == null)");
87585
+ this.f.l("if (this._" + CodeGeneratingComponentRenderer.e5(d) + " == null)");
87474
87586
  this.f.l("{");
87475
87587
  this.f.h();
87476
87588
  this.f.k(c);
87477
- this.f.l("this._" + CodeGeneratingComponentRenderer.e1(d) + " = " + d + ";");
87589
+ this.f.l("this._" + CodeGeneratingComponentRenderer.e5(d) + " = " + d + ";");
87478
87590
  this.f.f();
87479
87591
  this.f.l("}");
87480
- this.f.l("return this._" + CodeGeneratingComponentRenderer.e1(d) + ";");
87592
+ this.f.l("return this._" + CodeGeneratingComponentRenderer.e5(d) + ";");
87481
87593
  this.f.f();
87482
87594
  this.f.l("}");
87483
87595
  this.f.f();
87484
87596
  this.f.l("}");
87485
- return CodeGeneratingComponentRenderer.e2(d);
87597
+ return CodeGeneratingComponentRenderer.e6(d);
87486
87598
  };
87487
87599
  BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.as = function (a, b, c, d, e) {
87488
87600
  e = _super.prototype.as.call(this, a, b, c, d, e);
@@ -87494,30 +87606,30 @@
87494
87606
  var g = a.b.specificExternalType;
87495
87607
  f = CodeGenerationItemBuilder.o(this.k.platform, g, b, this.al, this.am) + "[]";
87496
87608
  }
87497
- this.f.l("private " + f + " _" + CodeGeneratingComponentRenderer.e1(e) + " = null;");
87498
- this.f.l("public " + f + " " + CodeGeneratingComponentRenderer.e2(e));
87609
+ this.f.l("private " + f + " _" + CodeGeneratingComponentRenderer.e5(e) + " = null;");
87610
+ this.f.l("public " + f + " " + CodeGeneratingComponentRenderer.e6(e));
87499
87611
  this.f.l("{");
87500
87612
  this.f.h();
87501
87613
  this.f.l("get");
87502
87614
  this.f.l("{");
87503
87615
  this.f.h();
87504
- this.f.l("if (this._" + CodeGeneratingComponentRenderer.e1(e) + " == null)");
87616
+ this.f.l("if (this._" + CodeGeneratingComponentRenderer.e5(e) + " == null)");
87505
87617
  this.f.l("{");
87506
87618
  this.f.h();
87507
- this.f.k("var " + CodeGeneratingComponentRenderer.e1(e) + " = new " + stringReplace(f, "[]", "") + "[" + c.count + "];");
87619
+ this.f.k("var " + CodeGeneratingComponentRenderer.e5(e) + " = new " + stringReplace(f, "[]", "") + "[" + c.count + "];");
87508
87620
  for (var h = 0; h < c.count; h++) {
87509
87621
  this.f.k(d._inner[h]);
87510
87622
  this.f.k(e + "[" + h + "] = " + c._inner[h].u + ";");
87511
87623
  }
87512
- this.f.l("this._" + CodeGeneratingComponentRenderer.e1(e) + " = " + e + ";");
87624
+ this.f.l("this._" + CodeGeneratingComponentRenderer.e5(e) + " = " + e + ";");
87513
87625
  this.f.f();
87514
87626
  this.f.l("}");
87515
- this.f.l("return this._" + CodeGeneratingComponentRenderer.e1(e) + ";");
87627
+ this.f.l("return this._" + CodeGeneratingComponentRenderer.e5(e) + ";");
87516
87628
  this.f.f();
87517
87629
  this.f.l("}");
87518
87630
  this.f.f();
87519
87631
  this.f.l("}");
87520
- return CodeGeneratingComponentRenderer.e2(e);
87632
+ return CodeGeneratingComponentRenderer.e6(e);
87521
87633
  };
87522
87634
  BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.i = function (a, b) {
87523
87635
  return new BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter(a, b);
@@ -87585,14 +87697,14 @@
87585
87697
  this.bt.add_1(this.aq);
87586
87698
  this.bb(this.aq);
87587
87699
  }
87588
- this.f.l("private " + this.aq + " " + CodeGeneratingComponentRenderer.e1(this.ap) + ";");
87700
+ this.f.l("private " + this.aq + " " + CodeGeneratingComponentRenderer.e5(this.ap) + ";");
87589
87701
  if (!this.p) {
87590
87702
  if (this.v) {
87591
- this.g.l("var " + CodeGeneratingComponentRenderer.e1(this.ap) + " = this." + CodeGeneratingComponentRenderer.e1(this.ap) + ";");
87703
+ this.g.l("var " + CodeGeneratingComponentRenderer.e5(this.ap) + " = this." + CodeGeneratingComponentRenderer.e5(this.ap) + ";");
87592
87704
  }
87593
87705
  }
87594
87706
  else {
87595
- this.g.l("var " + CodeGeneratingComponentRenderer.e1(this.ap) + " = this." + CodeGeneratingComponentRenderer.e1(this.ap) + ";");
87707
+ this.g.l("var " + CodeGeneratingComponentRenderer.e5(this.ap) + " = this." + CodeGeneratingComponentRenderer.e5(this.ap) + ";");
87596
87708
  }
87597
87709
  }
87598
87710
  };
@@ -87607,7 +87719,7 @@
87607
87719
  _super.prototype.bl.call(this, a);
87608
87720
  };
87609
87721
  BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.bi = function (a, b, c, d) {
87610
- if (c.b != null && d.hasNameBinding(c.b.owningType, CodeGeneratingComponentRenderer.e2(c.b.propertyName)) && this.q(d, c)) {
87722
+ if (c.b != null && d.hasNameBinding(c.b.owningType, CodeGeneratingComponentRenderer.e6(c.b.propertyName)) && this.q(d, c)) {
87611
87723
  this.br(c);
87612
87724
  if (a > 0) {
87613
87725
  this.h.l("");
@@ -87628,22 +87740,22 @@
87628
87740
  this.bt.add_1(this.aq);
87629
87741
  this.bb(this.aq);
87630
87742
  }
87631
- this.f.l("private " + this.aq + " " + CodeGeneratingComponentRenderer.e1(this.ap) + ";");
87743
+ this.f.l("private " + this.aq + " " + CodeGeneratingComponentRenderer.e5(this.ap) + ";");
87632
87744
  if (!this.p) {
87633
87745
  if (this.v) {
87634
- this.g.l("var " + CodeGeneratingComponentRenderer.e1(this.ap) + " = this." + CodeGeneratingComponentRenderer.e1(this.ap) + ";");
87746
+ this.g.l("var " + CodeGeneratingComponentRenderer.e5(this.ap) + " = this." + CodeGeneratingComponentRenderer.e5(this.ap) + ";");
87635
87747
  }
87636
87748
  }
87637
87749
  else {
87638
- this.g.l("var " + CodeGeneratingComponentRenderer.e1(this.ap) + " = this." + CodeGeneratingComponentRenderer.e1(this.ap) + ";");
87750
+ this.g.l("var " + CodeGeneratingComponentRenderer.e5(this.ap) + " = this." + CodeGeneratingComponentRenderer.e5(this.ap) + ";");
87639
87751
  }
87640
87752
  }
87641
- var e = CodeGeneratingComponentRenderer.e1(this.a3(d, c, true));
87753
+ var e = CodeGeneratingComponentRenderer.e5(this.a3(d, c, true));
87642
87754
  var f = e;
87643
87755
  if (f != "null" && !stringStartsWith(f, "this.")) {
87644
87756
  f = "this." + f;
87645
87757
  }
87646
- this.e.l(CodeGeneratingComponentRenderer.e1(this.ap) + "." + b + " = " + f + ";");
87758
+ this.e.l(CodeGeneratingComponentRenderer.e5(this.ap) + "." + b + " = " + f + ";");
87647
87759
  return;
87648
87760
  }
87649
87761
  if (a > 0) {
@@ -87675,7 +87787,7 @@
87675
87787
  }
87676
87788
  if (b == "Name") {
87677
87789
  this.h.l("");
87678
- this.h.j("@ref=\"" + CodeGeneratingComponentRenderer.e1(this.a3(d, c, true)) + "\"");
87790
+ this.h.j("@ref=\"" + CodeGeneratingComponentRenderer.e5(this.a3(d, c, true)) + "\"");
87679
87791
  }
87680
87792
  };
87681
87793
  BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.aw = function (a) {
@@ -87733,15 +87845,15 @@
87733
87845
  return "@null";
87734
87846
  };
87735
87847
  BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.av = function (a) {
87736
- return CodeGeneratingComponentRenderer.e1(CodeGeneratingComponentRenderer.e1(a.a.e));
87848
+ return CodeGeneratingComponentRenderer.e5(CodeGeneratingComponentRenderer.e5(a.a.e));
87737
87849
  };
87738
87850
  BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.bw = function (a) {
87739
87851
  a = stringReplace(a, "-", "_");
87740
- return CodeGeneratingComponentRenderer.e2(a);
87852
+ return CodeGeneratingComponentRenderer.e6(a);
87741
87853
  };
87742
87854
  BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.a1 = function (a) {
87743
87855
  this.br(a);
87744
- return CodeGeneratingComponentRenderer.e2(a.a.e);
87856
+ return CodeGeneratingComponentRenderer.e6(a.a.e);
87745
87857
  };
87746
87858
  BlazorRazorCodeGeneratingComponentRendererCodeEmitter.prototype.bj = function (a, b, c, d) {
87747
87859
  var e_2, _a;
@@ -87859,14 +87971,14 @@
87859
87971
  this.bt.add_1(this.aq);
87860
87972
  this.bb(this.aq);
87861
87973
  }
87862
- this.f.l("private " + this.aq + " " + CodeGeneratingComponentRenderer.e1(this.ap) + ";");
87974
+ this.f.l("private " + this.aq + " " + CodeGeneratingComponentRenderer.e5(this.ap) + ";");
87863
87975
  if (!this.p) {
87864
87976
  if (this.v) {
87865
- this.g.l("var " + CodeGeneratingComponentRenderer.e1(this.ap) + " = this." + CodeGeneratingComponentRenderer.e1(this.ap) + ";");
87977
+ this.g.l("var " + CodeGeneratingComponentRenderer.e5(this.ap) + " = this." + CodeGeneratingComponentRenderer.e5(this.ap) + ";");
87866
87978
  }
87867
87979
  }
87868
87980
  else {
87869
- this.g.l("var " + CodeGeneratingComponentRenderer.e1(this.ap) + " = this." + CodeGeneratingComponentRenderer.e1(this.ap) + ";");
87981
+ this.g.l("var " + CodeGeneratingComponentRenderer.e5(this.ap) + " = this." + CodeGeneratingComponentRenderer.e5(this.ap) + ";");
87870
87982
  }
87871
87983
  }
87872
87984
  };
@@ -87876,7 +87988,7 @@
87876
87988
  _super.prototype.bl.call(this, a);
87877
87989
  };
87878
87990
  BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.bi = function (a, b, c, d) {
87879
- if (c.b != null && d.hasNameBinding(c.b.owningType, CodeGeneratingComponentRenderer.e2(c.b.propertyName)) && this.q(d, c)) {
87991
+ if (c.b != null && d.hasNameBinding(c.b.owningType, CodeGeneratingComponentRenderer.e6(c.b.propertyName)) && this.q(d, c)) {
87880
87992
  this.br(c);
87881
87993
  if (a > 0) {
87882
87994
  this.h.l("");
@@ -87897,22 +88009,22 @@
87897
88009
  this.bt.add_1(this.aq);
87898
88010
  this.bb(this.aq);
87899
88011
  }
87900
- this.f.l("private " + this.aq + " " + CodeGeneratingComponentRenderer.e1(this.ap) + ";");
88012
+ this.f.l("private " + this.aq + " " + CodeGeneratingComponentRenderer.e5(this.ap) + ";");
87901
88013
  if (!this.p) {
87902
88014
  if (this.v) {
87903
- this.g.l("var " + CodeGeneratingComponentRenderer.e1(this.ap) + " = this." + CodeGeneratingComponentRenderer.e1(this.ap) + ";");
88015
+ this.g.l("var " + CodeGeneratingComponentRenderer.e5(this.ap) + " = this." + CodeGeneratingComponentRenderer.e5(this.ap) + ";");
87904
88016
  }
87905
88017
  }
87906
88018
  else {
87907
- this.g.l("var " + CodeGeneratingComponentRenderer.e1(this.ap) + " = this." + CodeGeneratingComponentRenderer.e1(this.ap) + ";");
88019
+ this.g.l("var " + CodeGeneratingComponentRenderer.e5(this.ap) + " = this." + CodeGeneratingComponentRenderer.e5(this.ap) + ";");
87908
88020
  }
87909
88021
  }
87910
- var e = CodeGeneratingComponentRenderer.e1(this.a3(d, c, true));
88022
+ var e = CodeGeneratingComponentRenderer.e5(this.a3(d, c, true));
87911
88023
  var f = e;
87912
88024
  if (f != "null" && !stringStartsWith(f, "this.")) {
87913
88025
  f = "this." + f;
87914
88026
  }
87915
- this.e.l(CodeGeneratingComponentRenderer.e1(this.ap) + "." + b + " = " + f + ";");
88027
+ this.e.l(CodeGeneratingComponentRenderer.e5(this.ap) + "." + b + " = " + f + ";");
87916
88028
  return;
87917
88029
  }
87918
88030
  if (a > 0) {
@@ -88010,15 +88122,15 @@
88010
88122
  return "null";
88011
88123
  };
88012
88124
  BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.av = function (a) {
88013
- return CodeGeneratingComponentRenderer.e1(CodeGeneratingComponentRenderer.e1(a.a.e));
88125
+ return CodeGeneratingComponentRenderer.e5(CodeGeneratingComponentRenderer.e5(a.a.e));
88014
88126
  };
88015
88127
  BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.bw = function (a) {
88016
88128
  a = stringReplace(a, "-", "_");
88017
- return CodeGeneratingComponentRenderer.e2(a);
88129
+ return CodeGeneratingComponentRenderer.e6(a);
88018
88130
  };
88019
88131
  BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.a1 = function (a) {
88020
88132
  this.br(a);
88021
- return CodeGeneratingComponentRenderer.e2(a.a.e);
88133
+ return CodeGeneratingComponentRenderer.e6(a.a.e);
88022
88134
  };
88023
88135
  BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.bj = function (a, b, c, d) {
88024
88136
  var e_3, _a;
@@ -88105,20 +88217,20 @@
88105
88217
  ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.ar = function (a, b, c, d) {
88106
88218
  d = _super.prototype.ar.call(this, a, b, c, d);
88107
88219
  var e = b.r();
88108
- this.f.l("private " + " _" + CodeGeneratingComponentRenderer.e1(d) + ": " + e + " | null = null;");
88109
- this.f.l("public get " + CodeGeneratingComponentRenderer.e1(d) + "(): " + e + " {");
88220
+ this.f.l("private " + " _" + CodeGeneratingComponentRenderer.e5(d) + ": " + e + " | null = null;");
88221
+ this.f.l("public get " + CodeGeneratingComponentRenderer.e5(d) + "(): " + e + " {");
88110
88222
  this.f.h();
88111
- this.f.l("if (this._" + CodeGeneratingComponentRenderer.e1(d) + " == null)");
88223
+ this.f.l("if (this._" + CodeGeneratingComponentRenderer.e5(d) + " == null)");
88112
88224
  this.f.l("{");
88113
88225
  this.f.h();
88114
88226
  this.f.k(c);
88115
- this.f.l("this._" + CodeGeneratingComponentRenderer.e1(d) + " = " + d + ";");
88227
+ this.f.l("this._" + CodeGeneratingComponentRenderer.e5(d) + " = " + d + ";");
88116
88228
  this.f.f();
88117
88229
  this.f.l("}");
88118
- this.f.l("return this._" + CodeGeneratingComponentRenderer.e1(d) + ";");
88230
+ this.f.l("return this._" + CodeGeneratingComponentRenderer.e5(d) + ";");
88119
88231
  this.f.f();
88120
88232
  this.f.l("}");
88121
- return CodeGeneratingComponentRenderer.e2(d);
88233
+ return CodeGeneratingComponentRenderer.e6(d);
88122
88234
  };
88123
88235
  ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.as = function (a, b, c, d, e) {
88124
88236
  e = _super.prototype.as.call(this, a, b, c, d, e);
@@ -88130,24 +88242,24 @@
88130
88242
  var g = a.b.specificExternalType;
88131
88243
  f = CodeGenerationItemBuilder.o(this.k.platform, g, b, this.al, this.am) + "[]";
88132
88244
  }
88133
- this.f.l("private" + " _" + CodeGeneratingComponentRenderer.e1(e) + ": " + f + " | null = null;");
88134
- this.f.l("public get " + CodeGeneratingComponentRenderer.e1(e) + "(): " + f + " {");
88245
+ this.f.l("private" + " _" + CodeGeneratingComponentRenderer.e5(e) + ": " + f + " | null = null;");
88246
+ this.f.l("public get " + CodeGeneratingComponentRenderer.e5(e) + "(): " + f + " {");
88135
88247
  this.f.h();
88136
- this.f.l("if (this._" + CodeGeneratingComponentRenderer.e1(e) + " == null)");
88248
+ this.f.l("if (this._" + CodeGeneratingComponentRenderer.e5(e) + " == null)");
88137
88249
  this.f.l("{");
88138
88250
  this.f.h();
88139
- this.f.k("let " + CodeGeneratingComponentRenderer.e1(e) + ": " + f + " = [];");
88251
+ this.f.k("let " + CodeGeneratingComponentRenderer.e5(e) + ": " + f + " = [];");
88140
88252
  for (var h = 0; h < c.count; h++) {
88141
88253
  this.f.k(d._inner[h]);
88142
88254
  this.f.k(e + ".push(" + c._inner[h].u + ")");
88143
88255
  }
88144
- this.f.l("this._" + CodeGeneratingComponentRenderer.e1(e) + " = " + e + ";");
88256
+ this.f.l("this._" + CodeGeneratingComponentRenderer.e5(e) + " = " + e + ";");
88145
88257
  this.f.f();
88146
88258
  this.f.l("}");
88147
- this.f.l("return this._" + CodeGeneratingComponentRenderer.e1(e) + ";");
88259
+ this.f.l("return this._" + CodeGeneratingComponentRenderer.e5(e) + ";");
88148
88260
  this.f.f();
88149
88261
  this.f.l("}");
88150
- return CodeGeneratingComponentRenderer.e2(e);
88262
+ return CodeGeneratingComponentRenderer.e6(e);
88151
88263
  };
88152
88264
  ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.i = function (a, b) {
88153
88265
  return new ReactCodeBehindCodeGeneratingComponentRendererCodeEmitter(a, b);
@@ -88199,15 +88311,15 @@
88199
88311
  }
88200
88312
  if (!this.bs.contains(this.ap)) {
88201
88313
  this.bs.add_1(this.ap);
88202
- this.f.l("private " + CodeGeneratingComponentRenderer.e1(this.ap) + ": " + this.aq);
88314
+ this.f.l("private " + CodeGeneratingComponentRenderer.e5(this.ap) + ": " + this.aq);
88203
88315
  if (this.v) {
88204
- this.f.l("private " + CodeGeneratingComponentRenderer.e1(this.ap) + "Ref(r: " + this.aq + ") {");
88316
+ this.f.l("private " + CodeGeneratingComponentRenderer.e5(this.ap) + "Ref(r: " + this.aq + ") {");
88205
88317
  this.f.h();
88206
- this.f.l("this." + CodeGeneratingComponentRenderer.e1(this.ap) + " = r;");
88318
+ this.f.l("this." + CodeGeneratingComponentRenderer.e5(this.ap) + " = r;");
88207
88319
  this.f.l("this.setState({});");
88208
88320
  this.f.f();
88209
88321
  this.f.l("}");
88210
- this.g.l("this." + CodeGeneratingComponentRenderer.e1(this.ap) + "Ref = " + "this." + CodeGeneratingComponentRenderer.e1(this.ap) + "Ref.bind(this);");
88322
+ this.g.l("this." + CodeGeneratingComponentRenderer.e5(this.ap) + "Ref = " + "this." + CodeGeneratingComponentRenderer.e5(this.ap) + "Ref.bind(this);");
88211
88323
  }
88212
88324
  }
88213
88325
  };
@@ -88215,7 +88327,7 @@
88215
88327
  if (stringEndsWith(a, "Component")) {
88216
88328
  a = a.substr(0, a.length - ("Component").length);
88217
88329
  }
88218
- return CodeGeneratingComponentRenderer.e2(a);
88330
+ return CodeGeneratingComponentRenderer.e6(a);
88219
88331
  };
88220
88332
  ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.bq = function () {
88221
88333
  if (!this.v && !this.p) {
@@ -88228,7 +88340,7 @@
88228
88340
  this.h.h();
88229
88341
  };
88230
88342
  ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.bu = function () {
88231
- var a = CodeGeneratingComponentRenderer.e1(stringReplace(stringReplace(this.aq, this.a7, ""), "Component", ""));
88343
+ var a = CodeGeneratingComponentRenderer.e5(stringReplace(stringReplace(this.aq, this.a7, ""), "Component", ""));
88232
88344
  a = this.k.u(a);
88233
88345
  return a;
88234
88346
  };
@@ -88236,9 +88348,9 @@
88236
88348
  if (!stringIsNullOrEmpty(a.a.e)) {
88237
88349
  this.br(a);
88238
88350
  if (!this.bs.contains(a.a.e)) {
88239
- this.g.l("this." + CodeGeneratingComponentRenderer.e1(a.a.e) + " = " + "this." + CodeGeneratingComponentRenderer.e1(a.a.e) + ".bind(this);");
88351
+ this.g.l("this." + CodeGeneratingComponentRenderer.e5(a.a.e) + " = " + "this." + CodeGeneratingComponentRenderer.e5(a.a.e) + ".bind(this);");
88240
88352
  }
88241
- return "this." + CodeGeneratingComponentRenderer.e1(a.a.e);
88353
+ return "this." + CodeGeneratingComponentRenderer.e5(a.a.e);
88242
88354
  }
88243
88355
  return this.a0();
88244
88356
  };
@@ -88248,9 +88360,9 @@
88248
88360
  _super.prototype.bl.call(this, a);
88249
88361
  };
88250
88362
  ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.bi = function (a, b, c, d) {
88251
- var e = CodeGeneratingComponentRenderer.e1(b);
88363
+ var e = CodeGeneratingComponentRenderer.e5(b);
88252
88364
  var f = this.a3(d, c, true);
88253
- if (c.b != null && d.hasNameBinding(c.b.owningType, CodeGeneratingComponentRenderer.e2(c.b.propertyName)) && this.q(d, c)) {
88365
+ if (c.b != null && d.hasNameBinding(c.b.owningType, CodeGeneratingComponentRenderer.e6(c.b.propertyName)) && this.q(d, c)) {
88254
88366
  this.br(c);
88255
88367
  if (a > 0) {
88256
88368
  this.h.l("");
@@ -88267,7 +88379,7 @@
88267
88379
  var g = (c.b != null && c.b.knownType == 10);
88268
88380
  if (this.q(d, c)) {
88269
88381
  this.br(c);
88270
- var h = CodeGeneratingComponentRenderer.e1(f);
88382
+ var h = CodeGeneratingComponentRenderer.e5(f);
88271
88383
  var i = h;
88272
88384
  if (i != "null" && !stringStartsWith(i, "this.")) {
88273
88385
  i = "this." + i;
@@ -88296,7 +88408,7 @@
88296
88408
  if (a > 0) {
88297
88409
  this.h.l("");
88298
88410
  }
88299
- this.h.j("ref={this." + CodeGeneratingComponentRenderer.e1(this.a3(d, c, true)) + "Ref}");
88411
+ this.h.j("ref={this." + CodeGeneratingComponentRenderer.e5(this.a3(d, c, true)) + "Ref}");
88300
88412
  }
88301
88413
  }
88302
88414
  };
@@ -88314,10 +88426,10 @@
88314
88426
  return "null";
88315
88427
  };
88316
88428
  ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.av = function (a) {
88317
- return "this." + CodeGeneratingComponentRenderer.e1(a.a.e);
88429
+ return "this." + CodeGeneratingComponentRenderer.e5(a.a.e);
88318
88430
  };
88319
88431
  ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.a1 = function (a) {
88320
- return "this." + CodeGeneratingComponentRenderer.e1(a.a.e);
88432
+ return "this." + CodeGeneratingComponentRenderer.e5(a.a.e);
88321
88433
  };
88322
88434
  ReactMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.bj = function (a, b, c, d) {
88323
88435
  var e_4, _a;
@@ -88398,7 +88510,7 @@
88398
88510
  };
88399
88511
  WebCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.aw = function (a) {
88400
88512
  if (this.bs(a)) {
88401
- return "\"" + CodeGeneratingComponentRenderer.e3(a.c.toString()) + "\"";
88513
+ return "\"" + CodeGeneratingComponentRenderer.e7(a.c.toString()) + "\"";
88402
88514
  }
88403
88515
  else {
88404
88516
  if (!this.bu.contains(a.b.specificType)) {
@@ -88469,14 +88581,14 @@
88469
88581
  this.bu.add_1(this.aq);
88470
88582
  this.bb(this.aq);
88471
88583
  }
88472
- this.f.l("private " + CodeGeneratingComponentRenderer.e1(this.ap) + ": " + this.aq);
88584
+ this.f.l("private " + CodeGeneratingComponentRenderer.e5(this.ap) + ": " + this.aq);
88473
88585
  if (!this.p) {
88474
88586
  if (this.v) {
88475
- this.g.l("var " + CodeGeneratingComponentRenderer.e1(this.ap) + " = this." + CodeGeneratingComponentRenderer.e1(this.ap) + " = document.querySelector('" + CodeGeneratingComponentRenderer.e4(stringReplace(this.aq, "Component", "")) + "') as " + this.aq + ";");
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 + ";");
88476
88588
  }
88477
88589
  }
88478
88590
  else {
88479
- this.g.l("var " + CodeGeneratingComponentRenderer.e1(this.ap) + " = this." + CodeGeneratingComponentRenderer.e1(this.ap) + " = document.getElementById('" + this.ap + "') as " + this.aq + ";");
88591
+ this.g.l("var " + CodeGeneratingComponentRenderer.e5(this.ap) + " = this." + CodeGeneratingComponentRenderer.e5(this.ap) + " = document.getElementById('" + this.ap + "') as " + this.aq + ";");
88480
88592
  }
88481
88593
  }
88482
88594
  };
@@ -88484,7 +88596,7 @@
88484
88596
  if (stringEndsWith(a, "Component")) {
88485
88597
  a = a.substr(0, a.length - ("Component").length);
88486
88598
  }
88487
- return CodeGeneratingComponentRenderer.e4(a);
88599
+ return CodeGeneratingComponentRenderer.e8(a);
88488
88600
  };
88489
88601
  WebCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.bq = function () {
88490
88602
  this.h.l("");
@@ -88498,7 +88610,7 @@
88498
88610
  _super.prototype.bl.call(this, a);
88499
88611
  };
88500
88612
  WebCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.bi = function (a, b, c, d) {
88501
- var e = CodeGeneratingComponentRenderer.e1(b);
88613
+ var e = CodeGeneratingComponentRenderer.e5(b);
88502
88614
  if (e == "name" && c.b == null) {
88503
88615
  return;
88504
88616
  }
@@ -88510,30 +88622,30 @@
88510
88622
  this.bu.add_1(this.aq);
88511
88623
  this.bb(this.aq);
88512
88624
  }
88513
- this.f.l("private " + CodeGeneratingComponentRenderer.e1(this.ap) + ": " + this.aq);
88625
+ this.f.l("private " + CodeGeneratingComponentRenderer.e5(this.ap) + ": " + this.aq);
88514
88626
  if (!this.p) {
88515
88627
  if (this.v) {
88516
- this.g.l("var " + CodeGeneratingComponentRenderer.e1(this.ap) + " = this." + CodeGeneratingComponentRenderer.e1(this.ap) + " = document.querySelector('" + CodeGeneratingComponentRenderer.e4(stringReplace(this.aq, "Component", "")) + "') as " + this.aq + ";");
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 + ";");
88517
88629
  }
88518
88630
  }
88519
88631
  else {
88520
- this.g.l("var " + CodeGeneratingComponentRenderer.e1(this.ap) + " = this." + CodeGeneratingComponentRenderer.e1(this.ap) + " = document.getElementById('" + this.ap + "') as " + this.aq + ";");
88632
+ this.g.l("var " + CodeGeneratingComponentRenderer.e5(this.ap) + " = this." + CodeGeneratingComponentRenderer.e5(this.ap) + " = document.getElementById('" + this.ap + "') as " + this.aq + ";");
88521
88633
  }
88522
88634
  }
88523
- var f = CodeGeneratingComponentRenderer.e1(this.a3(d, c, true));
88635
+ var f = CodeGeneratingComponentRenderer.e5(this.a3(d, c, true));
88524
88636
  var g = f;
88525
88637
  if (g != "null" && !stringStartsWith(g, "this.")) {
88526
88638
  g = "this." + g;
88527
88639
  }
88528
88640
  if (this.aq == "any" && stringContains(e, "-")) {
88529
- this.e.l(CodeGeneratingComponentRenderer.e1(this.ap) + "['" + e + "'] = " + g + ";");
88641
+ this.e.l(CodeGeneratingComponentRenderer.e5(this.ap) + "['" + e + "'] = " + g + ";");
88530
88642
  }
88531
88643
  else {
88532
88644
  if (c.b != null && c.b.isCustomEvent) {
88533
- this.e.l(CodeGeneratingComponentRenderer.e1(this.ap) + ".addEventListener(\"" + e + "\", " + g + ");");
88645
+ this.e.l(CodeGeneratingComponentRenderer.e5(this.ap) + ".addEventListener(\"" + e + "\", " + g + ");");
88534
88646
  }
88535
88647
  else {
88536
- this.e.l(CodeGeneratingComponentRenderer.e1(this.ap) + "." + e + " = " + g + ";");
88648
+ this.e.l(CodeGeneratingComponentRenderer.e5(this.ap) + "." + e + " = " + g + ";");
88537
88649
  }
88538
88650
  }
88539
88651
  return;
@@ -88542,10 +88654,10 @@
88542
88654
  this.h.l("");
88543
88655
  }
88544
88656
  if (this.aq == "any" && stringContains(e, "-")) {
88545
- this.h.j(this.ap + "." + CodeGeneratingComponentRenderer.e1(this.ap) + "['" + e + "']");
88657
+ this.h.j(this.ap + "." + CodeGeneratingComponentRenderer.e5(this.ap) + "['" + e + "']");
88546
88658
  }
88547
88659
  else {
88548
- this.h.j(this.ap + "." + CodeGeneratingComponentRenderer.e1(e));
88660
+ this.h.j(this.ap + "." + CodeGeneratingComponentRenderer.e5(e));
88549
88661
  }
88550
88662
  this.h.j(" = ");
88551
88663
  this.h.j(this.a3(d, c, true));
@@ -88565,18 +88677,18 @@
88565
88677
  return "null";
88566
88678
  };
88567
88679
  WebCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.av = function (a) {
88568
- return CodeGeneratingComponentRenderer.e1(a.a.e);
88680
+ return CodeGeneratingComponentRenderer.e5(a.a.e);
88569
88681
  };
88570
88682
  WebCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.a1 = function (a) {
88571
- return CodeGeneratingComponentRenderer.e1(a.a.e);
88683
+ return CodeGeneratingComponentRenderer.e5(a.a.e);
88572
88684
  };
88573
88685
  WebCodeBehindCodeGeneratingComponentRendererCodeEmitter.prototype.ax = function (a) {
88574
88686
  if (!stringIsNullOrEmpty(a.a.e)) {
88575
88687
  this.br(a);
88576
88688
  if (!this.bt.contains(a.a.e)) {
88577
- this.g.l("this." + CodeGeneratingComponentRenderer.e1(a.a.e) + " = " + "this." + CodeGeneratingComponentRenderer.e1(a.a.e) + ".bind(this);");
88689
+ this.g.l("this." + CodeGeneratingComponentRenderer.e5(a.a.e) + " = " + "this." + CodeGeneratingComponentRenderer.e5(a.a.e) + ".bind(this);");
88578
88690
  }
88579
- return "this." + CodeGeneratingComponentRenderer.e1(a.a.e);
88691
+ return "this." + CodeGeneratingComponentRenderer.e5(a.a.e);
88580
88692
  }
88581
88693
  return this.a0();
88582
88694
  };
@@ -88764,7 +88876,7 @@
88764
88876
  };
88765
88877
  WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.aw = function (a) {
88766
88878
  if (this.bs(a)) {
88767
- return CodeGeneratingComponentRenderer.e3(a.c.toString());
88879
+ return CodeGeneratingComponentRenderer.e7(a.c.toString());
88768
88880
  }
88769
88881
  else {
88770
88882
  return _super.prototype.aw.call(this, a);
@@ -88776,20 +88888,20 @@
88776
88888
  WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.ar = function (a, b, c, d) {
88777
88889
  d = _super.prototype.ar.call(this, a, b, c, d);
88778
88890
  var e = b.r();
88779
- this.f.l("private" + " _" + CodeGeneratingComponentRenderer.e1(d) + ": " + e + " | null = null;");
88780
- this.f.l("public get " + CodeGeneratingComponentRenderer.e1(d) + "(): " + e + " {");
88891
+ this.f.l("private" + " _" + CodeGeneratingComponentRenderer.e5(d) + ": " + e + " | null = null;");
88892
+ this.f.l("public get " + CodeGeneratingComponentRenderer.e5(d) + "(): " + e + " {");
88781
88893
  this.f.h();
88782
- this.f.l("if (this._" + CodeGeneratingComponentRenderer.e1(d) + " == null)");
88894
+ this.f.l("if (this._" + CodeGeneratingComponentRenderer.e5(d) + " == null)");
88783
88895
  this.f.l("{");
88784
88896
  this.f.h();
88785
88897
  this.f.k(c);
88786
- this.f.l("this._" + CodeGeneratingComponentRenderer.e1(d) + " = " + d + ";");
88898
+ this.f.l("this._" + CodeGeneratingComponentRenderer.e5(d) + " = " + d + ";");
88787
88899
  this.f.f();
88788
88900
  this.f.l("}");
88789
- this.f.l("return this._" + CodeGeneratingComponentRenderer.e1(d) + ";");
88901
+ this.f.l("return this._" + CodeGeneratingComponentRenderer.e5(d) + ";");
88790
88902
  this.f.f();
88791
88903
  this.f.l("}");
88792
- return CodeGeneratingComponentRenderer.e2(d);
88904
+ return CodeGeneratingComponentRenderer.e6(d);
88793
88905
  };
88794
88906
  WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.as = function (a, b, c, d, e) {
88795
88907
  e = _super.prototype.as.call(this, a, b, c, d, e);
@@ -88801,24 +88913,24 @@
88801
88913
  var g = a.b.specificExternalType;
88802
88914
  f = CodeGenerationItemBuilder.o(this.k.platform, g, b, this.al, this.am) + "[]";
88803
88915
  }
88804
- this.f.l("private" + " _" + CodeGeneratingComponentRenderer.e1(e) + ": " + f + " | null = null;");
88805
- this.f.l("public get " + CodeGeneratingComponentRenderer.e1(e) + "(): " + f + " {");
88916
+ this.f.l("private" + " _" + CodeGeneratingComponentRenderer.e5(e) + ": " + f + " | null = null;");
88917
+ this.f.l("public get " + CodeGeneratingComponentRenderer.e5(e) + "(): " + f + " {");
88806
88918
  this.f.h();
88807
- this.f.l("if (this._" + CodeGeneratingComponentRenderer.e1(e) + " == null)");
88919
+ this.f.l("if (this._" + CodeGeneratingComponentRenderer.e5(e) + " == null)");
88808
88920
  this.f.l("{");
88809
88921
  this.f.h();
88810
- this.f.k("let " + CodeGeneratingComponentRenderer.e1(e) + ": " + f + " = [];");
88922
+ this.f.k("let " + CodeGeneratingComponentRenderer.e5(e) + ": " + f + " = [];");
88811
88923
  for (var h = 0; h < c.count; h++) {
88812
88924
  this.f.k(d._inner[h]);
88813
88925
  this.f.k(e + ".push(" + c._inner[h].u + ")");
88814
88926
  }
88815
- this.f.l("this._" + CodeGeneratingComponentRenderer.e1(e) + " = " + e + ";");
88927
+ this.f.l("this._" + CodeGeneratingComponentRenderer.e5(e) + " = " + e + ";");
88816
88928
  this.f.f();
88817
88929
  this.f.l("}");
88818
- this.f.l("return this._" + CodeGeneratingComponentRenderer.e1(e) + ";");
88930
+ this.f.l("return this._" + CodeGeneratingComponentRenderer.e5(e) + ";");
88819
88931
  this.f.f();
88820
88932
  this.f.l("}");
88821
- return CodeGeneratingComponentRenderer.e2(e);
88933
+ return CodeGeneratingComponentRenderer.e6(e);
88822
88934
  };
88823
88935
  WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.at = function (a, b) {
88824
88936
  if (b.c == null) {
@@ -88846,14 +88958,14 @@
88846
88958
  this.bu.add_1(this.aq);
88847
88959
  this.bb(this.aq);
88848
88960
  }
88849
- this.f.l("private " + CodeGeneratingComponentRenderer.e1(this.ap) + ": " + this.aq);
88961
+ this.f.l("private " + CodeGeneratingComponentRenderer.e5(this.ap) + ": " + this.aq);
88850
88962
  if (!this.p) {
88851
88963
  if (this.v) {
88852
- this.g.l("var " + CodeGeneratingComponentRenderer.e1(this.ap) + " = this." + CodeGeneratingComponentRenderer.e1(this.ap) + " = document.querySelector('" + CodeGeneratingComponentRenderer.e4(stringReplace(this.aq, "Component", "")) + "') as " + this.aq + ";");
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 + ";");
88853
88965
  }
88854
88966
  }
88855
88967
  else {
88856
- this.g.l("var " + CodeGeneratingComponentRenderer.e1(this.ap) + " = this." + CodeGeneratingComponentRenderer.e1(this.ap) + " = document.getElementById('" + this.ap + "') as " + this.aq + ";");
88968
+ this.g.l("var " + CodeGeneratingComponentRenderer.e5(this.ap) + " = this." + CodeGeneratingComponentRenderer.e5(this.ap) + " = document.getElementById('" + this.ap + "') as " + this.aq + ";");
88857
88969
  }
88858
88970
  }
88859
88971
  };
@@ -88861,7 +88973,7 @@
88861
88973
  if (stringEndsWith(a, "Component")) {
88862
88974
  a = a.substr(0, a.length - ("Component").length);
88863
88975
  }
88864
- return CodeGeneratingComponentRenderer.e4(a);
88976
+ return CodeGeneratingComponentRenderer.e8(a);
88865
88977
  };
88866
88978
  WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.bq = function () {
88867
88979
  this.h.l(">");
@@ -88880,7 +88992,7 @@
88880
88992
  WebImportsHalper.b(this.k, this.a6, this.a5, this.a7, a, b, c);
88881
88993
  };
88882
88994
  WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.bi = function (a, b, c, d) {
88883
- var e = CodeGeneratingComponentRenderer.e1(b);
88995
+ var e = CodeGeneratingComponentRenderer.e5(b);
88884
88996
  if (this.q(d, c)) {
88885
88997
  this.br(c);
88886
88998
  if (!this.bt.contains(this.ap)) {
@@ -88889,33 +89001,33 @@
88889
89001
  this.bu.add_1(this.aq);
88890
89002
  this.bb(this.aq);
88891
89003
  }
88892
- this.f.l("private " + CodeGeneratingComponentRenderer.e1(this.ap) + ": " + this.aq);
89004
+ this.f.l("private " + CodeGeneratingComponentRenderer.e5(this.ap) + ": " + this.aq);
88893
89005
  if (!this.p) {
88894
89006
  if (this.v) {
88895
- this.g.l("var " + CodeGeneratingComponentRenderer.e1(this.ap) + " = this." + CodeGeneratingComponentRenderer.e1(this.ap) + " = document.querySelector('" + CodeGeneratingComponentRenderer.e4(stringReplace(this.aq, "Component", "")) + "') as " + this.aq + ";");
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 + ";");
88896
89008
  }
88897
89009
  }
88898
89010
  else {
88899
- this.g.l("var " + CodeGeneratingComponentRenderer.e1(this.ap) + " = this." + CodeGeneratingComponentRenderer.e1(this.ap) + " = document.getElementById('" + this.ap + "') as " + this.aq + ";");
89011
+ this.g.l("var " + CodeGeneratingComponentRenderer.e5(this.ap) + " = this." + CodeGeneratingComponentRenderer.e5(this.ap) + " = document.getElementById('" + this.ap + "') as " + this.aq + ";");
88900
89012
  }
88901
89013
  }
88902
- var f = CodeGeneratingComponentRenderer.e1(this.a3(d, c, true));
89014
+ var f = CodeGeneratingComponentRenderer.e5(this.a3(d, c, true));
88903
89015
  var g = f;
88904
89016
  if (g != "null" && !stringStartsWith(g, "this.")) {
88905
89017
  g = "this." + g;
88906
89018
  }
88907
89019
  if (c.b.isCustomEvent) {
88908
- this.e.l(CodeGeneratingComponentRenderer.e1(this.ap) + ".addEventListener(\"" + e + "\", " + g + ");");
89020
+ this.e.l(CodeGeneratingComponentRenderer.e5(this.ap) + ".addEventListener(\"" + e + "\", " + g + ");");
88909
89021
  }
88910
89022
  else {
88911
- this.e.l(CodeGeneratingComponentRenderer.e1(this.ap) + "." + e + " = " + g + ";");
89023
+ this.e.l(CodeGeneratingComponentRenderer.e5(this.ap) + "." + e + " = " + g + ";");
88912
89024
  }
88913
89025
  return;
88914
89026
  }
88915
89027
  if (a > 0) {
88916
89028
  this.h.l("");
88917
89029
  }
88918
- this.h.j(CodeGeneratingComponentRenderer.e4(e));
89030
+ this.h.j(CodeGeneratingComponentRenderer.e8(e));
88919
89031
  this.h.j("=");
88920
89032
  this.h.j("\"");
88921
89033
  this.h.j(this.a3(d, c, true));
@@ -88939,18 +89051,18 @@
88939
89051
  return "null";
88940
89052
  };
88941
89053
  WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.av = function (a) {
88942
- return CodeGeneratingComponentRenderer.e1(a.a.e);
89054
+ return CodeGeneratingComponentRenderer.e5(a.a.e);
88943
89055
  };
88944
89056
  WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.a1 = function (a) {
88945
- return CodeGeneratingComponentRenderer.e1(a.a.e);
89057
+ return CodeGeneratingComponentRenderer.e5(a.a.e);
88946
89058
  };
88947
89059
  WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter.prototype.ax = function (a) {
88948
89060
  if (!stringIsNullOrEmpty(a.a.e)) {
88949
89061
  this.br(a);
88950
89062
  if (!this.bt.contains(a.a.e)) {
88951
- this.g.l("this." + CodeGeneratingComponentRenderer.e1(a.a.e) + " = " + "this." + CodeGeneratingComponentRenderer.e1(a.a.e) + ".bind(this);");
89063
+ this.g.l("this." + CodeGeneratingComponentRenderer.e5(a.a.e) + " = " + "this." + CodeGeneratingComponentRenderer.e5(a.a.e) + ".bind(this);");
88952
89064
  }
88953
- return "this." + CodeGeneratingComponentRenderer.e1(a.a.e);
89065
+ return "this." + CodeGeneratingComponentRenderer.e5(a.a.e);
88954
89066
  }
88955
89067
  return this.a0();
88956
89068
  };
@@ -89030,11 +89142,11 @@
89030
89142
  }
89031
89143
  TSCodeGeneratingComponentRendererHandlerEmitter.prototype.t = function (a, b) {
89032
89144
  _super.prototype.t.call(this, a, b);
89033
- this.g.l("this." + CodeGeneratingComponentRenderer.e1(a) + "();");
89145
+ this.g.l("this." + CodeGeneratingComponentRenderer.e5(a) + "();");
89034
89146
  };
89035
89147
  TSCodeGeneratingComponentRendererHandlerEmitter.prototype.u = function (a, b) {
89036
89148
  _super.prototype.u.call(this, a, b);
89037
- this.h.l("this." + CodeGeneratingComponentRenderer.e1(a) + "();");
89149
+ this.h.l("this." + CodeGeneratingComponentRenderer.e5(a) + "();");
89038
89150
  };
89039
89151
  Object.defineProperty(TSCodeGeneratingComponentRendererHandlerEmitter.prototype, "aa", {
89040
89152
  get: function () {
@@ -89165,7 +89277,7 @@
89165
89277
  if (b === void 0) {
89166
89278
  b = false;
89167
89279
  }
89168
- a = CodeGeneratingComponentRenderer.e2(a);
89280
+ a = CodeGeneratingComponentRenderer.e6(a);
89169
89281
  a = stringReplace(a, "-", "_");
89170
89282
  if (b) {
89171
89283
  a += "Item";
@@ -89177,11 +89289,11 @@
89177
89289
  if (this.p.g) {
89178
89290
  return a;
89179
89291
  }
89180
- return CodeGeneratingComponentRenderer.e1(a);
89292
+ return CodeGeneratingComponentRenderer.e5(a);
89181
89293
  };
89182
89294
  TSCodeGeneratingComponentRendererDataEmitter.prototype.aq = function (a) {
89183
89295
  a = stringReplace(a, "-", "_");
89184
- return "_" + CodeGeneratingComponentRenderer.e1(a);
89296
+ return "_" + CodeGeneratingComponentRenderer.e5(a);
89185
89297
  };
89186
89298
  TSCodeGeneratingComponentRendererDataEmitter.prototype.get_t = function () {
89187
89299
  return ".ts";
@@ -89259,7 +89371,7 @@
89259
89371
  if ((b == 3 || b == 2) || (c != null && c.isAsync)) {
89260
89372
  this.g.l("private _isFetching: boolean = false;");
89261
89373
  }
89262
- this.g.l("public get " + CodeGeneratingComponentRenderer.e1(a) + "(): " + f + " {");
89374
+ this.g.l("public get " + CodeGeneratingComponentRenderer.e5(a) + "(): " + f + " {");
89263
89375
  this.g.h();
89264
89376
  if (c != null && c.isAsync) {
89265
89377
  this.g.l("if (this." + this.aq(a) + " == null && !this._isFetching)");
@@ -89301,7 +89413,7 @@
89301
89413
  TSCodeGeneratingComponentRendererDataEmitter.prototype.ai = function (a, b) {
89302
89414
  _super.prototype.ai.call(this, a, b);
89303
89415
  this.g.l("private " + this.aq(a) + ": " + this.an(b.e) + " = " + this.ao(b) + ";");
89304
- this.g.l("public get " + CodeGeneratingComponentRenderer.e1(a) + "(): " + this.an(b.e) + " {");
89416
+ this.g.l("public get " + CodeGeneratingComponentRenderer.e5(a) + "(): " + this.an(b.e) + " {");
89305
89417
  this.g.h();
89306
89418
  this.g.l("return this." + this.aq(a) + ";");
89307
89419
  this.g.f();
@@ -89311,7 +89423,7 @@
89311
89423
  TSCodeGeneratingComponentRendererDataEmitter.prototype.aj = function (a, b, c, d) {
89312
89424
  _super.prototype.aj.call(this, a, b, c, d);
89313
89425
  this.g.l("private " + this.aq(a) + ": " + this.x(a, false) + "Item = null;");
89314
- this.g.l("public get " + CodeGeneratingComponentRenderer.e1(a) + "(): " + this.x(a, false) + "Item {");
89426
+ this.g.l("public get " + CodeGeneratingComponentRenderer.e5(a) + "(): " + this.x(a, false) + "Item {");
89315
89427
  this.g.h();
89316
89428
  this.g.l("if (this." + this.aq(a) + " == null)");
89317
89429
  this.g.l("{");
@@ -89369,7 +89481,7 @@
89369
89481
  };
89370
89482
  TSCodeGeneratingComponentRendererDataEmitter.prototype.ap = function (a, b, c) {
89371
89483
  if (c.d) {
89372
- return a.d + "_" + CodeGeneratingComponentRenderer.e2(this.w(b)) + "Item[]";
89484
+ return a.d + "_" + CodeGeneratingComponentRenderer.e6(this.w(b)) + "Item[]";
89373
89485
  }
89374
89486
  else if (c.f) {
89375
89487
  return a.d + "_" + TypeDescriptionContext.ab(this.w(b));
@@ -89441,7 +89553,7 @@
89441
89553
  }
89442
89554
  e.j(this.w(k) + ": ");
89443
89555
  if (l.d) {
89444
- var m = a + "_" + CodeGeneratingComponentRenderer.e2(this.w(k)) + "Item";
89556
+ var m = a + "_" + CodeGeneratingComponentRenderer.e6(this.w(k)) + "Item";
89445
89557
  if (h.g(k)) {
89446
89558
  this.ar(m, l.a, l.b, h.item(k), e);
89447
89559
  }
@@ -89450,7 +89562,7 @@
89450
89562
  }
89451
89563
  }
89452
89564
  else if (l.f) {
89453
- var n = a + "_" + CodeGeneratingComponentRenderer.e2(this.w(k));
89565
+ var n = a + "_" + CodeGeneratingComponentRenderer.e6(this.w(k));
89454
89566
  this.ar(n, l.a, l.b, h.item(k), e);
89455
89567
  }
89456
89568
  else {
@@ -89512,20 +89624,20 @@
89512
89624
  AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.ar = function (a, b, c, d) {
89513
89625
  d = _super.prototype.ar.call(this, a, b, c, d);
89514
89626
  var e = b.r();
89515
- this.f.l("private " + " _" + CodeGeneratingComponentRenderer.e1(d) + ": " + e + " | null = null;");
89516
- this.f.l("public get " + CodeGeneratingComponentRenderer.e1(d) + "(): " + e + " {");
89627
+ this.f.l("private " + " _" + CodeGeneratingComponentRenderer.e5(d) + ": " + e + " | null = null;");
89628
+ this.f.l("public get " + CodeGeneratingComponentRenderer.e5(d) + "(): " + e + " {");
89517
89629
  this.f.h();
89518
- this.f.l("if (this._" + CodeGeneratingComponentRenderer.e1(d) + " == null)");
89630
+ this.f.l("if (this._" + CodeGeneratingComponentRenderer.e5(d) + " == null)");
89519
89631
  this.f.l("{");
89520
89632
  this.f.h();
89521
89633
  this.f.k(c);
89522
- this.f.l("this._" + CodeGeneratingComponentRenderer.e1(d) + " = " + d + ";");
89634
+ this.f.l("this._" + CodeGeneratingComponentRenderer.e5(d) + " = " + d + ";");
89523
89635
  this.f.f();
89524
89636
  this.f.l("}");
89525
- this.f.l("return this._" + CodeGeneratingComponentRenderer.e1(d) + ";");
89637
+ this.f.l("return this._" + CodeGeneratingComponentRenderer.e5(d) + ";");
89526
89638
  this.f.f();
89527
89639
  this.f.l("}");
89528
- return CodeGeneratingComponentRenderer.e1(d);
89640
+ return CodeGeneratingComponentRenderer.e5(d);
89529
89641
  };
89530
89642
  AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.as = function (a, b, c, d, e) {
89531
89643
  e = _super.prototype.as.call(this, a, b, c, d, e);
@@ -89537,24 +89649,24 @@
89537
89649
  var g = a.b.specificExternalType;
89538
89650
  f = CodeGenerationItemBuilder.o(this.k.platform, g, b, this.al, this.am) + "[]";
89539
89651
  }
89540
- this.f.l("private" + " _" + CodeGeneratingComponentRenderer.e1(e) + ": " + f + " | null = null;");
89541
- this.f.l("public get " + CodeGeneratingComponentRenderer.e1(e) + "(): " + f + " {");
89652
+ this.f.l("private" + " _" + CodeGeneratingComponentRenderer.e5(e) + ": " + f + " | null = null;");
89653
+ this.f.l("public get " + CodeGeneratingComponentRenderer.e5(e) + "(): " + f + " {");
89542
89654
  this.f.h();
89543
- this.f.l("if (this._" + CodeGeneratingComponentRenderer.e1(e) + " == null)");
89655
+ this.f.l("if (this._" + CodeGeneratingComponentRenderer.e5(e) + " == null)");
89544
89656
  this.f.l("{");
89545
89657
  this.f.h();
89546
- this.f.k("let " + CodeGeneratingComponentRenderer.e1(e) + ": " + f + " = [];");
89658
+ this.f.k("let " + CodeGeneratingComponentRenderer.e5(e) + ": " + f + " = [];");
89547
89659
  for (var h = 0; h < c.count; h++) {
89548
89660
  this.f.k(d._inner[h]);
89549
89661
  this.f.k(e + ".push(" + c._inner[h].u + ")");
89550
89662
  }
89551
- this.f.l("this._" + CodeGeneratingComponentRenderer.e1(e) + " = " + e + ";");
89663
+ this.f.l("this._" + CodeGeneratingComponentRenderer.e5(e) + " = " + e + ";");
89552
89664
  this.f.f();
89553
89665
  this.f.l("}");
89554
- this.f.l("return this._" + CodeGeneratingComponentRenderer.e1(e) + ";");
89666
+ this.f.l("return this._" + CodeGeneratingComponentRenderer.e5(e) + ";");
89555
89667
  this.f.f();
89556
89668
  this.f.l("}");
89557
- return CodeGeneratingComponentRenderer.e2(e);
89669
+ return CodeGeneratingComponentRenderer.e6(e);
89558
89670
  };
89559
89671
  AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.i = function (a, b) {
89560
89672
  return new AngularCodeBehindCodeGeneratingComponentRendererCodeEmitter(a, b);
@@ -89588,8 +89700,8 @@
89588
89700
  this.bt.add_1(this.aq);
89589
89701
  this.bb(this.aq);
89590
89702
  }
89591
- this.f.l("@ViewChild(\"" + CodeGeneratingComponentRenderer.e1(this.ap) + "\", { static: true } )");
89592
- this.f.l("private " + CodeGeneratingComponentRenderer.e1(this.ap) + ": " + this.aq);
89703
+ this.f.l("@ViewChild(\"" + CodeGeneratingComponentRenderer.e5(this.ap) + "\", { static: true } )");
89704
+ this.f.l("private " + CodeGeneratingComponentRenderer.e5(this.ap) + ": " + this.aq);
89593
89705
  }
89594
89706
  };
89595
89707
  AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.bg = function (a, b, c) {
@@ -89600,7 +89712,7 @@
89600
89712
  if (stringEndsWith(a, "Component")) {
89601
89713
  a = a.substr(0, a.length - ("Component").length);
89602
89714
  }
89603
- return CodeGeneratingComponentRenderer.e4(a);
89715
+ return CodeGeneratingComponentRenderer.e8(a);
89604
89716
  };
89605
89717
  AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.bq = function () {
89606
89718
  this.h.l(">");
@@ -89612,7 +89724,7 @@
89612
89724
  _super.prototype.bl.call(this, a);
89613
89725
  };
89614
89726
  AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.bi = function (a, b, c, d) {
89615
- var e = CodeGeneratingComponentRenderer.e1(b);
89727
+ var e = CodeGeneratingComponentRenderer.e5(b);
89616
89728
  if (this.q(d, c)) {
89617
89729
  this.br(c);
89618
89730
  if (this.t(c)) {
@@ -89632,13 +89744,13 @@
89632
89744
  this.h.j("\"");
89633
89745
  if (e == "name") {
89634
89746
  this.h.l("");
89635
- this.h.j("#" + CodeGeneratingComponentRenderer.e1(this.a3(d, c, true)));
89747
+ this.h.j("#" + CodeGeneratingComponentRenderer.e5(this.a3(d, c, true)));
89636
89748
  }
89637
89749
  };
89638
89750
  AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.ax = function (a) {
89639
89751
  if (!stringIsNullOrEmpty(a.a.e)) {
89640
89752
  this.br(a);
89641
- return "this." + CodeGeneratingComponentRenderer.e1(a.a.e) + "($event)";
89753
+ return "this." + CodeGeneratingComponentRenderer.e5(a.a.e) + "($event)";
89642
89754
  }
89643
89755
  return this.a0();
89644
89756
  };
@@ -89656,10 +89768,10 @@
89656
89768
  return "null";
89657
89769
  };
89658
89770
  AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.av = function (a) {
89659
- return CodeGeneratingComponentRenderer.e1(a.a.e);
89771
+ return CodeGeneratingComponentRenderer.e5(a.a.e);
89660
89772
  };
89661
89773
  AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.a1 = function (a) {
89662
- return CodeGeneratingComponentRenderer.e1(a.a.e);
89774
+ return CodeGeneratingComponentRenderer.e5(a.a.e);
89663
89775
  };
89664
89776
  AngularTemplateCodeGeneratingComponentRendererCodeEmitter.prototype.bj = function (a, b, c, d) {
89665
89777
  var e_8, _a;
@@ -89757,7 +89869,7 @@
89757
89869
  if (b === void 0) {
89758
89870
  b = false;
89759
89871
  }
89760
- a = CodeGeneratingComponentRenderer.e2(a);
89872
+ a = CodeGeneratingComponentRenderer.e6(a);
89761
89873
  a = stringReplace(a, "-", "_");
89762
89874
  if (b) {
89763
89875
  a += "Item";
@@ -89766,11 +89878,11 @@
89766
89878
  };
89767
89879
  DotNetCodeGeneratingComponentRendererDataEmitter.prototype.w = function (a) {
89768
89880
  a = stringReplace(a, "-", "_");
89769
- return CodeGeneratingComponentRenderer.e2(a);
89881
+ return CodeGeneratingComponentRenderer.e6(a);
89770
89882
  };
89771
89883
  DotNetCodeGeneratingComponentRendererDataEmitter.prototype.aq = function (a) {
89772
89884
  a = stringReplace(a, "-", "_");
89773
- return "_" + CodeGeneratingComponentRenderer.e1(a);
89885
+ return "_" + CodeGeneratingComponentRenderer.e5(a);
89774
89886
  };
89775
89887
  DotNetCodeGeneratingComponentRendererDataEmitter.prototype.al = function (a, b, c, d, e, f) {
89776
89888
  var e_9, _a;
@@ -90156,7 +90268,7 @@
90156
90268
  };
90157
90269
  WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.bs = function (a) {
90158
90270
  a = stringReplace(a, "-", "_");
90159
- return CodeGeneratingComponentRenderer.e2(a);
90271
+ return CodeGeneratingComponentRenderer.e6(a);
90160
90272
  };
90161
90273
  WPFXamlCodeGeneratingComponentRendererCodeEmitter.prototype.a1 = function (a) {
90162
90274
  this.br(a);
@@ -90260,17 +90372,17 @@
90260
90372
  tslib.__extends(CodeGeneratingComponentRenderer, _super);
90261
90373
  function CodeGeneratingComponentRenderer(a, b) {
90262
90374
  var _this = _super.call(this) || this;
90263
- _this.et = null;
90264
- _this.eu = 0;
90265
90375
  _this.ex = null;
90266
- _this.ey = null;
90376
+ _this.ey = 0;
90377
+ _this.e1 = null;
90378
+ _this.e2 = null;
90379
+ _this.e3 = null;
90380
+ _this.e0 = null;
90267
90381
  _this.ez = null;
90268
- _this.ew = null;
90269
- _this.ev = null;
90270
- _this.et = b;
90271
- _this.eu = a;
90382
+ _this.ex = b;
90383
+ _this.ey = a;
90272
90384
  _this.preserveKeyOrder = true;
90273
- ComponentRenderer.platform = CodeGeneratingComponentRenderer.e0(a);
90385
+ ComponentRenderer.platform = CodeGeneratingComponentRenderer.e4(a);
90274
90386
  _this.adapter = new CodeGenerationRendererAdapter(a, _this.adapter);
90275
90387
  if (b.reusedContext != null) {
90276
90388
  _this.context = b.reusedContext;
@@ -90278,7 +90390,7 @@
90278
90390
  else {
90279
90391
  _this.context = new TypeDescriptionContext(_this.adapter, ComponentRenderer.platform);
90280
90392
  }
90281
- _this.j = new CodeGenerationTransformer(a);
90393
+ _this.k = new CodeGenerationTransformer(a);
90282
90394
  return _this;
90283
90395
  }
90284
90396
  CodeGeneratingComponentRenderer.prototype.loadCodeJson = function (a) {
@@ -90290,13 +90402,13 @@
90290
90402
  })());
90291
90403
  });
90292
90404
  };
90293
- CodeGeneratingComponentRenderer.prototype.dp = function (a) {
90294
- this.et.c = a;
90405
+ CodeGeneratingComponentRenderer.prototype.ds = function (a) {
90406
+ this.ex.c = a;
90295
90407
  };
90296
- CodeGeneratingComponentRenderer.prototype.o = function () {
90408
+ CodeGeneratingComponentRenderer.prototype.p = function () {
90297
90409
  return false;
90298
90410
  };
90299
- CodeGeneratingComponentRenderer.e1 = function (a) {
90411
+ CodeGeneratingComponentRenderer.e5 = function (a) {
90300
90412
  if (a == null) {
90301
90413
  return null;
90302
90414
  }
@@ -90305,7 +90417,7 @@
90305
90417
  }
90306
90418
  return a.substr(0, 1).toLowerCase() + a.substr(1);
90307
90419
  };
90308
- CodeGeneratingComponentRenderer.e3 = function (a) {
90420
+ CodeGeneratingComponentRenderer.e7 = function (a) {
90309
90421
  if (a == null) {
90310
90422
  return null;
90311
90423
  }
@@ -90317,7 +90429,7 @@
90317
90429
  }
90318
90430
  return a.substr(0, 1).toLowerCase() + a.substr(1);
90319
90431
  };
90320
- CodeGeneratingComponentRenderer.e2 = function (a) {
90432
+ CodeGeneratingComponentRenderer.e6 = function (a) {
90321
90433
  if (a == null) {
90322
90434
  return null;
90323
90435
  }
@@ -90326,7 +90438,7 @@
90326
90438
  }
90327
90439
  return a.substr(0, 1).toUpperCase() + a.substr(1);
90328
90440
  };
90329
- CodeGeneratingComponentRenderer.e4 = function (a) {
90441
+ CodeGeneratingComponentRenderer.e8 = function (a) {
90330
90442
  if (a == null) {
90331
90443
  return null;
90332
90444
  }
@@ -90361,22 +90473,22 @@
90361
90473
  }
90362
90474
  return j.toString();
90363
90475
  };
90364
- CodeGeneratingComponentRenderer.prototype.as = function () {
90476
+ CodeGeneratingComponentRenderer.prototype.at = function () {
90365
90477
  return true;
90366
90478
  };
90367
- CodeGeneratingComponentRenderer.prototype.bx = function (a) {
90479
+ CodeGeneratingComponentRenderer.prototype.bz = function (a) {
90368
90480
  var b = a.g;
90369
90481
  return b == null ? { $type: Point_$type, x: NaN, y: NaN } : { $type: Point_$type, x: b.x, y: b.y };
90370
90482
  };
90371
- CodeGeneratingComponentRenderer.prototype.by = function (a) {
90483
+ CodeGeneratingComponentRenderer.prototype.b0 = function (a) {
90372
90484
  var b = a.g;
90373
90485
  return b == null ? Rect.empty : new Rect(0, b.left, b.top, b.width, b.height);
90374
90486
  };
90375
- CodeGeneratingComponentRenderer.prototype.bz = function (a) {
90487
+ CodeGeneratingComponentRenderer.prototype.b1 = function (a) {
90376
90488
  var b = a.g;
90377
90489
  return b == null ? new Size(1, NaN, NaN) : new Size(1, b.width, b.height);
90378
90490
  };
90379
- CodeGeneratingComponentRenderer.prototype.b1 = function (a) {
90491
+ CodeGeneratingComponentRenderer.prototype.b3 = function (a) {
90380
90492
  var b = a.g;
90381
90493
  if (typeof b === 'number') {
90382
90494
  return typeGetValue(b);
@@ -90389,45 +90501,45 @@
90389
90501
  }
90390
90502
  return NaN;
90391
90503
  };
90392
- CodeGeneratingComponentRenderer.prototype.cs = function (a) {
90504
+ CodeGeneratingComponentRenderer.prototype.cu = function (a) {
90393
90505
  if (a == null) {
90394
90506
  return null;
90395
90507
  }
90396
90508
  return Brush.create(a);
90397
90509
  };
90398
- CodeGeneratingComponentRenderer.prototype.ct = function (a) {
90510
+ CodeGeneratingComponentRenderer.prototype.cv = function (a) {
90399
90511
  if (a == null) {
90400
90512
  return null;
90401
90513
  }
90402
90514
  return Brush.create(a).color;
90403
90515
  };
90404
- CodeGeneratingComponentRenderer.prototype.af = function (a) {
90405
- _super.prototype.af.call(this, a);
90406
- this.ex = a;
90407
- return true;
90408
- };
90409
- CodeGeneratingComponentRenderer.prototype.am = function (a) {
90410
- _super.prototype.am.call(this, a);
90411
- this.ez = a;
90412
- return true;
90413
- };
90414
90516
  CodeGeneratingComponentRenderer.prototype.ag = function (a) {
90415
90517
  _super.prototype.ag.call(this, a);
90416
- this.ev = a;
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;
90417
90524
  return true;
90418
90525
  };
90419
90526
  CodeGeneratingComponentRenderer.prototype.ah = function (a) {
90420
90527
  _super.prototype.ah.call(this, a);
90421
- this.ew = a;
90528
+ this.ez = a;
90422
90529
  return true;
90423
90530
  };
90424
90531
  CodeGeneratingComponentRenderer.prototype.ai = function (a) {
90425
90532
  _super.prototype.ai.call(this, a);
90426
- this.ey = a;
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;
90427
90539
  return true;
90428
90540
  };
90429
- CodeGeneratingComponentRenderer.prototype.en = function (a, b, c) {
90430
- switch (this.eu) {
90541
+ CodeGeneratingComponentRenderer.prototype.er = function (a, b, c) {
90542
+ switch (this.ey) {
90431
90543
  case 1: if (b.forceCodeBehind) {
90432
90544
  return new AngularCodeBehindCodeGeneratingComponentRendererCodeEmitter(b, c);
90433
90545
  }
@@ -90462,8 +90574,8 @@
90462
90574
  }
90463
90575
  return null;
90464
90576
  };
90465
- CodeGeneratingComponentRenderer.prototype.eo = function (a, b) {
90466
- switch (this.eu) {
90577
+ CodeGeneratingComponentRenderer.prototype.es = function (a, b) {
90578
+ switch (this.ey) {
90467
90579
  case 1: return new TSCodeGeneratingComponentRendererDataEmitter(a, b);
90468
90580
  case 2: return new TSCodeGeneratingComponentRendererDataEmitter(a, b);
90469
90581
  case 3: return new TSCodeGeneratingComponentRendererDataEmitter(a, b);
@@ -90473,43 +90585,43 @@
90473
90585
  }
90474
90586
  return null;
90475
90587
  };
90476
- CodeGeneratingComponentRenderer.prototype.ep = function (a, b) {
90477
- switch (this.eu) {
90478
- case 1: return new TSCodeGeneratingComponentRendererHandlerEmitter(a, b, this.eu);
90479
- case 2: return new TSCodeGeneratingComponentRendererHandlerEmitter(a, b, this.eu);
90480
- case 3: return new TSCodeGeneratingComponentRendererHandlerEmitter(a, b, this.eu);
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);
90481
90593
  case 4: break;
90482
90594
  case 0:
90483
90595
  case 5: return new DotNetCodeGeneratingComponentRendererHandlerEmitter(a, b);
90484
90596
  }
90485
90597
  return null;
90486
90598
  };
90487
- CodeGeneratingComponentRenderer.prototype.er = function (a, b) {
90488
- switch (this.eu) {
90489
- case 1: return new TSCodeGeneratingComponentRendererTemplateEmitter(a, b, this.eu);
90490
- case 2: return new TSCodeGeneratingComponentRendererTemplateEmitter(a, b, this.eu);
90491
- case 3: return new TSCodeGeneratingComponentRendererTemplateEmitter(a, b, this.eu);
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);
90492
90604
  case 4: break;
90493
90605
  case 0:
90494
90606
  case 5: return new DotNetCodeGeneratingComponentRendererTemplateEmitter(a, b);
90495
90607
  }
90496
90608
  return null;
90497
90609
  };
90498
- CodeGeneratingComponentRenderer.prototype.eq = function (a, b) {
90499
- switch (this.eu) {
90500
- case 1: return new TSCodeGeneratingComponentRendererModuleEmitter(this.eu, a, b);
90501
- case 2: return new TSCodeGeneratingComponentRendererModuleEmitter(this.eu, a, b);
90502
- case 3: return new TSCodeGeneratingComponentRendererModuleEmitter(this.eu, a, b);
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);
90503
90615
  case 4: break;
90504
- case 0: return new DotNetCodeGeneratingComponentRendererModuleEmitter(this.eu, a, b);
90505
- case 5: return new BlazorCodeGeneratingComponentRendererModuleEmitter(this.eu, a, b);
90616
+ case 0: return new DotNetCodeGeneratingComponentRendererModuleEmitter(this.ey, a, b);
90617
+ case 5: return new BlazorCodeGeneratingComponentRendererModuleEmitter(this.ey, a, b);
90506
90618
  }
90507
90619
  return null;
90508
90620
  };
90509
90621
  CodeGeneratingComponentRenderer.prototype.markRefUsed = function (a) {
90510
90622
  var e_11, _a;
90511
90623
  try {
90512
- for (var _b = tslib.__values(fromEnum(this.bb.keys)), _c = _b.next(); !_c.done; _c = _b.next()) {
90624
+ for (var _b = tslib.__values(fromEnum(this.bc.keys)), _c = _b.next(); !_c.done; _c = _b.next()) {
90513
90625
  var b = _c.value;
90514
90626
  var c = b;
90515
90627
  c.markRefUsed(a);
@@ -90532,10 +90644,10 @@
90532
90644
  CodeGeneratingComponentRenderer.prototype.emitCode = function (a) {
90533
90645
  var e_12, _a, e_13, _b, e_14, _c;
90534
90646
  var b = new CodeGeneratingRendererResult();
90535
- b.platform = this.eu;
90536
- b.generationOptions = this.et;
90647
+ b.platform = this.ey;
90648
+ b.generationOptions = this.ex;
90537
90649
  try {
90538
- for (var _d = tslib.__values(fromEnum(this.bb.keys)), _e = _d.next(); !_e.done; _e = _d.next()) {
90650
+ for (var _d = tslib.__values(fromEnum(this.bc.keys)), _e = _d.next(); !_e.done; _e = _d.next()) {
90539
90651
  var c = _e.value;
90540
90652
  var d = c;
90541
90653
  var e = d.id;
@@ -90579,10 +90691,10 @@
90579
90691
  }
90580
90692
  }
90581
90693
  try {
90582
- for (var _h = tslib.__values(fromEnum(this.bb.keys)), _j = _h.next(); !_j.done; _j = _h.next()) {
90694
+ for (var _h = tslib.__values(fromEnum(this.bc.keys)), _j = _h.next(); !_j.done; _j = _h.next()) {
90583
90695
  var g = _j.value;
90584
90696
  var h = g;
90585
- h.d(this.context, b, this, this.et);
90697
+ h.d(this.context, b, this, this.ex);
90586
90698
  }
90587
90699
  }
90588
90700
  catch (e_14_1) {
@@ -90598,13 +90710,13 @@
90598
90710
  throw e_14.error;
90599
90711
  }
90600
90712
  }
90601
- if (this.ex != null) {
90602
- var i = this.eq(this.et, b);
90603
- i.n(this.ex, this.context);
90713
+ if (this.e1 != null) {
90714
+ var i = this.eu(this.ex, b);
90715
+ i.n(this.e1, this.context);
90604
90716
  }
90605
- if (this.ez != null) {
90606
- if (typeCast(JsonDictionaryObject.$, this.ez) !== null) {
90607
- var j = this.ez;
90717
+ if (this.e3 != null) {
90718
+ if (typeCast(JsonDictionaryObject.$, this.e3) !== null) {
90719
+ var j = this.e3;
90608
90720
  var m = j.e();
90609
90721
  for (var l = 0; l < m.length; l++) {
90610
90722
  var k = m[l];
@@ -90613,15 +90725,15 @@
90613
90725
  }
90614
90726
  }
90615
90727
  {
90616
- var n = this.eo(this.et, b);
90617
- n.ac(this.ey);
90728
+ var n = this.es(this.ex, b);
90729
+ n.ac(this.e2);
90618
90730
  }
90619
- var o = this.ep(this.et, b);
90731
+ var o = this.et(this.ex, b);
90620
90732
  var p = new List$1(String_$type, 0);
90621
90733
  var q = new List$1(String_$type, 0);
90622
- if (this.ev != null) {
90623
- if (typeCast(JsonDictionaryArray.$, this.ev) !== null) {
90624
- var r = this.ev;
90734
+ if (this.ez != null) {
90735
+ if (typeCast(JsonDictionaryArray.$, this.ez) !== null) {
90736
+ var r = this.ez;
90625
90737
  if (r.items != null) {
90626
90738
  var u = r.items;
90627
90739
  for (var t = 0; t < u.length; t++) {
@@ -90630,14 +90742,14 @@
90630
90742
  }
90631
90743
  }
90632
90744
  }
90633
- else if (typeCast(JsonDictionaryValue.$, this.ev) !== null) {
90634
- var v = this.ev;
90745
+ else if (typeCast(JsonDictionaryValue.$, this.ez) !== null) {
90746
+ var v = this.ez;
90635
90747
  p.add(v.value.toString());
90636
90748
  }
90637
90749
  }
90638
- if (this.ew != null) {
90639
- if (typeCast(JsonDictionaryArray.$, this.ew) !== null) {
90640
- var w = this.ew;
90750
+ if (this.e0 != null) {
90751
+ if (typeCast(JsonDictionaryArray.$, this.e0) !== null) {
90752
+ var w = this.e0;
90641
90753
  if (w.items != null) {
90642
90754
  var z = w.items;
90643
90755
  for (var y = 0; y < z.length; y++) {
@@ -90646,52 +90758,52 @@
90646
90758
  }
90647
90759
  }
90648
90760
  }
90649
- else if (typeCast(JsonDictionaryValue.$, this.ew) !== null) {
90650
- var aa = this.ew;
90761
+ else if (typeCast(JsonDictionaryValue.$, this.e0) !== null) {
90762
+ var aa = this.e0;
90651
90763
  q.add(aa.value.toString());
90652
90764
  }
90653
90765
  }
90654
90766
  o.s(p.toArray(), q.toArray());
90655
- var ab = this.er(this.et, b);
90767
+ var ab = this.ev(this.ex, b);
90656
90768
  ab.r();
90657
- this.e9(b, a);
90769
+ this.fd(b, a);
90658
90770
  return b;
90659
90771
  };
90660
- CodeGeneratingComponentRenderer.prototype.e9 = function (a, b) {
90772
+ CodeGeneratingComponentRenderer.prototype.fd = function (a, b) {
90661
90773
  b.execute(a);
90662
90774
  };
90663
- CodeGeneratingComponentRenderer.prototype.bj = function () {
90664
- return runOn(this, this.e6);
90775
+ CodeGeneratingComponentRenderer.prototype.bl = function () {
90776
+ return runOn(this, this.fa);
90665
90777
  };
90666
- CodeGeneratingComponentRenderer.prototype.e5 = function (a) {
90778
+ CodeGeneratingComponentRenderer.prototype.e9 = function (a) {
90667
90779
  a = stringReplace(a, "-", "_");
90668
- if (!this.et.g) {
90669
- switch (this.eu) {
90780
+ if (!this.ex.g) {
90781
+ switch (this.ey) {
90670
90782
  case 1:
90671
90783
  case 2:
90672
- case 3: return CodeGeneratingComponentRenderer.e1(a);
90784
+ case 3: return CodeGeneratingComponentRenderer.e5(a);
90673
90785
  case 4:
90674
90786
  case 0:
90675
- case 5: return CodeGeneratingComponentRenderer.e2(a);
90787
+ case 5: return CodeGeneratingComponentRenderer.e6(a);
90676
90788
  }
90677
90789
  }
90678
90790
  return a;
90679
90791
  };
90680
- CodeGeneratingComponentRenderer.prototype.e6 = function (a) {
90792
+ CodeGeneratingComponentRenderer.prototype.fa = function (a) {
90681
90793
  var b = a;
90682
90794
  if (stringStartsWith(a, "{")) {
90683
90795
  if (!stringStartsWith(a, "{[")) {
90684
90796
  a = a.substr(1, a.length - 2);
90685
- a = "{" + this.e5(a) + "}";
90797
+ a = "{" + this.e9(a) + "}";
90686
90798
  b = a;
90687
90799
  }
90688
90800
  }
90689
90801
  else {
90690
- b = this.e5(a);
90802
+ b = this.e9(a);
90691
90803
  }
90692
90804
  return b;
90693
90805
  };
90694
- CodeGeneratingComponentRenderer.e0 = function (a) {
90806
+ CodeGeneratingComponentRenderer.e4 = function (a) {
90695
90807
  switch (a) {
90696
90808
  case 1: return 3;
90697
90809
  case 2: return 2;
@@ -90736,11 +90848,11 @@
90736
90848
  var h = new CodeGeneratingImportManager();
90737
90849
  var _loop_2 = function (i) {
90738
90850
  if (!c.hasRef(i)) {
90739
- c.e(i);
90851
+ c.f(i);
90740
90852
  }
90741
90853
  b.af(((function () {
90742
90854
  var $ret = new CodeGenerationItemBuilderPropertyInfo();
90743
- $ret.a = c.f(i);
90855
+ $ret.a = c.g(i);
90744
90856
  return $ret;
90745
90857
  })()));
90746
90858
  };
@@ -90766,7 +90878,7 @@
90766
90878
  try {
90767
90879
  for (var _e = tslib.__values(fromEnum(this.b)), _f = _e.next(); !_f.done; _f = _e.next()) {
90768
90880
  var j = _f.value;
90769
- var k = c.en(j, d, b);
90881
+ var k = c.er(j, d, b);
90770
90882
  j.v(k, true);
90771
90883
  var l = k.toString();
90772
90884
  b.addContainerResult(this.id, l);
@@ -210286,49 +210398,51 @@
210286
210398
  tslib.__extends(FunnelChartDescription, _super);
210287
210399
  function FunnelChartDescription() {
210288
210400
  var _this = _super.call(this) || this;
210289
- _this.aq = null;
210290
- _this.be = null;
210291
- _this.au = null;
210292
- _this.v = 0;
210401
+ _this.as = null;
210402
+ _this.bh = null;
210403
+ _this.aw = null;
210293
210404
  _this.x = 0;
210294
- _this.ap = null;
210295
- _this.av = null;
210405
+ _this.z = 0;
210406
+ _this.ar = null;
210407
+ _this.ax = null;
210296
210408
  _this.h = null;
210297
210409
  _this.i = null;
210298
- _this.w = 0;
210299
- _this.aw = null;
210300
- _this.a0 = null;
210301
- _this.ax = null;
210302
- _this.a3 = null;
210410
+ _this.y = 0;
210411
+ _this.ay = null;
210412
+ _this.a2 = null;
210303
210413
  _this.az = null;
210414
+ _this.a5 = null;
210415
+ _this.a1 = null;
210416
+ _this.av = null;
210304
210417
  _this.at = null;
210305
- _this.ar = null;
210306
- _this.as = null;
210307
- _this.an = 0;
210308
- _this.m = false;
210309
- _this.n = false;
210310
- _this.l = false;
210418
+ _this.au = null;
210419
+ _this.ap = 0;
210420
+ _this.o = false;
210311
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;
210312
210436
  _this.a4 = null;
210313
- _this.a5 = null;
210314
- _this.ab = 0;
210315
210437
  _this.aa = 0;
210316
- _this.bc = null;
210438
+ _this.ab = 0;
210439
+ _this.a3 = null;
210317
210440
  _this.bd = null;
210318
- _this.ad = 0;
210319
- _this.ac = 0;
210320
- _this.ay = null;
210321
- _this.o = false;
210322
- _this.bb = null;
210323
- _this.a2 = null;
210324
- _this.y = 0;
210325
- _this.z = 0;
210326
- _this.a1 = null;
210327
- _this.ba = null;
210328
210441
  _this.a6 = null;
210329
- _this.a7 = null;
210330
210442
  _this.a9 = null;
210331
- _this.a8 = null;
210443
+ _this.ba = null;
210444
+ _this.bc = null;
210445
+ _this.bb = null;
210332
210446
  return _this;
210333
210447
  }
210334
210448
  FunnelChartDescription.prototype.get_type = function () {
@@ -210343,10 +210457,10 @@
210343
210457
  });
210344
210458
  Object.defineProperty(FunnelChartDescription.prototype, "dataSourceRef", {
210345
210459
  get: function () {
210346
- return this.aq;
210460
+ return this.as;
210347
210461
  },
210348
210462
  set: function (a) {
210349
- this.aq = a;
210463
+ this.as = a;
210350
210464
  this.g("DataSourceRef");
210351
210465
  },
210352
210466
  enumerable: false,
@@ -210354,10 +210468,10 @@
210354
210468
  });
210355
210469
  Object.defineProperty(FunnelChartDescription.prototype, "valueMemberPath", {
210356
210470
  get: function () {
210357
- return this.be;
210471
+ return this.bh;
210358
210472
  },
210359
210473
  set: function (a) {
210360
- this.be = a;
210474
+ this.bh = a;
210361
210475
  this.g("ValueMemberPath");
210362
210476
  },
210363
210477
  enumerable: false,
@@ -210365,10 +210479,10 @@
210365
210479
  });
210366
210480
  Object.defineProperty(FunnelChartDescription.prototype, "highlightedValueMemberPath", {
210367
210481
  get: function () {
210368
- return this.au;
210482
+ return this.aw;
210369
210483
  },
210370
210484
  set: function (a) {
210371
- this.au = a;
210485
+ this.aw = a;
210372
210486
  this.g("HighlightedValueMemberPath");
210373
210487
  },
210374
210488
  enumerable: false,
@@ -210376,10 +210490,10 @@
210376
210490
  });
210377
210491
  Object.defineProperty(FunnelChartDescription.prototype, "actualHighlightValueOpacity", {
210378
210492
  get: function () {
210379
- return this.v;
210493
+ return this.x;
210380
210494
  },
210381
210495
  set: function (a) {
210382
- this.v = a;
210496
+ this.x = a;
210383
210497
  this.g("ActualHighlightValueOpacity");
210384
210498
  },
210385
210499
  enumerable: false,
@@ -210387,10 +210501,10 @@
210387
210501
  });
210388
210502
  Object.defineProperty(FunnelChartDescription.prototype, "highlightValueOpacity", {
210389
210503
  get: function () {
210390
- return this.x;
210504
+ return this.z;
210391
210505
  },
210392
210506
  set: function (a) {
210393
- this.x = a;
210507
+ this.z = a;
210394
210508
  this.g("HighlightValueOpacity");
210395
210509
  },
210396
210510
  enumerable: false,
@@ -210398,10 +210512,10 @@
210398
210512
  });
210399
210513
  Object.defineProperty(FunnelChartDescription.prototype, "actualHighlightValueDisplayMode", {
210400
210514
  get: function () {
210401
- return this.ap;
210515
+ return this.ar;
210402
210516
  },
210403
210517
  set: function (a) {
210404
- this.ap = a;
210518
+ this.ar = a;
210405
210519
  this.g("ActualHighlightValueDisplayMode");
210406
210520
  },
210407
210521
  enumerable: false,
@@ -210409,10 +210523,10 @@
210409
210523
  });
210410
210524
  Object.defineProperty(FunnelChartDescription.prototype, "highlightValueDisplayMode", {
210411
210525
  get: function () {
210412
- return this.av;
210526
+ return this.ax;
210413
210527
  },
210414
210528
  set: function (a) {
210415
- this.av = a;
210529
+ this.ax = a;
210416
210530
  this.g("HighlightValueDisplayMode");
210417
210531
  },
210418
210532
  enumerable: false,
@@ -210442,10 +210556,10 @@
210442
210556
  });
210443
210557
  Object.defineProperty(FunnelChartDescription.prototype, "bottomEdgeWidth", {
210444
210558
  get: function () {
210445
- return this.w;
210559
+ return this.y;
210446
210560
  },
210447
210561
  set: function (a) {
210448
- this.w = a;
210562
+ this.y = a;
210449
210563
  this.g("BottomEdgeWidth");
210450
210564
  },
210451
210565
  enumerable: false,
@@ -210453,10 +210567,10 @@
210453
210567
  });
210454
210568
  Object.defineProperty(FunnelChartDescription.prototype, "innerLabelMemberPath", {
210455
210569
  get: function () {
210456
- return this.aw;
210570
+ return this.ay;
210457
210571
  },
210458
210572
  set: function (a) {
210459
- this.aw = a;
210573
+ this.ay = a;
210460
210574
  this.g("InnerLabelMemberPath");
210461
210575
  },
210462
210576
  enumerable: false,
@@ -210464,10 +210578,10 @@
210464
210578
  });
210465
210579
  Object.defineProperty(FunnelChartDescription.prototype, "outerLabelMemberPath", {
210466
210580
  get: function () {
210467
- return this.a0;
210581
+ return this.a2;
210468
210582
  },
210469
210583
  set: function (a) {
210470
- this.a0 = a;
210584
+ this.a2 = a;
210471
210585
  this.g("OuterLabelMemberPath");
210472
210586
  },
210473
210587
  enumerable: false,
@@ -210475,10 +210589,10 @@
210475
210589
  });
210476
210590
  Object.defineProperty(FunnelChartDescription.prototype, "innerLabelVisibility", {
210477
210591
  get: function () {
210478
- return this.ax;
210592
+ return this.az;
210479
210593
  },
210480
210594
  set: function (a) {
210481
- this.ax = a;
210595
+ this.az = a;
210482
210596
  this.g("InnerLabelVisibility");
210483
210597
  },
210484
210598
  enumerable: false,
@@ -210486,10 +210600,10 @@
210486
210600
  });
210487
210601
  Object.defineProperty(FunnelChartDescription.prototype, "outerLabelVisibility", {
210488
210602
  get: function () {
210489
- return this.a3;
210603
+ return this.a5;
210490
210604
  },
210491
210605
  set: function (a) {
210492
- this.a3 = a;
210606
+ this.a5 = a;
210493
210607
  this.g("OuterLabelVisibility");
210494
210608
  },
210495
210609
  enumerable: false,
@@ -210497,10 +210611,10 @@
210497
210611
  });
210498
210612
  Object.defineProperty(FunnelChartDescription.prototype, "outerLabelAlignment", {
210499
210613
  get: function () {
210500
- return this.az;
210614
+ return this.a1;
210501
210615
  },
210502
210616
  set: function (a) {
210503
- this.az = a;
210617
+ this.a1 = a;
210504
210618
  this.g("OuterLabelAlignment");
210505
210619
  },
210506
210620
  enumerable: false,
@@ -210508,10 +210622,10 @@
210508
210622
  });
210509
210623
  Object.defineProperty(FunnelChartDescription.prototype, "funnelSliceDisplay", {
210510
210624
  get: function () {
210511
- return this.at;
210625
+ return this.av;
210512
210626
  },
210513
210627
  set: function (a) {
210514
- this.at = a;
210628
+ this.av = a;
210515
210629
  this.g("FunnelSliceDisplay");
210516
210630
  },
210517
210631
  enumerable: false,
@@ -210519,10 +210633,10 @@
210519
210633
  });
210520
210634
  Object.defineProperty(FunnelChartDescription.prototype, "formatInnerLabelRef", {
210521
210635
  get: function () {
210522
- return this.ar;
210636
+ return this.at;
210523
210637
  },
210524
210638
  set: function (a) {
210525
- this.ar = a;
210639
+ this.at = a;
210526
210640
  this.g("FormatInnerLabelRef");
210527
210641
  },
210528
210642
  enumerable: false,
@@ -210530,10 +210644,10 @@
210530
210644
  });
210531
210645
  Object.defineProperty(FunnelChartDescription.prototype, "formatOuterLabelRef", {
210532
210646
  get: function () {
210533
- return this.as;
210647
+ return this.au;
210534
210648
  },
210535
210649
  set: function (a) {
210536
- this.as = a;
210650
+ this.au = a;
210537
210651
  this.g("FormatOuterLabelRef");
210538
210652
  },
210539
210653
  enumerable: false,
@@ -210541,10 +210655,10 @@
210541
210655
  });
210542
210656
  Object.defineProperty(FunnelChartDescription.prototype, "transitionDuration", {
210543
210657
  get: function () {
210544
- return this.an;
210658
+ return this.ap;
210545
210659
  },
210546
210660
  set: function (a) {
210547
- this.an = a;
210661
+ this.ap = a;
210548
210662
  this.g("TransitionDuration");
210549
210663
  },
210550
210664
  enumerable: false,
@@ -210552,10 +210666,10 @@
210552
210666
  });
210553
210667
  Object.defineProperty(FunnelChartDescription.prototype, "isInverted", {
210554
210668
  get: function () {
210555
- return this.m;
210669
+ return this.o;
210556
210670
  },
210557
210671
  set: function (a) {
210558
- this.m = a;
210672
+ this.o = a;
210559
210673
  this.g("IsInverted");
210560
210674
  },
210561
210675
  enumerable: false,
@@ -210563,10 +210677,10 @@
210563
210677
  });
210564
210678
  Object.defineProperty(FunnelChartDescription.prototype, "useBezierCurve", {
210565
210679
  get: function () {
210566
- return this.n;
210680
+ return this.p;
210567
210681
  },
210568
210682
  set: function (a) {
210569
- this.n = a;
210683
+ this.p = a;
210570
210684
  this.g("UseBezierCurve");
210571
210685
  },
210572
210686
  enumerable: false,
@@ -210574,10 +210688,10 @@
210574
210688
  });
210575
210689
  Object.defineProperty(FunnelChartDescription.prototype, "allowSliceSelection", {
210576
210690
  get: function () {
210577
- return this.l;
210691
+ return this.n;
210578
210692
  },
210579
210693
  set: function (a) {
210580
- this.l = a;
210694
+ this.n = a;
210581
210695
  this.g("AllowSliceSelection");
210582
210696
  },
210583
210697
  enumerable: false,
@@ -210585,10 +210699,10 @@
210585
210699
  });
210586
210700
  Object.defineProperty(FunnelChartDescription.prototype, "useUnselectedStyle", {
210587
210701
  get: function () {
210588
- return this.p;
210702
+ return this.r;
210589
210703
  },
210590
210704
  set: function (a) {
210591
- this.p = a;
210705
+ this.r = a;
210592
210706
  this.g("UseUnselectedStyle");
210593
210707
  },
210594
210708
  enumerable: false,
@@ -210596,10 +210710,10 @@
210596
210710
  });
210597
210711
  Object.defineProperty(FunnelChartDescription.prototype, "selectedSliceFill", {
210598
210712
  get: function () {
210599
- return this.a4;
210713
+ return this.a7;
210600
210714
  },
210601
210715
  set: function (a) {
210602
- this.a4 = a;
210716
+ this.a7 = a;
210603
210717
  this.g("SelectedSliceFill");
210604
210718
  },
210605
210719
  enumerable: false,
@@ -210607,10 +210721,10 @@
210607
210721
  });
210608
210722
  Object.defineProperty(FunnelChartDescription.prototype, "selectedSliceStroke", {
210609
210723
  get: function () {
210610
- return this.a5;
210724
+ return this.a8;
210611
210725
  },
210612
210726
  set: function (a) {
210613
- this.a5 = a;
210727
+ this.a8 = a;
210614
210728
  this.g("SelectedSliceStroke");
210615
210729
  },
210616
210730
  enumerable: false,
@@ -210618,10 +210732,10 @@
210618
210732
  });
210619
210733
  Object.defineProperty(FunnelChartDescription.prototype, "selectedSliceStrokeThickness", {
210620
210734
  get: function () {
210621
- return this.ab;
210735
+ return this.ad;
210622
210736
  },
210623
210737
  set: function (a) {
210624
- this.ab = a;
210738
+ this.ad = a;
210625
210739
  this.g("SelectedSliceStrokeThickness");
210626
210740
  },
210627
210741
  enumerable: false,
@@ -210629,10 +210743,10 @@
210629
210743
  });
210630
210744
  Object.defineProperty(FunnelChartDescription.prototype, "selectedSliceOpacity", {
210631
210745
  get: function () {
210632
- return this.aa;
210746
+ return this.ac;
210633
210747
  },
210634
210748
  set: function (a) {
210635
- this.aa = a;
210749
+ this.ac = a;
210636
210750
  this.g("SelectedSliceOpacity");
210637
210751
  },
210638
210752
  enumerable: false,
@@ -210640,10 +210754,10 @@
210640
210754
  });
210641
210755
  Object.defineProperty(FunnelChartDescription.prototype, "unselectedSliceFill", {
210642
210756
  get: function () {
210643
- return this.bc;
210757
+ return this.bf;
210644
210758
  },
210645
210759
  set: function (a) {
210646
- this.bc = a;
210760
+ this.bf = a;
210647
210761
  this.g("UnselectedSliceFill");
210648
210762
  },
210649
210763
  enumerable: false,
@@ -210651,10 +210765,10 @@
210651
210765
  });
210652
210766
  Object.defineProperty(FunnelChartDescription.prototype, "unselectedSliceStroke", {
210653
210767
  get: function () {
210654
- return this.bd;
210768
+ return this.bg;
210655
210769
  },
210656
210770
  set: function (a) {
210657
- this.bd = a;
210771
+ this.bg = a;
210658
210772
  this.g("UnselectedSliceStroke");
210659
210773
  },
210660
210774
  enumerable: false,
@@ -210662,10 +210776,10 @@
210662
210776
  });
210663
210777
  Object.defineProperty(FunnelChartDescription.prototype, "unselectedSliceStrokeThickness", {
210664
210778
  get: function () {
210665
- return this.ad;
210779
+ return this.af;
210666
210780
  },
210667
210781
  set: function (a) {
210668
- this.ad = a;
210782
+ this.af = a;
210669
210783
  this.g("UnselectedSliceStrokeThickness");
210670
210784
  },
210671
210785
  enumerable: false,
@@ -210673,21 +210787,32 @@
210673
210787
  });
210674
210788
  Object.defineProperty(FunnelChartDescription.prototype, "unselectedSliceOpacity", {
210675
210789
  get: function () {
210676
- return this.ac;
210790
+ return this.ae;
210677
210791
  },
210678
210792
  set: function (a) {
210679
- this.ac = a;
210793
+ this.ae = a;
210680
210794
  this.g("UnselectedSliceOpacity");
210681
210795
  },
210682
210796
  enumerable: false,
210683
210797
  configurable: true
210684
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
+ });
210685
210810
  Object.defineProperty(FunnelChartDescription.prototype, "legendItemBadgeTemplateRef", {
210686
210811
  get: function () {
210687
- return this.ay;
210812
+ return this.a0;
210688
210813
  },
210689
210814
  set: function (a) {
210690
- this.ay = a;
210815
+ this.a0 = a;
210691
210816
  this.g("LegendItemBadgeTemplateRef");
210692
210817
  },
210693
210818
  enumerable: false,
@@ -210695,10 +210820,10 @@
210695
210820
  });
210696
210821
  Object.defineProperty(FunnelChartDescription.prototype, "useOuterLabelsForLegend", {
210697
210822
  get: function () {
210698
- return this.o;
210823
+ return this.q;
210699
210824
  },
210700
210825
  set: function (a) {
210701
- this.o = a;
210826
+ this.q = a;
210702
210827
  this.g("UseOuterLabelsForLegend");
210703
210828
  },
210704
210829
  enumerable: false,
@@ -210706,10 +210831,10 @@
210706
210831
  });
210707
210832
  Object.defineProperty(FunnelChartDescription.prototype, "textStyle", {
210708
210833
  get: function () {
210709
- return this.bb;
210834
+ return this.be;
210710
210835
  },
210711
210836
  set: function (a) {
210712
- this.bb = a;
210837
+ this.be = a;
210713
210838
  this.g("TextStyle");
210714
210839
  },
210715
210840
  enumerable: false,
@@ -210717,10 +210842,10 @@
210717
210842
  });
210718
210843
  Object.defineProperty(FunnelChartDescription.prototype, "outerLabelTextStyle", {
210719
210844
  get: function () {
210720
- return this.a2;
210845
+ return this.a4;
210721
210846
  },
210722
210847
  set: function (a) {
210723
- this.a2 = a;
210848
+ this.a4 = a;
210724
210849
  this.g("OuterLabelTextStyle");
210725
210850
  },
210726
210851
  enumerable: false,
@@ -210728,10 +210853,10 @@
210728
210853
  });
210729
210854
  Object.defineProperty(FunnelChartDescription.prototype, "outlineThickness", {
210730
210855
  get: function () {
210731
- return this.y;
210856
+ return this.aa;
210732
210857
  },
210733
210858
  set: function (a) {
210734
- this.y = a;
210859
+ this.aa = a;
210735
210860
  this.g("OutlineThickness");
210736
210861
  },
210737
210862
  enumerable: false,
@@ -210739,10 +210864,10 @@
210739
210864
  });
210740
210865
  Object.defineProperty(FunnelChartDescription.prototype, "pixelScalingRatio", {
210741
210866
  get: function () {
210742
- return this.z;
210867
+ return this.ab;
210743
210868
  },
210744
210869
  set: function (a) {
210745
- this.z = a;
210870
+ this.ab = a;
210746
210871
  this.g("PixelScalingRatio");
210747
210872
  },
210748
210873
  enumerable: false,
@@ -210750,10 +210875,10 @@
210750
210875
  });
210751
210876
  Object.defineProperty(FunnelChartDescription.prototype, "outerLabelTextColor", {
210752
210877
  get: function () {
210753
- return this.a1;
210878
+ return this.a3;
210754
210879
  },
210755
210880
  set: function (a) {
210756
- this.a1 = a;
210881
+ this.a3 = a;
210757
210882
  this.g("OuterLabelTextColor");
210758
210883
  },
210759
210884
  enumerable: false,
@@ -210761,21 +210886,32 @@
210761
210886
  });
210762
210887
  Object.defineProperty(FunnelChartDescription.prototype, "textColor", {
210763
210888
  get: function () {
210764
- return this.ba;
210889
+ return this.bd;
210765
210890
  },
210766
210891
  set: function (a) {
210767
- this.ba = a;
210892
+ this.bd = a;
210768
210893
  this.g("TextColor");
210769
210894
  },
210770
210895
  enumerable: false,
210771
210896
  configurable: true
210772
210897
  });
210773
- Object.defineProperty(FunnelChartDescription.prototype, "sliceClickedRef", {
210898
+ Object.defineProperty(FunnelChartDescription.prototype, "selectedItemsChangedRef", {
210774
210899
  get: function () {
210775
210900
  return this.a6;
210776
210901
  },
210777
210902
  set: function (a) {
210778
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;
210779
210915
  this.g("SliceClickedRef");
210780
210916
  },
210781
210917
  enumerable: false,
@@ -210783,10 +210919,10 @@
210783
210919
  });
210784
210920
  Object.defineProperty(FunnelChartDescription.prototype, "sliceEnterRef", {
210785
210921
  get: function () {
210786
- return this.a7;
210922
+ return this.ba;
210787
210923
  },
210788
210924
  set: function (a) {
210789
- this.a7 = a;
210925
+ this.ba = a;
210790
210926
  this.g("SliceEnterRef");
210791
210927
  },
210792
210928
  enumerable: false,
@@ -210794,10 +210930,10 @@
210794
210930
  });
210795
210931
  Object.defineProperty(FunnelChartDescription.prototype, "sliceLeaveRef", {
210796
210932
  get: function () {
210797
- return this.a9;
210933
+ return this.bc;
210798
210934
  },
210799
210935
  set: function (a) {
210800
- this.a9 = a;
210936
+ this.bc = a;
210801
210937
  this.g("SliceLeaveRef");
210802
210938
  },
210803
210939
  enumerable: false,
@@ -210805,10 +210941,10 @@
210805
210941
  });
210806
210942
  Object.defineProperty(FunnelChartDescription.prototype, "sliceHoverRef", {
210807
210943
  get: function () {
210808
- return this.a8;
210944
+ return this.bb;
210809
210945
  },
210810
210946
  set: function (a) {
210811
- this.a8 = a;
210947
+ this.bb = a;
210812
210948
  this.g("SliceHoverRef");
210813
210949
  },
210814
210950
  enumerable: false,
@@ -210818,6 +210954,110 @@
210818
210954
  return FunnelChartDescription;
210819
210955
  }(Description));
210820
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
+
210821
211061
  /*
210822
211062
  THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
210823
211063
  https://www.infragistics.com/legal/license/igultimate-la
@@ -211062,6 +211302,7 @@
211062
211302
  return;
211063
211303
  }
211064
211304
  a.ac(FunnelChartDescriptionMetadata.a);
211305
+ FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata.d(a);
211065
211306
  FunnelSliceClickedEventArgsDescriptionMetadata.d(a);
211066
211307
  FunnelSliceEventArgsDescriptionMetadata.d(a);
211067
211308
  };
@@ -211103,6 +211344,7 @@
211103
211344
  a.item("UnselectedSliceStroke", "(w:UnselectedSliceStyle.Stroke,wf:UnselectedSliceStroke)String");
211104
211345
  a.item("UnselectedSliceStrokeThickness", "(w:UnselectedSliceStyle.StrokeThickness,wf:UnselectedSliceStrokeThickness)Number:double");
211105
211346
  a.item("UnselectedSliceOpacity", "(w:UnselectedSliceStyle.Opacity,wf:UnselectedSliceOpacity)Number:double");
211347
+ a.item("SelectedItems", "Collection:object:FunnelChartSelectedItemsCollection:Object");
211106
211348
  a.item("LegendItemBadgeTemplateRef", "(w:LegendItemBadgeTemplate,wf:LegendItemBadgeTemplate)DataRef::object");
211107
211349
  a.item("UseOuterLabelsForLegend", "Boolean");
211108
211350
  a.item("TextStyle", "String");
@@ -211111,6 +211353,7 @@
211111
211353
  a.item("PixelScalingRatio", "Number:double");
211112
211354
  a.item("OuterLabelTextColor", "Brush");
211113
211355
  a.item("TextColor", "Brush");
211356
+ a.item("SelectedItemsChangedRef", "EventRef::selectedItemsChanged");
211114
211357
  a.item("SliceClickedRef", "EventRef::sliceClicked");
211115
211358
  a.item("SliceEnterRef", "EventRef::sliceEnter");
211116
211359
  a.item("SliceLeaveRef", "EventRef::sliceLeave");
@@ -317264,6 +317507,7 @@
317264
317507
  exports.ComponentRendererMethodHelperArgumentBuilder = ComponentRendererMethodHelperArgumentBuilder;
317265
317508
  exports.ComponentRendererMethodHelperBuilder = ComponentRendererMethodHelperBuilder;
317266
317509
  exports.ComponentRendererMethodHelperReturnBuilder = ComponentRendererMethodHelperReturnBuilder;
317510
+ exports.ComponentRendererReferenceResolverEventArgs = ComponentRendererReferenceResolverEventArgs;
317267
317511
  exports.ComponentRendererSerializationHelper = ComponentRendererSerializationHelper;
317268
317512
  exports.Compute = Compute;
317269
317513
  exports.ContainerState = ContainerState;
@@ -317851,6 +318095,8 @@
317851
318095
  exports.FunnelChartDescription = FunnelChartDescription;
317852
318096
  exports.FunnelChartDescriptionMetadata = FunnelChartDescriptionMetadata;
317853
318097
  exports.FunnelChartDescriptionModule = FunnelChartDescriptionModule;
318098
+ exports.FunnelChartSelectedItemsChangedEventArgsDescription = FunnelChartSelectedItemsChangedEventArgsDescription;
318099
+ exports.FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata = FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata;
317854
318100
  exports.FunnelDataContextDescription = FunnelDataContextDescription;
317855
318101
  exports.FunnelDataContextDescriptionMetadata = FunnelDataContextDescriptionMetadata;
317856
318102
  exports.FunnelSliceClickedEventArgsDescription = FunnelSliceClickedEventArgsDescription;