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
@@ -39,16 +39,16 @@ export let CodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
39
39
  super();
40
40
  this.k = null;
41
41
  this.i = null;
42
- this.s = new List$1(CodeGenerationItemBuilderPropertyInfo.$, 0);
42
+ this.t = new List$1(CodeGenerationItemBuilderPropertyInfo.$, 0);
43
43
  this.d = null;
44
44
  this.a = null;
45
45
  this.c = null;
46
46
  this.b = null;
47
- this.t = new List$1(String_$type, 0);
48
- this.w = new Stack$1(String_$type);
49
- this.u = new Stack$1(String_$type);
50
- this.v = new Stack$1(Boolean_$type);
51
- this.ap = null;
47
+ this.u = new List$1(String_$type, 0);
48
+ this.x = new Stack$1(String_$type);
49
+ this.v = new Stack$1(String_$type);
50
+ this.w = new Stack$1(Boolean_$type);
51
+ this.aq = null;
52
52
  this.k = a;
53
53
  this.i = b;
54
54
  this.d = new CodeGeneratingCodeWriter(this.k);
@@ -56,8 +56,8 @@ export let CodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
56
56
  this.c = new CodeGeneratingCodeWriter(this.k);
57
57
  this.b = new CodeGeneratingCodeWriter(this.k);
58
58
  }
