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
@@ -9,8 +9,8 @@ import { Type } from "./type";
9
9
  export declare class BlazorCodeGeneratingComponentRendererModuleEmitter extends DotNetCodeGeneratingComponentRendererModuleEmitter {
10
10
  static $t: Type;
11
11
  constructor(a: CodeGenerationTargetPlatforms, b: CodeGenerationRendererOptions, c: CodeGeneratingRendererResult);
12
+ protected o(): void;
13
+ private v;
14
+ protected l(a: string): void;
12
15
  protected n(): void;
13
- private u;
14
- protected k(a: string): void;
15
- protected m(): void;
16
16
  }
@@ -30,8 +30,8 @@ export declare class CodeGeneratingComponentRendererCodeEmitter extends Base {
30
30
  static $t: Type;
31
31
  private k;
32
32
  private i;
33
- private s;
34
- protected a7(a: CodeGenerationItemBuilderPropertyInfo): void;
33
+ private t;
34
+ protected a8(a: CodeGenerationItemBuilderPropertyInfo): void;
35
35
  protected get j(): CodeGeneratingRendererResult;
36
36
  constructor(a: CodeGenerationRendererOptions, b: CodeGeneratingRendererResult);
37
37
  private d;
@@ -42,88 +42,90 @@ export declare class CodeGeneratingComponentRendererCodeEmitter extends Base {
42
42
  protected get g(): CodeGeneratingCodeWriter;
43
43
  private b;
44
44
  protected get f(): CodeGeneratingCodeWriter;
45
- private t;
46
- protected as(a: string): void;
45
+ private u;
46
+ protected at(a: string): void;
47
47
  n(a: CodeGenerationItemBuilderPropertyInfo): boolean;
48
- private w;
49
- protected get ad(): string;
50
- at(a: string): void;
51
- a6(): void;
52
- a1(a: string): void;
53
- az(a: number, b: string, c: CodeGenerationItemBuilderPropertyInfo, d: TypeDescriptionContext): void;
48
+ p(a: CodeGenerationItemBuilderPropertyInfo): boolean;
49
+ private x;
50
+ protected get ae(): string;
51
+ au(a: string): void;
52
+ a7(): void;
53
+ a2(a: string): void;
54
54
  a0(a: number, b: string, c: CodeGenerationItemBuilderPropertyInfo, d: TypeDescriptionContext): void;
55
+ a1(a: number, b: string, c: CodeGenerationItemBuilderPropertyInfo, d: TypeDescriptionContext): void;
55
56
  toString(): string;
56
- protected al(): string;
57
- protected ao(a: CodeGenerationItemBuilderPropertyInfo, b: boolean): string;
58
- protected ae(a: CodeGenerationItemBuilderPropertyInfo): string;
59
- protected x(a: CodeGenerationItemBuilderPropertyInfo): any;
60
- private an;
57
+ protected am(): string;
58
+ protected ap(a: CodeGenerationItemBuilderPropertyInfo, b: boolean): string;
59
+ protected af(a: CodeGenerationItemBuilderPropertyInfo): string;
60
+ protected y(a: CodeGenerationItemBuilderPropertyInfo): any;
61
+ private ao;
61
62
  protected o(a: CodeGenerationItemBuilderPropertyInfo): boolean;
62
- protected am(a: CodeGenerationItemBuilderPropertyInfo): string;
63
- protected ag(a: CodeGenerationItemBuilderPropertyInfo): string;
64
- private aj;
63
+ protected an(a: CodeGenerationItemBuilderPropertyInfo): string;
65
64
  protected ah(a: CodeGenerationItemBuilderPropertyInfo): string;
66
- protected ak(a: CodeGenerationItemBuilderPropertyInfo): string;
65
+ private ak;
67
66
  protected ai(a: CodeGenerationItemBuilderPropertyInfo): string;
68
- protected get_q(): boolean;
69
- protected get q(): boolean;
70
- protected ab(a: CodeGenerationItemBuilderPropertyInfo): string;
71
- protected aa(a: any): string;
72
- protected z(a: CodeGenerationItemBuilderPropertyInfo): string;
73
- protected y(a: any): string;
74
- private u;
67
+ protected al(a: CodeGenerationItemBuilderPropertyInfo): string;
68
+ protected aj(a: CodeGenerationItemBuilderPropertyInfo): string;
69
+ protected get_r(): boolean;
70
+ protected get r(): boolean;
71
+ protected ac(a: CodeGenerationItemBuilderPropertyInfo): string;
72
+ protected ab(a: any): string;
73
+ protected aa(a: CodeGenerationItemBuilderPropertyInfo): string;
74
+ protected z(a: any): string;
75
75
  private v;
76
+ private w;
77
+ a6(a: string): void;
76
78
  a5(a: string): void;
77
- a4(a: string): void;
78
- private af;
79
- a2(): void;
80
- protected get_aq(): string;
81
- protected get aq(): string;
82
- get ac(): string;
83
- protected get p(): boolean;
79
+ private ag;
80
+ a3(): void;
81
+ protected get_ar(): string;
82
+ protected get ar(): string;
83
+ get ad(): string;
84
+ protected get q(): boolean;
84
85
  protected get l(): boolean;
85
86
  protected get m(): boolean;
86
- ap: string;
87
- protected get_r(): boolean;
88
- get r(): boolean;
89
- a3(): void;
87
+ aq: string;
88
+ protected get_s(): boolean;
89
+ get s(): boolean;
90
+ a4(): void;
91
+ aw(a: StringBuilder): void;
92
+ az(a: StringBuilder): void;
90
93
  av(a: StringBuilder): void;
91
- ay(a: StringBuilder): void;
92
- au(a: StringBuilder): void;
93
- aw(a: CodeGeneratingImportManager): void;
94
- protected ax(a: List$1<string>, b: CodeGeneratingImportManager): void;
94
+ ax(a: CodeGeneratingImportManager): void;
95
+ protected ay(a: List$1<string>, b: CodeGeneratingImportManager): void;
95
96
  }
96
97
  /**
97
98
  * @hidden
98
99
  */
99
100
  export declare class BlazorRazorCodeGeneratingComponentRendererCodeEmitter extends CodeGeneratingComponentRendererCodeEmitter {
100
101
  static $t: Type;
101
- protected get_r(): boolean;
102
+ protected get_s(): boolean;
102
103
  constructor(a: CodeGenerationRendererOptions, b: CodeGeneratingRendererResult);
103
- protected bb(a: string, b: CodeGenerationItemBuilderPropertyInfo): string;
104
- protected ae(a: CodeGenerationItemBuilderPropertyInfo): string;
105
- at(a: string): void;
106
- a6(): void;
107
- a1(a: string): void;
108
- private ba;
109
- private a8;
104
+ protected bc(a: string, b: CodeGenerationItemBuilderPropertyInfo): string;
105
+ protected af(a: CodeGenerationItemBuilderPropertyInfo): string;
106
+ au(a: string): void;
107
+ a7(): void;
108
+ a2(a: string): void;
109
+ private bb;
110
110
  private a9;
111
- az(a: number, b: string, c: CodeGenerationItemBuilderPropertyInfo, d: TypeDescriptionContext): void;
112
- protected ah(a: CodeGenerationItemBuilderPropertyInfo): string;
113
- protected x(a: CodeGenerationItemBuilderPropertyInfo): any;
114
- protected al(): string;
115
- protected ag(a: CodeGenerationItemBuilderPropertyInfo): string;
116
- private bc;
117
- protected am(a: CodeGenerationItemBuilderPropertyInfo): string;
111
+ private ba;
118
112
  a0(a: number, b: string, c: CodeGenerationItemBuilderPropertyInfo, d: TypeDescriptionContext): void;
119
- protected get_aq(): string;
113
+ protected ai(a: CodeGenerationItemBuilderPropertyInfo): string;
114
+ protected ap(a: CodeGenerationItemBuilderPropertyInfo, b: boolean): string;
115
+ protected y(a: CodeGenerationItemBuilderPropertyInfo): any;
116
+ protected am(): string;
117
+ protected ah(a: CodeGenerationItemBuilderPropertyInfo): string;
118
+ private bd;
119
+ protected an(a: CodeGenerationItemBuilderPropertyInfo): string;
120
+ a1(a: number, b: string, c: CodeGenerationItemBuilderPropertyInfo, d: TypeDescriptionContext): void;
121
+ protected get_ar(): string;
120
122
  }
121
123
  /**
122
124
  * @hidden
123
125
  */
124
126
  export declare class BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter extends CodeGeneratingComponentRendererCodeEmitter {
125
127
  static $t: Type;
126
- protected get_r(): boolean;
128
+ protected get_s(): boolean;
127
129
  constructor(a: CodeGenerationRendererOptions, b: CodeGeneratingRendererResult);
128
130
  }
129
131
  /**
@@ -132,24 +134,24 @@ export declare class BlazorCodeBehindCodeGeneratingComponentRendererCodeEmitter
132
134
  export declare class ReactMarkupCodeGeneratingComponentRendererCodeEmitter extends CodeGeneratingComponentRendererCodeEmitter {
133
135
  static $t: Type;
134
136
  constructor(a: CodeGenerationRendererOptions, b: CodeGeneratingRendererResult);
135
- protected ae(a: CodeGenerationItemBuilderPropertyInfo): string;
136
- protected get_q(): boolean;
137
- protected get_aq(): string;
138
- private a8;
137
+ protected af(a: CodeGenerationItemBuilderPropertyInfo): string;
138
+ protected get_r(): boolean;
139
+ protected get_ar(): string;
139
140
  private a9;
140
- at(a: string): void;
141
- private bb;
142
- a6(): void;
143
141
  private ba;
144
- protected ai(a: CodeGenerationItemBuilderPropertyInfo): string;
145
- a1(a: string): void;
146
- az(a: number, b: string, c: CodeGenerationItemBuilderPropertyInfo, d: TypeDescriptionContext): void;
147
- protected x(a: CodeGenerationItemBuilderPropertyInfo): any;
148
- protected al(): string;
149
- protected ag(a: CodeGenerationItemBuilderPropertyInfo): string;
150
- protected am(a: CodeGenerationItemBuilderPropertyInfo): string;
142
+ au(a: string): void;
143
+ private bc;
144
+ a7(): void;
145
+ private bb;
146
+ protected aj(a: CodeGenerationItemBuilderPropertyInfo): string;
147
+ a2(a: string): void;
151
148
  a0(a: number, b: string, c: CodeGenerationItemBuilderPropertyInfo, d: TypeDescriptionContext): void;
152
- protected ax(a: List$1<string>, b: CodeGeneratingImportManager): void;
149
+ protected y(a: CodeGenerationItemBuilderPropertyInfo): any;
150
+ protected am(): string;
151
+ protected ah(a: CodeGenerationItemBuilderPropertyInfo): string;
152
+ protected an(a: CodeGenerationItemBuilderPropertyInfo): string;
153
+ a1(a: number, b: string, c: CodeGenerationItemBuilderPropertyInfo, d: TypeDescriptionContext): void;
154
+ protected ay(a: List$1<string>, b: CodeGeneratingImportManager): void;
153
155
  }
154
156
  /**
155
157
  * @hidden
@@ -164,24 +166,24 @@ export declare class ReactCodeBehindCodeGeneratingComponentRendererCodeEmitter e
164
166
  export declare class WebComponentsMarkupCodeGeneratingComponentRendererCodeEmitter extends CodeGeneratingComponentRendererCodeEmitter {
165
167
  static $t: Type;
166
168
  constructor(a: CodeGenerationRendererOptions, b: CodeGeneratingRendererResult);
167
- protected ae(a: CodeGenerationItemBuilderPropertyInfo): string;
168
- protected get_q(): boolean;
169
- at(a: string): void;
169
+ protected af(a: CodeGenerationItemBuilderPropertyInfo): string;
170
+ protected get_r(): boolean;
171
+ au(a: string): void;
172
+ private bc;
173
+ a7(): void;
174
+ a2(a: string): void;
170
175
  private bb;
171
- a6(): void;
172
- a1(a: string): void;
173
- private ba;
174
- private a8;
175
176
  private a9;
176
- protected get_aq(): string;
177
- protected ax(a: List$1<string>, b: CodeGeneratingImportManager): void;
178
- az(a: number, b: string, c: CodeGenerationItemBuilderPropertyInfo, d: TypeDescriptionContext): void;
179
- protected x(a: CodeGenerationItemBuilderPropertyInfo): any;
180
- protected al(): string;
181
- protected ag(a: CodeGenerationItemBuilderPropertyInfo): string;
182
- protected am(a: CodeGenerationItemBuilderPropertyInfo): string;
183
- protected ai(a: CodeGenerationItemBuilderPropertyInfo): string;
177
+ private ba;
178
+ protected get_ar(): string;
179
+ protected ay(a: List$1<string>, b: CodeGeneratingImportManager): void;
184
180
  a0(a: number, b: string, c: CodeGenerationItemBuilderPropertyInfo, d: TypeDescriptionContext): void;
181
+ protected y(a: CodeGenerationItemBuilderPropertyInfo): any;
182
+ protected am(): string;
183
+ protected ah(a: CodeGenerationItemBuilderPropertyInfo): string;
184
+ protected an(a: CodeGenerationItemBuilderPropertyInfo): string;
185
+ protected aj(a: CodeGenerationItemBuilderPropertyInfo): string;
186
+ a1(a: number, b: string, c: CodeGenerationItemBuilderPropertyInfo, d: TypeDescriptionContext): void;
185
187
  }
186
188
  /**
187
189
  * @hidden
@@ -223,20 +225,24 @@ export declare class TSCodeGeneratingComponentRendererDataEmitter extends CodeGe
223
225
  export declare class AngularTemplateCodeGeneratingComponentRendererCodeEmitter extends CodeGeneratingComponentRendererCodeEmitter {
224
226
  static $t: Type;
225
227
  constructor(a: CodeGenerationRendererOptions, b: CodeGeneratingRendererResult);
226
- protected ae(a: CodeGenerationItemBuilderPropertyInfo): string;
227
- protected get_q(): boolean;
228
- protected get_aq(): string;
229
- at(a: string): void;
230
- private a8;
231
- a6(): void;
232
- a1(a: string): void;
233
- az(a: number, b: string, c: CodeGenerationItemBuilderPropertyInfo, d: TypeDescriptionContext): void;
234
- protected ai(a: CodeGenerationItemBuilderPropertyInfo): string;
235
- protected x(a: CodeGenerationItemBuilderPropertyInfo): any;
236
- protected al(): string;
237
- protected ag(a: CodeGenerationItemBuilderPropertyInfo): string;
238
- protected am(a: CodeGenerationItemBuilderPropertyInfo): string;
228
+ protected af(a: CodeGenerationItemBuilderPropertyInfo): string;
229
+ protected get_r(): boolean;
230
+ protected get_ar(): string;
231
+ private bb;
232
+ private a9;
233
+ private ba;
234
+ au(a: string): void;
235
+ protected ay(a: List$1<string>, b: CodeGeneratingImportManager): void;
236
+ private bc;
237
+ a7(): void;
238
+ a2(a: string): void;
239
239
  a0(a: number, b: string, c: CodeGenerationItemBuilderPropertyInfo, d: TypeDescriptionContext): void;
240
+ protected aj(a: CodeGenerationItemBuilderPropertyInfo): string;
241
+ protected y(a: CodeGenerationItemBuilderPropertyInfo): any;
242
+ protected am(): string;
243
+ protected ah(a: CodeGenerationItemBuilderPropertyInfo): string;
244
+ protected an(a: CodeGenerationItemBuilderPropertyInfo): string;
245
+ a1(a: number, b: string, c: CodeGenerationItemBuilderPropertyInfo, d: TypeDescriptionContext): void;
240
246
  }
241
247
  /**
242
248
  * @hidden
@@ -277,27 +283,27 @@ export declare class DotNetCodeGeneratingComponentRendererDataEmitter extends Co
277
283
  */
278
284
  export declare class WPFXamlCodeGeneratingComponentRendererCodeEmitter extends CodeGeneratingComponentRendererCodeEmitter {
279
285
  static $t: Type;
280
- protected get_r(): boolean;
286
+ protected get_s(): boolean;
281
287
  constructor(a: CodeGenerationRendererOptions, b: CodeGeneratingRendererResult);
282
- protected ae(a: CodeGenerationItemBuilderPropertyInfo): string;
283
- at(a: string): void;
284
- a6(): void;
285
- a1(a: string): void;
286
- az(a: number, b: string, c: CodeGenerationItemBuilderPropertyInfo, d: TypeDescriptionContext): void;
287
- protected x(a: CodeGenerationItemBuilderPropertyInfo): any;
288
- protected al(): string;
289
- protected ag(a: CodeGenerationItemBuilderPropertyInfo): string;
290
- private a8;
291
- protected am(a: CodeGenerationItemBuilderPropertyInfo): string;
288
+ protected af(a: CodeGenerationItemBuilderPropertyInfo): string;
289
+ au(a: string): void;
290
+ a7(): void;
291
+ a2(a: string): void;
292
292
  a0(a: number, b: string, c: CodeGenerationItemBuilderPropertyInfo, d: TypeDescriptionContext): void;
293
- protected get_aq(): string;
293
+ protected y(a: CodeGenerationItemBuilderPropertyInfo): any;
294
+ protected am(): string;
295
+ protected ah(a: CodeGenerationItemBuilderPropertyInfo): string;
296
+ private a9;
297
+ protected an(a: CodeGenerationItemBuilderPropertyInfo): string;
298
+ a1(a: number, b: string, c: CodeGenerationItemBuilderPropertyInfo, d: TypeDescriptionContext): void;
299
+ protected get_ar(): string;
294
300
  }
295
301
  /**
296
302
  * @hidden
297
303
  */
298
304
  export declare class WPFCodeBehindCodeGeneratingComponentRendererCodeEmitter extends CodeGeneratingComponentRendererCodeEmitter {
299
305
  static $t: Type;
300
- protected get_r(): boolean;
306
+ protected get_s(): boolean;
301
307
  constructor(a: CodeGenerationRendererOptions, b: CodeGeneratingRendererResult);
302
308
  }
303
309
  /**
@@ -1,16 +1,17 @@
1
1
  import { Base, Type } from "./type";
2
+ import { CodeGeneratingRendererResult } from "./CodeGeneratingRendererResult";
2
3
  import { CodeGeneratingCodeWriter } from "./CodeGeneratingCodeWriter";
3
4
  import { CodeGeneratingImportManager } from "./CodeGeneratingImportManager";
4
5
  import { CodeGenerationRendererOptions } from "./CodeGenerationRendererOptions";
5
- import { CodeGeneratingRendererResult } from "./CodeGeneratingRendererResult";
6
6
  import { JsonDictionaryItem } from "./JsonDictionaryItem";
7
7
  /**
8
8
  * @hidden
9
9
  */
10
10
  export declare class CodeGeneratingComponentRendererModuleEmitter extends Base {
11
11
  static $t: Type;
12
- private j;
12
+ private k;
13
13
  private i;
14
+ protected get j(): CodeGeneratingRendererResult;
14
15
  constructor(a: CodeGenerationRendererOptions, b: CodeGeneratingRendererResult);
15
16
  private b;
16
17
  protected get d(): CodeGeneratingCodeWriter;
@@ -20,8 +21,8 @@ export declare class CodeGeneratingComponentRendererModuleEmitter extends Base {
20
21
  protected get g(): CodeGeneratingImportManager;
21
22
  private a;
22
23
  protected get c(): CodeGeneratingCodeWriter;
23
- l(a: JsonDictionaryItem): void;
24
- protected m(): void;
25
- protected k(a: string): void;
24
+ m(a: JsonDictionaryItem): void;
26
25
  protected n(): void;
26
+ protected l(a: string): void;
27
+ protected o(): void;
27
28
  }
@@ -9,37 +9,40 @@ import { CodeGeneratingImportManager } from "./CodeGeneratingImportManager";
9
9
  */
10
10
  export declare class CodeGeneratingRendererResult extends Base {
11
11
  static $t: Type;
12
- private n;
13
- get q(): List$1<CodeGenerationItemBuilderPropertyInfo>;
12
+ private p;
13
+ get s(): List$1<CodeGenerationItemBuilderPropertyInfo>;
14
14
  private _platform;
15
15
  get platform(): CodeGenerationTargetPlatforms;
16
16
  set platform(a: CodeGenerationTargetPlatforms);
17
17
  private _generationOptions;
18
18
  get generationOptions(): CodeGenerationRendererOptions;
19
19
  set generationOptions(a: CodeGenerationRendererOptions);
20
+ private k;
21
+ private m;
20
22
  private j;
21
- private l;
22
- private i;
23
+ private o;
24
+ addPackageRef(a: string): void;
23
25
  addContainerResult(a: string, b: string): void;
24
26
  addImportResult(a: string, b: CodeGeneratingImportManager): void;
25
27
  addContainerNewFileResult(a: string, b: string): void;
28
+ getPackages(): string[];
26
29
  getKeys(): string[];
27
30
  getImportsKeys(): string[];
28
31
  getContentForKey(a: string): string;
29
- o(a: string): List$1<CodeGeneratingImportManager>;
30
- private g;
31
- r(a: string): string;
32
- ab(a: CodeGenerationItemBuilderPropertyInfo): void;
32
+ q(a: string): List$1<CodeGeneratingImportManager>;
33
+ private h;
34
+ t(a: string): string;
35
+ ae(a: CodeGenerationItemBuilderPropertyInfo): void;
33
36
  getNewFiles(): List$1<string>;
34
37
  getNewFileContent(a: string): string;
35
- private m;
38
+ private n;
36
39
  defineString(a: string, b: string): void;
37
40
  getStringNames(): string[];
38
41
  getString(a: string): string;
39
- private k;
42
+ private l;
40
43
  trackDescriptionField(a: string, b: string): void;
41
44
  hasDescription(a: string): boolean;
42
45
  getDescriptionField(a: string): string;
43
- private h;
44
- s(a: string): string;
46
+ private i;
47
+ u(a: string): string;
45
48
  }
@@ -13,24 +13,25 @@ export declare class DescriptionSerializer extends Base {
13
13
  static $t: Type;
14
14
  constructor();
15
15
  h: boolean;
16
- o(a: TypeDescriptionContext, b: Description): string;
17
- s(a: TypeDescriptionContext, b: DescriptionTreeNode, c: DescriptionSerializerBuilder): void;
16
+ p(a: TypeDescriptionContext, b: Description): string;
17
+ t(a: TypeDescriptionContext, b: DescriptionTreeNode, c: DescriptionSerializerBuilder): void;
18
18
  c(a: TypeDescriptionContext, b: string): DescriptionResult;
19
19
  g: boolean;
20
20
  private f;
21
21
  private i;
22
22
  private e;
23
23
  d(a: TypeDescriptionContext, b: JsonDictionaryItem, c: boolean, d: (arg1: string) => string, e: boolean): DescriptionResult;
24
- u(a: TypeDescriptionContext, b: Description, c: string, d: TypeDescriptionMetadata, e: any): void;
24
+ v(a: TypeDescriptionContext, b: Description, c: string, d: TypeDescriptionMetadata, e: any): void;
25
25
  private b;
26
+ private n;
26
27
  private k;
27
28
  private m;
28
29
  private l;
29
30
  private a;
30
31
  private j;
31
- private p;
32
- private n;
33
32
  private q;
34
- private t;
33
+ private o;
35
34
  private r;
35
+ private u;
36
+ private s;
36
37
  }
@@ -9,12 +9,13 @@ import { TypeDescriptionPlatform } from "./TypeDescriptionPlatform";
9
9
  export declare class DescriptionTreeAction extends Base {
10
10
  static $t: Type;
11
11
  a: DescriptionTreeActionType;
12
+ c: DescriptionTreeNode;
12
13
  b: DescriptionTreeNode;
13
- c: TypeDescriptionMetadata;
14
- i: string;
15
- h(a: TypeDescriptionPlatform): string;
14
+ d: TypeDescriptionMetadata;
15
+ j: string;
16
+ i(a: TypeDescriptionPlatform): string;
17
+ h: any;
16
18
  g: any;
17
- f: any;
19
+ f: number;
18
20
  e: number;
19
- d: number;
20
21
  }
@@ -7,19 +7,20 @@ import { TypeDescriptionMetadata } from "./TypeDescriptionMetadata";
7
7
  */
8
8
  export declare class DescriptionTreeNode extends Base {
9
9
  static $t: Type;
10
- private static g;
11
- f: number;
10
+ private static h;
11
+ g: number;
12
12
  constructor();
13
+ b(): DescriptionTreeNode;
14
+ private e;
13
15
  private d;
14
- private c;
15
- h: string;
16
- i(a: string, b: any): void;
17
- j(a: string, b: any, c: TypeDescriptionMetadata): void;
18
- m(a: string, b: any): void;
19
- n(a: string, b: any, c: TypeDescriptionMetadata): void;
16
+ i: string;
17
+ j(a: string, b: any): void;
18
+ k(a: string, b: any, c: TypeDescriptionMetadata): void;
19
+ n(a: string, b: any): void;
20
+ o(a: string, b: any, c: TypeDescriptionMetadata): void;
20
21
  a(a: string): DescriptionPropertyValue;
21
- b(a: string): boolean;
22
- l(a: string): void;
23
- k(): void;
24
- e(): List$1<DescriptionPropertyValue>;
22
+ c(a: string): boolean;
23
+ m(a: string): void;
24
+ l(): void;
25
+ f(): List$1<DescriptionPropertyValue>;
25
26
  }
@@ -8,14 +8,14 @@ import { Type } from "./type";
8
8
  */
9
9
  export declare class DotNetCodeGeneratingComponentRendererModuleEmitter extends CodeGeneratingComponentRendererModuleEmitter {
10
10
  static $t: Type;
11
- private o;
11
+ private p;
12
12
  constructor(a: CodeGenerationTargetPlatforms, b: CodeGenerationRendererOptions, c: CodeGeneratingRendererResult);
13
+ private s;
14
+ protected get t(): number;
15
+ private q;
16
+ protected o(): void;
13
17
  private r;
14
- protected get s(): number;
15
- private p;
18
+ protected get u(): string;
19
+ protected l(a: string): void;
16
20
  protected n(): void;
17
- private q;
18
- protected get t(): string;
19
- protected k(a: string): void;
20
- protected m(): void;
21
21
  }
@@ -8,11 +8,15 @@ import { NativeUIBuiltInProperties } from "./NativeUIBuiltInProperties";
8
8
  */
9
9
  export declare class IgcSliderBridge extends NativeUIElementBridge {
10
10
  static $t: Type;
11
- private d;
12
- private c;
13
11
  private e;
14
- addHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
12
+ private c;
13
+ private g;
15
14
  private f;
15
+ private d;
16
+ private h;
17
+ addHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
18
+ private j;
19
+ private i;
16
20
  getValue(a: any, b: NativeUIBuiltInProperties): any;
17
21
  removeHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
18
22
  setValue(a: any, b: NativeUIBuiltInProperties, c: any): void;
@@ -8,15 +8,18 @@ import { NativeUISliderValueChangedEventArgs } from "./NativeUISliderValueChange
8
8
  export declare class NativeUISlider extends NativeUIComponent {
9
9
  static $t: Type;
10
10
  protected get_c(): NativeUIComponentBuiltInType;
11
+ get aw(): number;
12
+ set aw(a: number);
11
13
  get au(): number;
12
14
  set au(a: number);
13
- get as(): number;
14
- set as(a: number);
15
- get ar(): number;
16
- set ar(a: number);
17
15
  get at(): number;
18
16
  set at(a: number);
17
+ get av(): number;
18
+ set av(a: number);
19
19
  private ap;
20
- get aq(): (sender: any, args: NativeUISliderValueChangedEventArgs) => void;
21
- set aq(a: (sender: any, args: NativeUISliderValueChangedEventArgs) => void);
20
+ get ar(): (sender: any, args: NativeUISliderValueChangedEventArgs) => void;
21
+ set ar(a: (sender: any, args: NativeUISliderValueChangedEventArgs) => void);
22
+ private aq;
23
+ get as(): (sender: any, args: NativeUISliderValueChangedEventArgs) => void;
24
+ set as(a: (sender: any, args: NativeUISliderValueChangedEventArgs) => void);
22
25
  }