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.
@@ -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
  }
@@ -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
  }