igniteui-angular-core 13.2.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.
Files changed (81) hide show
  1. package/bundles/igniteui-angular-core.umd.js +1513 -1158
  2. package/bundles/igniteui-angular-core.umd.min.js +1 -1
  3. package/esm2015/lib/BlazorCodeGeneratingComponentRendererModuleEmitter.js +9 -9
  4. package/esm2015/lib/CanvasViewRenderer.js +1 -1
  5. package/esm2015/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +382 -314
  6. package/esm2015/lib/CodeGeneratingComponentRendererDataEmitter.js +2 -2
  7. package/esm2015/lib/CodeGeneratingComponentRendererHandlerEmitter.js +2 -2
  8. package/esm2015/lib/CodeGeneratingComponentRendererModuleEmitter.js +14 -11
  9. package/esm2015/lib/CodeGeneratingRendererResult.js +56 -44
  10. package/esm2015/lib/CodeGenerationFolderTemplate.js +41 -37
  11. package/esm2015/lib/CodeGenerationTransformer.js +19 -19
  12. package/esm2015/lib/ComponentRendererAdapter.js +3 -0
  13. package/esm2015/lib/ComponentRenderer_combined.js +178 -169
  14. package/esm2015/lib/DescriptionSerializer.js +72 -58
  15. package/esm2015/lib/DescriptionTreeAction.js +10 -9
  16. package/esm2015/lib/DescriptionTreeBuilder.js +4 -4
  17. package/esm2015/lib/DescriptionTreeNode.js +64 -36
  18. package/esm2015/lib/DescriptionTreeReconciler.js +156 -141
  19. package/esm2015/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.js +24 -22
  20. package/esm2015/lib/IgcSliderBridge.js +38 -12
  21. package/esm2015/lib/NativeUIInputsFactory.js +1 -0
  22. package/esm2015/lib/NativeUISlider.js +24 -10
  23. package/esm2015/lib/StackedFragmentSeriesDescription.js +121 -121
  24. package/esm2015/lib/StackedFragmentSeriesDescriptionMetadata.js +1 -1
  25. package/esm2015/lib/TSCodeGeneratingComponentRendererModuleEmitter.js +36 -34
  26. package/esm2015/lib/TypeDescriptionPropretyTransforms.js +49 -25
  27. package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescription.js +3 -3
  28. package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +3 -1
  29. package/esm2015/lib/WebTreeSelectionOptionsEventDetailDescription.js +36 -0
  30. package/esm2015/lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata.js +38 -0
  31. package/esm2015/lib/componentUtil.js +4 -1
  32. package/esm2015/public_api.js +2 -0
  33. package/esm5/lib/BlazorCodeGeneratingComponentRendererModuleEmitter.js +9 -9
  34. package/esm5/lib/CanvasViewRenderer.js +1 -1
  35. package/esm5/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +449 -363
  36. package/esm5/lib/CodeGeneratingComponentRendererDataEmitter.js +2 -2
  37. package/esm5/lib/CodeGeneratingComponentRendererHandlerEmitter.js +2 -2
  38. package/esm5/lib/CodeGeneratingComponentRendererModuleEmitter.js +18 -11
  39. package/esm5/lib/CodeGeneratingRendererResult.js +95 -66
  40. package/esm5/lib/CodeGenerationFolderTemplate.js +40 -36
  41. package/esm5/lib/CodeGenerationTransformer.js +19 -19
  42. package/esm5/lib/ComponentRendererAdapter.js +3 -0
  43. package/esm5/lib/ComponentRenderer_combined.js +184 -175
  44. package/esm5/lib/DescriptionSerializer.js +72 -58
  45. package/esm5/lib/DescriptionTreeAction.js +10 -9
  46. package/esm5/lib/DescriptionTreeBuilder.js +4 -4
  47. package/esm5/lib/DescriptionTreeNode.js +64 -36
  48. package/esm5/lib/DescriptionTreeReconciler.js +156 -141
  49. package/esm5/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.js +24 -22
  50. package/esm5/lib/IgcSliderBridge.js +38 -12
  51. package/esm5/lib/NativeUIInputsFactory.js +1 -0
  52. package/esm5/lib/NativeUISlider.js +23 -5
  53. package/esm5/lib/StackedFragmentSeriesDescription.js +120 -120
  54. package/esm5/lib/StackedFragmentSeriesDescriptionMetadata.js +1 -1
  55. package/esm5/lib/TSCodeGeneratingComponentRendererModuleEmitter.js +36 -34
  56. package/esm5/lib/TypeDescriptionPropretyTransforms.js +49 -25
  57. package/esm5/lib/WebTreeSelectionOptionsEventArgsDescription.js +2 -2
  58. package/esm5/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +3 -1
  59. package/esm5/lib/WebTreeSelectionOptionsEventDetailDescription.js +46 -0
  60. package/esm5/lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata.js +42 -0
  61. package/esm5/lib/componentUtil.js +4 -1
  62. package/esm5/public_api.js +2 -0
  63. package/fesm2015/igniteui-angular-core.js +1385 -1085
  64. package/fesm5/igniteui-angular-core.js +1512 -1159
  65. package/lib/BlazorCodeGeneratingComponentRendererModuleEmitter.d.ts +3 -3
  66. package/lib/CodeGeneratingComponentRendererCodeEmitter_combined.d.ts +120 -114
  67. package/lib/CodeGeneratingComponentRendererModuleEmitter.d.ts +6 -5
  68. package/lib/CodeGeneratingRendererResult.d.ts +15 -12
  69. package/lib/DescriptionSerializer.d.ts +7 -6
  70. package/lib/DescriptionTreeAction.d.ts +6 -5
  71. package/lib/DescriptionTreeNode.d.ts +13 -12
  72. package/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.d.ts +7 -7
  73. package/lib/IgcSliderBridge.d.ts +7 -3
  74. package/lib/NativeUISlider.d.ts +9 -6
  75. package/lib/StackedFragmentSeriesDescription.d.ts +46 -46
  76. package/lib/TSCodeGeneratingComponentRendererModuleEmitter.d.ts +7 -7
  77. package/lib/WebTreeSelectionOptionsEventArgsDescription.d.ts +3 -3
  78. package/lib/WebTreeSelectionOptionsEventDetailDescription.d.ts +17 -0
  79. package/lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata.d.ts +13 -0
  80. package/package.json +4 -4
  81. package/public_api.d.ts +2 -0
