igniteui-angular-core 13.2.0-beta.3 → 14.1.0

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 (92) hide show
  1. package/bundles/igniteui-angular-core.umd.js +1073 -807
  2. package/bundles/igniteui-angular-core.umd.min.js +1 -1
  3. package/esm2015/lib/BlazorCodeGeneratingComponentRendererModuleEmitter.js +9 -9
  4. package/esm2015/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +391 -322
  5. package/esm2015/lib/CodeGeneratingComponentRendererDataEmitter.js +2 -2
  6. package/esm2015/lib/CodeGeneratingComponentRendererHandlerEmitter.js +2 -2
  7. package/esm2015/lib/CodeGeneratingComponentRendererModuleEmitter.js +14 -11
  8. package/esm2015/lib/CodeGeneratingRendererResult.js +56 -44
  9. package/esm2015/lib/CodeGenerationFolderTemplate.js +41 -37
  10. package/esm2015/lib/ComponentRendererAdapter.js +3 -0
  11. package/esm2015/lib/ComponentRenderer_combined.js +1 -1
  12. package/esm2015/lib/DataGridPagerDescriptionModule.js +2 -0
  13. package/esm2015/lib/DescriptionSerializer.js +70 -56
  14. package/esm2015/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.js +24 -22
  15. package/esm2015/lib/FinancialChartDescriptionModule.js +2 -0
  16. package/esm2015/lib/IgcSliderBridge.js +38 -12
  17. package/esm2015/lib/NativeUIButton.js +2 -1
  18. package/esm2015/lib/NativeUICheckbox.js +2 -1
  19. package/esm2015/lib/NativeUIDropDown.js +2 -1
  20. package/esm2015/lib/NativeUIInput.js +2 -1
  21. package/esm2015/lib/NativeUIInputsFactory.js +1 -0
  22. package/esm2015/lib/NativeUISlider.js +26 -11
  23. package/esm2015/lib/PropertyEditorPropertyDescriptionChangedEventArgsDescription.js +8 -0
  24. package/esm2015/lib/PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata.js +1 -0
  25. package/esm2015/lib/StackedFragmentSeriesDescription.js +121 -121
  26. package/esm2015/lib/StackedFragmentSeriesDescriptionMetadata.js +1 -1
  27. package/esm2015/lib/TSCodeGeneratingComponentRendererModuleEmitter.js +36 -34
  28. package/esm2015/lib/WebDropdownGroupDescription.js +2 -10
  29. package/esm2015/lib/WebDropdownGroupDescriptionMetadata.js +0 -3
  30. package/esm2015/lib/WebTreeDescriptionModule.js +0 -4
  31. package/esm2015/lib/WebTreeItemDescription.js +14 -22
  32. package/esm2015/lib/WebTreeItemDescriptionMetadata.js +1 -2
  33. package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescription.js +3 -3
  34. package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +3 -1
  35. package/esm2015/lib/WebTreeSelectionOptionsEventDetailDescription.js +36 -0
  36. package/esm2015/lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata.js +38 -0
  37. package/esm2015/public_api.js +2 -0
  38. package/esm5/lib/BlazorCodeGeneratingComponentRendererModuleEmitter.js +9 -9
  39. package/esm5/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +458 -371
  40. package/esm5/lib/CodeGeneratingComponentRendererDataEmitter.js +2 -2
  41. package/esm5/lib/CodeGeneratingComponentRendererHandlerEmitter.js +2 -2
  42. package/esm5/lib/CodeGeneratingComponentRendererModuleEmitter.js +18 -11
  43. package/esm5/lib/CodeGeneratingRendererResult.js +95 -66
  44. package/esm5/lib/CodeGenerationFolderTemplate.js +40 -36
  45. package/esm5/lib/ComponentRendererAdapter.js +3 -0
  46. package/esm5/lib/ComponentRenderer_combined.js +1 -1
  47. package/esm5/lib/DataGridPagerDescriptionModule.js +2 -0
  48. package/esm5/lib/DescriptionSerializer.js +70 -56
  49. package/esm5/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.js +24 -22
  50. package/esm5/lib/FinancialChartDescriptionModule.js +2 -0
  51. package/esm5/lib/IgcSliderBridge.js +38 -12
  52. package/esm5/lib/NativeUIButton.js +2 -1
  53. package/esm5/lib/NativeUICheckbox.js +2 -1
  54. package/esm5/lib/NativeUIDropDown.js +2 -1
  55. package/esm5/lib/NativeUIInput.js +2 -1
  56. package/esm5/lib/NativeUIInputsFactory.js +1 -0
  57. package/esm5/lib/NativeUISlider.js +25 -6
  58. package/esm5/lib/PropertyEditorPropertyDescriptionChangedEventArgsDescription.js +14 -1
  59. package/esm5/lib/PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata.js +1 -0
  60. package/esm5/lib/StackedFragmentSeriesDescription.js +120 -120
  61. package/esm5/lib/StackedFragmentSeriesDescriptionMetadata.js +1 -1
  62. package/esm5/lib/TSCodeGeneratingComponentRendererModuleEmitter.js +36 -34
  63. package/esm5/lib/WebDropdownGroupDescription.js +1 -13
  64. package/esm5/lib/WebDropdownGroupDescriptionMetadata.js +0 -3
  65. package/esm5/lib/WebTreeDescriptionModule.js +0 -4
  66. package/esm5/lib/WebTreeItemDescription.js +13 -25
  67. package/esm5/lib/WebTreeItemDescriptionMetadata.js +1 -2
  68. package/esm5/lib/WebTreeSelectionOptionsEventArgsDescription.js +2 -2
  69. package/esm5/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +3 -1
  70. package/esm5/lib/WebTreeSelectionOptionsEventDetailDescription.js +46 -0
  71. package/esm5/lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata.js +42 -0
  72. package/esm5/public_api.js +2 -0
  73. package/fesm2015/igniteui-angular-core.js +947 -733
  74. package/fesm5/igniteui-angular-core.js +1072 -808
  75. package/lib/BlazorCodeGeneratingComponentRendererModuleEmitter.d.ts +3 -3
  76. package/lib/CodeGeneratingComponentRendererCodeEmitter_combined.d.ts +120 -114
  77. package/lib/CodeGeneratingComponentRendererModuleEmitter.d.ts +6 -5
  78. package/lib/CodeGeneratingRendererResult.d.ts +15 -12
  79. package/lib/DescriptionSerializer.d.ts +7 -6
  80. package/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.d.ts +7 -7
  81. package/lib/IgcSliderBridge.d.ts +7 -3
  82. package/lib/NativeUISlider.d.ts +9 -6
  83. package/lib/PropertyEditorPropertyDescriptionChangedEventArgsDescription.d.ts +3 -0
  84. package/lib/StackedFragmentSeriesDescription.d.ts +46 -46
  85. package/lib/TSCodeGeneratingComponentRendererModuleEmitter.d.ts +7 -7
  86. package/lib/WebDropdownGroupDescription.d.ts +0 -4
  87. package/lib/WebTreeItemDescription.d.ts +6 -9
  88. package/lib/WebTreeSelectionOptionsEventArgsDescription.d.ts +3 -3
  89. package/lib/WebTreeSelectionOptionsEventDetailDescription.d.ts +17 -0
  90. package/lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata.d.ts +13 -0
  91. package/package.json +4 -4
  92. 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) {
@@ -1004,6 +1049,9 @@ export let TSCodeGeneratingComponentRendererDataEmitter = /*@__PURE__*/ (() => {
1004
1049
  if (this.n.platform == 3) {
1005
1050
  e = "if ((this as any)._bind) { (this as any)._bind(); } ";
1006
1051
  }
1052
+ if (this.n.platform == 1) {
1053
+ e = "this._detector.markForCheck(); ";
1054
+ }
1007
1055
  let f = this.v(a, false);
1008
1056
  let g = "null";
1009
1057
  switch (b) {
@@ -1018,25 +1066,25 @@ export let TSCodeGeneratingComponentRendererDataEmitter = /*@__PURE__*/ (() => {
1018
1066
  }
1019
1067
  this.g.k("private " + this.ao(a) + ": " + f + " = " + g + ";");
1020
1068
  if (b == 2 || (c != null && c.isAsync)) {
1021
- this.g.k("private " + this.ao(a) + "_fetching: boolean = false;");
1069
+ this.g.k("private " + this.ao(a) + "Fetching: boolean = false;");
1022
1070
  }
1023
1071
  this.g.k("public get " + this.u(a) + "(): " + f + " {");
1024
1072
  this.g.h();
1025
1073
  if (c != null && c.isAsync) {
1026
- 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)");
1027
1075
  this.g.k("{");
1028
1076
  this.g.h();
1029
- this.g.k(this.ao(a) + "_fetching = true;");
1077
+ this.g.k("this." + this.ao(a) + "Fetching = true;");
1030
1078
  this.g.k("( async () => { this." + this.ao(a) + " = await (await " + this.v(a, false) + ".fetch()); " + e + " })();");
1031
1079
  this.g.f();
1032
1080
  this.g.k("}");
1033
1081
  }
1034
1082
  else {
1035
1083
  if (b == 2) {
1036
- 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)");
1037
1085
  this.g.k("{");
1038
1086
  this.g.h();
1039
- this.g.k(this.ao(a) + "_fetching = true;");
1087
+ this.g.k(this.ao(a) + "Fetching = true;");
1040
1088
  this.g.k("( async () => { this." + this.ao(a) + " = await (await fetch('" + d + "')).json(); " + e + " })();");
1041
1089
  this.g.f();
1042
1090
  this.g.k("}");
@@ -1083,7 +1131,6 @@ export let TSCodeGeneratingComponentRendererDataEmitter = /*@__PURE__*/ (() => {
1083
1131
  }
1084
1132
  x(a, b) {
1085
1133
  b.addPackageImport("./" + a, a);
1086
- b.addPackageImport("./" + a, a + "Item");
1087
1134
  }
1088
1135
  y(a, b) {
1089
1136
  b.addDefaultImport("./" + a, a);
@@ -1237,8 +1284,11 @@ export let AngularTemplateCodeGeneratingComponentRendererCodeEmitter = /*@__PURE
1237
1284
  class AngularTemplateCodeGeneratingComponentRendererCodeEmitter extends CodeGeneratingComponentRendererCodeEmitter {
1238
1285
  constructor(a, b) {
1239
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);
1240
1290
  }
1241
- ae(a) {
1291
+ af(a) {
1242
1292
  if (a.c == null) {
1243
1293
  return "null";
1244
1294
  }
@@ -1252,36 +1302,56 @@ export let AngularTemplateCodeGeneratingComponentRendererCodeEmitter = /*@__PURE
1252
1302
  }
1253
1303
  return c;
1254
1304
  }
1255
- get_q() {
1305
+ get_r() {
1256
1306
  return true;
1257
1307
  }
1258
- get_aq() {
1308
+ get_ar() {
1259
1309
  return "Igx";
1260
1310
  }
1261
- at(a) {
1262
- super.at(a);
1263
- 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
+ }
1264
1323
  }
1265
- 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) {
1266
1331
  if (stringEndsWith(a, "Component")) {
1267
1332
  a = a.substr(0, a.length - ("Component").length);
1268
1333
  }
1269
1334
  return CodeGeneratingComponentRenderer.dr(a);
1270
1335
  }
1271
- a6() {
1336
+ a7() {
1272
1337
  this.h.k(">");
1273
1338
  this.h.h();
1274
1339
  }
1275
- a1(a) {
1340
+ a2(a) {
1276
1341
  this.h.f();
1277
- this.h.k("</" + this.a8(a) + ">");
1278
- super.a1(a);
1342
+ this.h.k("</" + this.bc(a) + ">");
1343
+ super.a2(a);
1279
1344
  }
1280
- az(a, b, c, d) {
1345
+ a0(a, b, c, d) {
1281
1346
  let e = CodeGeneratingComponentRenderer.dp(b);
1282
1347
  if (this.n(c)) {
1283
- this.a7(c);
1284
- e = "[" + e + "]";
1348
+ this.a8(c);
1349
+ if (this.p(c)) {
1350
+ e = "(" + e + ")";
1351
+ }
1352
+ else {
1353
+ e = "[" + e + "]";
1354
+ }
1285
1355
  }
1286
1356
  if (a > 0) {
1287
1357
  this.h.k("");
@@ -1289,21 +1359,21 @@ export let AngularTemplateCodeGeneratingComponentRendererCodeEmitter = /*@__PURE
1289
1359
  this.h.j(e);
1290
1360
  this.h.j("=");
1291
1361
  this.h.j("\"");
1292
- this.h.j(this.ao(c, true));
1362
+ this.h.j(this.ap(c, true));
1293
1363
  this.h.j("\"");
1294
1364
  if (e == "name") {
1295
1365
  this.h.k("");
1296
- this.h.j("#" + CodeGeneratingComponentRenderer.dp(this.ao(c, true)));
1366
+ this.h.j("#" + CodeGeneratingComponentRenderer.dp(this.ap(c, true)));
1297
1367
  }
1298
1368
  }
1299
- ai(a) {
1369
+ aj(a) {
1300
1370
  if (!stringIsNullOrEmpty(a.a.e)) {
1301
- this.a7(a);
1371
+ this.a8(a);
1302
1372
  return "this." + CodeGeneratingComponentRenderer.dp(a.a.e) + "($event)";
1303
1373
  }
1304
- return this.al();
1374
+ return this.am();
1305
1375
  }
1306
- x(a) {
1376
+ y(a) {
1307
1377
  let b = a.c;
1308
1378
  switch (b.a) {
1309
1379
  case 3: return b.b;
@@ -1313,16 +1383,16 @@ export let AngularTemplateCodeGeneratingComponentRendererCodeEmitter = /*@__PURE
1313
1383
  }
1314
1384
  return b.b;
1315
1385
  }
1316
- al() {
1386
+ am() {
1317
1387
  return "null";
1318
1388
  }
1319
- ag(a) {
1389
+ ah(a) {
1320
1390
  return CodeGeneratingComponentRenderer.dp(a.a.e);
1321
1391
  }
1322
- am(a) {
1392
+ an(a) {
1323
1393
  return CodeGeneratingComponentRenderer.dp(a.a.e);
1324
1394
  }
1325
- a0(a, b, c, d) {
1395
+ a1(a, b, c, d) {
1326
1396
  if (c.b.knownType == 9) {
1327
1397
  let e = typeCast(IList_$type, c.c);
1328
1398
  if (e != null) {
@@ -1379,16 +1449,10 @@ export let DotNetCodeGeneratingComponentRendererDataEmitter = /*@__PURE__*/ (()
1379
1449
  a.k("using System.Collections.Generic;");
1380
1450
  if (!this.ak) {
1381
1451
  this.ak = true;
1382
- this.k.addUsing("using Data;");
1383
1452
  }
1384
- a.k("namespace Data");
1385
- a.k("{");
1386
- a.h();
1387
1453
  super.ad(a);
1388
1454
  }
1389
1455
  ac(a) {
1390
- a.f();
1391
- a.k("}");
1392
1456
  super.ac(a);
1393
1457
  }
1394
1458
  v(a, b = false) {
@@ -1608,7 +1672,12 @@ export let DotNetCodeGeneratingComponentRendererDataEmitter = /*@__PURE__*/ (()
1608
1672
  return "double.NaN";
1609
1673
  }
1610
1674
  return (b.value.toString());
1611
- case 2: return ("@\"" + stringReplace(b.value, "\"", "\"\"") + "\"");
1675
+ case 2: if (b.value == null) {
1676
+ return "null";
1677
+ }
1678
+ else {
1679
+ return ("@\"" + stringReplace(b.value, "\"", "\"\"") + "\"");
1680
+ }
1612
1681
  case 3: return ("null");
1613
1682
  }
1614
1683
  return "";
@@ -1634,10 +1703,10 @@ export let WPFXamlCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (()
1634
1703
  constructor(a, b) {
1635
1704
  super(a, b);
1636
1705
  }
1637
- get_r() {
1706
+ get_s() {
1638
1707
  return false;
1639
1708
  }
1640
- ae(a) {
1709
+ af(a) {
1641
1710
  if (a.c == null) {
1642
1711
  return "null";
1643
1712
  }
@@ -1651,20 +1720,20 @@ export let WPFXamlCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (()
1651
1720
  }
1652
1721
  return c;
1653
1722
  }
1654
- at(a) {
1655
- super.at(a);
1723
+ au(a) {
1724
+ super.au(a);
1656
1725
  this.h.k("<ig:" + a + "");
1657
1726
  }
1658
- a6() {
1727
+ a7() {
1659
1728
  this.h.k(">");
1660
1729
  this.h.h();
1661
1730
  }
1662
- a1(a) {
1731
+ a2(a) {
1663
1732
  this.h.f();
1664
1733
  this.h.k("</ig:" + a + ">");
1665
- super.a1(a);
1734
+ super.a2(a);
1666
1735
  }
1667
- az(a, b, c, d) {
1736
+ a0(a, b, c, d) {
1668
1737
  if (b == "Label" && c.b != null && stringContains(c.b.owningType, "Axis")) {
1669
1738
  if (c.c != null && stringContains(c.c, "{")) {
1670
1739
  if (a > 0) {
@@ -1673,7 +1742,7 @@ export let WPFXamlCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (()
1673
1742
  this.h.j(b);
1674
1743
  this.h.j("=");
1675
1744
  this.h.j("\"");
1676
- this.h.j("{}" + this.ao(c, true));
1745
+ this.h.j("{}" + this.ap(c, true));
1677
1746
  this.h.j("\"");
1678
1747
  return;
1679
1748
  }
@@ -1684,10 +1753,10 @@ export let WPFXamlCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (()
1684
1753
  this.h.j(b);
1685
1754
  this.h.j("=");
1686
1755
  this.h.j("\"");
1687
- this.h.j(this.ao(c, true));
1756
+ this.h.j(this.ap(c, true));
1688
1757
  this.h.j("\"");
1689
1758
  }
1690
- x(a) {
1759
+ y(a) {
1691
1760
  let b = a.c;
1692
1761
  switch (b.a) {
1693
1762
  case 3: return b.b;
@@ -1697,24 +1766,24 @@ export let WPFXamlCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (()
1697
1766
  }
1698
1767
  return b.b;
1699
1768
  }
1700
- al() {
1769
+ am() {
1701
1770
  return "{x:Null}";
1702
1771
  }
1703
- ag(a) {
1772
+ ah(a) {
1704
1773
  return "{Binding ElementName=" + a.a.e + "}";
1705
1774
  }
1706
- a8(a) {
1775
+ a9(a) {
1707
1776
  a = stringReplace(a, "-", "_");
1708
1777
  return CodeGeneratingComponentRenderer.dq(a);
1709
1778
  }
1710
- am(a) {
1711
- this.a7(a);
1712
- return "{Binding " + this.a8(a.a.e) + "}";
1779
+ an(a) {
1780
+ this.a8(a);
1781
+ return "{Binding " + this.a9(a.a.e) + "}";
1713
1782
  }
1714
- a0(a, b, c, d) {
1783
+ a1(a, b, c, d) {
1715
1784
  this.h.j("<ig:");
1716
1785
  {
1717
- this.h.j(this.ad);
1786
+ this.h.j(this.ae);
1718
1787
  this.h.j(".");
1719
1788
  }
1720
1789
  this.h.j(b);
@@ -1740,13 +1809,13 @@ export let WPFXamlCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__*/ (()
1740
1809
  this.h.f();
1741
1810
  this.h.j("</ig:");
1742
1811
  {
1743
- this.h.j(this.ad);
1812
+ this.h.j(this.ae);
1744
1813
  this.h.j(".");
1745
1814
  }
1746
1815
  this.h.j(b);
1747
1816
  this.h.k(">");
1748
1817
  }
1749
- get_aq() {
1818
+ get_ar() {
1750
1819
  return "Xam";
1751
1820
  }
1752
1821
  }
@@ -1761,7 +1830,7 @@ export let WPFCodeBehindCodeGeneratingComponentRendererCodeEmitter = /*@__PURE__
1761
1830
  constructor(a, b) {
1762
1831
  super(a, b);
1763
1832
  }
1764
- get_r() {
1833
+ get_s() {
1765
1834
  return false;
1766
1835
  }
1767
1836
  }
@@ -1956,7 +2025,7 @@ export let CodeGeneratingComponentRenderer = /*@__PURE__*/ (() => {
1956
2025
  }
1957
2026
  if (this.dk != null) {
1958
2027
  let i = this.dg(this.di, b);
1959
- i.l(this.dk);
2028
+ i.m(this.dk);
1960
2029
  }
1961
2030
  if (this.dm != null) {
1962
2031
  if (typeCast(JsonDictionaryObject.$, this.dm) !== null) {
@@ -2051,10 +2120,10 @@ export let CodeGenerationContainer = /*@__PURE__*/ (() => {
2051
2120
  h.p(i, true);
2052
2121
  let j = i.toString();
2053
2122
  a.addContainerResult(this.id, j);
2054
- i.av(d);
2055
- i.ay(e);
2056
- i.au(f);
2057
- i.aw(g);
2123
+ i.aw(d);
2124
+ i.az(e);
2125
+ i.av(f);
2126
+ i.ax(g);
2058
2127
  }
2059
2128
  a.addContainerResult("bindingFields", d.toString());
2060
2129
  a.addContainerResult("bindingInit", e.toString());
@@ -2136,27 +2205,27 @@ export let CodeGenerationItemBuilder = /*@__PURE__*/ (() => {
2136
2205
  let c = this.m();
2137
2206
  if (b) {
2138
2207
  let d = this.n();
2139
- a.ap = d;
2208
+ a.aq = d;
2140
2209
  }
2141
2210
  let e = false;
2142
2211
  let f = false;
2143
2212
  if (this.f.containsKey("Name")) {
2144
2213
  e = true;
2145
- a.a5(this.f.item("Name").c);
2214
+ a.a6(this.f.item("Name").c);
2146
2215
  }
2147
2216
  else if (this.f.containsKey("name")) {
2148
2217
  e = true;
2149
- a.a5(this.f.item("name").c);
2218
+ a.a6(this.f.item("name").c);
2150
2219
  }
2151
2220
  else {
2152
2221
  if (this.e(a)) {
2153
2222
  f = true;
2154
- a.a4(c);
2155
- if (a.r) {
2223
+ a.a5(c);
2224
+ if (a.s) {
2156
2225
  this.g.add("name");
2157
2226
  this.f.addItem("name", ((() => {
2158
2227
  let $ret = new CodeGenerationItemBuilderPropertyInfo();
2159
- $ret.c = a.ac;
2228
+ $ret.c = a.ad;
2160
2229
  return $ret;
2161
2230
  })()));
2162
2231
  }
@@ -2164,13 +2233,13 @@ export let CodeGenerationItemBuilder = /*@__PURE__*/ (() => {
2164
2233
  this.g.add("Name");
2165
2234
  this.f.addItem("Name", ((() => {
2166
2235
  let $ret = new CodeGenerationItemBuilderPropertyInfo();
2167
- $ret.c = a.ac;
2236
+ $ret.c = a.ad;
2168
2237
  return $ret;
2169
2238
  })()));
2170
2239
  }
2171
2240
  }
2172
2241
  }
2173
- a.at(c);
2242
+ a.au(c);
2174
2243
  let g = 0;
2175
2244
  for (let h of fromEnum(this.g)) {
2176
2245
  let i = this.f.item(h);
@@ -2178,11 +2247,11 @@ export let CodeGenerationItemBuilder = /*@__PURE__*/ (() => {
2178
2247
  continue;
2179
2248
  }
2180
2249
  if (this.d(h, i)) {
2181
- a.az(g, h, i, this.c);
2250
+ a.a0(g, h, i, this.c);
2182
2251
  g++;
2183
2252
  }
2184
2253
  }
2185
- a.a6();
2254
+ a.a7();
2186
2255
  let j = 0;
2187
2256
  for (let k of fromEnum(this.g)) {
2188
2257
  let l = this.f.item(k);
@@ -2190,17 +2259,17 @@ export let CodeGenerationItemBuilder = /*@__PURE__*/ (() => {
2190
2259
  continue;
2191
2260
  }
2192
2261
  if (!this.d(k, l)) {
2193
- a.a0(j, k, l, this.c);
2262
+ a.a1(j, k, l, this.c);
2194
2263
  j++;
2195
2264
  }
2196
2265
  }
2197
- a.a1(c);
2266
+ a.a2(c);
2198
2267
  if (e) {
2199
- a.a3();
2268
+ a.a4();
2200
2269
  }
2201
2270
  else {
2202
2271
  if (f) {
2203
- a.a2();
2272
+ a.a3();
2204
2273
  }
2205
2274
  }
2206
2275
  }