igniteui-angular-core 14.1.0 → 14.1.1

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.
@@ -15838,7 +15838,10 @@ function fromBrushCollection(v) {
15838
15838
  var internalCollection = v;
15839
15839
  var ret = [];
15840
15840
  for (var i = 0; i < internalCollection.count; i++) {
15841
- ret.push(internalCollection.item(i).fill);
15841
+ var brush = internalCollection.item(i);
15842
+ if (brush != null) {
15843
+ ret.push(brush.fill);
15844
+ }
15842
15845
  }
15843
15846
  return ret;
15844
15847
  }
@@ -34971,10 +34974,10 @@ var CanvasViewRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
34971
34974
  }
34972
34975
  };
34973
34976
  CanvasViewRenderer.prototype.h$ae = function (a, b, c) {
34977
+ this.j.textBaseline = "alphabetic";
34974
34978
  var d = this.j.measureText(a);
34975
34979
  var metrics_ = d;
34976
34980
  var e = b;
34977
- this.j.textBaseline = "alphabetic";
34978
34981
  var f = new TextFontMetrics();
34979
34982
  if ((metrics_.actualBoundingBoxAscent !== undefined)) {
34980
34983
  f.a = (metrics_.actualBoundingBoxAscent);
@@ -61129,72 +61132,100 @@ var DescriptionTreeNode = /** @class */ /*@__PURE__*/ (function (_super) {
61129
61132
  __extends(DescriptionTreeNode, _super);
61130
61133
  function DescriptionTreeNode() {
61131
61134
  var _this = _super.call(this) || this;
61132
- _this.f = 0;
61133
- _this.d = new List$1(DescriptionPropertyValue.$, 0);
61134
- _this.c = new Dictionary$2(String_$type, DescriptionPropertyValue.$, 0);
61135
- _this.h = null;
61136
- _this.f = DescriptionTreeNode.g;
61137
- DescriptionTreeNode.g++;
61138
- if (DescriptionTreeNode.g >= 0x7FFFFFFFFFFFFFFF) {
61139
- DescriptionTreeNode.g = 0;
61135
+ _this.g = 0;
61136
+ _this.e = new List$1(DescriptionPropertyValue.$, 0);
61137
+ _this.d = new Dictionary$2(String_$type, DescriptionPropertyValue.$, 0);
61138
+ _this.i = null;
61139
+ _this.g = DescriptionTreeNode.h;
61140
+ DescriptionTreeNode.h++;
61141
+ if (DescriptionTreeNode.h >= 0x7FFFFFFFFFFFFFFF) {
61142
+ DescriptionTreeNode.h = 0;
61140
61143
  }
61141
61144
  return _this;
61142
61145
  }
61143
- DescriptionTreeNode.prototype.i = function (a, b) {
61146
+ DescriptionTreeNode.prototype.b = function () {
61147
+ var a = new DescriptionTreeNode();
61148
+ a.g = this.g;
61149
+ a.i = this.i;
61150
+ for (var b = 0; b < this.e.count; b++) {
61151
+ var c = this.e._inner[b].c;
61152
+ var d = this.e._inner[b].a;
61153
+ var e = this.e._inner[b].b;
61154
+ if (typeCast(DescriptionTreeNode.$, e) !== null) {
61155
+ e = e.b();
61156
+ }
61157
+ if (typeCast(Array_$type, e) !== null) {
61158
+ var f = e;
61159
+ var g = new Array(f.length);
61160
+ for (var h = 0; h < f.length; h++) {
61161
+ if (typeCast(DescriptionTreeNode.$, f[h]) !== null) {
61162
+ g[h] = f[h].b();
61163
+ }
61164
+ else {
61165
+ g[h] = f[h];
61166
+ }
61167
+ }
61168
+ e = g;
61169
+ }
61170
+ a.k(c, e, d);
61171
+ }
61172
+ return a;
61173
+ };
61174
+ DescriptionTreeNode.prototype.j = function (a, b) {
61144
61175
  var c = new DescriptionPropertyValue();
61145
61176
  c.c = a;
61146
61177
  c.b = b;
61147
- this.c.addItem(a.toLowerCase(), c);
61148
- this.d.add(c);
61178
+ this.d.addItem(a.toLowerCase(), c);
61179
+ this.e.add(c);
61149
61180
  };
61150
- DescriptionTreeNode.prototype.j = function (a, b, c) {
61181
+ DescriptionTreeNode.prototype.k = function (a, b, c) {
61151
61182
  var d = new DescriptionPropertyValue();
61152
61183
  d.c = a;
61153
61184
  d.b = b;
61154
61185
  d.a = c;
61155
- this.c.addItem(a.toLowerCase(), d);
61156
- this.d.add(d);
61186
+ this.d.addItem(a.toLowerCase(), d);
61187
+ this.e.add(d);
61157
61188
  };
61158
- DescriptionTreeNode.prototype.m = function (a, b) {
61159
- if (this.c.containsKey(a.toLowerCase())) {
61160
- var c = this.c.item(a.toLowerCase());
61189
+ DescriptionTreeNode.prototype.n = function (a, b) {
61190
+ if (this.d.containsKey(a.toLowerCase())) {
61191
+ var c = this.d.item(a.toLowerCase());
61161
61192
  c.b = b;
61162
61193
  }
61163
61194
  else {
61164
- this.i(a, b);
61195
+ this.j(a, b);
61165
61196
  }
61166
61197
  };
61167
- DescriptionTreeNode.prototype.n = function (a, b, c) {
61168
- if (this.c.containsKey(a.toLowerCase())) {
61169
- var d = this.c.item(a.toLowerCase());
61198
+ DescriptionTreeNode.prototype.o = function (a, b, c) {
61199
+ if (this.d.containsKey(a.toLowerCase())) {
61200
+ var d = this.d.item(a.toLowerCase());
61170
61201
  d.b = b;
61171
61202
  }
61172
61203
  else {
61173
- this.j(a, b, c);
61204
+ this.k(a, b, c);
61174
61205
  }
61175
61206
  };
61176
61207
  DescriptionTreeNode.prototype.a = function (a) {
61177
- return this.c.item(a.toLowerCase());
61208
+ return this.d.item(a.toLowerCase());
61178
61209
  };
61179
- DescriptionTreeNode.prototype.b = function (a) {
61180
- return this.c.containsKey(a.toLowerCase());
61210
+ DescriptionTreeNode.prototype.c = function (a) {
61211
+ return this.d.containsKey(a.toLowerCase());
61181
61212
  };
61182
- DescriptionTreeNode.prototype.l = function (a) {
61183
- if (this.c.containsKey(a.toLowerCase())) {
61184
- var b = this.c.item(a.toLowerCase());
61185
- this.c.removeItem(a.toLowerCase());
61186
- this.d.remove(b);
61213
+ DescriptionTreeNode.prototype.m = function (a) {
61214
+ if (this.d.containsKey(a.toLowerCase())) {
61215
+ var b = this.d.item(a.toLowerCase());
61216
+ this.d.removeItem(a.toLowerCase());
61217
+ this.e.remove(b);
61187
61218
  }
61188
61219
  };
61189
- DescriptionTreeNode.prototype.k = function () {
61190
- this.c.clear();
61220
+ DescriptionTreeNode.prototype.l = function () {
61191
61221
  this.d.clear();
61222
+ this.e.clear();
61192
61223
  };
61193
- DescriptionTreeNode.prototype.e = function () {
61194
- return this.d;
61224
+ DescriptionTreeNode.prototype.f = function () {
61225
+ return this.e;
61195
61226
  };
61196
61227
  DescriptionTreeNode.$t = markType(DescriptionTreeNode, 'DescriptionTreeNode');
61197
- DescriptionTreeNode.g = 0;
61228
+ DescriptionTreeNode.h = 0;
61198
61229
  return DescriptionTreeNode;
61199
61230
  }(Base));
61200
61231
 
@@ -61360,23 +61391,24 @@ var DescriptionTreeAction = /** @class */ /*@__PURE__*/ (function (_super) {
61360
61391
  function DescriptionTreeAction() {
61361
61392
  var _this = _super !== null && _super.apply(this, arguments) || this;
61362
61393
  _this.a = 0;
61363
- _this.b = null;
61364
61394
  _this.c = null;
61365
- _this.i = null;
61395
+ _this.b = null;
61396
+ _this.d = null;
61397
+ _this.j = null;
61398
+ _this.h = null;
61366
61399
  _this.g = null;
61367
- _this.f = null;
61400
+ _this.f = 0;
61368
61401
  _this.e = 0;
61369
- _this.d = 0;
61370
61402
  return _this;
61371
61403
  }
61372
- DescriptionTreeAction.prototype.h = function (a) {
61373
- var b = this.i;
61374
- if (this.c != null) {
61375
- b = this.c.g(a);
61404
+ DescriptionTreeAction.prototype.i = function (a) {
61405
+ var b = this.j;
61406
+ if (this.d != null) {
61407
+ b = this.d.g(a);
61376
61408
  }
61377
61409
  else {
61378
61410
  if (TypeDescriptionMetadata.shouldCamelize(a)) {
61379
- b = TypeDescriptionMetadata.camelize(this.i);
61411
+ b = TypeDescriptionMetadata.camelize(this.j);
61380
61412
  }
61381
61413
  }
61382
61414
  if (stringEndsWith(b, "Ref")) {
@@ -61596,55 +61628,79 @@ var TypeDescriptionPropretyTransforms = /** @class */ /*@__PURE__*/ (function (_
61596
61628
  return _this;
61597
61629
  }
61598
61630
  TypeDescriptionPropretyTransforms.prototype.b = function (a) {
61599
- var b = stringReplace(stringReplace(stringReplace(a.i, "Style", "Family"), "Weight", "Family"), "Size", "Family");
61631
+ var b = stringReplace(stringReplace(stringReplace(a.j, "Style", "Family"), "Weight", "Family"), "Size", "Family");
61600
61632
  var c = "Verdana";
61601
- if (a.b.b(b)) {
61602
- c = a.b.a(b).b;
61603
- if (c == null) {
61604
- c = "Verdana";
61633
+ var d = a.b;
61634
+ if (d == null) {
61635
+ d = a.c;
61636
+ }
61637
+ if (d != null) {
61638
+ if (d.c(b)) {
61639
+ c = d.a(b).b;
61640
+ if (c == null) {
61641
+ c = "Verdana";
61642
+ }
61605
61643
  }
61606
61644
  }
61607
61645
  return c;
61608
61646
  };
61609
61647
  TypeDescriptionPropretyTransforms.prototype.d = function (a) {
61610
- var b = stringReplace(stringReplace(stringReplace(a.i, "Family", "Style"), "Weight", "Style"), "Size", "Style");
61648
+ var b = stringReplace(stringReplace(stringReplace(a.j, "Family", "Style"), "Weight", "Style"), "Size", "Style");
61611
61649
  var c = "normal";
61612
- if (a.b.b(b)) {
61613
- c = a.b.a(b).b;
61614
- if (c == null) {
61615
- c = "normal";
61650
+ var d = a.b;
61651
+ if (d == null) {
61652
+ d = a.c;
61653
+ }
61654
+ if (d != null) {
61655
+ if (d.c(b)) {
61656
+ c = d.a(b).b;
61657
+ if (c == null) {
61658
+ c = "normal";
61659
+ }
61616
61660
  }
61617
61661
  }
61618
61662
  return c;
61619
61663
  };
61620
61664
  TypeDescriptionPropretyTransforms.prototype.c = function (a) {
61621
- var b = stringReplace(stringReplace(stringReplace(a.i, "Family", "Size"), "Weight", "Size"), "Style", "Size");
61665
+ var b = stringReplace(stringReplace(stringReplace(a.j, "Family", "Size"), "Weight", "Size"), "Style", "Size");
61622
61666
  var c = "14px";
61623
- if (a.b.b(b)) {
61624
- c = a.b.a(b).b;
61625
- if (c == null) {
61626
- c = "14px";
61627
- }
61628
- else {
61629
- c = c.toString() + "px";
61667
+ var d = a.b;
61668
+ if (d == null) {
61669
+ d = a.c;
61670
+ }
61671
+ if (d != null) {
61672
+ if (d.c(b)) {
61673
+ c = d.a(b).b;
61674
+ if (c == null) {
61675
+ c = "14px";
61676
+ }
61677
+ else {
61678
+ c = c.toString() + "px";
61679
+ }
61630
61680
  }
61631
61681
  }
61632
61682
  return c;
61633
61683
  };
61634
61684
  TypeDescriptionPropretyTransforms.prototype.e = function (a) {
61635
- var b = stringReplace(stringReplace(stringReplace(a.i, "Family", "Weight"), "Size", "Weight"), "Style", "Weight");
61685
+ var b = stringReplace(stringReplace(stringReplace(a.j, "Family", "Weight"), "Size", "Weight"), "Style", "Weight");
61636
61686
  var c = "normal";
61637
- if (a.b.b(b)) {
61638
- c = a.b.a(b).b;
61639
- if (c == null) {
61640
- c = "normal";
61687
+ var d = a.b;
61688
+ if (d == null) {
61689
+ d = a.c;
61690
+ }
61691
+ if (d != null) {
61692
+ if (d.c(b)) {
61693
+ c = d.a(b).b;
61694
+ if (c == null) {
61695
+ c = "normal";
61696
+ }
61697
+ c = c.toLowerCase();
61641
61698
  }
61642
- c = c.toLowerCase();
61643
61699
  }
61644
61700
  return c;
61645
61701
  };
61646
61702
  TypeDescriptionPropretyTransforms.prototype.transform = function (a, b, c) {
61647
- var d = c.c;
61703
+ var d = c.d;
61648
61704
  if (d == null) {
61649
61705
  return b;
61650
61706
  }
@@ -61776,13 +61832,13 @@ var DescriptionTreeBuilder = /** @class */ /*@__PURE__*/ (function (_super) {
61776
61832
  e = h;
61777
61833
  }
61778
61834
  if (key_.toLowerCase() == "type") {
61779
- b.h = e;
61835
+ b.i = e;
61780
61836
  }
61781
- b.i(DescriptionTreeBuilder.c(key_), e);
61837
+ b.j(DescriptionTreeBuilder.c(key_), e);
61782
61838
  }
61783
- if (b.b("type")) {
61839
+ if (b.c("type")) {
61784
61840
  var l = b.a("type").b;
61785
- var m = b.e();
61841
+ var m = b.f();
61786
61842
  for (var n = 0; n < m.count; n++) {
61787
61843
  var o = m._inner[n];
61788
61844
  o.a = a.getMetadata(l, o.c);
@@ -62360,8 +62416,8 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
62360
62416
  DescriptionSerializer.prototype.q = function (a, b, c) {
62361
62417
  c.f("{");
62362
62418
  c.i();
62363
- c.f("\"type\": \"" + b.h + "\"");
62364
- var d = b.e();
62419
+ c.f("\"type\": \"" + b.i + "\"");
62420
+ var d = b.f();
62365
62421
  for (var e = 0; e < d.count; e++) {
62366
62422
  var f = d._inner[e];
62367
62423
  if (e >= 0) {
@@ -62627,13 +62683,13 @@ var DescriptionTreeReconciler = /** @class */ /*@__PURE__*/ (function (_super) {
62627
62683
  var e = b._inner[d];
62628
62684
  switch (e.a) {
62629
62685
  case 0:
62630
- if (typeCast(DescriptionTreeNode.$, e.g) !== null) {
62631
- var f = e.g.f;
62686
+ if (typeCast(DescriptionTreeNode.$, e.h) !== null) {
62687
+ var f = e.h.g;
62632
62688
  c.a.add_1(f);
62633
62689
  }
62634
- e.b.m(e.i, e.f);
62635
- if (typeCast(DescriptionTreeNode.$, e.f) !== null) {
62636
- var g = e.f.f;
62690
+ e.c.o(e.j, e.g, e.d);
62691
+ if (typeCast(DescriptionTreeNode.$, e.g) !== null) {
62692
+ var g = e.g.g;
62637
62693
  if (c.a.contains(g)) {
62638
62694
  c.a.remove(g);
62639
62695
  }
@@ -62641,23 +62697,23 @@ var DescriptionTreeReconciler = /** @class */ /*@__PURE__*/ (function (_super) {
62641
62697
  }
62642
62698
  break;
62643
62699
  case 1:
62644
- if (typeCast(DescriptionTreeNode.$, e.g) !== null) {
62645
- var h = e.g.f;
62700
+ if (typeCast(DescriptionTreeNode.$, e.h) !== null) {
62701
+ var h = e.h.g;
62646
62702
  c.a.add_1(h);
62647
62703
  }
62648
- e.b.l(e.i);
62704
+ e.c.m(e.j);
62649
62705
  break;
62650
62706
  case 3:
62651
62707
  {
62652
- var i = e.b.a(e.i).b;
62653
- var j = i[e.e];
62708
+ var i = e.c.a(e.j).b;
62709
+ var j = i[e.f];
62654
62710
  if (typeCast(DescriptionTreeNode.$, j) !== null) {
62655
- var k = j.f;
62711
+ var k = j.g;
62656
62712
  c.a.add_1(k);
62657
62713
  }
62658
- i[e.e] = e.f;
62659
- if (typeCast(DescriptionTreeNode.$, e.f) !== null) {
62660
- var l = e.f.f;
62714
+ i[e.f] = e.g;
62715
+ if (typeCast(DescriptionTreeNode.$, e.g) !== null) {
62716
+ var l = e.g.g;
62661
62717
  if (c.a.contains(l)) {
62662
62718
  c.a.remove(l);
62663
62719
  }
@@ -62667,44 +62723,44 @@ var DescriptionTreeReconciler = /** @class */ /*@__PURE__*/ (function (_super) {
62667
62723
  break;
62668
62724
  case 4:
62669
62725
  {
62670
- var m = e.b.a(e.i).b;
62671
- var n = m[e.e];
62726
+ var m = e.c.a(e.j).b;
62727
+ var n = m[e.f];
62672
62728
  if (typeCast(DescriptionTreeNode.$, n) !== null) {
62673
- var o = n.f;
62729
+ var o = n.g;
62674
62730
  c.a.add_1(o);
62675
62731
  }
62676
62732
  var p = new Array(m.length - 1);
62677
62733
  var q = 0;
62678
62734
  for (var r = 0; r < m.length; r++) {
62679
- if (r != e.e) {
62735
+ if (r != e.f) {
62680
62736
  p[q] = m[r];
62681
62737
  q++;
62682
62738
  }
62683
62739
  }
62684
- e.b.m(e.i, p);
62740
+ e.c.n(e.j, p);
62685
62741
  }
62686
62742
  break;
62687
62743
  case 2:
62688
62744
  {
62689
- if (e.b == null && a == null) {
62745
+ if (e.c == null && a == null) {
62690
62746
  c.d.add(e);
62691
62747
  }
62692
62748
  else {
62693
- var s = e.b.a(e.i).b;
62749
+ var s = e.c.a(e.j).b;
62694
62750
  var t = new Array(s.length + 1);
62695
62751
  var u = 0;
62696
62752
  for (var v = 0; v < t.length; v++) {
62697
- if (v == e.d) {
62698
- t[v] = e.f;
62753
+ if (v == e.e) {
62754
+ t[v] = e.g;
62699
62755
  }
62700
62756
  else {
62701
62757
  t[v] = s[u];
62702
62758
  u++;
62703
62759
  }
62704
62760
  }
62705
- e.b.m(e.i, t);
62706
- if (typeCast(DescriptionTreeNode.$, e.f) !== null) {
62707
- var w = e.f.f;
62761
+ e.c.n(e.j, t);
62762
+ if (typeCast(DescriptionTreeNode.$, e.g) !== null) {
62763
+ var w = e.g.g;
62708
62764
  if (c.a.contains(w)) {
62709
62765
  c.a.remove(w);
62710
62766
  }
@@ -62715,15 +62771,15 @@ var DescriptionTreeReconciler = /** @class */ /*@__PURE__*/ (function (_super) {
62715
62771
  break;
62716
62772
  case 5:
62717
62773
  {
62718
- var x = e.b.a(e.i).b;
62774
+ var x = e.c.a(e.j).b;
62719
62775
  for (var y = 0; y < x.length; y++) {
62720
62776
  var z = x[y];
62721
62777
  if (typeCast(DescriptionTreeNode.$, z) !== null) {
62722
- var aa = z.f;
62778
+ var aa = z.g;
62723
62779
  c.a.add_1(aa);
62724
62780
  }
62725
62781
  }
62726
- e.b.m(e.i, []);
62782
+ e.c.n(e.j, []);
62727
62783
  }
62728
62784
  break;
62729
62785
  }
@@ -62738,31 +62794,31 @@ var DescriptionTreeReconciler = /** @class */ /*@__PURE__*/ (function (_super) {
62738
62794
  if (a != null && b == null) {
62739
62795
  var e = new DescriptionTreeAction();
62740
62796
  e.a = 4;
62741
- e.e = 0;
62742
- e.g = a;
62743
- e.c = null;
62744
- e.i = null;
62797
+ e.f = 0;
62798
+ e.h = a;
62799
+ e.d = null;
62800
+ e.j = null;
62745
62801
  d.add(e);
62746
62802
  return d;
62747
62803
  }
62748
62804
  if (a == null && b != null) {
62749
62805
  var f = new DescriptionTreeAction();
62750
62806
  f.a = 2;
62751
- f.e = 0;
62752
- f.f = b;
62753
- f.c = null;
62754
- f.i = null;
62807
+ f.f = 0;
62808
+ f.g = b;
62809
+ f.d = null;
62810
+ f.j = null;
62755
62811
  d.add(f);
62756
62812
  return d;
62757
62813
  }
62758
- if (b.h != a.h) {
62814
+ if (b.i != a.i) {
62759
62815
  var g = new DescriptionTreeAction();
62760
62816
  g.a = 3;
62761
- g.e = 0;
62762
- g.g = a;
62763
- g.f = b;
62764
- g.c = null;
62765
- g.i = null;
62817
+ g.f = 0;
62818
+ g.h = a;
62819
+ g.g = b;
62820
+ g.d = null;
62821
+ g.j = null;
62766
62822
  d.add(g);
62767
62823
  return d;
62768
62824
  }
@@ -62770,7 +62826,7 @@ var DescriptionTreeReconciler = /** @class */ /*@__PURE__*/ (function (_super) {
62770
62826
  return d;
62771
62827
  };
62772
62828
  DescriptionTreeReconciler.g = function (a, b, c, d) {
62773
- c.f = b.f;
62829
+ c.g = b.g;
62774
62830
  var e = DescriptionTreeReconciler.e(b);
62775
62831
  var f = DescriptionTreeReconciler.e(c);
62776
62832
  var g = new List$1(DescriptionPropertyValue.$, 0);
@@ -62778,14 +62834,14 @@ var DescriptionTreeReconciler = /** @class */ /*@__PURE__*/ (function (_super) {
62778
62834
  var i = new List$1(DescriptionPropertyValue.$, 0);
62779
62835
  for (var j = 0; j < e.count; j++) {
62780
62836
  var k = e._inner[j];
62781
- if (c.b(k.c)) {
62837
+ if (c.c(k.c)) {
62782
62838
  if (!Base.equalsStatic(k, c.a(k.c))) {
62783
62839
  var l = c.a(k.c);
62784
62840
  if (typeCast(DescriptionTreeNode.$, k.b) !== null && typeCast(DescriptionTreeNode.$, l.b) !== null) {
62785
62841
  var m = k.b;
62786
62842
  var n = l.b;
62787
- if (m.h == n.h) {
62788
- if ((!m.b("Name") && !n.b("Name")) || (m.b("Name") && n.b("Name") && (m.a("Name").b == n.a("Name").b))) {
62843
+ if (m.i == n.i) {
62844
+ if ((!m.c("Name") && !n.c("Name")) || (m.c("Name") && n.c("Name") && (m.a("Name").b == n.a("Name").b))) {
62789
62845
  DescriptionTreeReconciler.g(a, m, n, d);
62790
62846
  }
62791
62847
  else {
@@ -62809,29 +62865,31 @@ var DescriptionTreeReconciler = /** @class */ /*@__PURE__*/ (function (_super) {
62809
62865
  }
62810
62866
  for (var o = 0; o < f.count; o++) {
62811
62867
  var p = f._inner[o];
62812
- if (!b.b(p.c)) {
62868
+ if (!b.c(p.c)) {
62813
62869
  h.add(p);
62814
62870
  }
62815
62871
  }
62816
62872
  for (var q = 0; q < g.count; q++) {
62817
62873
  var r = g._inner[q];
62818
62874
  var s = new DescriptionTreeAction();
62819
- s.b = b;
62875
+ s.c = b;
62876
+ s.b = c;
62820
62877
  s.a = 1;
62821
- s.i = r.c;
62822
- s.c = r.a;
62823
- s.g = r.b;
62878
+ s.j = r.c;
62879
+ s.d = r.a;
62880
+ s.h = r.b;
62824
62881
  a.add(s);
62825
62882
  }
62826
62883
  for (var t = 0; t < h.count; t++) {
62827
62884
  var u = h._inner[t];
62828
62885
  var v = new DescriptionTreeAction();
62829
- v.b = b;
62886
+ v.c = b;
62887
+ v.b = c;
62830
62888
  v.a = 0;
62831
- v.i = u.c;
62832
- v.c = u.a;
62833
- v.f = u.b;
62834
- v.g = null;
62889
+ v.j = u.c;
62890
+ v.d = u.a;
62891
+ v.g = u.b;
62892
+ v.h = null;
62835
62893
  a.add(v);
62836
62894
  }
62837
62895
  for (var w = 0; w < i.count; w++) {
@@ -62840,12 +62898,13 @@ var DescriptionTreeReconciler = /** @class */ /*@__PURE__*/ (function (_super) {
62840
62898
  var z = x.b;
62841
62899
  if (!Base.equalsStatic(z, y)) {
62842
62900
  var aa = new DescriptionTreeAction();
62843
- aa.b = b;
62901
+ aa.c = b;
62902
+ aa.b = c;
62844
62903
  aa.a = 0;
62845
- aa.i = x.c;
62846
- aa.c = x.a;
62847
- aa.f = x.b;
62848
- aa.g = b.a(x.c).b;
62904
+ aa.j = x.c;
62905
+ aa.d = x.a;
62906
+ aa.g = x.b;
62907
+ aa.h = b.a(x.c).b;
62849
62908
  a.add(aa);
62850
62909
  }
62851
62910
  }
@@ -62856,7 +62915,7 @@ var DescriptionTreeReconciler = /** @class */ /*@__PURE__*/ (function (_super) {
62856
62915
  var af = new List$1(DescriptionPropertyValue.$, 0);
62857
62916
  for (var ag = 0; ag < ab.count; ag++) {
62858
62917
  var ah = ab._inner[ag];
62859
- if (c.b(ah.c)) {
62918
+ if (c.c(ah.c)) {
62860
62919
  if (!DescriptionTreeReconciler.b(ah.b, c.a(ah.c).b)) {
62861
62920
  af.add(c.a(ah.c));
62862
62921
  }
@@ -62869,33 +62928,35 @@ var DescriptionTreeReconciler = /** @class */ /*@__PURE__*/ (function (_super) {
62869
62928
  if (typeCast(DescriptionTreeNode.$, al) !== null && typeCast(DescriptionTreeNode.$, am) !== null) {
62870
62929
  var an = al;
62871
62930
  var ao = am;
62872
- if (an.h == ao.h) {
62931
+ if (an.i == ao.i) {
62873
62932
  DescriptionTreeReconciler.g(a, an, ao, d);
62874
62933
  }
62875
62934
  else {
62876
62935
  var ap = new DescriptionTreeAction();
62877
- ap.i = ah.c;
62878
- ap.c = ah.a;
62879
- ap.b = b;
62936
+ ap.j = ah.c;
62937
+ ap.d = ah.a;
62938
+ ap.c = b;
62939
+ ap.b = c;
62880
62940
  ap.a = 3;
62941
+ ap.f = ak;
62881
62942
  ap.e = ak;
62882
- ap.d = ak;
62883
- ap.g = an;
62884
- ap.f = ao;
62943
+ ap.h = an;
62944
+ ap.g = ao;
62885
62945
  a.add(ap);
62886
62946
  }
62887
62947
  }
62888
62948
  else {
62889
62949
  if (!Base.equalsStatic(al, am)) {
62890
62950
  var aq = new DescriptionTreeAction();
62891
- aq.i = ah.c;
62892
- aq.c = ah.a;
62893
- aq.b = b;
62951
+ aq.j = ah.c;
62952
+ aq.d = ah.a;
62953
+ aq.c = b;
62954
+ aq.b = c;
62894
62955
  aq.a = 3;
62956
+ aq.f = ak;
62895
62957
  aq.e = ak;
62896
- aq.d = ak;
62897
- aq.g = al;
62898
- aq.f = am;
62958
+ aq.h = al;
62959
+ aq.g = am;
62899
62960
  a.add(aq);
62900
62961
  }
62901
62962
  }
@@ -62910,29 +62971,31 @@ var DescriptionTreeReconciler = /** @class */ /*@__PURE__*/ (function (_super) {
62910
62971
  }
62911
62972
  for (var ar = 0; ar < ac.count; ar++) {
62912
62973
  var as = ac._inner[ar];
62913
- if (!b.b(as.c)) {
62974
+ if (!b.c(as.c)) {
62914
62975
  ae.add(as);
62915
62976
  }
62916
62977
  }
62917
62978
  for (var at = 0; at < ad.count; at++) {
62918
62979
  var au = ad._inner[at];
62919
62980
  var av = new DescriptionTreeAction();
62920
- av.b = b;
62921
- av.i = au.c;
62922
- av.c = au.a;
62981
+ av.c = b;
62982
+ av.b = c;
62983
+ av.j = au.c;
62984
+ av.d = au.a;
62923
62985
  av.a = 5;
62924
- av.g = au.b;
62986
+ av.h = au.b;
62925
62987
  a.add(av);
62926
62988
  }
62927
62989
  for (var aw = 0; aw < ae.count; aw++) {
62928
62990
  var ax = ae._inner[aw];
62929
62991
  var ay = new DescriptionTreeAction();
62930
- ay.b = b;
62931
- ay.i = ax.c;
62932
- ay.c = ax.a;
62992
+ ay.c = b;
62993
+ ay.b = c;
62994
+ ay.j = ax.c;
62995
+ ay.d = ax.a;
62933
62996
  ay.a = 0;
62934
- ay.g = null;
62935
- ay.f = ax.b;
62997
+ ay.h = null;
62998
+ ay.g = ax.b;
62936
62999
  a.add(ay);
62937
63000
  }
62938
63001
  for (var az = 0; az < af.count; az++) {
@@ -62943,7 +63006,7 @@ var DescriptionTreeReconciler = /** @class */ /*@__PURE__*/ (function (_super) {
62943
63006
  if (a == null) {
62944
63007
  return "UNKOWN";
62945
63008
  }
62946
- if (!a.b("Type")) {
63009
+ if (!a.c("Type")) {
62947
63010
  return "UNKOWN";
62948
63011
  }
62949
63012
  return a.a("Type").b;
@@ -62955,10 +63018,10 @@ var DescriptionTreeReconciler = /** @class */ /*@__PURE__*/ (function (_super) {
62955
63018
  if (h.length > 0) {
62956
63019
  if (typeCast(DescriptionTreeNode.$, h[0]) !== null) {
62957
63020
  var j = h[0];
62958
- if (j.b("Name") && j.a("Name") != null) {
63021
+ if (j.c("Name") && j.a("Name") != null) {
62959
63022
  g = true;
62960
63023
  }
62961
- if (j.b("RefType") && j.a("RefType").b == "uuid") {
63024
+ if (j.c("RefType") && j.a("RefType").b == "uuid") {
62962
63025
  g = true;
62963
63026
  }
62964
63027
  }
@@ -62966,10 +63029,10 @@ var DescriptionTreeReconciler = /** @class */ /*@__PURE__*/ (function (_super) {
62966
63029
  if (i.length > 0) {
62967
63030
  if (typeCast(DescriptionTreeNode.$, i[0]) !== null) {
62968
63031
  var k = i[0];
62969
- if (k.b("Name") && k.a("Name") != null) {
63032
+ if (k.c("Name") && k.a("Name") != null) {
62970
63033
  g = true;
62971
63034
  }
62972
- if (k.b("RefType") && k.a("RefType").b == "uuid") {
63035
+ if (k.c("RefType") && k.a("RefType").b == "uuid") {
62973
63036
  g = true;
62974
63037
  }
62975
63038
  }
@@ -62984,7 +63047,7 @@ var DescriptionTreeReconciler = /** @class */ /*@__PURE__*/ (function (_super) {
62984
63047
  var r = new DescriptionTreeReconciler_TreeModeData();
62985
63048
  r.a = h[q];
62986
63049
  r.d = q;
62987
- r.f = r.a.b("Name") ? r.a.a("Name").b : r.a.b("RefType") ? r.a.a("Value").b : null;
63050
+ r.f = r.a.c("Name") ? r.a.a("Name").b : r.a.c("RefType") ? r.a.a("Value").b : null;
62988
63051
  if (r.f == null) {
62989
63052
  r.f = "BADKEY_" + p.toString();
62990
63053
  p++;
@@ -62996,7 +63059,7 @@ var DescriptionTreeReconciler = /** @class */ /*@__PURE__*/ (function (_super) {
62996
63059
  var t = new DescriptionTreeReconciler_TreeModeData();
62997
63060
  t.a = i[s];
62998
63061
  t.d = s;
62999
- t.f = t.a.b("Name") ? t.a.a("Name").b : t.a.b("RefType") ? t.a.a("Value").b : null;
63062
+ t.f = t.a.c("Name") ? t.a.a("Name").b : t.a.c("RefType") ? t.a.a("Value").b : null;
63000
63063
  if (t.f == null) {
63001
63064
  t.f = "BADKEY_" + p.toString();
63002
63065
  p++;
@@ -63023,12 +63086,13 @@ var DescriptionTreeReconciler = /** @class */ /*@__PURE__*/ (function (_super) {
63023
63086
  var z = m._inner[y];
63024
63087
  if (z.c) {
63025
63088
  var aa = new DescriptionTreeAction();
63026
- aa.i = e.c;
63027
- aa.b = b;
63028
- aa.c = e.a;
63029
- aa.e = z.d;
63089
+ aa.j = e.c;
63090
+ aa.c = b;
63091
+ aa.b = c;
63092
+ aa.d = e.a;
63093
+ aa.f = z.d;
63030
63094
  aa.a = 4;
63031
- aa.g = z.a;
63095
+ aa.h = z.a;
63032
63096
  a.add(aa);
63033
63097
  for (var ab = y + 1; ab < m.count; ab++) {
63034
63098
  var ac = m._inner[ab];
@@ -63040,12 +63104,13 @@ var DescriptionTreeReconciler = /** @class */ /*@__PURE__*/ (function (_super) {
63040
63104
  var ae = o._inner[ad];
63041
63105
  if (ae.b) {
63042
63106
  var af = new DescriptionTreeAction();
63043
- af.i = e.c;
63044
- af.b = b;
63045
- af.c = e.a;
63046
- af.d = ad;
63107
+ af.j = e.c;
63108
+ af.c = b;
63109
+ af.b = c;
63110
+ af.d = e.a;
63111
+ af.e = ad;
63047
63112
  af.a = 2;
63048
- af.f = i[ad];
63113
+ af.g = i[ad];
63049
63114
  a.add(af);
63050
63115
  for (var ag = 0; ag < m.count; ag++) {
63051
63116
  var ah = m._inner[ag];
@@ -63061,12 +63126,13 @@ var DescriptionTreeReconciler = /** @class */ /*@__PURE__*/ (function (_super) {
63061
63126
  continue;
63062
63127
  }
63063
63128
  var aj = new DescriptionTreeAction();
63064
- aj.i = e.c;
63065
- aj.b = b;
63066
- aj.c = e.a;
63067
- aj.e = ai.d;
63129
+ aj.j = e.c;
63130
+ aj.c = b;
63131
+ aj.b = c;
63132
+ aj.d = e.a;
63133
+ aj.f = ai.d;
63068
63134
  aj.a = 4;
63069
- aj.g = ai.a;
63135
+ aj.h = ai.a;
63070
63136
  a.add(aj);
63071
63137
  for (var ak = 0; ak < m.count; ak++) {
63072
63138
  var al = m._inner[ak];
@@ -63075,12 +63141,13 @@ var DescriptionTreeReconciler = /** @class */ /*@__PURE__*/ (function (_super) {
63075
63141
  }
63076
63142
  }
63077
63143
  aj = new DescriptionTreeAction();
63078
- aj.i = e.c;
63079
- aj.b = b;
63080
- aj.c = e.a;
63081
- aj.d = ai.e;
63144
+ aj.j = e.c;
63145
+ aj.c = b;
63146
+ aj.b = c;
63147
+ aj.d = e.a;
63148
+ aj.e = ai.e;
63082
63149
  aj.a = 2;
63083
- aj.f = ai.a;
63150
+ aj.g = ai.a;
63084
63151
  a.add(aj);
63085
63152
  ai.d = ai.e;
63086
63153
  for (var am = 0; am < m.count; am++) {
@@ -63098,22 +63165,24 @@ var DescriptionTreeReconciler = /** @class */ /*@__PURE__*/ (function (_super) {
63098
63165
  for (var ap = 0; ap < ao; ap++) {
63099
63166
  if (ap >= h.length) {
63100
63167
  var aq = new DescriptionTreeAction();
63101
- aq.i = e.c;
63102
- aq.b = b;
63103
- aq.c = e.a;
63104
- aq.d = ap;
63168
+ aq.j = e.c;
63169
+ aq.c = b;
63170
+ aq.b = c;
63171
+ aq.d = e.a;
63172
+ aq.e = ap;
63105
63173
  aq.a = 2;
63106
- aq.f = i[ap];
63174
+ aq.g = i[ap];
63107
63175
  a.add(aq);
63108
63176
  }
63109
63177
  else if (ap >= i.length) {
63110
63178
  var ar = new DescriptionTreeAction();
63111
- ar.i = e.c;
63112
- ar.b = b;
63113
- ar.c = e.a;
63114
- ar.e = i.length;
63179
+ ar.j = e.c;
63180
+ ar.c = b;
63181
+ ar.b = c;
63182
+ ar.d = e.a;
63183
+ ar.f = i.length;
63115
63184
  ar.a = 4;
63116
- ar.g = h[ap];
63185
+ ar.h = h[ap];
63117
63186
  a.add(ar);
63118
63187
  }
63119
63188
  else {
@@ -63122,31 +63191,33 @@ var DescriptionTreeReconciler = /** @class */ /*@__PURE__*/ (function (_super) {
63122
63191
  if (typeCast(DescriptionTreeNode.$, as) !== null && typeCast(DescriptionTreeNode.$, at) !== null) {
63123
63192
  var au = as;
63124
63193
  var av = at;
63125
- if (au.h == av.h) {
63194
+ if (au.i == av.i) {
63126
63195
  DescriptionTreeReconciler.g(a, au, av, f);
63127
63196
  }
63128
63197
  else {
63129
63198
  var aw = new DescriptionTreeAction();
63130
- aw.i = e.c;
63131
- aw.b = b;
63132
- aw.c = e.a;
63133
- aw.e = ap;
63199
+ aw.j = e.c;
63200
+ aw.c = b;
63201
+ aw.b = c;
63202
+ aw.d = e.a;
63203
+ aw.f = ap;
63134
63204
  aw.a = 3;
63135
- aw.g = h[ap];
63136
- aw.f = i[ap];
63205
+ aw.h = h[ap];
63206
+ aw.g = i[ap];
63137
63207
  a.add(aw);
63138
63208
  }
63139
63209
  }
63140
63210
  else {
63141
63211
  if (!Base.equalsStatic(as, at)) {
63142
63212
  var ax = new DescriptionTreeAction();
63143
- ax.i = e.c;
63144
- ax.b = b;
63145
- ax.c = e.a;
63146
- ax.e = ap;
63213
+ ax.j = e.c;
63214
+ ax.c = b;
63215
+ ax.b = c;
63216
+ ax.d = e.a;
63217
+ ax.f = ap;
63147
63218
  ax.a = 3;
63148
- ax.g = h[ap];
63149
- ax.f = i[ap];
63219
+ ax.h = h[ap];
63220
+ ax.g = i[ap];
63150
63221
  a.add(ax);
63151
63222
  }
63152
63223
  }
@@ -63178,11 +63249,11 @@ var DescriptionTreeReconciler = /** @class */ /*@__PURE__*/ (function (_super) {
63178
63249
  if (typeCast(DescriptionTreeNode.$, f) !== null) {
63179
63250
  var h = f;
63180
63251
  var i = g;
63181
- if (h.h != i.h) {
63252
+ if (h.i != i.i) {
63182
63253
  return false;
63183
63254
  }
63184
- var j = h.b("Name") ? h.a("Name").b : null;
63185
- var k = i.b("Name") ? i.a("Name").b : null;
63255
+ var j = h.c("Name") ? h.a("Name").b : null;
63256
+ var k = i.c("Name") ? i.a("Name").b : null;
63186
63257
  if (!Base.equalsStatic(j, k)) {
63187
63258
  return false;
63188
63259
  }
@@ -63197,7 +63268,7 @@ var DescriptionTreeReconciler = /** @class */ /*@__PURE__*/ (function (_super) {
63197
63268
  };
63198
63269
  DescriptionTreeReconciler.e = function (a) {
63199
63270
  var b = new List$1(DescriptionPropertyValue.$, 0);
63200
- var c = a.e();
63271
+ var c = a.f();
63201
63272
  for (var d = 0; d < c.count; d++) {
63202
63273
  var e = c._inner[d];
63203
63274
  if (e.a != null && e.a.knownType != 10 && e.a.knownType != 9) {
@@ -63208,7 +63279,7 @@ var DescriptionTreeReconciler = /** @class */ /*@__PURE__*/ (function (_super) {
63208
63279
  };
63209
63280
  DescriptionTreeReconciler.d = function (a) {
63210
63281
  var b = new List$1(DescriptionPropertyValue.$, 0);
63211
- var c = a.e();
63282
+ var c = a.f();
63212
63283
  for (var d = 0; d < c.count; d++) {
63213
63284
  var e = c._inner[d];
63214
63285
  if (e.a != null && (e.a.knownType == 10 || e.a.knownType == 9)) {
@@ -63550,7 +63621,7 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
63550
63621
  }
63551
63622
  var h = DescriptionTreeBuilder.createTree(this.context, g.result);
63552
63623
  var i = this.av.item(b);
63553
- if (h.b("Type")) {
63624
+ if (h.c("Type")) {
63554
63625
  var j = h.a("Type").b;
63555
63626
  return this.bo(j, h, b, i, true, -1);
63556
63627
  }
@@ -63719,12 +63790,12 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
63719
63790
  ComponentRenderer.prototype.ch = function (a, b, c, d) {
63720
63791
  var e_3, _a;
63721
63792
  if (!c.b(b)) {
63722
- c.k(d, this.ao.item(d).f, b, this.ao.item(d), runOn(this, this.cr), -1);
63793
+ c.k(d, this.ao.item(d).g, b, this.ao.item(d), runOn(this, this.cr), -1);
63723
63794
  }
63724
63795
  try {
63725
- for (var _b = __values(fromEnum(a.e())), _c = _b.next(); !_c.done; _c = _b.next()) {
63796
+ for (var _b = __values(fromEnum(a.f())), _c = _b.next(); !_c.done; _c = _b.next()) {
63726
63797
  var e = _c.value;
63727
- this.ci(this.b0(e.c, ComponentRenderer.platform, e.a), e.b, b, c, d, a.f);
63798
+ this.ci(this.b0(e.c, ComponentRenderer.platform, e.a), e.b, b, c, d, a.g);
63728
63799
  }
63729
63800
  }
63730
63801
  catch (e_3_1) {
@@ -63747,13 +63818,13 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
63747
63818
  if (typeCast(DescriptionTreeNode.$, b) !== null) {
63748
63819
  var g = b;
63749
63820
  var h = this.f.getPropertyValue(c, a);
63750
- if (!d.b(h) && !d.a(g.f)) {
63751
- d.k(e, g.f, h, g, runOn(this, this.cr), f);
63821
+ if (!d.b(h) && !d.a(g.g)) {
63822
+ d.k(e, g.g, h, g, runOn(this, this.cr), f);
63752
63823
  }
63753
63824
  try {
63754
- for (var _b = __values(fromEnum(g.e())), _c = _b.next(); !_c.done; _c = _b.next()) {
63825
+ for (var _b = __values(fromEnum(g.f())), _c = _b.next(); !_c.done; _c = _b.next()) {
63755
63826
  var i = _c.value;
63756
- this.ci(a + "." + this.b0(i.c, ComponentRenderer.platform, i.a), i.b, c, d, e, g.f);
63827
+ this.ci(a + "." + this.b0(i.c, ComponentRenderer.platform, i.a), i.b, c, d, e, g.g);
63757
63828
  }
63758
63829
  }
63759
63830
  catch (e_4_1) {
@@ -63789,13 +63860,13 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
63789
63860
  var e_5, _a;
63790
63861
  if (j_1.containsKey(k_1)) {
63791
63862
  var s = j_1.item(k_1);
63792
- if (!d.b(r) && !d.a(s.f)) {
63793
- d.k(e, s.f, r, s, runOn(_this, _this.cr), f);
63863
+ if (!d.b(r) && !d.a(s.g)) {
63864
+ d.k(e, s.g, r, s, runOn(_this, _this.cr), f);
63794
63865
  }
63795
63866
  try {
63796
- for (var _b = __values(fromEnum(s.e())), _c = _b.next(); !_c.done; _c = _b.next()) {
63867
+ for (var _b = __values(fromEnum(s.f())), _c = _b.next(); !_c.done; _c = _b.next()) {
63797
63868
  var t = _c.value;
63798
- _this.ci(a + "." + t.c, t.b, c, d, e, s.f);
63869
+ _this.ci(a + "." + t.c, t.b, c, d, e, s.g);
63799
63870
  }
63800
63871
  }
63801
63872
  catch (e_5_1) {
@@ -63820,13 +63891,13 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
63820
63891
  var e_6, _a;
63821
63892
  if (j_1.containsKey(k_1)) {
63822
63893
  var t = j_1.item(k_1);
63823
- if (!d.b(s) && !d.a(t.f)) {
63824
- d.k(e, t.f, s, t, runOn(_this, _this.cr), f);
63894
+ if (!d.b(s) && !d.a(t.g)) {
63895
+ d.k(e, t.g, s, t, runOn(_this, _this.cr), f);
63825
63896
  }
63826
63897
  try {
63827
- for (var _b = __values(fromEnum(t.e())), _c = _b.next(); !_c.done; _c = _b.next()) {
63898
+ for (var _b = __values(fromEnum(t.f())), _c = _b.next(); !_c.done; _c = _b.next()) {
63828
63899
  var u = _c.value;
63829
- _this.ci(r_1 + "." + u.c, u.b, c, d, e, t.f);
63900
+ _this.ci(r_1 + "." + u.c, u.b, c, d, e, t.g);
63830
63901
  }
63831
63902
  }
63832
63903
  catch (e_6_1) {
@@ -63939,8 +64010,16 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
63939
64010
  f = this.ao.item(a);
63940
64011
  }
63941
64012
  var g = DescriptionTreeReconciler.c(f, e, b);
64013
+ if (!c && b) {
64014
+ e = f.b();
64015
+ DescriptionTreeReconciler.a(f, g);
64016
+ var h = f;
64017
+ f = e;
64018
+ e = h;
64019
+ g = DescriptionTreeReconciler.c(f, e, false);
64020
+ }
63942
64021
  if (c) {
63943
- var h = DescriptionTreeReconciler.a(f, g);
64022
+ var i = DescriptionTreeReconciler.a(f, g);
63944
64023
  if (!this.av.containsKey(a)) {
63945
64024
  this.av.addItem(a, ((function () {
63946
64025
  var $ret = new ContainerState();
@@ -63948,14 +64027,14 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
63948
64027
  return $ret;
63949
64028
  })()));
63950
64029
  }
63951
- var i_1 = this.av.item(a);
63952
- if (h.a.count > 0) {
64030
+ var j_2 = this.av.item(a);
64031
+ if (i.a.count > 0) {
63953
64032
  try {
63954
- for (var _e = __values(fromEnum(h.a)), _f = _e.next(); !_f.done; _f = _e.next()) {
63955
- var j = _f.value;
63956
- if (i_1.a(j)) {
63957
- var k = i_1.j(j);
63958
- this.cf(a, k, i_1);
64033
+ for (var _e = __values(fromEnum(i.a)), _f = _e.next(); !_f.done; _f = _e.next()) {
64034
+ var k = _f.value;
64035
+ if (j_2.a(k)) {
64036
+ var l = j_2.j(k);
64037
+ this.cf(a, l, j_2);
63959
64038
  }
63960
64039
  }
63961
64040
  }
@@ -63973,18 +64052,18 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
63973
64052
  }
63974
64053
  }
63975
64054
  }
63976
- if (h.c.count > 0) {
64055
+ if (i.c.count > 0) {
63977
64056
  try {
63978
- for (var _g = __values(fromEnum(h.c)), _h = _g.next(); !_h.done; _h = _g.next()) {
63979
- var l = _h.value;
63980
- var m = this.bt(a, i_1, l);
63981
- var n = this.f.getPropertyValue(m, l.i);
63982
- if (n != null) {
63983
- if (!i_1.b(n)) {
63984
- var o = l.f;
63985
- if (typeCast(DescriptionTreeNode.$, o) !== null) {
63986
- var p = o.f;
63987
- i_1.k(a, p, n, o, runOn(this, this.cr), l.b.f);
64057
+ for (var _g = __values(fromEnum(i.c)), _h = _g.next(); !_h.done; _h = _g.next()) {
64058
+ var m = _h.value;
64059
+ var n = this.bt(a, j_2, m);
64060
+ var o = this.f.getPropertyValue(n, m.j);
64061
+ if (o != null) {
64062
+ if (!j_2.b(o)) {
64063
+ var p = m.g;
64064
+ if (typeCast(DescriptionTreeNode.$, p) !== null) {
64065
+ var q = p.g;
64066
+ j_2.k(a, q, o, p, runOn(this, this.cr), m.c.g);
63988
64067
  }
63989
64068
  }
63990
64069
  }
@@ -64004,17 +64083,17 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
64004
64083
  }
64005
64084
  }
64006
64085
  }
64007
- if (h.d.count > 0) {
64086
+ if (i.d.count > 0) {
64008
64087
  try {
64009
- for (var _j = __values(fromEnum(h.d)), _k = _j.next(); !_k.done; _k = _j.next()) {
64010
- var q = _k.value;
64011
- var r = q.f;
64012
- if (r != null) {
64013
- if (!i_1.b(r)) {
64014
- var s = q.f;
64015
- if (typeCast(DescriptionTreeNode.$, s) !== null) {
64016
- var t = s.f;
64017
- this.ao.item(a, s);
64088
+ for (var _j = __values(fromEnum(i.d)), _k = _j.next(); !_k.done; _k = _j.next()) {
64089
+ var r = _k.value;
64090
+ var s = r.g;
64091
+ if (s != null) {
64092
+ if (!j_2.b(s)) {
64093
+ var t = r.g;
64094
+ if (typeCast(DescriptionTreeNode.$, t) !== null) {
64095
+ var u = t.g;
64096
+ this.ao.item(a, t);
64018
64097
  }
64019
64098
  }
64020
64099
  }
@@ -64034,48 +64113,48 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
64034
64113
  }
64035
64114
  }
64036
64115
  }
64037
- if (h.b.count > 0) {
64038
- var _loop_1 = function (u) {
64039
- var v = u.b.a(u.i).b;
64040
- if (v == null) {
64116
+ if (i.b.count > 0) {
64117
+ var _loop_1 = function (v) {
64118
+ var w = v.c.a(v.j).b;
64119
+ if (w == null) {
64041
64120
  return "continue";
64042
64121
  }
64043
- var w = new Dictionary$2(String_$type, DescriptionTreeNode.$, 0);
64044
- for (var x = 0; x < v.length; x++) {
64045
- var y = v[x];
64046
- if (typeCast(DescriptionTreeNode.$, y) !== null) {
64047
- var z = y;
64048
- if (z.b("Name")) {
64049
- w.item(z.a("Name").b, z);
64122
+ var x = new Dictionary$2(String_$type, DescriptionTreeNode.$, 0);
64123
+ for (var y = 0; y < w.length; y++) {
64124
+ var z = w[y];
64125
+ if (typeCast(DescriptionTreeNode.$, z) !== null) {
64126
+ var aa = z;
64127
+ if (aa.c("Name")) {
64128
+ x.item(aa.a("Name").b, aa);
64050
64129
  }
64051
64130
  }
64052
64131
  }
64053
- if (w.count == 0) {
64132
+ if (x.count == 0) {
64054
64133
  return "continue";
64055
64134
  }
64056
- var aa = this_1.bt(a, i_1, u);
64057
- var ab = this_1.f.getPropertyValue(aa, u.i);
64058
- if (ab != null) {
64059
- var ac_1 = 0;
64060
- this_1.f.forPropertyValueItem(aa, u.i, function (ad) {
64061
- if (w.containsKey(_this.f.getPropertyValue(ad, "Name").toString())) {
64062
- if (!i_1.b(ad)) {
64063
- var ae = w.item(_this.f.getPropertyValue(ad, "Name").toString());
64064
- if (typeCast(DescriptionTreeNode.$, ae) !== null) {
64065
- var af = ae.f;
64066
- i_1.k(a, af, ad, ae, runOn(_this, _this.cr), u.b.f);
64135
+ var ab = this_1.bt(a, j_2, v);
64136
+ var ac = this_1.f.getPropertyValue(ab, v.j);
64137
+ if (ac != null) {
64138
+ var ad_1 = 0;
64139
+ this_1.f.forPropertyValueItem(ab, v.j, function (ae) {
64140
+ if (x.containsKey(_this.f.getPropertyValue(ae, "Name").toString())) {
64141
+ if (!j_2.b(ae)) {
64142
+ var af = x.item(_this.f.getPropertyValue(ae, "Name").toString());
64143
+ if (typeCast(DescriptionTreeNode.$, af) !== null) {
64144
+ var ag = af.g;
64145
+ j_2.k(a, ag, ae, af, runOn(_this, _this.cr), v.c.g);
64067
64146
  }
64068
64147
  }
64069
64148
  }
64070
- ac_1++;
64149
+ ad_1++;
64071
64150
  });
64072
64151
  }
64073
64152
  };
64074
64153
  var this_1 = this;
64075
64154
  try {
64076
- for (var _l = __values(fromEnum(h.b)), _m = _l.next(); !_m.done; _m = _l.next()) {
64077
- var u = _m.value;
64078
- _loop_1(u);
64155
+ for (var _l = __values(fromEnum(i.b)), _m = _l.next(); !_m.done; _m = _l.next()) {
64156
+ var v = _m.value;
64157
+ _loop_1(v);
64079
64158
  }
64080
64159
  }
64081
64160
  catch (e_10_1) {
@@ -64284,22 +64363,22 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
64284
64363
  }
64285
64364
  }
64286
64365
  }
64287
- if (c.i == "Type" || c.i == "type") {
64366
+ if (c.j == "Type" || c.j == "type") {
64288
64367
  f = true;
64289
64368
  }
64290
64369
  if (f) {
64291
64370
  return true;
64292
64371
  }
64293
- if (c.c != null && c.c.knownType == 9) {
64294
- this.aj(a, b, c.h(ComponentRenderer.platform), c.c, e, d);
64372
+ if (c.d != null && c.d.knownType == 9) {
64373
+ this.aj(a, b, c.i(ComponentRenderer.platform), c.d, e, d);
64295
64374
  }
64296
64375
  else {
64297
- this.da(a, b, c.h(ComponentRenderer.platform), c.c, e, c.g, d);
64376
+ this.da(a, b, c.i(ComponentRenderer.platform), c.d, e, c.h, d);
64298
64377
  }
64299
64378
  return true;
64300
64379
  };
64301
64380
  ComponentRenderer.prototype.b1 = function (a, b) {
64302
- var c = b.b;
64381
+ var c = b.c;
64303
64382
  var d = "";
64304
64383
  if (c != this.ao.item(a)) {
64305
64384
  var e = this.bz(a, c);
@@ -64308,7 +64387,7 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
64308
64387
  if (d.length > 0) {
64309
64388
  d += ".";
64310
64389
  }
64311
- d += b.i;
64390
+ d += b.j;
64312
64391
  return d;
64313
64392
  };
64314
64393
  ComponentRenderer.prototype.bz = function (a, b) {
@@ -64328,11 +64407,11 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
64328
64407
  if (a.length > 0) {
64329
64408
  a += ".";
64330
64409
  }
64331
- var d = b.e();
64410
+ var d = b.f();
64332
64411
  for (var e = 0; e < d.count; e++) {
64333
64412
  var f = d._inner[e];
64334
64413
  if (typeCast(DescriptionTreeNode.$, f.b) !== null) {
64335
- if (f.b.f == c.f) {
64414
+ if (f.b.g == c.g) {
64336
64415
  a += f.c;
64337
64416
  return new Tuple$2(Boolean_$type, String_$type, true, a);
64338
64417
  }
@@ -64349,7 +64428,7 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
64349
64428
  for (var j = 0; j < i.length; j++) {
64350
64429
  if (typeCast(DescriptionTreeNode.$, i[j]) !== null) {
64351
64430
  var k = i[j];
64352
- if (k.f == c.f) {
64431
+ if (k.g == c.g) {
64353
64432
  a += f.c + "[" + j + "]";
64354
64433
  return new Tuple$2(Boolean_$type, String_$type, true, a);
64355
64434
  }
@@ -64393,10 +64472,10 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
64393
64472
  return true;
64394
64473
  };
64395
64474
  ComponentRenderer.prototype.bq = function (a, b, c) {
64396
- if (a.c == null) {
64397
- return a.f;
64475
+ if (a.d == null) {
64476
+ return a.g;
64398
64477
  }
64399
- switch (a.c.knownType) {
64478
+ switch (a.d.knownType) {
64400
64479
  case 10: return this.a6(a, b, c);
64401
64480
  case 7: return this.a7(a);
64402
64481
  case 4: return this.a8(a);
@@ -64423,7 +64502,7 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
64423
64502
  return null;
64424
64503
  };
64425
64504
  ComponentRenderer.prototype.bl = function (a, b, c) {
64426
- var d = this.bm(a.f, a, b, c);
64505
+ var d = this.bm(a.g, a, b, c);
64427
64506
  return d;
64428
64507
  };
64429
64508
  ComponentRenderer.prototype.bm = function (a, b, c, d) {
@@ -64444,27 +64523,27 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
64444
64523
  }
64445
64524
  if (typeCast(DescriptionTreeNode.$, a) !== null) {
64446
64525
  var i = a;
64447
- if (i.h == "EmbeddedRef") {
64448
- return this.bo(i.h, a, c, d, false, b.b.f);
64526
+ if (i.i == "EmbeddedRef") {
64527
+ return this.bo(i.i, a, c, d, false, b.c.g);
64449
64528
  }
64450
64529
  }
64451
64530
  return a;
64452
64531
  };
64453
64532
  ComponentRenderer.prototype.bk = function (a) {
64454
- return a.f;
64533
+ return a.g;
64455
64534
  };
64456
64535
  ComponentRenderer.prototype.bj = function (a) {
64457
- return a.f != null ? a.f.toString() : null;
64536
+ return a.g != null ? a.g.toString() : null;
64458
64537
  };
64459
64538
  ComponentRenderer.prototype.bi = function (a) {
64460
- var b = a.f;
64539
+ var b = a.g;
64461
64540
  var width_ = b.width;
64462
64541
  var height_ = b.height;
64463
64542
  var c = { width: width_, height: height_ };
64464
64543
  return c;
64465
64544
  };
64466
64545
  ComponentRenderer.prototype.bh = function (a) {
64467
- var b = a.f;
64546
+ var b = a.g;
64468
64547
  var top_ = b.top;
64469
64548
  var left_ = b.left;
64470
64549
  var width_ = b.width;
@@ -64473,20 +64552,20 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
64473
64552
  return c;
64474
64553
  };
64475
64554
  ComponentRenderer.prototype.bg = function (a) {
64476
- var b = a.f;
64555
+ var b = a.g;
64477
64556
  var x_ = b.x;
64478
64557
  var y_ = b.y;
64479
64558
  var c = { x: x_, y: y_ };
64480
64559
  return c;
64481
64560
  };
64482
64561
  ComponentRenderer.prototype.bf = function (a) {
64483
- if (a.f == null) {
64484
- if (a.c != null && (a.c.specificType == "double" || a.c.specificType == "float")) {
64562
+ if (a.g == null) {
64563
+ if (a.d != null && (a.d.specificType == "double" || a.d.specificType == "float")) {
64485
64564
  return NaN;
64486
64565
  }
64487
64566
  return 0;
64488
64567
  }
64489
- return a.f;
64568
+ return a.g;
64490
64569
  };
64491
64570
  ComponentRenderer.prototype.d = function (a, b) {
64492
64571
  if (this.au.containsKey(a)) {
@@ -64498,40 +64577,40 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
64498
64577
  return d;
64499
64578
  };
64500
64579
  ComponentRenderer.prototype.bw = function (a, b) {
64501
- return a.f == null ? null : this.d(a.f, b);
64580
+ return a.g == null ? null : this.d(a.g, b);
64502
64581
  };
64503
64582
  ComponentRenderer.prototype.be = function (a, b, c) {
64504
- var d = a.c.specificType;
64583
+ var d = a.d.specificType;
64505
64584
  if (d == null) {
64506
- d = a.c.specificExternalType;
64585
+ d = a.d.specificExternalType;
64507
64586
  }
64508
- if (typeCast(DescriptionTreeNode.$, a.f) !== null) {
64509
- var e = a.f;
64510
- if (e.b("Type")) {
64587
+ if (typeCast(DescriptionTreeNode.$, a.g) !== null) {
64588
+ var e = a.g;
64589
+ if (e.c("Type")) {
64511
64590
  d = e.a("Type").b;
64512
64591
  }
64513
64592
  }
64514
- var f = this.bo(d, a.f, b, c, false, a.b.f);
64593
+ var f = this.bo(d, a.g, b, c, false, a.c.g);
64515
64594
  return f;
64516
64595
  };
64517
64596
  ComponentRenderer.prototype.bv = function (a, b) {
64518
- return a.f == null ? null : this.d(a.f, b);
64597
+ return a.g == null ? null : this.d(a.g, b);
64519
64598
  };
64520
64599
  ComponentRenderer.prototype.bc = function (a) {
64521
- if (typeof a.f === 'string') {
64522
- var v_ = a.f;
64523
- a.f = new Date(v_);
64600
+ if (typeof a.g === 'string') {
64601
+ var v_ = a.g;
64602
+ a.g = new Date(v_);
64524
64603
  }
64525
- return a.f;
64604
+ return a.g;
64526
64605
  };
64527
64606
  ComponentRenderer.prototype.bu = function (a, b) {
64528
- return a.f == null ? null : this.d(a.f, b);
64607
+ return a.g == null ? null : this.d(a.g, b);
64529
64608
  };
64530
64609
  ComponentRenderer.prototype.by = function (a) {
64531
64610
  return a;
64532
64611
  };
64533
64612
  ComponentRenderer.prototype.bb = function (a) {
64534
- var b = a.f;
64613
+ var b = a.g;
64535
64614
  if (b == null) {
64536
64615
  return null;
64537
64616
  }
@@ -64542,10 +64621,10 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
64542
64621
  return c;
64543
64622
  };
64544
64623
  ComponentRenderer.prototype.ba = function (a) {
64545
- return this.by(a.f);
64624
+ return this.by(a.g);
64546
64625
  };
64547
64626
  ComponentRenderer.prototype.a9 = function (a) {
64548
- var b = a.f;
64627
+ var b = a.g;
64549
64628
  if (b == null) {
64550
64629
  return null;
64551
64630
  }
@@ -64559,10 +64638,10 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
64559
64638
  return a;
64560
64639
  };
64561
64640
  ComponentRenderer.prototype.a8 = function (a) {
64562
- return this.bx(a.f);
64641
+ return this.bx(a.g);
64563
64642
  };
64564
64643
  ComponentRenderer.prototype.a7 = function (a) {
64565
- return a.f;
64644
+ return a.g;
64566
64645
  };
64567
64646
  ComponentRenderer.prototype.addTargetPropertyUpdatingListener = function (a) {
64568
64647
  this.a2.add(a);
@@ -64597,30 +64676,30 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
64597
64676
  this.a1.remove(a);
64598
64677
  };
64599
64678
  ComponentRenderer.prototype.a6 = function (a, b, c) {
64600
- if (a.f == null) {
64679
+ if (a.g == null) {
64601
64680
  return null;
64602
64681
  }
64603
- var d = a.f;
64682
+ var d = a.g;
64604
64683
  var e = new List$1(Base.$, 0);
64605
- var f = a.c.specificType;
64684
+ var f = a.d.specificType;
64606
64685
  if (f == null) {
64607
- f = a.c.specificExternalType;
64686
+ f = a.d.specificExternalType;
64608
64687
  }
64609
- if (a.c.knownType == 9) {
64610
- f = a.c.collectionElementType;
64688
+ if (a.d.knownType == 9) {
64689
+ f = a.d.collectionElementType;
64611
64690
  if (f == null) {
64612
- f = a.c.specificExternalType;
64691
+ f = a.d.specificExternalType;
64613
64692
  }
64614
64693
  }
64615
64694
  for (var g = 0; g < d.length; g++) {
64616
64695
  var h = f;
64617
64696
  if (typeCast(DescriptionTreeNode.$, d[g]) !== null) {
64618
64697
  var i = d[g];
64619
- if (i.b("Type")) {
64698
+ if (i.c("Type")) {
64620
64699
  h = i.a("Type").b;
64621
64700
  }
64622
64701
  }
64623
- var j = this.bo(h, d[g], b, c, false, a.b.f);
64702
+ var j = this.bo(h, d[g], b, c, false, a.c.g);
64624
64703
  e.add1(j);
64625
64704
  }
64626
64705
  return e.toArray();
@@ -64833,7 +64912,7 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
64833
64912
  return a.toArray();
64834
64913
  };
64835
64914
  ComponentRenderer.prototype.bt = function (a, b, c) {
64836
- return b.j(c.b.f);
64915
+ return b.j(c.c.g);
64837
64916
  };
64838
64917
  ComponentRenderer.prototype.ad = function (a, b, c) {
64839
64918
  var d = this.bt(a, b, c);
@@ -64841,11 +64920,11 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
64841
64920
  return true;
64842
64921
  };
64843
64922
  ComponentRenderer.prototype.ai = function (a, b, c, d) {
64844
- this.f.resetPropertyOnTarget(a, c.h(ComponentRenderer.platform), c.c, d);
64923
+ this.f.resetPropertyOnTarget(a, c.i(ComponentRenderer.platform), c.d, d);
64845
64924
  return true;
64846
64925
  };
64847
64926
  ComponentRenderer.prototype.ac = function (a, b, c) {
64848
- if (c.b == null) {
64927
+ if (c.c == null) {
64849
64928
  return this.ah(a, b, c);
64850
64929
  }
64851
64930
  else {
@@ -64855,15 +64934,15 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
64855
64934
  return true;
64856
64935
  };
64857
64936
  ComponentRenderer.prototype.c5 = function (a, b, c, d) {
64858
- var e = c.h(ComponentRenderer.platform);
64859
- var f = c.c.collectionElementType;
64937
+ var e = c.i(ComponentRenderer.platform);
64938
+ var f = c.d.collectionElementType;
64860
64939
  if (f == null) {
64861
- f = c.c.specificExternalType;
64940
+ f = c.d.specificExternalType;
64862
64941
  }
64863
- var g = this.bo(f, c.f, a, b, false, c.b.f);
64864
- this.f.replaceItemInCollection(e, c.c, d, c.d, g);
64865
- if (c.g != null && typeCast(DescriptionTreeNode.$, c.g) !== null) {
64866
- var h = c.g.f;
64942
+ var g = this.bo(f, c.g, a, b, false, c.c.g);
64943
+ this.f.replaceItemInCollection(e, c.d, d, c.e, g);
64944
+ if (c.h != null && typeCast(DescriptionTreeNode.$, c.h) !== null) {
64945
+ var h = c.h.g;
64867
64946
  if (h >= 0) {
64868
64947
  var i = b.j(h);
64869
64948
  if (i != null) {
@@ -64878,14 +64957,14 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
64878
64957
  if (d != null) {
64879
64958
  this.cf(a, d, b);
64880
64959
  }
64881
- if (!(typeCast(DescriptionTreeNode.$, c.f) !== null)) {
64960
+ if (!(typeCast(DescriptionTreeNode.$, c.g) !== null)) {
64882
64961
  throw new NotImplementedException(0);
64883
64962
  }
64884
- var e = c.f;
64963
+ var e = c.g;
64885
64964
  var f = false;
64886
- this.f.replaceRootItem(a, e.h, this.context, function (g) {
64965
+ this.f.replaceRootItem(a, e.i, this.context, function (g) {
64887
64966
  var h = _this.f.getRootObject(a);
64888
- b.k(a, e.f, h, e, runOn(_this, _this.cr), -1);
64967
+ b.k(a, e.g, h, e, runOn(_this, _this.cr), -1);
64889
64968
  var i = _this.a3(e);
64890
64969
  _this.cp(a, b, i);
64891
64970
  f = true;
@@ -64926,7 +65005,7 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
64926
65005
  return c.h(b);
64927
65006
  };
64928
65007
  ComponentRenderer.prototype.ab = function (a, b, c) {
64929
- if (c.b == null) {
65008
+ if (c.c == null) {
64930
65009
  return this.ag(a, b, c);
64931
65010
  }
64932
65011
  else {
@@ -64936,10 +65015,10 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
64936
65015
  return true;
64937
65016
  };
64938
65017
  ComponentRenderer.prototype.ct = function (a, b, c, d) {
64939
- var e = c.h(ComponentRenderer.platform);
64940
- this.f.removeItemFromCollection(e, c.c, d, c.e);
64941
- if (c.g != null && typeCast(DescriptionTreeNode.$, c.g) !== null) {
64942
- var f = c.g.f;
65018
+ var e = c.i(ComponentRenderer.platform);
65019
+ this.f.removeItemFromCollection(e, c.d, d, c.f);
65020
+ if (c.h != null && typeCast(DescriptionTreeNode.$, c.h) !== null) {
65021
+ var f = c.h.g;
64943
65022
  if (f >= 0) {
64944
65023
  var g = b.j(f);
64945
65024
  if (g != null) {
@@ -64964,7 +65043,7 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
64964
65043
  return e;
64965
65044
  };
64966
65045
  ComponentRenderer.prototype.y = function (a, b, c) {
64967
- if (c.b == null) {
65046
+ if (c.c == null) {
64968
65047
  return this.l(a, b, c);
64969
65048
  }
64970
65049
  else {
@@ -64975,14 +65054,14 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
64975
65054
  };
64976
65055
  ComponentRenderer.prototype.l = function (a, b, c) {
64977
65056
  var _this = this;
64978
- if (!(typeCast(DescriptionTreeNode.$, c.f) !== null)) {
65057
+ if (!(typeCast(DescriptionTreeNode.$, c.g) !== null)) {
64979
65058
  throw new NotImplementedException(0);
64980
65059
  }
64981
- var d = c.f;
65060
+ var d = c.g;
64982
65061
  var e = false;
64983
- this.f.replaceRootItem(a, d.h, this.context, function (f) {
65062
+ this.f.replaceRootItem(a, d.i, this.context, function (f) {
64984
65063
  var g = _this.f.getRootObject(a);
64985
- b.k(a, d.f, g, d, runOn(_this, _this.cr), -1);
65064
+ b.k(a, d.g, g, d, runOn(_this, _this.cr), -1);
64986
65065
  var h = _this.a3(d);
64987
65066
  _this.cp(a, b, h);
64988
65067
  e = true;
@@ -64993,19 +65072,19 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
64993
65072
  return e;
64994
65073
  };
64995
65074
  ComponentRenderer.prototype.b6 = function (a, b, c, d) {
64996
- var e = c.h(ComponentRenderer.platform);
64997
- var f = c.c.collectionElementType;
64998
- if (typeCast(DescriptionTreeNode.$, c.f) !== null) {
64999
- var g = c.f;
65000
- if (g.b("Type")) {
65075
+ var e = c.i(ComponentRenderer.platform);
65076
+ var f = c.d.collectionElementType;
65077
+ if (typeCast(DescriptionTreeNode.$, c.g) !== null) {
65078
+ var g = c.g;
65079
+ if (g.c("Type")) {
65001
65080
  f = g.a("Type").b;
65002
65081
  }
65003
65082
  }
65004
65083
  if (f == null) {
65005
- f = c.c.specificExternalType;
65084
+ f = c.d.specificExternalType;
65006
65085
  }
65007
- var h = this.bo(f, c.f, a, b, false, c.b.f);
65008
- this.f.addItemToCollection(e, c.c, d, c.d, h);
65086
+ var h = this.bo(f, c.g, a, b, false, c.c.g);
65087
+ this.f.addItemToCollection(e, c.d, d, c.e, h);
65009
65088
  };
65010
65089
  ComponentRenderer.prototype.bo = function (a, b, c, d, e, f) {
65011
65090
  if (this.t(a)) {
@@ -65014,7 +65093,7 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
65014
65093
  var g = null;
65015
65094
  if (b != null && typeCast(DescriptionTreeNode.$, b) !== null) {
65016
65095
  var h = b;
65017
- if (h.b("Name")) {
65096
+ if (h.c("Name")) {
65018
65097
  var i = h.a("Name").b;
65019
65098
  if (!stringIsNullOrEmpty(i)) {
65020
65099
  if (this.shouldNamespaceSystemRefValues) {
@@ -65046,15 +65125,15 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
65046
65125
  }
65047
65126
  if (typeCast(DescriptionTreeNode.$, b) !== null) {
65048
65127
  var m = b;
65049
- if (m.h == "EmbeddedRef") {
65128
+ if (m.i == "EmbeddedRef") {
65050
65129
  var n = "uuid";
65051
65130
  var o = null;
65052
- for (var p = 0; p < m.e().count; p++) {
65053
- if (m.e()._inner[p].c == "RefType") {
65054
- n = m.e()._inner[p].b;
65131
+ for (var p = 0; p < m.f().count; p++) {
65132
+ if (m.f()._inner[p].c == "RefType") {
65133
+ n = m.f()._inner[p].b;
65055
65134
  }
65056
- if (m.e()._inner[p].c == "Value") {
65057
- o = m.e()._inner[p].b;
65135
+ if (m.f()._inner[p].c == "Value") {
65136
+ o = m.f()._inner[p].b;
65058
65137
  }
65059
65138
  }
65060
65139
  if (o != null) {
@@ -65068,11 +65147,11 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
65068
65147
  }
65069
65148
  }
65070
65149
  else {
65071
- d.k(c, m.f, g, m, runOn(this, this.cr), f);
65150
+ d.k(c, m.g, g, m, runOn(this, this.cr), f);
65072
65151
  var s = this.a3(m);
65073
65152
  this.cp(c, d, s);
65074
65153
  if (e) {
65075
- d.l(this, c, m.f, runOn(this, this.removeRefValueCore));
65154
+ d.l(this, c, m.g, runOn(this, this.removeRefValueCore));
65076
65155
  }
65077
65156
  }
65078
65157
  }
@@ -65092,21 +65171,22 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
65092
65171
  return this.context.l(a, b);
65093
65172
  };
65094
65173
  ComponentRenderer.prototype.a3 = function (a) {
65095
- var b = a.e();
65174
+ var b = a.f();
65096
65175
  var c = new List$1(DescriptionTreeAction.$, 0);
65097
65176
  for (var d = 0; d < b.count; d++) {
65098
65177
  var e = new DescriptionTreeAction();
65099
65178
  e.a = 0;
65100
- e.i = b._inner[d].c;
65101
- e.c = b._inner[d].a;
65179
+ e.j = b._inner[d].c;
65180
+ e.d = b._inner[d].a;
65181
+ e.c = a;
65102
65182
  e.b = a;
65103
- e.f = b._inner[d].b;
65183
+ e.g = b._inner[d].b;
65104
65184
  c.add(e);
65105
65185
  }
65106
65186
  return c;
65107
65187
  };
65108
65188
  ComponentRenderer.prototype.x = function (a, b, c) {
65109
- if (c.b == null) {
65189
+ if (c.c == null) {
65110
65190
  return this.o(a, b, c);
65111
65191
  }
65112
65192
  else {
@@ -65116,14 +65196,14 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
65116
65196
  return true;
65117
65197
  };
65118
65198
  ComponentRenderer.prototype.cc = function (a, b, c, d) {
65119
- var e = c.h(ComponentRenderer.platform);
65120
- this.f.clearCollection(d, e, c.c);
65121
- if (c.g != null && typeCast(Array_$type, c.g) !== null) {
65122
- var f = c.g;
65199
+ var e = c.i(ComponentRenderer.platform);
65200
+ this.f.clearCollection(d, e, c.d);
65201
+ if (c.h != null && typeCast(Array_$type, c.h) !== null) {
65202
+ var f = c.h;
65123
65203
  for (var g = 0; g < f.length; g++) {
65124
65204
  var h = f[g];
65125
65205
  if (h != null && typeCast(DescriptionTreeNode.$, h) !== null) {
65126
- var i = h.f;
65206
+ var i = h.g;
65127
65207
  if (i >= 0) {
65128
65208
  var j = b.j(i);
65129
65209
  if (j != null) {
@@ -65201,7 +65281,7 @@ var ContainerState = /** @class */ /*@__PURE__*/ (function (_super) {
65201
65281
  return _this;
65202
65282
  }
65203
65283
  ContainerState.prototype.k = function (a, b, c, d, e, f) {
65204
- if (d.b("Name")) {
65284
+ if (d.c("Name")) {
65205
65285
  this.d.item(b, d.a("Name").b);
65206
65286
  e(a, this.d.item(b), c, false);
65207
65287
  }
@@ -66063,11 +66143,11 @@ var CodeGenerationTransformer = /** @class */ /*@__PURE__*/ (function (_super) {
66063
66143
  });
66064
66144
  _this.b.item("FontStyleTransform", function (b, c) {
66065
66145
  var d = b;
66066
- var e = c.i;
66146
+ var e = c.j;
66067
66147
  var f = stringReplace(e, "Style", "Weight");
66068
66148
  var g = false;
66069
- if (c.b.b(f)) {
66070
- var h = c.b.a(f);
66149
+ if (c.c.c(f)) {
66150
+ var h = c.c.a(f);
66071
66151
  var i = h.b;
66072
66152
  if (i != null && i.toLowerCase() == "bold") {
66073
66153
  g = true;
@@ -66145,11 +66225,11 @@ var CodeGenerationTransformer = /** @class */ /*@__PURE__*/ (function (_super) {
66145
66225
  });
66146
66226
  _this.b.item("FontWeightTransform", function (b, c) {
66147
66227
  var d = b;
66148
- var e = c.i;
66228
+ var e = c.j;
66149
66229
  var f = stringReplace(e, "Weight", "Style");
66150
66230
  var g = false;
66151
- if (c.b.b(f)) {
66152
- var h = c.b.a(f);
66231
+ if (c.c.c(f)) {
66232
+ var h = c.c.a(f);
66153
66233
  var i = h.b;
66154
66234
  if (i != null && i.toLowerCase() == "italic") {
66155
66235
  g = true;
@@ -66272,10 +66352,10 @@ var CodeGenerationTransformer = /** @class */ /*@__PURE__*/ (function (_super) {
66272
66352
  return _this;
66273
66353
  }
66274
66354
  CodeGenerationTransformer.prototype.c = function (a) {
66275
- var b = stringReplace(stringReplace(stringReplace(a.i, "Style", "Family"), "Weight", "Family"), "Size", "Family");
66355
+ var b = stringReplace(stringReplace(stringReplace(a.j, "Style", "Family"), "Weight", "Family"), "Size", "Family");
66276
66356
  var c = "Verdana";
66277
- if (a.b.b(b)) {
66278
- c = a.b.a(b).b;
66357
+ if (a.c.c(b)) {
66358
+ c = a.c.a(b).b;
66279
66359
  if (c == null) {
66280
66360
  c = "Verdana";
66281
66361
  }
@@ -66283,10 +66363,10 @@ var CodeGenerationTransformer = /** @class */ /*@__PURE__*/ (function (_super) {
66283
66363
  return c;
66284
66364
  };
66285
66365
  CodeGenerationTransformer.prototype.e = function (a) {
66286
- var b = stringReplace(stringReplace(stringReplace(a.i, "Family", "Style"), "Weight", "Style"), "Size", "Style");
66366
+ var b = stringReplace(stringReplace(stringReplace(a.j, "Family", "Style"), "Weight", "Style"), "Size", "Style");
66287
66367
  var c = "normal";
66288
- if (a.b.b(b)) {
66289
- c = a.b.a(b).b;
66368
+ if (a.c.c(b)) {
66369
+ c = a.c.a(b).b;
66290
66370
  if (c == null) {
66291
66371
  c = "normal";
66292
66372
  }
@@ -66294,10 +66374,10 @@ var CodeGenerationTransformer = /** @class */ /*@__PURE__*/ (function (_super) {
66294
66374
  return c;
66295
66375
  };
66296
66376
  CodeGenerationTransformer.prototype.d = function (a) {
66297
- var b = stringReplace(stringReplace(stringReplace(a.i, "Family", "Size"), "Weight", "Size"), "Style", "Size");
66377
+ var b = stringReplace(stringReplace(stringReplace(a.j, "Family", "Size"), "Weight", "Size"), "Style", "Size");
66298
66378
  var c = "14px";
66299
- if (a.b.b(b)) {
66300
- c = a.b.a(b).b.toString();
66379
+ if (a.c.c(b)) {
66380
+ c = a.c.a(b).b.toString();
66301
66381
  if (c == null) {
66302
66382
  c = "14px";
66303
66383
  }
@@ -66308,10 +66388,10 @@ var CodeGenerationTransformer = /** @class */ /*@__PURE__*/ (function (_super) {
66308
66388
  return c;
66309
66389
  };
66310
66390
  CodeGenerationTransformer.prototype.f = function (a) {
66311
- var b = stringReplace(stringReplace(stringReplace(a.i, "Family", "Weight"), "Size", "Weight"), "Style", "Weight");
66391
+ var b = stringReplace(stringReplace(stringReplace(a.j, "Family", "Weight"), "Size", "Weight"), "Style", "Weight");
66312
66392
  var c = "normal";
66313
- if (a.b.b(b)) {
66314
- c = a.b.a(b).b;
66393
+ if (a.c.c(b)) {
66394
+ c = a.c.a(b).b;
66315
66395
  if (c == null) {
66316
66396
  c = "normal";
66317
66397
  }
@@ -66320,7 +66400,7 @@ var CodeGenerationTransformer = /** @class */ /*@__PURE__*/ (function (_super) {
66320
66400
  return c;
66321
66401
  };
66322
66402
  CodeGenerationTransformer.prototype.transform = function (a, b, c) {
66323
- var d = c.c;
66403
+ var d = c.d;
66324
66404
  if (d == null) {
66325
66405
  return b;
66326
66406
  }