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
@@ -17,20 +17,20 @@ var TSCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE__*/
17
17
  __extends(TSCodeGeneratingComponentRendererModuleEmitter, _super);
18
18
  function TSCodeGeneratingComponentRendererModuleEmitter(a, b, c) {
19
19
  var _this = _super.call(this, b, c) || this;
20
- _this.o = 0;
21
- _this.r = 0;
22
- _this.p = false;
23
- _this.q = new Dictionary$2(String_$type, List$1.$.specialize(String_$type), 0);
24
- _this.o = a;
20
+ _this.p = 0;
21
+ _this.s = 0;
22
+ _this.q = false;
23
+ _this.r = new Dictionary$2(String_$type, List$1.$.specialize(String_$type), 0);
24
+ _this.p = a;
25
25
  return _this;
26
26
  }
27
- TSCodeGeneratingComponentRendererModuleEmitter.prototype.n = function () {
28
- _super.prototype.n.call(this);
29
- this.r = 0;
27
+ TSCodeGeneratingComponentRendererModuleEmitter.prototype.o = function () {
28
+ _super.prototype.o.call(this);
29
+ this.s = 0;
30
30
  };
31
- Object.defineProperty(TSCodeGeneratingComponentRendererModuleEmitter.prototype, "t", {
31
+ Object.defineProperty(TSCodeGeneratingComponentRendererModuleEmitter.prototype, "u", {
32
32
  get: function () {
33
- switch (this.o) {
33
+ switch (this.p) {
34
34
  case 1: return "Igx";
35
35
  case 2: return "Igr";
36
36
  case 3: return "Igc";
@@ -40,9 +40,9 @@ var TSCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE__*/
40
40
  enumerable: false,
41
41
  configurable: true
42
42
  });
43
- Object.defineProperty(TSCodeGeneratingComponentRendererModuleEmitter.prototype, "s", {
43
+ Object.defineProperty(TSCodeGeneratingComponentRendererModuleEmitter.prototype, "t", {
44
44
  get: function () {
45
- switch (this.o) {
45
+ switch (this.p) {
46
46
  case 1: return "angular";
47
47
  case 2: return "react";
48
48
  case 3: return "webcomponents";
@@ -52,34 +52,36 @@ var TSCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE__*/
52
52
  enumerable: false,
53
53
  configurable: true
54
54
  });
55
- TSCodeGeneratingComponentRendererModuleEmitter.prototype.k = function (a) {
56
- _super.prototype.k.call(this, a);
55
+ TSCodeGeneratingComponentRendererModuleEmitter.prototype.l = function (a) {
56
+ _super.prototype.l.call(this, a);
57
57
  if (a == "withDescriptions") {
58
- this.p = true;
58
+ this.q = true;
59
59
  return;
60
60
  }
61
- var b = "igniteui-" + this.s + "-core";
61
+ var b = "igniteui-" + this.t + "-core";
62
62
  var c = "";
63
63
  var d = a.split('/');
64
64
  if (d.length == 1) {
65
65
  c = d[0];
66
+ this.j.addPackageRef(c);
66
67
  }
67
68
  else {
68
69
  b = d[0];
69
- b = "igniteui-" + this.s + "-" + b;
70
+ this.j.addPackageRef(b);
71
+ b = "igniteui-" + this.t + "-" + b;
70
72
  c = d[1];
71
73
  }
72
- if (!this.q.containsKey(b)) {
73
- this.q.addItem(b, new List$1(String_$type, 0));
74
+ if (!this.r.containsKey(b)) {
75
+ this.r.addItem(b, new List$1(String_$type, 0));
74
76
  }
75
- var e = this.q.item(b);
76
- if (this.r > 0) {
77
+ var e = this.r.item(b);
78
+ if (this.s > 0) {
77
79
  this.d.k(",");
78
80
  }
79
- this.d.j(this.t + c);
80
- e.add(this.t + c);
81
- if (this.p) {
82
- if (this.r == 0) {
81
+ this.d.j(this.u + c);
82
+ e.add(this.u + c);
83
+ if (this.q) {
84
+ if (this.s == 0) {
83
85
  this.c.k("private _componentRenderer: ComponentRenderer = null;");
84
86
  this.c.k("public get renderer(): ComponentRenderer {");
85
87
  this.c.h();
@@ -87,26 +89,26 @@ var TSCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE__*/
87
89
  this.c.h();
88
90
  this.c.k("this._componentRenderer = new ComponentRenderer();");
89
91
  this.c.k("var context = this._componentRenderer.context;");
90
- this.g.addPackageImport("igniteui-" + this.s + "-core", "ComponentRenderer");
92
+ this.g.addPackageImport("igniteui-" + this.t + "-core", "ComponentRenderer");
91
93
  }
92
94
  var f = c;
93
95
  if (stringEndsWith(f, "Module")) {
94
96
  f = f.substr(0, f.length - ("Module").length);
95
97
  f += "DescriptionModule";
96
98
  }
97
- this.g.addPackageImport("igniteui-" + this.s + "-core", f);
99
+ this.g.addPackageImport("igniteui-" + this.t + "-core", f);
98
100
  this.c.k(f + ".register(context);");
99
101
  }
100
- this.r++;
102
+ this.s++;
101
103
  };
102
- TSCodeGeneratingComponentRendererModuleEmitter.prototype.m = function () {
104
+ TSCodeGeneratingComponentRendererModuleEmitter.prototype.n = function () {
103
105
  var e_1, _a, e_2, _b;
104
- _super.prototype.m.call(this);
106
+ _super.prototype.n.call(this);
105
107
  try {
106
- for (var _c = __values(fromEnum(this.q.keys)), _d = _c.next(); !_d.done; _d = _c.next()) {
108
+ for (var _c = __values(fromEnum(this.r.keys)), _d = _c.next(); !_d.done; _d = _c.next()) {
107
109
  var a = _d.value;
108
110
  var b = a;
109
- var c = this.q.item(a);
111
+ var c = this.r.item(a);
110
112
  try {
111
113
  for (var _e = (e_2 = void 0, __values(fromEnum(c))), _f = _e.next(); !_f.done; _f = _e.next()) {
112
114
  var d = _f.value;
@@ -141,10 +143,10 @@ var TSCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE__*/
141
143
  throw e_1.error;
142
144
  }
143
145
  }
144
- if (this.p) {
146
+ if (this.q) {
145
147
  this.c.f();
146
148
  this.c.k("}");
147
- this.c.k("return this._componentRenderer");
149
+ this.c.k("return this._componentRenderer;");
148
150
  this.c.f();
149
151
  this.c.k("}");
150
152
  }
@@ -67,55 +67,79 @@ var TypeDescriptionPropretyTransforms = /** @class */ /*@__PURE__*/ (function (_
67
67
  return _this;
68
68
  }
69
69
  TypeDescriptionPropretyTransforms.prototype.b = function (a) {
70
- var b = stringReplace(stringReplace(stringReplace(a.i, "Style", "Family"), "Weight", "Family"), "Size", "Family");
70
+ var b = stringReplace(stringReplace(stringReplace(a.j, "Style", "Family"), "Weight", "Family"), "Size", "Family");
71
71
  var c = "Verdana";
72
- if (a.b.b(b)) {
73
- c = a.b.a(b).b;
74
- if (c == null) {
75
- c = "Verdana";
72
+ var d = a.b;
73
+ if (d == null) {
74
+ d = a.c;
75
+ }
76
+ if (d != null) {
77
+ if (d.c(b)) {
78
+ c = d.a(b).b;
79
+ if (c == null) {
80
+ c = "Verdana";
81
+ }
76
82
  }
77
83
  }
78
84
  return c;
79
85
  };
80
86
  TypeDescriptionPropretyTransforms.prototype.d = function (a) {
81
- var b = stringReplace(stringReplace(stringReplace(a.i, "Family", "Style"), "Weight", "Style"), "Size", "Style");
87
+ var b = stringReplace(stringReplace(stringReplace(a.j, "Family", "Style"), "Weight", "Style"), "Size", "Style");
82
88
  var c = "normal";
83
- if (a.b.b(b)) {
84
- c = a.b.a(b).b;
85
- if (c == null) {
86
- c = "normal";
89
+ var d = a.b;
90
+ if (d == null) {
91
+ d = a.c;
92
+ }
93
+ if (d != null) {
94
+ if (d.c(b)) {
95
+ c = d.a(b).b;
96
+ if (c == null) {
97
+ c = "normal";
98
+ }
87
99
  }
88
100
  }
89
101
  return c;
90
102
  };
91
103
  TypeDescriptionPropretyTransforms.prototype.c = function (a) {
92
- var b = stringReplace(stringReplace(stringReplace(a.i, "Family", "Size"), "Weight", "Size"), "Style", "Size");
104
+ var b = stringReplace(stringReplace(stringReplace(a.j, "Family", "Size"), "Weight", "Size"), "Style", "Size");
93
105
  var c = "14px";
94
- if (a.b.b(b)) {
95
- c = a.b.a(b).b;
96
- if (c == null) {
97
- c = "14px";
98
- }
99
- else {
100
- c = c.toString() + "px";
106
+ var d = a.b;
107
+ if (d == null) {
108
+ d = a.c;
109
+ }
110
+ if (d != null) {
111
+ if (d.c(b)) {
112
+ c = d.a(b).b;
113
+ if (c == null) {
114
+ c = "14px";
115
+ }
116
+ else {
117
+ c = c.toString() + "px";
118
+ }
101
119
  }
102
120
  }
103
121
  return c;
104
122
  };
105
123
  TypeDescriptionPropretyTransforms.prototype.e = function (a) {
106
- var b = stringReplace(stringReplace(stringReplace(a.i, "Family", "Weight"), "Size", "Weight"), "Style", "Weight");
124
+ var b = stringReplace(stringReplace(stringReplace(a.j, "Family", "Weight"), "Size", "Weight"), "Style", "Weight");
107
125
  var c = "normal";
108
- if (a.b.b(b)) {
109
- c = a.b.a(b).b;
110
- if (c == null) {
111
- c = "normal";
126
+ var d = a.b;
127
+ if (d == null) {
128
+ d = a.c;
129
+ }
130
+ if (d != null) {
131
+ if (d.c(b)) {
132
+ c = d.a(b).b;
133
+ if (c == null) {
134
+ c = "normal";
135
+ }
136
+ c = c.toLowerCase();
112
137
  }
113
- c = c.toLowerCase();
114
138
  }
115
139
  return c;
116
140
  };
117
141
  TypeDescriptionPropretyTransforms.prototype.transform = function (a, b, c) {
118
- var d = c.c;
142
+ var d = c.d;
119
143
  if (d == null) {
120
144
  return b;
121
145
  }
@@ -27,13 +27,13 @@ var WebTreeSelectionOptionsEventArgsDescription = /** @class */ /*@__PURE__*/ (f
27
27
  enumerable: false,
28
28
  configurable: true
29
29
  });
30
- Object.defineProperty(WebTreeSelectionOptionsEventArgsDescription.prototype, "newSelection", {
30
+ Object.defineProperty(WebTreeSelectionOptionsEventArgsDescription.prototype, "detail", {
31
31
  get: function () {
32
32
  return this.f;
33
33
  },
34
34
  set: function (a) {
35
35
  this.f = a;
36
- this.e("NewSelection");
36
+ this.e("Detail");
37
37
  },
38
38
  enumerable: false,
39
39
  configurable: true
@@ -7,6 +7,7 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
7
7
  import { __extends } from "tslib";
8
8
  import { Base, String_$type, markType } from "./type";
9
9
  import { Dictionary$2 } from "./Dictionary$2";
10
+ import { WebTreeSelectionOptionsEventDetailDescriptionMetadata } from "./WebTreeSelectionOptionsEventDetailDescriptionMetadata";
10
11
  import { WebTreeSelectionOptionsEventArgsDescription } from "./WebTreeSelectionOptionsEventArgsDescription";
11
12
  /**
12
13
  * @hidden
@@ -25,10 +26,11 @@ var WebTreeSelectionOptionsEventArgsDescriptionMetadata = /** @class */ /*@__PUR
25
26
  return;
26
27
  }
27
28
  a.s(WebTreeSelectionOptionsEventArgsDescriptionMetadata.a);
29
+ WebTreeSelectionOptionsEventDetailDescriptionMetadata.d(a);
28
30
  };
29
31
  WebTreeSelectionOptionsEventArgsDescriptionMetadata.c = function (a) {
30
32
  a.item("__qualifiedNameTS", "String:TreeSelectionOptionsEventArgs");
31
- a.item("NewSelection", "Collection:WebTreeItem:WebTreeItemCollection:WebTreeItem");
33
+ a.item("Detail", "ExportedType:WebTreeSelectionOptionsEventDetail");
32
34
  };
33
35
  WebTreeSelectionOptionsEventArgsDescriptionMetadata.d = function (a) {
34
36
  WebTreeSelectionOptionsEventArgsDescriptionMetadata.b(a);
@@ -0,0 +1,46 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
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
+ */
7
+ import { __extends } from "tslib";
8
+ import { Description } from "./Description";
9
+ import { markType } from "./type";
10
+ /**
11
+ * @hidden
12
+ */
13
+ var WebTreeSelectionOptionsEventDetailDescription = /** @class */ /*@__PURE__*/ (function (_super) {
14
+ __extends(WebTreeSelectionOptionsEventDetailDescription, _super);
15
+ function WebTreeSelectionOptionsEventDetailDescription() {
16
+ var _this = _super.call(this) || this;
17
+ _this.f = null;
18
+ return _this;
19
+ }
20
+ WebTreeSelectionOptionsEventDetailDescription.prototype.get_type = function () {
21
+ return "WebTreeSelectionOptionsEventDetail";
22
+ };
23
+ Object.defineProperty(WebTreeSelectionOptionsEventDetailDescription.prototype, "type", {
24
+ get: function () {
25
+ return this.get_type();
26
+ },
27
+ enumerable: false,
28
+ configurable: true
29
+ });
30
+ Object.defineProperty(WebTreeSelectionOptionsEventDetailDescription.prototype, "newSelection", {
31
+ get: function () {
32
+ return this.f;
33
+ },
34
+ set: function (a) {
35
+ this.f = a;
36
+ this.e("NewSelection");
37
+ },
38
+ enumerable: false,
39
+ configurable: true
40
+ });
41
+ WebTreeSelectionOptionsEventDetailDescription.$t = markType(WebTreeSelectionOptionsEventDetailDescription, 'WebTreeSelectionOptionsEventDetailDescription', Description.$);
42
+ WebTreeSelectionOptionsEventDetailDescription.__marshalByValue = true;
43
+ WebTreeSelectionOptionsEventDetailDescription.__marshalByValueAlias = "TreeSelectionOptionsEventDetail";
44
+ return WebTreeSelectionOptionsEventDetailDescription;
45
+ }(Description));
46
+ export { WebTreeSelectionOptionsEventDetailDescription };
@@ -0,0 +1,42 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
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
+ */
7
+ import { __extends } from "tslib";
8
+ import { Base, String_$type, markType } from "./type";
9
+ import { Dictionary$2 } from "./Dictionary$2";
10
+ import { WebTreeSelectionOptionsEventDetailDescription } from "./WebTreeSelectionOptionsEventDetailDescription";
11
+ /**
12
+ * @hidden
13
+ */
14
+ var WebTreeSelectionOptionsEventDetailDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
15
+ __extends(WebTreeSelectionOptionsEventDetailDescriptionMetadata, _super);
16
+ function WebTreeSelectionOptionsEventDetailDescriptionMetadata() {
17
+ return _super !== null && _super.apply(this, arguments) || this;
18
+ }
19
+ WebTreeSelectionOptionsEventDetailDescriptionMetadata.b = function (a) {
20
+ if (WebTreeSelectionOptionsEventDetailDescriptionMetadata.a == null) {
21
+ WebTreeSelectionOptionsEventDetailDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
22
+ WebTreeSelectionOptionsEventDetailDescriptionMetadata.c(WebTreeSelectionOptionsEventDetailDescriptionMetadata.a);
23
+ }
24
+ if (a.g(WebTreeSelectionOptionsEventDetailDescriptionMetadata.a)) {
25
+ return;
26
+ }
27
+ a.s(WebTreeSelectionOptionsEventDetailDescriptionMetadata.a);
28
+ };
29
+ WebTreeSelectionOptionsEventDetailDescriptionMetadata.c = function (a) {
30
+ a.item("__qualifiedNameTS", "String:TreeSelectionOptionsEventDetail");
31
+ a.item("NewSelection", "Collection:WebTreeItem:WebTreeItemCollection:WebTreeItem");
32
+ };
33
+ WebTreeSelectionOptionsEventDetailDescriptionMetadata.d = function (a) {
34
+ WebTreeSelectionOptionsEventDetailDescriptionMetadata.b(a);
35
+ a.u("WebTreeSelectionOptionsEventDetail", function () { return new WebTreeSelectionOptionsEventDetailDescription(); });
36
+ a.t("WebTreeSelectionOptionsEventDetail", WebTreeSelectionOptionsEventDetailDescriptionMetadata.a);
37
+ };
38
+ WebTreeSelectionOptionsEventDetailDescriptionMetadata.$t = markType(WebTreeSelectionOptionsEventDetailDescriptionMetadata, 'WebTreeSelectionOptionsEventDetailDescriptionMetadata');
39
+ WebTreeSelectionOptionsEventDetailDescriptionMetadata.a = null;
40
+ return WebTreeSelectionOptionsEventDetailDescriptionMetadata;
41
+ }(Base));
42
+ export { WebTreeSelectionOptionsEventDetailDescriptionMetadata };
@@ -230,7 +230,10 @@ export function fromBrushCollection(v) {
230
230
  var internalCollection = v;
231
231
  var ret = [];
232
232
  for (var i = 0; i < internalCollection.count; i++) {
233
- ret.push(internalCollection.item(i).fill);
233
+ var brush = internalCollection.item(i);
234
+ if (brush != null) {
235
+ ret.push(brush.fill);
236
+ }
234
237
  }
235
238
  return ret;
236
239
  }
@@ -1397,6 +1397,8 @@ export * from './lib/WebTreeItemDescriptionModule';
1397
1397
  export * from './lib/WebTreeDescriptionModule';
1398
1398
  export * from './lib/WebTreeSelectionOptionsEventArgsDescription';
1399
1399
  export * from './lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata';
1400
+ export * from './lib/WebTreeSelectionOptionsEventDetailDescription';
1401
+ export * from './lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata';
1400
1402
  export * from './lib/WebValueChangedEventArgsDescription';
1401
1403
  export * from './lib/WebValueChangedEventArgsDescriptionMetadata';
1402
1404
  export * from './lib/WrapperExpressionDescription';