59
- a7(a) {
60
- this.i.ab(a);
59
+ a8(a) {
60
+ this.i.ae(a);
61
61
  }
62
62
  get j() {
63
63
  return this.i;
@@ -74,8 +74,8 @@ export let CodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
74
74
  get f() {
75
75
  return this.b;
76
76
  }
77
- as(a) {
78
- this.t.add(a);
77
+ at(a) {
78
+ this.u.add(a);
79
79
  }
80
80
  n(a) {
81
81
  if (a.b != null && (a.b.knownType == 20 || a.b.knownType == 19 || a.b.knownType == 18)) {
@@ -85,39 +85,47 @@ export let CodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
85
85
  }
86
86
  return false;
87
87
  }
88
- get ad() {
89
- return this.w.d();
88
+ p(a) {
89
+ if (a.b != null && (a.b.knownType == 19)) {
90
+ if (a.a != null) {
91
+ return true;
92
+ }
93
+ }
94
+ return false;
90
95
  }
91
- at(a) {
92
- this.w.h(a);
96
+ get ae() {
97
+ return this.x.d();
93
98
  }
94
- a6() {
99
+ au(a) {
100
+ this.x.h(a);
95
101
  }
96
- a1(a) {
97
- this.w.e();
102
+ a7() {
98
103
  }
99
- az(a, b, c, d) {
104
+ a2(a) {
105
+ this.x.e();
100
106
  }
101
107
  a0(a, b, c, d) {
102
- this.az(a, b, c, d);
108
+ }
109
+ a1(a, b, c, d) {
110
+ this.a0(a, b, c, d);
103
111
  }
104
112
  toString() {
105
113
  return this.d.toString();
106
114
  }
107
- al() {
115
+ am() {
108
116
  return "null";
109
117
  }
110
- ao(a, b) {
118
+ ap(a, b) {
111
119
  if (a.b == null) {
112
120
  return a.c;
113
121
  }
114
122
  if (typeCast(CodeGenerationSpecialValue.$, a.c) !== null) {
115
- a.c = this.x(a);
123
+ a.c = this.y(a);
116
124
  }
117
125
  switch (a.b.knownType) {
118
- case 10: return this.ae(a);
126
+ case 10: return this.af(a);
119
127
  case 7: return a.c ? "true" : "false";
120
- case 4: return this.z(a);
128
+ case 4: return this.aa(a);
121
129
  case 6:
122
130
  {
123
131
  let c = "";
@@ -126,13 +134,13 @@ export let CodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
126
134
  if (e >= 1) {
127
135
  c += " ";
128
136
  }
129
- c += this.y(d.item(e));
137
+ c += this.z(d.item(e));
130
138
  }
131
139
  return c;
132
140
  }
133
141
  break;
134
142
  case 9: throw new NotSupportedException(1, "shouldn't get here");
135
- case 5: return this.ab(a);
143
+ case 5: return this.ac(a);
136
144
  case 16:
137
145
  {
138
146
  let f = "";
@@ -141,44 +149,44 @@ export let CodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
141
149
  if (h >= 1) {
142
150
  f += " ";
143
151
  }
144
- f += this.aa(g.item(h));
152
+ f += this.ab(g.item(h));
145
153
  }
146
154
  return f;
147
155
  }
148
156
  break;
149
157
  case 20:
150
158
  if (a.a != null) {
151
- return this.an(a);
159
+ return this.ao(a);
152
160
  }
153
161
  if (a.c == null) {
154
- return this.al();
162
+ return this.am();
155
163
  }
156
164
  break;
157
165
  case 15: throw new NotSupportedException(1, "need to figure this out");
158
166
  case 3: throw new NotSupportedException(1, "need to figure this out");
159
167
  case 19:
160
168
  if (a.a != null) {
161
- return this.ai(a);
169
+ return this.aj(a);
162
170
  }
163
171
  else {
164
- return this.al();
172
+ return this.am();
165
173
  }
166
174
  break;
167
175
  case 8:
168
176
  if (a.b.specificExternalType == "string") {
169
- return this.ah(a);
177
+ return this.ai(a);
170
178
  }
171
179
  if (a.a != null) {
172
- return this.aj(a);
180
+ return this.ak(a);
173
181
  }
174
182
  throw new NotSupportedException(1, "shouldn't get here");
175
183
  case 13: throw new NotSupportedException(1, "shouldn't get here");
176
184
  case 18:
177
185
  if (a.a != null) {
178
- return this.ak(a);
186
+ return this.al(a);
179
187
  }
180
188
  else {
181
- return this.al();
189
+ return this.am();
182
190
  }
183
191
  break;
184
192
  case 1: return a.c.toString();
@@ -197,7 +205,7 @@ export let CodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
197
205
  let k = a.c;
198
206
  return k.width + ", " + k.height;
199
207
  }
200
- case 2: return a.c != null ? a.c.toString() : this.al();
208
+ case 2: return a.c != null ? a.c.toString() : this.am();
201
209
  case 21: return a.c.toString();
202
210
  case 17:
203
211
  if (a.c == null) {
@@ -211,22 +219,22 @@ export let CodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
211
219
  }
212
220
  return "";
213
221
  }
214
- ae(a) {
222
+ af(a) {
215
223
  return "";
216
224
  }
217
- x(a) {
225
+ y(a) {
218
226
  return a.c;
219
227
  }
220
- an(a) {
228
+ ao(a) {
221
229
  if (!stringIsNullOrEmpty(a.a.e)) {
222
230
  if (a.a.a) {
223
- return this.ag(a);
231
+ return this.ah(a);
224
232
  }
225
233
  else {
226
- return this.am(a);
234
+ return this.an(a);
227
235
  }
228
236
  }
229
- return this.al();
237
+ return this.am();
230
238
  }
231
239
  o(a) {
232
240
  if (a.a != null && !stringIsNullOrEmpty(a.a.e)) {
@@ -236,138 +244,138 @@ export let CodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (() => {
236
244
  }
237
245
  return false;
238
246
  }
239
- am(a) {
247
+ an(a) {
240
248
  return "";
241
249
  }
242
- ag(a) {
250
+ ah(a) {
243
251
  return "";
244
252
  }
245
- aj(a) {
253
+ ak(a) {
246
254
  if (!stringIsNullOrEmpty(a.a.e)) {
247
255
  return a.a.e;
248
256
  }
249
- return this.al();
257
+ return this.am();
250
258
  }
251
- ah(a) {
259
+ ai(a) {
252
260
  return a.c != null ? a.c.toString() : "";
253
261
  }
254
- ak(a) {
255
- return this.ai(a);
262
+ al(a) {
263
+ return this.aj(a);
256
264
  }
257
- ai(a) {
265
+ aj(a) {
258
266
  if (!stringIsNullOrEmpty(a.a.e)) {
259
- this.a7(a);
267
+ this.a8(a);
260
268
  return a.a.e;
261
269
  }
262
- return this.al();
270
+ return this.am();
263
271
  }
264
- get_q() {
272
+ get_r() {
265
273
  return false;
266
274
  }
267
- get q() {
268
- return this.get_q();
275
+ get r() {
276
+ return this.get_r();
269
277
  }
270
- ab(a) {
278
+ ac(a) {
271
279
  let b = a.c;
272
- return ColorUtil.i(b, this.q);
280
+ return ColorUtil.i(b, this.r);
273
281
  }
274
- aa(a) {
282
+ ab(a) {
275
283
  let b = a;
276
- return ColorUtil.i(b, this.q);
284
+ return ColorUtil.i(b, this.r);
277
285
  }
278
- z(a) {
286
+ aa(a) {
279
287
  if (a.c == null) {
280
288
  return "";
281
289
  }
282
290
  let b = a.c;
283
- return ColorUtil.i(b.color, this.q);
291
+ return ColorUtil.i(b.color, this.r);
284
292
  }
285
- y(a) {
293
+ z(a) {
286
294
  if (a == null) {
287
295
  return "";
288
296
  }
289
297
  let b = a;
290
- return ColorUtil.i(b.color, this.q);
298
+ return ColorUtil.i(b.color, this.r);
291
299
  }
292
- a5(a) {
293
- this.u.h(a);
294
- this.v.h(false);
300
+ a6(a) {
301
+ this.v.h(a);
302
+ this.w.h(false);
295
303
  }
296
- a4(a) {
297
- let b = this.af(a);
298
- this.u.h(b);
299
- this.v.h(true);
304
+ a5(a) {
305
+ let b = this.ag(a);
306
+ this.v.h(b);
307
+ this.w.h(true);
300
308
  }
301
- af(a) {
302
- let b = stringReplace(stringReplace(a, this.aq, ""), "Component", "");
309
+ ag(a) {
310
+ let b = stringReplace(stringReplace(a, this.ar, ""), "Component", "");
303
311
  b = CodeGeneratingComponentRenderer.dp(b);
304
- return this.i.s(b);
312
+ return this.i.u(b);
305
313
  }
306
- a2() {
307
- this.u.e();
314
+ a3() {
308
315
  this.v.e();
316
+ this.w.e();
309
317
  }
310
- get_aq() {
318
+ get_ar() {
311
319
  return "";
312
320
  }
313
- get aq() {
314
- return this.get_aq();
321
+ get ar() {
322
+ return this.get_ar();
315
323
  }
316
- get ac() {
317
- if (this.u.f > 0) {
318
- return this.u.d();
324
+ get ad() {
325
+ if (this.v.f > 0) {
326
+ return this.v.d();
319
327
  }
320
- let a = stringReplace(stringReplace(this.ad, this.aq, ""), "Component", "");
328
+ let a = stringReplace(stringReplace(this.ae, this.ar, ""), "Component", "");
321
329
  return CodeGeneratingComponentRenderer.dp(a);
322
330
  }
323
- get p() {
324
- return this.w.f == 1;
331
+ get q() {
332
+ return this.x.f == 1;
325
333
  }
326
334
  get l() {
327
- if (this.v.f == 0) {
335
+ if (this.w.f == 0) {
328
336
  return false;
329
337
  }
330
- return this.v.d();
338
+ return this.w.d();
331
339
  }
332
340
  get m() {
333
- if (this.u.f > 0) {
341
+ if (this.v.f > 0) {
334
342
  return true;
335
343
  }
336
344
  return false;
337
345
  }
338
- get_r() {
346
+ get_s() {
339
347
  return true;
340
348
  }
341
- get r() {
342
- return this.get_r();
349
+ get s() {
350
+ return this.get_s();
343
351
  }
344
- a3() {
345
- this.u.e();
352
+ a4() {
353
+ this.v.e();
346
354
  }
347
- av(a) {
355
+ aw(a) {
348
356
  let b = this.f.toString();
349
357
  if (b.length > 0) {
350
358
  a.l(b);
351
359
  }
352
360
  }
353
- ay(a) {
361
+ az(a) {
354
362
  let b = this.g.toString();
355
363
  if (b.length > 0) {
356
364
  a.l(b);
357
365
  }
358
366
  }
359
- au(a) {
367
+ av(a) {
360
368
  let b = this.e.toString();
361
369
  if (b.length > 0) {
362
370
  a.l(b);
363
371
  }
364
372
  }
365
- aw(a) {
366
- if (this.t.count > 0) {
367
- this.ax(this.t, a);
373
+ ax(a) {
374
+ if (this.u.count > 0) {
375
+ this.ay(this.u, a);
368
376
  }
369
377
  }
370
- ax(a, b) {
378
+ ay(a, b) {
371
379
  }
372
380
  }
373
381
  CodeGeneratingComponentRendererCodeEmitter.$t = markType(CodeGeneratingComponentRendererCodeEmitter, 'CodeGeneratingComponentRendererCodeEmitter');
@@ -380,14 +388,14 @@ export let BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/
380
388
  class BlazorRazorCodeGeneratingComponentRendererCodeEmitter extends CodeGeneratingComponentRendererCodeEmitter {
381
389
  constructor(a, b) {
382
390
  super(a, b);
383
- this.ba = 0;
384
- this.a8 = new HashSet$1(String_$type, 0);
391
+ this.bb = 0;
385
392
  this.a9 = new HashSet$1(String_$type, 0);
393
+ this.ba = new HashSet$1(String_$type, 0);
386
394
  }
387
- get_r() {
395
+ get_s() {
388
396
  return false;
389
397
  }
390
- bb(a, b) {
398
+ bc(a, b) {
391
399
  if (b.c == null) {
392
400
  return "null";
393
401
  }
@@ -402,9 +410,9 @@ export let BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/
402
410
  d += " })";
403
411
  return d;
404
412
  }
405
- ae(a) {
413
+ af(a) {
406
414
  if (a.b.specificExternalType == "string") {
407
- return this.bb(a.b.specificExternalType, a);
415
+ return this.bc(a.b.specificExternalType, a);
408
416
  }
409
417
  if (a.c == null) {
410
418
  return "null";
@@ -419,38 +427,38 @@ export let BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/
419
427
  }
420
428
  return c;
421
429
  }
422
- at(a) {
423
- super.at(a);
430
+ au(a) {
431
+ super.au(a);
424
432
  this.h.k("<" + a + "");
425
- if (!this.a8.contains(this.ac)) {
426
- this.a8.add_1(this.ac);
427
- if (!this.a9.contains(this.ad)) {
428
- this.a9.add_1(this.ad);
429
- this.as(this.ad);
433
+ if (!this.a9.contains(this.ad)) {
434
+ this.a9.add_1(this.ad);
435
+ if (!this.ba.contains(this.ae)) {
436
+ this.ba.add_1(this.ae);
437
+ this.at(this.ae);
430
438
  }
431
- this.f.k("private " + this.ad + " " + CodeGeneratingComponentRenderer.dp(this.ac) + ";");
439
+ this.f.k("private " + this.ae + " " + CodeGeneratingComponentRenderer.dp(this.ad) + ";");
432
440
  if (!this.m) {
433
- if (this.p) {
434
- this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ac) + " = this." + CodeGeneratingComponentRenderer.dp(this.ac) + ";");
441
+ if (this.q) {
442
+ this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + ";");
435
443
  }
436
444
  }
437
445
  else {
438
- this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ac) + " = this." + CodeGeneratingComponentRenderer.dp(this.ac) + ";");
446
+ this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + ";");
439
447
  }
440
448
  }
441
449
  }
442
- a6() {
450
+ a7() {
443
451
  this.h.k(">");
444
452
  this.h.h();
445
453
  }
446
- a1(a) {
454
+ a2(a) {
447
455
  this.h.f();
448
456
  this.h.k("</" + a + ">");
449
- super.a1(a);
457
+ super.a2(a);
450
458
  }
451
- az(a, b, c, d) {
459
+ a0(a, b, c, d) {
452
460
  if (c.b != null && d.h(c.b.owningType, CodeGeneratingComponentRenderer.dq(c.b.propertyName)) && this.n(c)) {
453
- this.a7(c);
461
+ this.a8(c);
454
462
  if (a > 0) {
455
463
  this.h.k("");
456
464
  }
@@ -463,29 +471,29 @@ export let BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/
463
471
  return;
464
472
  }
465
473
  if (this.o(c)) {
466
- this.a7(c);
467
- if (!this.a8.contains(this.ac)) {
468
- this.a8.add_1(this.ac);
469
- if (!this.a9.contains(this.ad)) {
470
- this.a9.add_1(this.ad);
471
- this.as(this.ad);
472
- }
473
- this.f.k("private " + this.ad + " " + CodeGeneratingComponentRenderer.dp(this.ac) + ";");
474
+ this.a8(c);
475
+ if (!this.a9.contains(this.ad)) {
476
+ this.a9.add_1(this.ad);
477
+ if (!this.ba.contains(this.ae)) {
478
+ this.ba.add_1(this.ae);
479
+ this.at(this.ae);
480
+ }
481
+ this.f.k("private " + this.ae + " " + CodeGeneratingComponentRenderer.dp(this.ad) + ";");
474
482
  if (!this.m) {
475
- if (this.p) {
476
- this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ac) + " = this." + CodeGeneratingComponentRenderer.dp(this.ac) + ";");
483
+ if (this.q) {
484
+ this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + ";");
477
485
  }
478
486
  }
479
487
  else {
480
- this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ac) + " = this." + CodeGeneratingComponentRenderer.dp(this.ac) + ";");
488
+ this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + ";");
481
489
  }
482
490
  }
483
- let e = CodeGeneratingComponentRenderer.dp(this.ao(c, true));
491
+ let e = CodeGeneratingComponentRenderer.dp(this.ap(c, true));
484
492
  let f = e;
485
493
  if (f != "null" && !stringStartsWith(f, "this.")) {
486
494
  f = "this." + f;
487
495
  }
488
- this.e.k(CodeGeneratingComponentRenderer.dp(this.ac) + "." + b + " = " + f + ";");
496
+ this.e.k(CodeGeneratingComponentRenderer.dp(this.ad) + "." + b + " = " + f + ";");
489
497
  return;
490
498
  }
491
499
  if (a > 0) {
@@ -499,19 +507,56 @@ export let BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/
499
507
  this.h.j(b);
500
508
  this.h.j("=");
501
509
  this.h.j("\"");
502
- this.h.j(this.ao(c, true));
510
+ this.h.j(this.ap(c, true));
503
511
  this.h.j("\"");
504
512
  }
505
513
  if (b == "Name") {
506
514
  this.h.k("");
507
- this.h.j("@ref=\"" + CodeGeneratingComponentRenderer.dp(this.ao(c, true)) + "\"");
515
+ this.h.j("@ref=\"" + CodeGeneratingComponentRenderer.dp(this.ap(c, true)) + "\"");
508
516
  }
509
517
  }
510
- ah(a) {
518
+ ai(a) {
511
519
  let b = a.b != null ? a.b.specificType + "." : "";
512
520
  return b + (a.c != null ? a.c.toString() : "");
513
521
  }
514
- x(a) {
522
+ ap(a, b) {
523
+ if (a.b == null) {
524
+ return a.c;
525
+ }
526
+ if (typeCast(CodeGenerationSpecialValue.$, a.c) !== null) {
527
+ a.c = this.y(a);
528
+ }
529
+ switch (a.b.knownType) {
530
+ case 11:
531
+ {
532
+ let c = a.c;
533
+ return "@(new Point(" + c.x + ", " + c.y + "))";
534
+ }
535
+ case 14:
536
+ {
537
+ let d = a.c;
538
+ return "@(new Rect(" + d.left + ", " + d.top + ", " + d.width + ", " + d.height + "))";
539
+ }
540
+ case 12:
541
+ {
542
+ let e = a.c;
543
+ return "@(new Size(" + e.width + ", " + e.height + "))";
544
+ }
545
+ case 17:
546
+ if (a.c == null) {
547
+ return "null";
548
+ }
549
+ if (typeof a.c === 'string') {
550
+ return "@(\"" + a.c.toString() + "\")";
551
+ }
552
+ if (typeCast(Boolean_$type, a.c) !== null) {
553
+ return a.c ? "true" : "false";
554
+ }
555
+ return a.c.toString();
556
+ }
557
+ return super.ap(a, b);
558
+ }
559
+ y(a) {
515
560
  let b = a.c;
516
561
  switch (b.a) {
517
562
  case 3: return b.b;
@@ -521,21 +566,21 @@ export let BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/
521
566
  }
522
567
  return b.b;
523
568
  }
524
- al() {
569
+ am() {
525
570
  return "@null";
526
571
  }
527
- ag(a) {
572
+ ah(a) {
528
573
  return CodeGeneratingComponentRenderer.dp(CodeGeneratingComponentRenderer.dp(a.a.e));
529
574
  }
530
- bc(a) {
575
+ bd(a) {
531
576
  a = stringReplace(a, "-", "_");
532
577
  return CodeGeneratingComponentRenderer.dq(a);
533
578
  }
534
- am(a) {
535
- this.a7(a);
579
+ an(a) {
580
+ this.a8(a);
536
581
  return CodeGeneratingComponentRenderer.dq(a.a.e);
537
582
  }
538
- a0(a, b, c, d) {
583
+ a1(a, b, c, d) {
539
584
  if (c.b.knownType == 9) {
540
585
  let e = typeCast(IList_$type, c.c);
541
586
  if (e != null) {
@@ -554,7 +599,7 @@ export let BlazorRazorCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/
554
599
  }
555
600
  }
556
601
  }
557
- get_aq() {
602
+ get_ar() {
558
603
  return "Igb";
559
604
  }
560
605
  }
@@ -569,7 +614,7 @@ export let BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter = /*@__PUR
569
614
  constructor(a, b) {
570
615
  super(a, b);
571
616
  }
572
- get_r() {
617
+ get_s() {
573
618
  return false;
574
619
  }
575
620
  }
@@ -583,10 +628,10 @@ export let ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/
583
628
  class ReactMarkupCodeGeneratingComponentRendererCodeEmitter extends CodeGeneratingComponentRendererCodeEmitter {
584
629
  constructor(a, b) {
585
630
  super(a, b);
586
- this.a8 = new HashSet$1(String_$type, 0);
587
631
  this.a9 = new HashSet$1(String_$type, 0);
632
+ this.ba = new HashSet$1(String_$type, 0);
588
633
  }
589
- ae(a) {
634
+ af(a) {
590
635
  if (a.c == null) {
591
636
  return "{null}";
592
637
  }
@@ -601,43 +646,43 @@ export let ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/
601
646
  c += "]";
602
647
  return c;
603
648
  }
604
- get_q() {
649
+ get_r() {
605
650
  return true;
606
651
  }
607
- get_aq() {
652
+ get_ar() {
608
653
  return "Igr";
609
654
  }
610
- at(a) {
611
- super.at(a);
612
- this.h.k("<" + this.bb(a) + "");
655
+ au(a) {
656
+ super.au(a);
657
+ this.h.k("<" + this.bc(a) + "");
613
658
  this.h.h();
614
- if (!this.a8.contains(this.ac)) {
615
- this.a8.add_1(this.ac);
616
- if (!this.a9.contains(this.ad)) {
617
- this.a9.add_1(this.ad);
618
- this.as(this.ad);
619
- }
620
- this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.ac) + ": " + this.ad);
621
- if (this.p) {
622
- this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.ac) + "Ref(r: " + this.ad + ") {");
659
+ if (!this.ba.contains(this.ae)) {
660
+ this.ba.add_1(this.ae);
661
+ this.at(this.ae);
662
+ }
663
+ if (!this.a9.contains(this.ad)) {
664
+ this.a9.add_1(this.ad);
665
+ this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.ad) + ": " + this.ae);
666
+ if (this.q) {
667
+ this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.ad) + "Ref(r: " + this.ae + ") {");
623
668
  this.f.h();
624
- this.f.k("this." + CodeGeneratingComponentRenderer.dp(this.ac) + " = r;");
669
+ this.f.k("this." + CodeGeneratingComponentRenderer.dp(this.ad) + " = r;");
625
670
  this.f.k("this.setState({});");
626
671
  this.f.f();
627
672
  this.f.k("}");
628
- this.g.k("this." + CodeGeneratingComponentRenderer.dp(this.ac) + "Ref = " + "this." + CodeGeneratingComponentRenderer.dp(this.ac) + "Ref.bind(this);");
673
+ this.g.k("this." + CodeGeneratingComponentRenderer.dp(this.ad) + "Ref = " + "this." + CodeGeneratingComponentRenderer.dp(this.ad) + "Ref.bind(this);");
629
674
  }
630
675
  }
631
676
  }
632
- bb(a) {
677
+ bc(a) {
633
678
  if (stringEndsWith(a, "Component")) {
634
679
  a = a.substr(0, a.length - ("Component").length);
635
680
  }
636
681
  return CodeGeneratingComponentRenderer.dq(a);
637
682
  }
638
- a6() {
639
- if (!this.p && !this.m) {
640
- let a = this.ba();
683
+ a7() {
684
+ if (!this.q && !this.m) {
685
+ let a = this.bb();
641
686
  this.h.k("");
642
687
  this.h.k("name=\"" + a + "\"");
643
688
  }
@@ -645,31 +690,31 @@ export let ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/
645
690
  this.h.k(">");
646
691
  this.h.h();
647
692
  }
648
- ba() {
649
- let a = CodeGeneratingComponentRenderer.dp(stringReplace(stringReplace(this.ad, this.aq, ""), "Component", ""));
650
- a = this.j.r(a);
693
+ bb() {
694
+ let a = CodeGeneratingComponentRenderer.dp(stringReplace(stringReplace(this.ae, this.ar, ""), "Component", ""));
695
+ a = this.j.t(a);
651
696
  return a;
652
697
  }
653
- ai(a) {
698
+ aj(a) {
654
699
  if (!stringIsNullOrEmpty(a.a.e)) {
655
- this.a7(a);
656
- if (!this.a8.contains(a.a.e)) {
700
+ this.a8(a);
701
+ if (!this.a9.contains(a.a.e)) {
657
702
  this.g.k("this." + CodeGeneratingComponentRenderer.dp(a.a.e) + " = " + "this." + CodeGeneratingComponentRenderer.dp(a.a.e) + ".bind(this);");
658
703
  }
659
704
  return "this." + CodeGeneratingComponentRenderer.dp(a.a.e);
660
705
  }
661
- return this.al();
706
+ return this.am();
662
707
  }
663
- a1(a) {
708
+ a2(a) {
664
709
  this.h.f();
665
- this.h.k("</" + this.bb(a) + ">");
666
- super.a1(a);
710
+ this.h.k("</" + this.bc(a) + ">");
711
+ super.a2(a);
667
712
  }
668
- az(a, b, c, d) {
713
+ a0(a, b, c, d) {
669
714
  let e = CodeGeneratingComponentRenderer.dp(b);
670
- let f = this.ao(c, true);
715
+ let f = this.ap(c, true);
671
716
  if (c.b != null && d.h(c.b.owningType, CodeGeneratingComponentRenderer.dq(c.b.propertyName)) && this.n(c)) {
672
- this.a7(c);
717
+ this.a8(c);
673
718
  if (a > 0) {
674
719
  this.h.k("");
675
720
  }
@@ -681,10 +726,10 @@ export let ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/
681
726
  }
682
727
  return;
683
728
  }
684
- if (!(e == "name") || !this.p) {
729
+ if (!(e == "name") || !this.q) {
685
730
  let g = (c.b != null && c.b.knownType == 10);
686
731
  if (this.n(c) || g) {
687
- this.a7(c);
732
+ this.a8(c);
688
733
  f = "{" + f + "}";
689
734
  }
690
735
  if (a > 0) {
@@ -702,15 +747,15 @@ export let ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/
702
747
  a++;
703
748
  }
704
749
  if (e == "name") {
705
- if (this.p) {
750
+ if (this.q) {
706
751
  if (a > 0) {
707
752
  this.h.k("");
708
753
  }
709
- this.h.j("ref={this." + CodeGeneratingComponentRenderer.dp(this.ao(c, true)) + "Ref}");
754
+ this.h.j("ref={this." + CodeGeneratingComponentRenderer.dp(this.ap(c, true)) + "Ref}");
710
755
  }
711
756
  }
712
757
  }
713
- x(a) {
758
+ y(a) {
714
759
  let b = a.c;
715
760
  switch (b.a) {
716
761
  case 3: return b.b;
@@ -720,16 +765,16 @@ export let ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/
720
765
  }
721
766
  return b.b;
722
767
  }
723
- al() {
768
+ am() {
724
769
  return "null";
725
770
  }
726
- ag(a) {
771
+ ah(a) {
727
772
  return "this." + CodeGeneratingComponentRenderer.dp(a.a.e);
728
773
  }
729
- am(a) {
774
+ an(a) {
730
775
  return "this." + CodeGeneratingComponentRenderer.dp(a.a.e);
731
776
  }
732
- a0(a, b, c, d) {
777
+ a1(a, b, c, d) {
733
778
  if (c.b.knownType == 9) {
734
779
  let e = typeCast(IList_$type, c.c);
735
780
  if (e != null) {
@@ -748,10 +793,10 @@ export let ReactMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/
748
793
  }
749
794
  }
750
795
  }
751
- ax(a, b) {
752
- super.ax(a, b);
796
+ ay(a, b) {
797
+ super.ay(a, b);
753
798
  for (let c of fromEnum(a)) {
754
- b.addPackageImport("igniteui-react-" + this.ap, c);
799
+ b.addPackageImport("igniteui-react-" + this.aq, c);
755
800
  }
756
801
  }
757
802
  }
@@ -777,11 +822,11 @@ export let WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__
777
822
  class WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter extends CodeGeneratingComponentRendererCodeEmitter {
778
823
  constructor(a, b) {
779
824
  super(a, b);
780
- this.ba = 0;
781
- this.a8 = new HashSet$1(String_$type, 0);
825
+ this.bb = 0;
782
826
  this.a9 = new HashSet$1(String_$type, 0);
827
+ this.ba = new HashSet$1(String_$type, 0);
783
828
  }
784
- ae(a) {
829
+ af(a) {
785
830
  if (a.c == null) {
786
831
  return "null";
787
832
  }
@@ -795,79 +840,79 @@ export let WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__
795
840
  }
796
841
  return c;
797
842
  }
798
- get_q() {
843
+ get_r() {
799
844
  return true;
800
845
  }
801
- at(a) {
802
- super.at(a);
803
- this.h.k("<" + this.bb(a) + "");
804
- if (!this.a8.contains(this.ac)) {
805
- this.a8.add_1(this.ac);
806
- if (!this.a9.contains(this.ad)) {
807
- this.a9.add_1(this.ad);
808
- this.as(this.ad);
809
- }
810
- this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.ac) + ": " + this.ad);
846
+ au(a) {
847
+ super.au(a);
848
+ this.h.k("<" + this.bc(a) + "");
849
+ if (!this.a9.contains(this.ad)) {
850
+ this.a9.add_1(this.ad);
851
+ if (!this.ba.contains(this.ae)) {
852
+ this.ba.add_1(this.ae);
853
+ this.at(this.ae);
854
+ }
855
+ this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.ad) + ": " + this.ae);
811
856
  if (!this.m) {
812
- if (this.p) {
813
- this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ac) + " = this." + CodeGeneratingComponentRenderer.dp(this.ac) + " = document.querySelector('" + CodeGeneratingComponentRenderer.dr(stringReplace(this.ad, "Component", "")) + "') as " + this.ad + ";");
857
+ if (this.q) {
858
+ this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + " = document.querySelector('" + CodeGeneratingComponentRenderer.dr(stringReplace(this.ae, "Component", "")) + "') as " + this.ae + ";");
814
859
  }
815
860
  }
816
861
  else {
817
- this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ac) + " = this." + CodeGeneratingComponentRenderer.dp(this.ac) + " = document.getElementById('" + this.ac + "') as " + this.ad + ";");
862
+ this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + " = document.getElementById('" + this.ad + "') as " + this.ae + ";");
818
863
  }
819
864
  }
820
865
  }
821
- bb(a) {
866
+ bc(a) {
822
867
  if (stringEndsWith(a, "Component")) {
823
868
  a = a.substr(0, a.length - ("Component").length);
824
869
  }
825
870
  return CodeGeneratingComponentRenderer.dr(a);
826
871
  }
827
- a6() {
872
+ a7() {
828
873
  this.h.k(">");
829
874
  this.h.h();
830
875
  }
831
- a1(a) {
876
+ a2(a) {
832
877
  this.h.f();
833
- this.h.k("</" + this.bb(a) + ">");
834
- super.a1(a);
878
+ this.h.k("</" + this.bc(a) + ">");
879
+ super.a2(a);
835
880
  }
836
- get_aq() {
881
+ get_ar() {
837
882
  return "Igc";
838
883
  }
839
- ax(a, b) {
840
- super.ax(a, b);
884
+ ay(a, b) {
885
+ super.ay(a, b);
841
886
  for (let c of fromEnum(a)) {
842
- b.addPackageImport("igniteui-webcomponents-" + this.ap, c);
887
+ b.addPackageImport("igniteui-webcomponents-" + this.aq, c);
843
888
  }
844
889
  }
845
- az(a, b, c, d) {
890
+ a0(a, b, c, d) {
846
891
  let e = CodeGeneratingComponentRenderer.dp(b);
847
892
  if (this.n(c)) {
848
- this.a7(c);
849
- if (!this.a8.contains(this.ac)) {
850
- this.a8.add_1(this.ac);
851
- if (!this.a9.contains(this.ad)) {
852
- this.a9.add_1(this.ad);
853
- this.as(this.ad);
854
- }
855
- this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.ac) + ": " + this.ad);
893
+ this.a8(c);
894
+ if (!this.a9.contains(this.ad)) {
895
+ this.a9.add_1(this.ad);
896
+ if (!this.ba.contains(this.ae)) {
897
+ this.ba.add_1(this.ae);
898
+ this.at(this.ae);
899
+ }
900
+ this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.ad) + ": " + this.ae);
856
901
  if (!this.m) {
857
- if (this.p) {
858
- this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ac) + " = this." + CodeGeneratingComponentRenderer.dp(this.ac) + " = document.querySelector('" + CodeGeneratingComponentRenderer.dr(stringReplace(this.ad, "Component", "")) + "') as " + this.ad + ";");
902
+ if (this.q) {
903
+ this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + " = document.querySelector('" + CodeGeneratingComponentRenderer.dr(stringReplace(this.ae, "Component", "")) + "') as " + this.ae + ";");
859
904
  }
860
905
  }
861
906
  else {
862
- this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ac) + " = this." + CodeGeneratingComponentRenderer.dp(this.ac) + " = document.getElementById('" + this.ac + "') as " + this.ad + ";");
907
+ this.g.k("var " + CodeGeneratingComponentRenderer.dp(this.ad) + " = this." + CodeGeneratingComponentRenderer.dp(this.ad) + " = document.getElementById('" + this.ad + "') as " + this.ae + ";");
863
908
  }
864
909
  }
865
- let f = CodeGeneratingComponentRenderer.dp(this.ao(c, true));
910
+ let f = CodeGeneratingComponentRenderer.dp(this.ap(c, true));
866
911
  let g = f;
867
912
  if (g != "null" && !stringStartsWith(g, "this.")) {
868
913
  g = "this." + g;
869
914
  }
870
- this.e.k(CodeGeneratingComponentRenderer.dp(this.ac) + "." + e + " = " + g);
915
+ this.e.k(CodeGeneratingComponentRenderer.dp(this.ad) + "." + e + " = " + g);
871
916
  return;
872
917
  }
873
918
  if (a > 0) {
@@ -876,14 +921,14 @@ export let WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__
876
921
  this.h.j(CodeGeneratingComponentRenderer.dr(e));
877
922
  this.h.j("=");
878
923
  this.h.j("\"");
879
- this.h.j(this.ao(c, true));
924
+ this.h.j(this.ap(c, true));
880
925
  this.h.j("\"");
881
926
  if (e == "name") {
882
927
  this.h.k("");
883
- this.h.j("id =\"" + this.ao(c, true) + "\"");
928
+ this.h.j("id =\"" + this.ap(c, true) + "\"");
884
929
  }
885
930
  }
886
- x(a) {
931
+ y(a) {
887
932
  let b = a.c;
888
933
  switch (b.a) {
889
934
  case 3: return b.b;
@@ -893,26 +938,26 @@ export let WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter = /*@__
893
938
  }
894
939
  return b.b;
895
940
  }
896
- al() {
941
+ am() {
897
942
  return "null";
898
943
  }
899
- ag(a) {
944
+ ah(a) {
900
945
  return CodeGeneratingComponentRenderer.dp(a.a.e);
901
946
  }
902
- am(a) {
947
+ an(a) {
903
948
  return CodeGeneratingComponentRenderer.dp(a.a.e);
904
949
  }
905
- ai(a) {
950
+ aj(a) {
906
951
  if (!stringIsNullOrEmpty(a.a.e)) {
907
- this.a7(a);
908
- if (!this.a8.contains(a.a.e)) {
952
+ this.a8(a);
953
+ if (!this.a9.contains(a.a.e)) {
909
954
  this.g.k("this." + CodeGeneratingComponentRenderer.dp(a.a.e) + " = " + "this." + CodeGeneratingComponentRenderer.dp(a.a.e) + ".bind(this);");
910
955
  }
911
956
  return "this." + CodeGeneratingComponentRenderer.dp(a.a.e);
912
957
  }
913
- return this.al();
958
+ return this.am();
914
959
  }
915
- a0(a, b, c, d) {
960
+ a1(a, b, c, d) {
916
961
  if (c.b.knownType == 9) {
917
962
  let e = typeCast(IList_$type, c.c);
918
963
  if (e != null) {
@@ -1021,25 +1066,25 @@ export let TSCodeGeneratingComponentRendererDataEmitter = /*@__PURE__*/ (() => {
1021
1066
  }
1022
1067
  this.g.k("private " + this.ao(a) + ": " + f + " = " + g + ";");
1023
1068
  if (b == 2 || (c != null && c.isAsync)) {
1024
- this.g.k("private " + this.ao(a) + "_fetching: boolean = false;");
1069
+ this.g.k("private " + this.ao(a) + "Fetching: boolean = false;");
1025
1070
  }
1026
1071
  this.g.k("public get " + this.u(a) + "(): " + f + " {");
1027
1072
  this.g.h();
1028
1073
  if (c != null && c.isAsync) {
1029
- this.g.k("if (this." + this.ao(a) + " == null && !this." + this.ao(a) + "_fetching)");
1074
+ this.g.k("if (this." + this.ao(a) + " == null && !this." + this.ao(a) + "Fetching)");
1030
1075
  this.g.k("{");
1031
1076
  this.g.h();
1032
- this.g.k("this." + this.ao(a) + "_fetching = true;");
1077
+ this.g.k("this." + this.ao(a) + "Fetching = true;");
1033
1078
  this.g.k("( async () => { this." + this.ao(a) + " = await (await " + this.v(a, false) + ".fetch()); " + e + " })();");
1034
1079
  this.g.f();
1035
1080
  this.g.k("}");
1036
1081
  }
1037
1082
  else {
1038
1083
  if (b == 2) {
1039
- this.g.k("if (this." + this.ao(a) + " == null && !this." + this.ao(a) + "_fetching)");
1084
+ this.g.k("if (this." + this.ao(a) + " == null && !this." + this.ao(a) + "Fetching)");
1040
1085
  this.g.k("{");
1041
1086
  this.g.h();
1042
- this.g.k(this.ao(a) + "_fetching = true;");
1087
+ this.g.k(this.ao(a) + "Fetching = true;");
1043
1088
  this.g.k("( async () => { this." + this.ao(a) + " = await (await fetch('" + d + "')).json(); " + e + " })();");
1044
1089
  this.g.f();
1045
1090
  this.g.k("}");
@@ -1239,8 +1284,11 @@ export let AngularTemplateCodeGeneratingComponentRendererCodeEmitter = /*@__PURE
1239
1284
  class AngularTemplateCodeGeneratingComponentRendererCodeEmitter extends CodeGeneratingComponentRendererCodeEmitter {
1240
1285
  constructor(a, b) {
1241
1286
  super(a, b);
1287
+ this.bb = 0;
1288
+ this.a9 = new HashSet$1(String_$type, 0);
1289
+ this.ba = new HashSet$1(String_$type, 0);
1242
1290
  }
1243
- ae(a) {
1291
+ af(a) {
1244
1292
  if (a.c == null) {
1245
1293
  return "null";
1246
1294
  }
@@ -1254,36 +1302,56 @@ export let AngularTemplateCodeGeneratingComponentRendererCodeEmitter = /*@__PURE
1254
1302
  }
1255
1303
  return c;
1256
1304
  }
1257
- get_q() {
1305
+ get_r() {
1258
1306
  return true;
1259
1307
  }
1260
- get_aq() {
1308
+ get_ar() {
1261
1309
  return "Igx";
1262
1310
  }
1263
- at(a) {
1264
- super.at(a);
1265
- this.h.k("<" + this.a8(a) + "");
1311
+ au(a) {
1312
+ super.au(a);
1313
+ this.h.k("<" + this.bc(a) + "");
1314
+ if (!this.a9.contains(this.ad)) {
1315
+ this.a9.add_1(this.ad);
1316
+ if (!this.ba.contains(this.ae)) {
1317
+ this.ba.add_1(this.ae);
1318
+ this.at(this.ae);
1319
+ }
1320
+ this.f.k("@ViewChild(\"" + CodeGeneratingComponentRenderer.dp(this.ad) + "\", { static: true } )");
1321
+ this.f.k("private " + CodeGeneratingComponentRenderer.dp(this.ad) + ": " + this.ae);
1322
+ }
1266
1323
  }
1267
- a8(a) {
1324
+ ay(a, b) {
1325
+ super.ay(a, b);
1326
+ for (let c of fromEnum(a)) {
1327
+ b.addPackageImport("igniteui-angular-" + this.aq, c);
1328
+ }
1329
+ }
1330
+ bc(a) {
1268
1331
  if (stringEndsWith(a, "Component")) {
1269
1332
  a = a.substr(0, a.length - ("Component").length);
1270
1333
  }
1271
1334
  return CodeGeneratingComponentRenderer.dr(a);
1272
1335
  }
1273
- a6() {
1336
+ a7() {
1274
1337
  this.h.k(">");
1275
1338
  this.h.h();
1276
1339
  }
1277
- a1(a) {
1340
+ a2(a) {
1278
1341
  this.h.f();
1279
- this.h.k("</" + this.a8(a) + ">");
1280
- super.a1(a);
1342
+ this.h.k("</" + this.bc(a) + ">");
1343
+ super.a2(a);
1281
1344
  }
1282
- az(a, b, c, d) {
1345
+ a0(a, b, c, d) {
1283
1346
  let e = CodeGeneratingComponentRenderer.dp(b);
1284
1347
  if (this.n(c)) {
1285
- this.a7(c);
1286
- e = "[" + e + "]";
1348
+ this.a8(c);
1349
+ if (this.p(c)) {
1350
+ e = "(" + e + ")";
1351
+ }
1352
+ else {
1353
+ e = "[" + e + "]";
1354
+ }
1287
1355
  }
1288
1356
  if (a > 0) {
1289
1357
  this.h.k("");
@@ -1291,21 +1359,21 @@ export let AngularTemplateCodeGeneratingComponentRendererCodeEmitter = /*@__PURE
1291
1359
  this.h.j(e);
1292
1360
  this.h.j("=");
1293
1361
  this.h.j("\"");
1294
- this.h.j(this.ao(c, true));
1362
+ this.h.j(this.ap(c, true));
1295
1363
  this.h.j("\"");
1296
1364
  if (e == "name") {
1297
1365
  this.h.k("");
1298
- this.h.j("#" + CodeGeneratingComponentRenderer.dp(this.ao(c, true)));
1366
+ this.h.j("#" + CodeGeneratingComponentRenderer.dp(this.ap(c, true)));
1299
1367
  }
1300
1368
  }
1301
- ai(a) {
1369
+ aj(a) {
1302
1370
  if (!stringIsNullOrEmpty(a.a.e)) {
1303
- this.a7(a);
1371
+ this.a8(a);
1304
1372
  return "this." + CodeGeneratingComponentRenderer.dp(a.a.e) + "($event)";
1305
1373
  }
1306
- return this.al();
1374
+ return this.am();
1307
1375
  }
1308
- x(a) {
1376
+ y(a) {
1309
1377
  let b = a.c;
1310
1378
  switch (b.a) {
1311
1379
  case 3: return b.b;
@@ -1315,16 +1383,16 @@ export let AngularTemplateCodeGeneratingComponentRendererCodeEmitter = /*@__PURE
1315
1383
  }
1316
1384
  return b.b;
1317
1385
  }
1318
- al() {
1386
+ am() {
1319
1387
  return "null";
1320
1388
  }
1321
- ag(a) {
1389
+ ah(a) {
1322
1390
  return CodeGeneratingComponentRenderer.dp(a.a.e);
1323
1391
  }
1324
- am(a) {
1392
+ an(a) {
1325
1393
  return CodeGeneratingComponentRenderer.dp(a.a.e);
1326
1394
  }
1327
- a0(a, b, c, d) {
1395
+ a1(a, b, c, d) {
1328
1396
  if (c.b.knownType == 9) {
1329
1397
  let e = typeCast(IList_$type, c.c);
1330
1398
  if (e != null) {
@@ -1635,10 +1703,10 @@ export let WPFXamlCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (()
1635
1703
  constructor(a, b) {
1636
1704
  super(a, b);
1637
1705
  }
1638
- get_r() {
1706
+ get_s() {
1639
1707
  return false;
1640
1708
  }
1641
- ae(a) {
1709
+ af(a) {
1642
1710
  if (a.c == null) {
1643
1711
  return "null";
1644
1712
  }
@@ -1652,20 +1720,20 @@ export let WPFXamlCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (()
1652
1720
  }
1653
1721
  return c;
1654
1722
  }
1655
- at(a) {
1656
- super.at(a);
1723
+ au(a) {
1724
+ super.au(a);
1657
1725
  this.h.k("<ig:" + a + "");
1658
1726
  }
1659
- a6() {
1727
+ a7() {
1660
1728
  this.h.k(">");
1661
1729
  this.h.h();
1662
1730
  }
1663
- a1(a) {
1731
+ a2(a) {
1664
1732
  this.h.f();
1665
1733
  this.h.k("</ig:" + a + ">");
1666
- super.a1(a);
1734
+ super.a2(a);
1667
1735
  }
1668
- az(a, b, c, d) {
1736
+ a0(a, b, c, d) {
1669
1737
  if (b == "Label" && c.b != null && stringContains(c.b.owningType, "Axis")) {
1670
1738
  if (c.c != null && stringContains(c.c, "{")) {
1671
1739
  if (a > 0) {
@@ -1674,7 +1742,7 @@ export let WPFXamlCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (()
1674
1742
  this.h.j(b);
1675
1743
  this.h.j("=");
1676
1744
  this.h.j("\"");
1677
- this.h.j("{}" + this.ao(c, true));
1745
+ this.h.j("{}" + this.ap(c, true));
1678
1746
  this.h.j("\"");
1679
1747
  return;
1680
1748
  }
@@ -1685,10 +1753,10 @@ export let WPFXamlCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (()
1685
1753
  this.h.j(b);
1686
1754
  this.h.j("=");
1687
1755
  this.h.j("\"");
1688
- this.h.j(this.ao(c, true));
1756
+ this.h.j(this.ap(c, true));
1689
1757
  this.h.j("\"");
1690
1758
  }
1691
- x(a) {
1759
+ y(a) {
1692
1760
  let b = a.c;
1693
1761
  switch (b.a) {
1694
1762
  case 3: return b.b;
@@ -1698,24 +1766,24 @@ export let WPFXamlCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (()
1698
1766
  }
1699
1767
  return b.b;
1700
1768
  }
1701
- al() {
1769
+ am() {
1702
1770
  return "{x:Null}";
1703
1771
  }
1704
- ag(a) {
1772
+ ah(a) {
1705
1773
  return "{Binding ElementName=" + a.a.e + "}";
1706
1774
  }
1707
- a8(a) {
1775
+ a9(a) {
1708
1776
  a = stringReplace(a, "-", "_");
1709
1777
  return CodeGeneratingComponentRenderer.dq(a);
1710
1778
  }
1711
- am(a) {
1712
- this.a7(a);
1713
- return "{Binding " + this.a8(a.a.e) + "}";
1779
+ an(a) {
1780
+ this.a8(a);
1781
+ return "{Binding " + this.a9(a.a.e) + "}";
1714
1782
  }
1715
- a0(a, b, c, d) {
1783
+ a1(a, b, c, d) {
1716
1784
  this.h.j("<ig:");
1717
1785
  {
1718
- this.h.j(this.ad);
1786
+ this.h.j(this.ae);
1719
1787
  this.h.j(".");
1720
1788
  }
1721
1789
  this.h.j(b);
@@ -1741,13 +1809,13 @@ export let WPFXamlCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (()
1741
1809
  this.h.f();
1742
1810
  this.h.j("</ig:");
1743
1811
  {
1744
- this.h.j(this.ad);
1812
+ this.h.j(this.ae);
1745
1813
  this.h.j(".");
1746
1814
  }
1747
1815
  this.h.j(b);
1748
1816
  this.h.k(">");
1749
1817
  }
1750
- get_aq() {
1818
+ get_ar() {
1751
1819
  return "Xam";
1752
1820
  }
1753
1821
  }
@@ -1762,7 +1830,7 @@ export let WPFCodeBehindCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__
1762
1830
  constructor(a, b) {
1763
1831
  super(a, b);
1764
1832
  }
1765
- get_r() {
1833
+ get_s() {
1766
1834
  return false;
1767
1835
  }
1768
1836
  }
@@ -1957,7 +2025,7 @@ export let CodeGeneratingComponentRenderer = /*@__PURE__*/ (() => {
1957
2025
  }
1958
2026
  if (this.dk != null) {
1959
2027
  let i = this.dg(this.di, b);
1960
- i.l(this.dk);
2028
+ i.m(this.dk);
1961
2029
  }
1962
2030
  if (this.dm != null) {
1963
2031
  if (typeCast(JsonDictionaryObject.$, this.dm) !== null) {
@@ -2052,10 +2120,10 @@ export let CodeGenerationContainer = /*@__PURE__*/ (() => {
2052
2120
  h.p(i, true);
2053
2121
  let j = i.toString();
2054
2122
  a.addContainerResult(this.id, j);
2055
- i.av(d);
2056
- i.ay(e);
2057
- i.au(f);
2058
- i.aw(g);
2123
+ i.aw(d);
2124
+ i.az(e);
2125
+ i.av(f);
2126
+ i.ax(g);
2059
2127
  }
2060
2128
  a.addContainerResult("bindingFields", d.toString());
2061
2129
  a.addContainerResult("bindingInit", e.toString());
@@ -2137,27 +2205,27 @@ export let CodeGenerationItemBuilder = /*@__PURE__*/ (() => {
2137
2205
  let c = this.m();
2138
2206
  if (b) {
2139
2207
  let d = this.n();
2140
- a.ap = d;
2208
+ a.aq = d;
2141
2209
  }
2142
2210
  let e = false;
2143
2211
  let f = false;
2144
2212
  if (this.f.containsKey("Name")) {
2145
2213
  e = true;
2146
- a.a5(this.f.item("Name").c);
2214
+ a.a6(this.f.item("Name").c);
2147
2215
  }
2148
2216
  else if (this.f.containsKey("name")) {
2149
2217
  e = true;
2150
- a.a5(this.f.item("name").c);
2218
+ a.a6(this.f.item("name").c);
2151
2219
  }
2152
2220
  else {
2153
2221
  if (this.e(a)) {
2154
2222
  f = true;
2155
- a.a4(c);
2156
- if (a.r) {
2223
+ a.a5(c);
2224
+ if (a.s) {
2157
2225
  this.g.add("name");
2158
2226
  this.f.addItem("name", ((() => {
2159
2227
  let $ret = new CodeGenerationItemBuilderPropertyInfo();
2160
- $ret.c = a.ac;
2228
+ $ret.c = a.ad;
2161
2229
  return $ret;
2162
2230
  })()));
2163
2231
  }
@@ -2165,13 +2233,13 @@ export let CodeGenerationItemBuilder = /*@__PURE__*/ (() => {
2165
2233
  this.g.add("Name");
2166
2234
  this.f.addItem("Name", ((() => {
2167
2235
  let $ret = new CodeGenerationItemBuilderPropertyInfo();
2168
- $ret.c = a.ac;
2236
+ $ret.c = a.ad;
2169
2237
  return $ret;
2170
2238
  })()));
2171
2239
  }
2172
2240
  }
2173
2241
  }
2174
- a.at(c);
2242
+ a.au(c);
2175
2243
  let g = 0;
2176
2244
  for (let h of fromEnum(this.g)) {
2177
2245
  let i = this.f.item(h);
@@ -2179,11 +2247,11 @@ export let CodeGenerationItemBuilder = /*@__PURE__*/ (() => {
2179
2247
  continue;
2180
2248
  }
2181
2249
  if (this.d(h, i)) {
2182
- a.az(g, h, i, this.c);
2250
+ a.a0(g, h, i, this.c);
2183
2251
  g++;
2184
2252
  }
2185
2253
  }
2186
- a.a6();
2254
+ a.a7();
2187
2255
  let j = 0;
2188
2256
  for (let k of fromEnum(this.g)) {
2189
2257
  let l = this.f.item(k);
@@ -2191,17 +2259,17 @@ export let CodeGenerationItemBuilder = /*@__PURE__*/ (() => {
2191
2259
  continue;
2192
2260
  }
2193
2261
  if (!this.d(k, l)) {
2194
- a.a0(j, k, l, this.c);
2262
+ a.a1(j, k, l, this.c);
2195
2263
  j++;
2196
2264
  }
2197
2265
  }
2198
- a.a1(c);
2266
+ a.a2(c);
2199
2267
  if (e) {
2200
- a.a3();
2268
+ a.a4();
2201
2269
  }
2202
2270
  else {
2203
2271
  if (f) {
2204
- a.a2();
2272
+ a.a3();
2205
2273
  }
2206
2274
  }
2207
2275
  }