@@ -36,14 +36,14 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
36
36
  _this.e = false;
37
37
  return _this;
38
38
  }
39
- DescriptionSerializer.prototype.o = function (a, b) {
39
+ DescriptionSerializer.prototype.p = function (a, b) {
40
40
  var c = DescriptionTreeBuilder.createTree(a, b);
41
41
  var d = new DescriptionSerializerBuilder();
42
- this.p(a, c, d);
42
+ this.q(a, c, d);
43
43
  return d.toString();
44
44
  };
45
- DescriptionSerializer.prototype.s = function (a, b, c) {
46
- this.p(a, b, c);
45
+ DescriptionSerializer.prototype.t = function (a, b, c) {
46
+ this.q(a, b, c);
47
47
  };
48
48
  DescriptionSerializer.prototype.c = function (a, b) {
49
49
  var c = new JsonDictionaryParser();
@@ -68,7 +68,7 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
68
68
  this.e = false;
69
69
  return g;
70
70
  };
71
- DescriptionSerializer.prototype.u = function (a, b, c, d, e) {
71
+ DescriptionSerializer.prototype.v = function (a, b, c, d, e) {
72
72
  if (this.g) {
73
73
  a.w(b, c, d, e);
74
74
  }
@@ -132,14 +132,14 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
132
132
  break;
133
133
  }
134
134
  if (!this.e) {
135
- this.u(a, h, k, l, q);
135
+ this.v(a, h, k, l, q);
136
136
  }
137
137
  }
138
138
  else if (typeCast(JsonDictionaryObject.$, p) !== null) {
139
139
  var r = p;
140
140
  var s = this.b(a, r, l.knownType);
141
141
  f.e(s);
142
- this.u(a, h, k, l, s.result);
142
+ this.v(a, h, k, l, s.result);
143
143
  }
144
144
  else if (typeCast(JsonDictionaryArray.$, p) !== null) {
145
145
  var t = p;
@@ -153,50 +153,64 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
153
153
  u = l.collectionElementType;
154
154
  }
155
155
  var w = this.a(f, a, t, u);
156
+ if (this.f) {
157
+ if (l.propertyName.toLowerCase() == "includedproperties" || l.propertyName.toLowerCase() == "excludedproperties") {
158
+ var x = w;
159
+ var y = new Array(x.length);
160
+ for (var z = 0; z < x.length; z++) {
161
+ y[z] = this.n(x[z]);
162
+ }
163
+ w = y;
164
+ }
165
+ }
156
166
  if (!this.e || v) {
157
- this.u(a, h, k, l, w);
167
+ this.v(a, h, k, l, w);
158
168
  }
159
169
  }
160
170
  else {
161
- var x = l.specificExternalType;
162
- if (x == null && l.knownType == 3) {
163
- x = "DateTime";
171
+ var aa = l.specificExternalType;
172
+ if (aa == null && l.knownType == 3) {
173
+ aa = "DateTime";
164
174
  }
165
- if (x == null) {
166
- x = "String";
175
+ if (aa == null) {
176
+ aa = "String";
167
177
  }
168
- var y = p;
169
- var z = this.j(f, a, y, x);
178
+ var ab = p;
179
+ var ac = this.j(f, a, ab, aa);
170
180
  if (this.f) {
171
- if (stringEndsWith(l.propertyName, "MemberPath") || (g != null && stringEndsWith(g, "Axis") && l.propertyName.toLowerCase() == "label")) {
172
- var aa = z.toString();
173
- if (this.i != null) {
174
- z = this.i(aa);
175
- }
176
- else {
177
- if (stringStartsWith(aa, "{")) {
178
- if (!stringStartsWith(aa, "{[")) {
179
- aa = aa.substr(1, aa.length - 2);
180
- aa = "{[" + aa + "]}";
181
- z = aa;
182
- }
183
- }
184
- else {
185
- if (!stringStartsWith(aa, "[")) {
186
- aa = "[" + aa + "]";
187
- z = aa;
188
- }
189
- }
190
- }
181
+ if (stringEndsWith(l.propertyName, "MemberPath") || stringEndsWith(l.propertyName.toLowerCase(), "field") || (g != null && stringEndsWith(g, "Axis") && l.propertyName.toLowerCase() == "label")) {
182
+ ac = this.n(ac);
191
183
  }
192
184
  }
193
185
  if (!this.e) {
194
- this.u(a, h, k, l, z);
186
+ this.v(a, h, k, l, ac);
195
187
  }
196
188
  }
197
189
  }
198
190
  return f;
199
191
  };
192
+ DescriptionSerializer.prototype.n = function (a) {
193
+ var b = a.toString();
194
+ if (this.i != null) {
195
+ a = this.i(b);
196
+ }
197
+ else {
198
+ if (stringStartsWith(b, "{")) {
199
+ if (!stringStartsWith(b, "{[")) {
200
+ b = b.substr(1, b.length - 2);
201
+ b = "{[" + b + "]}";
202
+ a = b;
203
+ }
204
+ }
205
+ else {
206
+ if (!stringStartsWith(b, "[")) {
207
+ b = "[" + b + "]";
208
+ a = b;
209
+ }
210
+ }
211
+ }
212
+ return a;
213
+ };
200
214
  DescriptionSerializer.prototype.k = function (a, b) {
201
215
  if (b == null) {
202
216
  return null;
@@ -315,35 +329,35 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
315
329
  return c.value;
316
330
  }
317
331
  };
318
- DescriptionSerializer.prototype.p = function (a, b, c) {
332
+ DescriptionSerializer.prototype.q = function (a, b, c) {
319
333
  c.f("{");
320
334
  c.i();
321
- c.f("\"type\": \"" + b.h + "\"");
322
- var d = b.e();
335
+ c.f("\"type\": \"" + b.i + "\"");
336
+ var d = b.f();
323
337
  for (var e = 0; e < d.count; e++) {
324
338
  var f = d._inner[e];
325
339
  if (e >= 0) {
326
340
  c.f(",");
327
341
  }
328
- this.q(a, b, f, c);
342
+ this.r(a, b, f, c);
329
343
  }
330
344
  c.h();
331
345
  c.f("}");
332
346
  };
333
- DescriptionSerializer.prototype.n = function (a) {
347
+ DescriptionSerializer.prototype.o = function (a) {
334
348
  if (a == null) {
335
349
  return null;
336
350
  }
337
351
  return a.substr(0, 1).toLowerCase() + a.substr(1);
338
352
  };
339
- DescriptionSerializer.prototype.q = function (a, b, c, d) {
353
+ DescriptionSerializer.prototype.r = function (a, b, c, d) {
340
354
  if (c.c.toLowerCase() == "type") {
341
355
  return;
342
356
  }
343
- d.e("\"" + this.n(c.c) + "\": ");
344
- this.t(a, b, c, c.b, d);
357
+ d.e("\"" + this.o(c.c) + "\": ");
358
+ this.u(a, b, c, c.b, d);
345
359
  };
346
- DescriptionSerializer.prototype.t = function (a, b, c, d, e) {
360
+ DescriptionSerializer.prototype.u = function (a, b, c, d, e) {
347
361
  var f = 2;
348
362
  if (c.a != null) {
349
363
  f = c.a.knownType;
@@ -365,17 +379,17 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
365
379
  }
366
380
  var j = h;
367
381
  if (typeCast(DescriptionTreeNode.$, g[i]) !== null) {
368
- this.p(a, g[i], e);
382
+ this.q(a, g[i], e);
369
383
  }
370
384
  else {
371
- this.r(a, h, g[i], e);
385
+ this.s(a, h, g[i], e);
372
386
  }
373
387
  }
374
388
  e.e("]");
375
389
  }
376
390
  break;
377
391
  case 7:
378
- this.r(a, "Boolean", d, e);
392
+ this.s(a, "Boolean", d, e);
379
393
  break;
380
394
  case 9:
381
395
  {
@@ -388,10 +402,10 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
388
402
  }
389
403
  var n = l;
390
404
  if (typeCast(DescriptionTreeNode.$, k[m]) !== null) {
391
- this.p(a, k[m], e);
405
+ this.q(a, k[m], e);
392
406
  }
393
407
  else {
394
- this.r(a, l, k[m], e);
408
+ this.s(a, l, k[m], e);
395
409
  }
396
410
  }
397
411
  e.e("]");
@@ -403,29 +417,29 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
403
417
  case 20:
404
418
  case 5:
405
419
  case 2:
406
- this.r(a, "String", d, e);
420
+ this.s(a, "String", d, e);
407
421
  break;
408
422
  case 3:
409
- this.r(a, "DateTime", d, e);
423
+ this.s(a, "DateTime", d, e);
410
424
  break;
411
425
  case 8:
412
426
  if (c.a.specificExternalType.toLowerCase() == "string") {
413
- this.r(a, "String", d, e);
427
+ this.s(a, "String", d, e);
414
428
  }
415
429
  else {
416
- this.p(a, d, e);
430
+ this.q(a, d, e);
417
431
  }
418
432
  break;
419
433
  case 1:
420
- this.r(a, "Double", d, e);
434
+ this.s(a, "Double", d, e);
421
435
  break;
422
436
  case 14:
423
437
  case 12:
424
438
  case 11:
425
- this.p(a, d, e);
439
+ this.q(a, d, e);
426
440
  break;
427
441
  case 21:
428
- this.r(a, "TimeSpan", d, e);
442
+ this.s(a, "TimeSpan", d, e);
429
443
  break;
430
444
  case 17:
431
445
  case 0:
@@ -433,7 +447,7 @@ var DescriptionSerializer = /** @class */ /*@__PURE__*/ (function (_super) {
433
447
  case 13: throw new NotImplementedException(0);
434
448
  }
435
449
  };
436
- DescriptionSerializer.prototype.r = function (a, b, c, d) {
450
+ DescriptionSerializer.prototype.s = function (a, b, c, d) {
437
451
  switch (b.toLowerCase()) {
438
452
  case "string":
439
453
  if (c == null) {
@@ -16,23 +16,24 @@ var DescriptionTreeAction = /** @class */ /*@__PURE__*/ (function (_super) {
16
16
  function DescriptionTreeAction() {
17
17
  var _this = _super !== null && _super.apply(this, arguments) || this;
18
18
  _this.a = 0;
19
- _this.b = null;
20
19
  _this.c = null;
21
- _this.i = null;
20
+ _this.b = null;
21
+ _this.d = null;
22
+ _this.j = null;
23
+ _this.h = null;
22
24
  _this.g = null;
23
- _this.f = null;
25
+ _this.f = 0;
24
26
  _this.e = 0;
25
- _this.d = 0;
26
27
  return _this;
27
28
  }
28
- DescriptionTreeAction.prototype.h = function (a) {
29
- var b = this.i;
30
- if (this.c != null) {
31
- b = this.c.g(a);
29
+ DescriptionTreeAction.prototype.i = function (a) {
30
+ var b = this.j;
31
+ if (this.d != null) {
32
+ b = this.d.g(a);
32
33
  }
33
34
  else {
34
35
  if (TypeDescriptionMetadata.shouldCamelize(a)) {
35
- b = TypeDescriptionMetadata.camelize(this.i);
36
+ b = TypeDescriptionMetadata.camelize(this.j);
36
37
  }
37
38
  }
38
39
  if (stringEndsWith(b, "Ref")) {
@@ -72,13 +72,13 @@ var DescriptionTreeBuilder = /** @class */ /*@__PURE__*/ (function (_super) {
72
72
  e = h;
73
73
  }
74
74
  if (key_.toLowerCase() == "type") {
75
- b.h = e;
75
+ b.i = e;
76
76
  }
77
- b.i(DescriptionTreeBuilder.c(key_), e);
77
+ b.j(DescriptionTreeBuilder.c(key_), e);
78
78
  }
79
- if (b.b("type")) {
79
+ if (b.c("type")) {
80
80
  var l = b.a("type").b;
81
- var m = b.e();
81
+ var m = b.f();
82
82
  for (var n = 0; n < m.count; n++) {
83
83
  var o = m._inner[n];
84
84
  o.a = a.getMetadata(l, o.c);
@@ -5,7 +5,7 @@ https://www.infragistics.com/legal/license/igultimate-eula
5
5
  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.
6
6
  */
7
7
  import { __extends } from "tslib";
8
- import { Base, String_$type, markType } from "./type";
8
+ import { Base, typeCast, Array_$type, String_$type, markType } from "./type";
9
9
  import { List$1 } from "./List$1";
10
10
  import { DescriptionPropertyValue } from "./DescriptionPropertyValue";
11
11
  import { Dictionary$2 } from "./Dictionary$2";
@@ -16,72 +16,100 @@ var DescriptionTreeNode = /** @class */ /*@__PURE__*/ (function (_super) {
16
16
  __extends(DescriptionTreeNode, _super);
17
17
  function DescriptionTreeNode() {
18
18
  var _this = _super.call(this) || this;
19
- _this.f = 0;
20
- _this.d = new List$1(DescriptionPropertyValue.$, 0);
21
- _this.c = new Dictionary$2(String_$type, DescriptionPropertyValue.$, 0);
22
- _this.h = null;
23
- _this.f = DescriptionTreeNode.g;
24
- DescriptionTreeNode.g++;
25
- if (DescriptionTreeNode.g >= 0x7FFFFFFFFFFFFFFF) {
26
- DescriptionTreeNode.g = 0;
19
+ _this.g = 0;
20
+ _this.e = new List$1(DescriptionPropertyValue.$, 0);
21
+ _this.d = new Dictionary$2(String_$type, DescriptionPropertyValue.$, 0);
22
+ _this.i = null;
23
+ _this.g = DescriptionTreeNode.h;
24
+ DescriptionTreeNode.h++;
25
+ if (DescriptionTreeNode.h >= 0x7FFFFFFFFFFFFFFF) {
26
+ DescriptionTreeNode.h = 0;
27
27
  }
28
28
  return _this;
29
29
  }
30
- DescriptionTreeNode.prototype.i = function (a, b) {
30
+ DescriptionTreeNode.prototype.b = function () {
31
+ var a = new DescriptionTreeNode();
32
+ a.g = this.g;
33
+ a.i = this.i;
34
+ for (var b = 0; b < this.e.count; b++) {
35
+ var c = this.e._inner[b].c;
36
+ var d = this.e._inner[b].a;
37
+ var e = this.e._inner[b].b;
38
+ if (typeCast(DescriptionTreeNode.$, e) !== null) {
39
+ e = e.b();
40
+ }
41
+ if (typeCast(Array_$type, e) !== null) {
42
+ var f = e;
43
+ var g = new Array(f.length);
44
+ for (var h = 0; h < f.length; h++) {
45
+ if (typeCast(DescriptionTreeNode.$, f[h]) !== null) {
46
+ g[h] = f[h].b();
47
+ }
48
+ else {
49
+ g[h] = f[h];
50
+ }
51
+ }
52
+ e = g;
53
+ }
54
+ a.k(c, e, d);
55
+ }
56
+ return a;
57
+ };
58
+ DescriptionTreeNode.prototype.j = function (a, b) {
31
59
  var c = new DescriptionPropertyValue();
32
60
  c.c = a;
33
61
  c.b = b;
34
- this.c.addItem(a.toLowerCase(), c);
35
- this.d.add(c);
62
+ this.d.addItem(a.toLowerCase(), c);
63
+ this.e.add(c);
36
64
  };
37
- DescriptionTreeNode.prototype.j = function (a, b, c) {
65
+ DescriptionTreeNode.prototype.k = function (a, b, c) {
38
66
  var d = new DescriptionPropertyValue();
39
67
  d.c = a;
40
68
  d.b = b;
41
69
  d.a = c;
42
- this.c.addItem(a.toLowerCase(), d);
43
- this.d.add(d);
70
+ this.d.addItem(a.toLowerCase(), d);
71
+ this.e.add(d);
44
72
  };
45
- DescriptionTreeNode.prototype.m = function (a, b) {
46
- if (this.c.containsKey(a.toLowerCase())) {
47
- var c = this.c.item(a.toLowerCase());
73
+ DescriptionTreeNode.prototype.n = function (a, b) {
74
+ if (this.d.containsKey(a.toLowerCase())) {
75
+ var c = this.d.item(a.toLowerCase());
48
76
  c.b = b;
49
77
  }
50
78
  else {
51
- this.i(a, b);
79
+ this.j(a, b);
52
80
  }
53
81
  };
54
- DescriptionTreeNode.prototype.n = function (a, b, c) {
55
- if (this.c.containsKey(a.toLowerCase())) {
56
- var d = this.c.item(a.toLowerCase());
82
+ DescriptionTreeNode.prototype.o = function (a, b, c) {
83
+ if (this.d.containsKey(a.toLowerCase())) {
84
+ var d = this.d.item(a.toLowerCase());
57
85
  d.b = b;
58
86
  }
59
87
  else {
60
- this.j(a, b, c);
88
+ this.k(a, b, c);
61
89
  }
62
90
  };
63
91
  DescriptionTreeNode.prototype.a = function (a) {
64
- return this.c.item(a.toLowerCase());
92
+ return this.d.item(a.toLowerCase());
65
93
  };
66
- DescriptionTreeNode.prototype.b = function (a) {
67
- return this.c.containsKey(a.toLowerCase());
94
+ DescriptionTreeNode.prototype.c = function (a) {
95
+ return this.d.containsKey(a.toLowerCase());
68
96
  };
69
- DescriptionTreeNode.prototype.l = function (a) {
70
- if (this.c.containsKey(a.toLowerCase())) {
71
- var b = this.c.item(a.toLowerCase());
72
- this.c.removeItem(a.toLowerCase());
73
- this.d.remove(b);
97
+ DescriptionTreeNode.prototype.m = function (a) {
98
+ if (this.d.containsKey(a.toLowerCase())) {
99
+ var b = this.d.item(a.toLowerCase());
100
+ this.d.removeItem(a.toLowerCase());
101
+ this.e.remove(b);
74
102
  }
75
103
  };
76
- DescriptionTreeNode.prototype.k = function () {
77
- this.c.clear();
104
+ DescriptionTreeNode.prototype.l = function () {
78
105
  this.d.clear();
106
+ this.e.clear();
79
107
  };
80
- DescriptionTreeNode.prototype.e = function () {
81
- return this.d;
108
+ DescriptionTreeNode.prototype.f = function () {
109
+ return this.e;
82
110
  };
83
111
  DescriptionTreeNode.$t = markType(DescriptionTreeNode, 'DescriptionTreeNode');
84
- DescriptionTreeNode.g = 0;
112
+ DescriptionTreeNode.h = 0;
85
113
  return DescriptionTreeNode;
86
114
  }(Base));
87
115
  export { DescriptionTreeNode };