igniteui-angular-core 20.0.1-beta.0 → 20.0.2-beta.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 (532) hide show
  1. package/bundles/igniteui-angular-core.umd.js +16013 -8806
  2. package/bundles/igniteui-angular-core.umd.min.js +2 -2
  3. package/esm2015/lib/AsyncDataSourcePageRequest.js +14 -7
  4. package/esm2015/lib/AsyncVirtualDataSourceProviderWorker.js +17 -16
  5. package/esm2015/lib/AsyncVirtualDataTaskCompletionSource.js +33 -0
  6. package/esm2015/lib/AxisDescription.js +420 -196
  7. package/esm2015/lib/AxisDescriptionMetadata.js +32 -0
  8. package/esm2015/lib/AzureMapsMapImageryDescription.js +71 -0
  9. package/esm2015/lib/AzureMapsMapImageryDescriptionMetadata.js +45 -0
  10. package/esm2015/lib/AzureMapsMapImageryDescriptionModule.js +20 -0
  11. package/esm2015/lib/AzureMapsTileSource.js +112 -0
  12. package/esm2015/lib/BaseGenericDataSource.js +85 -0
  13. package/esm2015/lib/BaseGenericDataSourceDescription.js +58 -0
  14. package/esm2015/lib/BaseGenericDataSourceDescriptionMetadata.js +38 -0
  15. package/esm2015/lib/BaseVirtualDataProvider.js +398 -0
  16. package/esm2015/lib/CanvasViewRenderer.js +11 -6
  17. package/esm2015/lib/CategoryAngleAxisDescription.js +21 -21
  18. package/esm2015/lib/CategoryAxisBaseDescription.js +24 -24
  19. package/esm2015/lib/CategoryChartDescription.js +130 -130
  20. package/esm2015/lib/CategoryDateTimeXAxisDescription.js +24 -24
  21. package/esm2015/lib/CategoryHighlightLayerDescriptionMetadata.js +1 -0
  22. package/esm2015/lib/CategoryToolTipLayerDescription.js +27 -3
  23. package/esm2015/lib/CategoryToolTipLayerDescriptionMetadata.js +4 -0
  24. package/esm2015/lib/CategoryXAxisDescription.js +49 -33
  25. package/esm2015/lib/CategoryXAxisDescriptionMetadata.js +2 -0
  26. package/esm2015/lib/CategoryYAxisDescription.js +49 -33
  27. package/esm2015/lib/CategoryYAxisDescriptionMetadata.js +2 -0
  28. package/esm2015/lib/CellInfoDescription.js +321 -201
  29. package/esm2015/lib/CellInfoDescriptionMetadata.js +16 -0
  30. package/esm2015/lib/ChartMouseEventArgsDescription.js +17 -9
  31. package/esm2015/lib/ChartResizeIdleEventArgsDescription.js +26 -0
  32. package/esm2015/lib/ChartResizeIdleEventArgsDescriptionMetadata.js +36 -0
  33. package/esm2015/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +254 -254
  34. package/esm2015/lib/ColumnGroupDescriptionDescriptionMetadata.js +2 -2
  35. package/esm2015/lib/ColumnSummaryDescriptionDescriptionMetadata.js +2 -2
  36. package/esm2015/lib/ComboBoxColumnDescription.js +20 -12
  37. package/esm2015/lib/ComboBoxColumnDescriptionMetadata.js +2 -1
  38. package/esm2015/lib/ComponentRendererAdapter.js +5 -3
  39. package/esm2015/lib/ComponentRendererMethodHelperBuilder_combined.js +444 -167
  40. package/esm2015/lib/ComponentRenderer_combined.js +673 -565
  41. package/esm2015/lib/CustomLocalDataSourceDescription.js +26 -0
  42. package/esm2015/lib/CustomLocalDataSourceDescriptionMetadata.js +36 -0
  43. package/esm2015/lib/CustomLocalDataSourceDescriptionModule.js +20 -0
  44. package/esm2015/lib/DataAnnotationAxisLayerDescriptionMetadata.js +1 -0
  45. package/esm2015/lib/DataChartDashboardTileDescriptionModule.js +2 -0
  46. package/esm2015/lib/DataChartDescription.js +99 -99
  47. package/esm2015/lib/DataChartMouseButtonEventArgsDescription.js +23 -15
  48. package/esm2015/lib/DataGridCellEventArgsDescriptionMetadata_combined.js +3 -1
  49. package/esm2015/lib/DataGridColumnDescription.js +229 -109
  50. package/esm2015/lib/DataGridColumnDescriptionMetadata.js +16 -0
  51. package/esm2015/lib/DataGridDescription.js +623 -607
  52. package/esm2015/lib/DataLegendDescription.js +414 -382
  53. package/esm2015/lib/DataLegendDescriptionMetadata.js +4 -0
  54. package/esm2015/lib/DataPieBaseChartDescription.js +152 -112
  55. package/esm2015/lib/DataPieBaseChartDescriptionMetadata.js +9 -4
  56. package/esm2015/lib/DataPieChartDescription.js +36 -36
  57. package/esm2015/lib/DataPieChartDescriptionModule.js +2 -0
  58. package/esm2015/lib/DataSourceGroupDescription.js +52 -0
  59. package/esm2015/lib/DataSourceGroupDescriptionCollection.js +84 -0
  60. package/esm2015/lib/DataSourceGroupDescriptionDescription.js +25 -0
  61. package/esm2015/lib/DataSourceGroupDescriptionDescriptionMetadata.js +39 -0
  62. package/esm2015/lib/DataSourceGroupDescriptionDescriptionModule.js +22 -0
  63. package/esm2015/lib/DataSourceSortDescription.js +61 -0
  64. package/esm2015/lib/DataSourceSortDescriptionCollection.js +96 -0
  65. package/esm2015/lib/DataSourceSortDescriptionDescription.js +44 -0
  66. package/esm2015/lib/DataSourceSortDescriptionDescriptionMetadata.js +40 -0
  67. package/esm2015/lib/DataSourceSortDescriptionDescriptionModule.js +20 -0
  68. package/esm2015/lib/DataSourceSummaryDescription.js +123 -0
  69. package/esm2015/lib/DataSourceSummaryDescriptionCollection.js +102 -0
  70. package/esm2015/lib/DataSourceSummaryDescriptionDescription.js +68 -0
  71. package/esm2015/lib/DataSourceSummaryDescriptionDescriptionMetadata.js +45 -0
  72. package/esm2015/lib/DataSourceSummaryDescriptionDescriptionModule.js +20 -0
  73. package/esm2015/lib/DataToolTipLayerDescription.js +251 -227
  74. package/esm2015/lib/DataToolTipLayerDescriptionMetadata.js +4 -0
  75. package/esm2015/lib/DateTimeCellInfoDescription.js +18 -18
  76. package/esm2015/lib/DateTimeCellInfoDescriptionMetadata.js +1 -1
  77. package/esm2015/lib/DateTimeColumnDescription.js +44 -36
  78. package/esm2015/lib/DateTimeColumnDescriptionMetadata.js +4 -3
  79. package/esm2015/lib/DescriptionSerializer.js +1 -1
  80. package/esm2015/lib/DomainChartDescription.js +620 -588
  81. package/esm2015/lib/DomainChartDescriptionMetadata.js +6 -2
  82. package/esm2015/lib/DomainChartSeriesPointerEventArgsDescription.js +17 -9
  83. package/esm2015/lib/DomainChartSeriesPointerEventArgsDescriptionMetadata.js +1 -0
  84. package/esm2015/lib/EditorCellInfoDescription.js +30 -30
  85. package/esm2015/lib/FilterCellInfoDescription.js +36 -36
  86. package/esm2015/lib/FilterExpressionDescription.js +64 -0
  87. package/esm2015/lib/FilterExpressionDescriptionMetadata.js +8 -0
  88. package/esm2015/lib/FinancialChartDescription.js +176 -176
  89. package/esm2015/lib/FontRegistry.js +47 -0
  90. package/esm2015/lib/FunctionFilterExpressionDescription.js +30 -6
  91. package/esm2015/lib/FunctionFilterExpressionDescriptionMetadata.js +3 -0
  92. package/esm2015/lib/GenericDataSourcePage.js +82 -0
  93. package/esm2015/lib/GenericDataSourceSchemaPropertyType.js +37 -0
  94. package/esm2015/lib/GenericInternalVirtualDataProvider.js +247 -0
  95. package/esm2015/lib/GenericInternalVirtualDataSource.js +125 -0
  96. package/esm2015/lib/GenericPageResponse.js +37 -0
  97. package/esm2015/lib/GenericSectionInformation.js +55 -0
  98. package/esm2015/lib/GenericSummaryResult.js +62 -0
  99. package/esm2015/lib/GenericVirtualDataProviderWorker.js +156 -0
  100. package/esm2015/lib/GenericVirtualDataProviderWorkerSettings.js +62 -0
  101. package/esm2015/lib/GenericVirtualDataSource.js +178 -0
  102. package/esm2015/lib/GenericVirtualDataSourceDescription.js +31 -0
  103. package/esm2015/lib/GenericVirtualDataSourceDescriptionMetadata.js +41 -0
  104. package/esm2015/lib/GenericVirtualDataSourceDescriptionModule.js +20 -0
  105. package/esm2015/lib/GeographicMapImageryDescription_combined.js +41 -41
  106. package/esm2015/lib/GeometryUtil.js +18 -3
  107. package/esm2015/lib/GridConditionalStyleFontInfoDescription.js +58 -0
  108. package/esm2015/lib/GridConditionalStyleFontInfoDescriptionMetadata.js +40 -0
  109. package/esm2015/lib/GridConditionalStyleFontInfoDescriptionModule.js +20 -0
  110. package/esm2015/lib/HierarchicalRingSeriesDescription.js +3 -3
  111. package/esm2015/lib/IRenderer_combined.js +21 -15
  112. package/esm2015/lib/ImageCellInfoDescription.js +9 -9
  113. package/esm2015/lib/ImageColumnDescription.js +29 -21
  114. package/esm2015/lib/ImageColumnDescriptionMetadata.js +3 -2
  115. package/esm2015/lib/ItemToolTipLayerDescription.js +30 -6
  116. package/esm2015/lib/ItemToolTipLayerDescriptionMetadata.js +3 -0
  117. package/esm2015/lib/LayoutPrimaryKeyValueDescriptionMetadata.js +1 -1
  118. package/esm2015/lib/ListPanelPrimaryKeyValueDescriptionMetadata.js +1 -1
  119. package/esm2015/lib/LiteralFilterExpressionDescription.js +30 -6
  120. package/esm2015/lib/LiteralFilterExpressionDescriptionMetadata.js +3 -0
  121. package/esm2015/lib/NumericAngleAxisDescription.js +6 -6
  122. package/esm2015/lib/NumericAxisBaseDescription.js +132 -84
  123. package/esm2015/lib/NumericAxisBaseDescriptionMetadata.js +6 -0
  124. package/esm2015/lib/NumericCellInfoDescription.js +39 -39
  125. package/esm2015/lib/NumericCellInfoDescriptionMetadata.js +1 -1
  126. package/esm2015/lib/NumericColumnDescription.js +59 -51
  127. package/esm2015/lib/NumericColumnDescriptionMetadata.js +4 -3
  128. package/esm2015/lib/NumericRadiusAxisDescription.js +6 -6
  129. package/esm2015/lib/OperationFilterExpressionDescription.js +79 -15
  130. package/esm2015/lib/OperationFilterExpressionDescriptionMetadata.js +8 -0
  131. package/esm2015/lib/OrdinalTimeXAxisDescription.js +15 -15
  132. package/esm2015/lib/PagePredictionEngine.js +1 -1
  133. package/esm2015/lib/PageRequestedEventArgs.js +24 -0
  134. package/esm2015/lib/PageRequestedEventArgsDescription.js +66 -0
  135. package/esm2015/lib/PageRequestedEventArgsDescriptionMetadata.js +41 -0
  136. package/esm2015/lib/PieSliceCollisionGeometry.js +1 -1
  137. package/esm2015/lib/PlatformAPIHelper.js +9 -1
  138. package/esm2015/lib/PlotAreaMouseButtonEventArgsDescriptionMetadata_combined.js +14 -0
  139. package/esm2015/lib/PrimaryKeyValueDescriptionMetadata.js +1 -1
  140. package/esm2015/lib/PropertyReferenceFilterExpressionDescription.js +19 -3
  141. package/esm2015/lib/PropertyReferenceFilterExpressionDescriptionMetadata.js +2 -0
  142. package/esm2015/lib/ProportionalCategoryAngleAxisDescription.js +12 -12
  143. package/esm2015/lib/RadialBaseChartDescription.js +228 -228
  144. package/esm2015/lib/RadialPieSeriesDescription.js +20 -12
  145. package/esm2015/lib/RadialPieSeriesDescriptionMetadata.js +1 -0
  146. package/esm2015/lib/RingSeriesBaseDescription.js +14 -6
  147. package/esm2015/lib/RingSeriesBaseDescriptionMetadata.js +1 -0
  148. package/esm2015/lib/RingSeriesDescription.js +3 -3
  149. package/esm2015/lib/SectionHeaderCellInfoDescription.js +9 -9
  150. package/esm2015/lib/SeriesViewerDescription.js +469 -389
  151. package/esm2015/lib/StraightNumericAxisBaseDescription.js +3 -3
  152. package/esm2015/lib/SummaryCellInfoDescription.js +21 -21
  153. package/esm2015/lib/TemplateCellInfoDescription.js +3 -3
  154. package/esm2015/lib/TemplateColumnDescription.js +6 -6
  155. package/esm2015/lib/TemplateHeaderCellInfoDescription.js +3 -3
  156. package/esm2015/lib/TextCellInfoDescription.js +3 -3
  157. package/esm2015/lib/TextColumnDescription.js +26 -18
  158. package/esm2015/lib/TextColumnDescriptionMetadata.js +3 -2
  159. package/esm2015/lib/TextHeaderCellInfoDescription.js +15 -15
  160. package/esm2015/lib/TimeAxisBaseDescription.js +24 -24
  161. package/esm2015/lib/TimeXAxisDescription.js +12 -12
  162. package/esm2015/lib/ToolActionButtonPairInfoDescription.js +92 -44
  163. package/esm2015/lib/ToolActionButtonPairInfoDescriptionMetadata.js +6 -0
  164. package/esm2015/lib/TrendLineLayerDescription.js +8 -8
  165. package/esm2015/lib/TrendLineLayerDescriptionMetadata.js +2 -1
  166. package/esm2015/lib/ValueLayerDescription.js +33 -49
  167. package/esm2015/lib/ValueLayerDescriptionMetadata.js +2 -2
  168. package/esm2015/lib/VirtualDataSource.js +1 -1
  169. package/esm2015/lib/WebTabsDescription.js +15 -7
  170. package/esm2015/lib/WebTabsDescriptionMetadata.js +3 -0
  171. package/esm2015/lib/WrapperExpressionDescription.js +25 -9
  172. package/esm2015/lib/WrapperExpressionDescriptionMetadata.js +2 -0
  173. package/esm2015/lib/XYChartDescription.js +228 -228
  174. package/esm2015/lib/XamMultiScaleImageView_combined.js +110 -98
  175. package/esm2015/lib/igx-base-generic-data-source.js +183 -0
  176. package/esm2015/lib/igx-data-legend-series-context.js +6 -4
  177. package/esm2015/lib/igx-data-source-group-description-collection.js +70 -0
  178. package/esm2015/lib/igx-data-source-group-description-dynamic-module.js +34 -0
  179. package/esm2015/lib/igx-data-source-group-description-module.js +26 -0
  180. package/esm2015/lib/igx-data-source-group-description.js +16 -0
  181. package/esm2015/lib/igx-data-source-sort-description-collection.js +80 -0
  182. package/esm2015/lib/igx-data-source-sort-description-dynamic-module.js +34 -0
  183. package/esm2015/lib/igx-data-source-sort-description-module.js +26 -0
  184. package/esm2015/lib/igx-data-source-sort-description.js +64 -0
  185. package/esm2015/lib/igx-data-source-summary-description-collection.js +80 -0
  186. package/esm2015/lib/igx-data-source-summary-description-dynamic-module.js +34 -0
  187. package/esm2015/lib/igx-data-source-summary-description-module.js +26 -0
  188. package/esm2015/lib/igx-data-source-summary-description.js +106 -0
  189. package/esm2015/lib/igx-generic-virtual-data-source-dynamic-module.js +35 -0
  190. package/esm2015/lib/igx-generic-virtual-data-source-module.js +33 -0
  191. package/esm2015/lib/igx-generic-virtual-data-source.js +119 -0
  192. package/esm2015/lib/igx-page-requested-event-args.js +76 -0
  193. package/esm2015/lib/igx-popup-component.js +3 -1
  194. package/esm2015/public_api.js +66 -0
  195. package/esm5/lib/AsyncDataSourcePageRequest.js +18 -7
  196. package/esm5/lib/AsyncVirtualDataSourceProviderWorker.js +17 -16
  197. package/esm5/lib/AsyncVirtualDataTaskCompletionSource.js +39 -0
  198. package/esm5/lib/AxisDescription.js +532 -196
  199. package/esm5/lib/AxisDescriptionMetadata.js +32 -0
  200. package/esm5/lib/AzureMapsMapImageryDescription.js +97 -0
  201. package/esm5/lib/AzureMapsMapImageryDescriptionMetadata.js +49 -0
  202. package/esm5/lib/AzureMapsMapImageryDescriptionModule.js +24 -0
  203. package/esm5/lib/AzureMapsTileSource.js +138 -0
  204. package/esm5/lib/BaseGenericDataSource.js +107 -0
  205. package/esm5/lib/BaseGenericDataSourceDescription.js +80 -0
  206. package/esm5/lib/BaseGenericDataSourceDescriptionMetadata.js +42 -0
  207. package/esm5/lib/BaseVirtualDataProvider.js +484 -0
  208. package/esm5/lib/CanvasViewRenderer.js +11 -6
  209. package/esm5/lib/CategoryAngleAxisDescription.js +21 -21
  210. package/esm5/lib/CategoryAxisBaseDescription.js +24 -24
  211. package/esm5/lib/CategoryChartDescription.js +130 -130
  212. package/esm5/lib/CategoryDateTimeXAxisDescription.js +24 -24
  213. package/esm5/lib/CategoryHighlightLayerDescriptionMetadata.js +1 -0
  214. package/esm5/lib/CategoryToolTipLayerDescription.js +39 -3
  215. package/esm5/lib/CategoryToolTipLayerDescriptionMetadata.js +4 -0
  216. package/esm5/lib/CategoryXAxisDescription.js +57 -33
  217. package/esm5/lib/CategoryXAxisDescriptionMetadata.js +2 -0
  218. package/esm5/lib/CategoryYAxisDescription.js +57 -33
  219. package/esm5/lib/CategoryYAxisDescriptionMetadata.js +2 -0
  220. package/esm5/lib/CellInfoDescription.js +381 -201
  221. package/esm5/lib/CellInfoDescriptionMetadata.js +16 -0
  222. package/esm5/lib/ChartMouseEventArgsDescription.js +21 -9
  223. package/esm5/lib/ChartResizeIdleEventArgsDescription.js +31 -0
  224. package/esm5/lib/ChartResizeIdleEventArgsDescriptionMetadata.js +40 -0
  225. package/esm5/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +254 -254
  226. package/esm5/lib/ColumnGroupDescriptionDescriptionMetadata.js +2 -2
  227. package/esm5/lib/ColumnSummaryDescriptionDescriptionMetadata.js +2 -2
  228. package/esm5/lib/ComboBoxColumnDescription.js +24 -12
  229. package/esm5/lib/ComboBoxColumnDescriptionMetadata.js +2 -1
  230. package/esm5/lib/ComponentRendererAdapter.js +5 -3
  231. package/esm5/lib/ComponentRendererMethodHelperBuilder_combined.js +506 -179
  232. package/esm5/lib/ComponentRenderer_combined.js +723 -597
  233. package/esm5/lib/CustomLocalDataSourceDescription.js +31 -0
  234. package/esm5/lib/CustomLocalDataSourceDescriptionMetadata.js +40 -0
  235. package/esm5/lib/CustomLocalDataSourceDescriptionModule.js +24 -0
  236. package/esm5/lib/DataAnnotationAxisLayerDescriptionMetadata.js +1 -0
  237. package/esm5/lib/DataChartDashboardTileDescriptionModule.js +2 -0
  238. package/esm5/lib/DataChartDescription.js +99 -99
  239. package/esm5/lib/DataChartMouseButtonEventArgsDescription.js +27 -15
  240. package/esm5/lib/DataGridCellEventArgsDescriptionMetadata_combined.js +3 -1
  241. package/esm5/lib/DataGridColumnDescription.js +289 -109
  242. package/esm5/lib/DataGridColumnDescriptionMetadata.js +16 -0
  243. package/esm5/lib/DataGridDescription.js +633 -609
  244. package/esm5/lib/DataLegendDescription.js +430 -382
  245. package/esm5/lib/DataLegendDescriptionMetadata.js +4 -0
  246. package/esm5/lib/DataPieBaseChartDescription.js +172 -112
  247. package/esm5/lib/DataPieBaseChartDescriptionMetadata.js +9 -4
  248. package/esm5/lib/DataPieChartDescription.js +36 -36
  249. package/esm5/lib/DataPieChartDescriptionModule.js +2 -0
  250. package/esm5/lib/DataSourceGroupDescription.js +59 -0
  251. package/esm5/lib/DataSourceGroupDescriptionCollection.js +94 -0
  252. package/esm5/lib/DataSourceGroupDescriptionDescription.js +26 -0
  253. package/esm5/lib/DataSourceGroupDescriptionDescriptionMetadata.js +43 -0
  254. package/esm5/lib/DataSourceGroupDescriptionDescriptionModule.js +26 -0
  255. package/esm5/lib/DataSourceSortDescription.js +75 -0
  256. package/esm5/lib/DataSourceSortDescriptionCollection.js +110 -0
  257. package/esm5/lib/DataSourceSortDescriptionDescription.js +58 -0
  258. package/esm5/lib/DataSourceSortDescriptionDescriptionMetadata.js +44 -0
  259. package/esm5/lib/DataSourceSortDescriptionDescriptionModule.js +24 -0
  260. package/esm5/lib/DataSourceSummaryDescription.js +149 -0
  261. package/esm5/lib/DataSourceSummaryDescriptionCollection.js +116 -0
  262. package/esm5/lib/DataSourceSummaryDescriptionDescription.js +94 -0
  263. package/esm5/lib/DataSourceSummaryDescriptionDescriptionMetadata.js +49 -0
  264. package/esm5/lib/DataSourceSummaryDescriptionDescriptionModule.js +24 -0
  265. package/esm5/lib/DataToolTipLayerDescription.js +263 -227
  266. package/esm5/lib/DataToolTipLayerDescriptionMetadata.js +4 -0
  267. package/esm5/lib/DateTimeCellInfoDescription.js +18 -18
  268. package/esm5/lib/DateTimeCellInfoDescriptionMetadata.js +1 -1
  269. package/esm5/lib/DateTimeColumnDescription.js +47 -35
  270. package/esm5/lib/DateTimeColumnDescriptionMetadata.js +4 -3
  271. package/esm5/lib/DescriptionSerializer.js +1 -1
  272. package/esm5/lib/DomainChartDescription.js +636 -588
  273. package/esm5/lib/DomainChartDescriptionMetadata.js +6 -2
  274. package/esm5/lib/DomainChartSeriesPointerEventArgsDescription.js +21 -9
  275. package/esm5/lib/DomainChartSeriesPointerEventArgsDescriptionMetadata.js +1 -0
  276. package/esm5/lib/EditorCellInfoDescription.js +30 -30
  277. package/esm5/lib/FilterCellInfoDescription.js +36 -36
  278. package/esm5/lib/FilterExpressionDescription.js +98 -1
  279. package/esm5/lib/FilterExpressionDescriptionMetadata.js +8 -0
  280. package/esm5/lib/FinancialChartDescription.js +176 -176
  281. package/esm5/lib/FontRegistry.js +53 -0
  282. package/esm5/lib/FunctionFilterExpressionDescription.js +42 -6
  283. package/esm5/lib/FunctionFilterExpressionDescriptionMetadata.js +3 -0
  284. package/esm5/lib/GenericDataSourcePage.js +84 -0
  285. package/esm5/lib/GenericDataSourceSchemaPropertyType.js +37 -0
  286. package/esm5/lib/GenericInternalVirtualDataProvider.js +250 -0
  287. package/esm5/lib/GenericInternalVirtualDataSource.js +151 -0
  288. package/esm5/lib/GenericPageResponse.js +39 -0
  289. package/esm5/lib/GenericSectionInformation.js +77 -0
  290. package/esm5/lib/GenericSummaryResult.js +88 -0
  291. package/esm5/lib/GenericVirtualDataProviderWorker.js +180 -0
  292. package/esm5/lib/GenericVirtualDataProviderWorkerSettings.js +88 -0
  293. package/esm5/lib/GenericVirtualDataSource.js +180 -0
  294. package/esm5/lib/GenericVirtualDataSourceDescription.js +37 -0
  295. package/esm5/lib/GenericVirtualDataSourceDescriptionMetadata.js +45 -0
  296. package/esm5/lib/GenericVirtualDataSourceDescriptionModule.js +24 -0
  297. package/esm5/lib/GeographicMapImageryDescription_combined.js +41 -41
  298. package/esm5/lib/GeometryUtil.js +18 -3
  299. package/esm5/lib/GridConditionalStyleFontInfoDescription.js +80 -0
  300. package/esm5/lib/GridConditionalStyleFontInfoDescriptionMetadata.js +44 -0
  301. package/esm5/lib/GridConditionalStyleFontInfoDescriptionModule.js +24 -0
  302. package/esm5/lib/HierarchicalRingSeriesDescription.js +3 -3
  303. package/esm5/lib/IRenderer_combined.js +21 -15
  304. package/esm5/lib/ImageCellInfoDescription.js +9 -9
  305. package/esm5/lib/ImageColumnDescription.js +32 -20
  306. package/esm5/lib/ImageColumnDescriptionMetadata.js +3 -2
  307. package/esm5/lib/ItemToolTipLayerDescription.js +42 -6
  308. package/esm5/lib/ItemToolTipLayerDescriptionMetadata.js +3 -0
  309. package/esm5/lib/LayoutPrimaryKeyValueDescriptionMetadata.js +1 -1
  310. package/esm5/lib/ListPanelPrimaryKeyValueDescriptionMetadata.js +1 -1
  311. package/esm5/lib/LiteralFilterExpressionDescription.js +42 -6
  312. package/esm5/lib/LiteralFilterExpressionDescriptionMetadata.js +3 -0
  313. package/esm5/lib/NumericAngleAxisDescription.js +6 -6
  314. package/esm5/lib/NumericAxisBaseDescription.js +156 -84
  315. package/esm5/lib/NumericAxisBaseDescriptionMetadata.js +6 -0
  316. package/esm5/lib/NumericCellInfoDescription.js +39 -39
  317. package/esm5/lib/NumericCellInfoDescriptionMetadata.js +1 -1
  318. package/esm5/lib/NumericColumnDescription.js +62 -50
  319. package/esm5/lib/NumericColumnDescriptionMetadata.js +4 -3
  320. package/esm5/lib/NumericRadiusAxisDescription.js +6 -6
  321. package/esm5/lib/OperationFilterExpressionDescription.js +111 -15
  322. package/esm5/lib/OperationFilterExpressionDescriptionMetadata.js +8 -0
  323. package/esm5/lib/OrdinalTimeXAxisDescription.js +15 -15
  324. package/esm5/lib/PagePredictionEngine.js +1 -1
  325. package/esm5/lib/PageRequestedEventArgs.js +26 -0
  326. package/esm5/lib/PageRequestedEventArgsDescription.js +92 -0
  327. package/esm5/lib/PageRequestedEventArgsDescriptionMetadata.js +45 -0
  328. package/esm5/lib/PieSliceCollisionGeometry.js +1 -1
  329. package/esm5/lib/PlatformAPIHelper.js +9 -1
  330. package/esm5/lib/PlotAreaMouseButtonEventArgsDescriptionMetadata_combined.js +14 -0
  331. package/esm5/lib/PrimaryKeyValueDescriptionMetadata.js +1 -1
  332. package/esm5/lib/PropertyReferenceFilterExpressionDescription.js +27 -3
  333. package/esm5/lib/PropertyReferenceFilterExpressionDescriptionMetadata.js +2 -0
  334. package/esm5/lib/ProportionalCategoryAngleAxisDescription.js +12 -12
  335. package/esm5/lib/RadialBaseChartDescription.js +228 -228
  336. package/esm5/lib/RadialPieSeriesDescription.js +24 -12
  337. package/esm5/lib/RadialPieSeriesDescriptionMetadata.js +1 -0
  338. package/esm5/lib/RingSeriesBaseDescription.js +18 -6
  339. package/esm5/lib/RingSeriesBaseDescriptionMetadata.js +1 -0
  340. package/esm5/lib/RingSeriesDescription.js +3 -3
  341. package/esm5/lib/SectionHeaderCellInfoDescription.js +9 -9
  342. package/esm5/lib/SeriesViewerDescription.js +509 -389
  343. package/esm5/lib/StraightNumericAxisBaseDescription.js +3 -3
  344. package/esm5/lib/SummaryCellInfoDescription.js +21 -21
  345. package/esm5/lib/TemplateCellInfoDescription.js +3 -3
  346. package/esm5/lib/TemplateColumnDescription.js +6 -6
  347. package/esm5/lib/TemplateHeaderCellInfoDescription.js +3 -3
  348. package/esm5/lib/TextCellInfoDescription.js +3 -3
  349. package/esm5/lib/TextColumnDescription.js +29 -17
  350. package/esm5/lib/TextColumnDescriptionMetadata.js +3 -2
  351. package/esm5/lib/TextHeaderCellInfoDescription.js +15 -15
  352. package/esm5/lib/TimeAxisBaseDescription.js +24 -24
  353. package/esm5/lib/TimeXAxisDescription.js +12 -12
  354. package/esm5/lib/ToolActionButtonPairInfoDescription.js +115 -43
  355. package/esm5/lib/ToolActionButtonPairInfoDescriptionMetadata.js +6 -0
  356. package/esm5/lib/TrendLineLayerDescription.js +9 -9
  357. package/esm5/lib/TrendLineLayerDescriptionMetadata.js +2 -1
  358. package/esm5/lib/ValueLayerDescription.js +32 -56
  359. package/esm5/lib/ValueLayerDescriptionMetadata.js +2 -2
  360. package/esm5/lib/VirtualDataSource.js +1 -1
  361. package/esm5/lib/WebTabsDescription.js +19 -7
  362. package/esm5/lib/WebTabsDescriptionMetadata.js +3 -0
  363. package/esm5/lib/WrapperExpressionDescription.js +33 -9
  364. package/esm5/lib/WrapperExpressionDescriptionMetadata.js +2 -0
  365. package/esm5/lib/XYChartDescription.js +228 -228
  366. package/esm5/lib/XamMultiScaleImageView_combined.js +109 -97
  367. package/esm5/lib/igx-base-generic-data-source.js +209 -0
  368. package/esm5/lib/igx-data-legend-series-context.js +6 -4
  369. package/esm5/lib/igx-data-source-group-description-collection.js +76 -0
  370. package/esm5/lib/igx-data-source-group-description-dynamic-module.js +33 -0
  371. package/esm5/lib/igx-data-source-group-description-module.js +27 -0
  372. package/esm5/lib/igx-data-source-group-description.js +24 -0
  373. package/esm5/lib/igx-data-source-sort-description-collection.js +90 -0
  374. package/esm5/lib/igx-data-source-sort-description-dynamic-module.js +33 -0
  375. package/esm5/lib/igx-data-source-sort-description-module.js +27 -0
  376. package/esm5/lib/igx-data-source-sort-description.js +78 -0
  377. package/esm5/lib/igx-data-source-summary-description-collection.js +90 -0
  378. package/esm5/lib/igx-data-source-summary-description-dynamic-module.js +33 -0
  379. package/esm5/lib/igx-data-source-summary-description-module.js +27 -0
  380. package/esm5/lib/igx-data-source-summary-description.js +133 -0
  381. package/esm5/lib/igx-generic-virtual-data-source-dynamic-module.js +34 -0
  382. package/esm5/lib/igx-generic-virtual-data-source-module.js +32 -0
  383. package/esm5/lib/igx-generic-virtual-data-source.js +133 -0
  384. package/esm5/lib/igx-page-requested-event-args.js +102 -0
  385. package/esm5/lib/igx-popup-component.js +3 -1
  386. package/esm5/public_api.js +66 -0
  387. package/fesm2015/igniteui-angular-core.js +13513 -7629
  388. package/fesm5/igniteui-angular-core.js +15947 -8807
  389. package/lib/AsyncDataSourcePageRequest.d.ts +4 -1
  390. package/lib/AsyncVirtualDataSourceProviderWorker.d.ts +4 -3
  391. package/lib/AsyncVirtualDataTaskCompletionSource.d.ts +14 -0
  392. package/lib/AxisDescription.d.ts +151 -67
  393. package/lib/AzureMapsMapImageryDescription.d.ts +28 -0
  394. package/lib/AzureMapsMapImageryDescriptionMetadata.d.ts +13 -0
  395. package/lib/AzureMapsMapImageryDescriptionModule.d.ts +9 -0
  396. package/lib/AzureMapsTileSource.d.ts +33 -0
  397. package/lib/BaseGenericDataSource.d.ts +36 -0
  398. package/lib/BaseGenericDataSourceDescription.d.ts +27 -0
  399. package/lib/BaseGenericDataSourceDescriptionMetadata.d.ts +13 -0
  400. package/lib/BaseVirtualDataProvider.d.ts +113 -0
  401. package/lib/CanvasViewRenderer.d.ts +7 -6
  402. package/lib/CategoryAngleAxisDescription.d.ts +7 -7
  403. package/lib/CategoryAxisBaseDescription.d.ts +8 -8
  404. package/lib/CategoryChartDescription.d.ts +45 -45
  405. package/lib/CategoryDateTimeXAxisDescription.d.ts +8 -8
  406. package/lib/CategoryToolTipLayerDescription.d.ts +10 -1
  407. package/lib/CategoryXAxisDescription.d.ts +17 -11
  408. package/lib/CategoryYAxisDescription.d.ts +17 -11
  409. package/lib/CellInfoDescription.d.ts +116 -71
  410. package/lib/ChartMouseEventArgsDescription.d.ts +6 -3
  411. package/lib/ChartResizeIdleEventArgsDescription.d.ts +11 -0
  412. package/lib/ChartResizeIdleEventArgsDescriptionMetadata.d.ts +13 -0
  413. package/lib/CodeGeneratingComponentRendererCodeEmitter_combined.d.ts +29 -29
  414. package/lib/ComboBoxColumnDescription.d.ts +8 -4
  415. package/lib/ComponentRendererMethodHelperBuilder_combined.d.ts +36 -13
  416. package/lib/ComponentRenderer_combined.d.ts +119 -113
  417. package/lib/CustomLocalDataSourceDescription.d.ts +11 -0
  418. package/lib/CustomLocalDataSourceDescriptionMetadata.d.ts +13 -0
  419. package/lib/CustomLocalDataSourceDescriptionModule.d.ts +9 -0
  420. package/lib/DataChartDescription.d.ts +33 -33
  421. package/lib/DataChartMouseButtonEventArgsDescription.d.ts +8 -5
  422. package/lib/DataGridColumnDescription.d.ts +82 -37
  423. package/lib/DataGridDescription.d.ts +219 -212
  424. package/lib/DataLegendDescription.d.ts +150 -138
  425. package/lib/DataPieBaseChartDescription.d.ts +53 -38
  426. package/lib/DataPieChartDescription.d.ts +12 -12
  427. package/lib/DataSourceGroupDescription.d.ts +16 -0
  428. package/lib/DataSourceGroupDescriptionCollection.d.ts +27 -0
  429. package/lib/DataSourceGroupDescriptionDescription.d.ts +12 -0
  430. package/lib/DataSourceGroupDescriptionDescriptionMetadata.d.ts +13 -0
  431. package/lib/DataSourceGroupDescriptionDescriptionModule.d.ts +9 -0
  432. package/lib/DataSourceSortDescription.d.ts +20 -0
  433. package/lib/DataSourceSortDescriptionCollection.d.ts +31 -0
  434. package/lib/DataSourceSortDescriptionDescription.d.ts +19 -0
  435. package/lib/DataSourceSortDescriptionDescriptionMetadata.d.ts +13 -0
  436. package/lib/DataSourceSortDescriptionDescriptionModule.d.ts +9 -0
  437. package/lib/DataSourceSummaryDescription.d.ts +38 -0
  438. package/lib/DataSourceSummaryDescriptionCollection.d.ts +31 -0
  439. package/lib/DataSourceSummaryDescriptionDescription.d.ts +28 -0
  440. package/lib/DataSourceSummaryDescriptionDescriptionMetadata.d.ts +13 -0
  441. package/lib/DataSourceSummaryDescriptionDescriptionModule.d.ts +9 -0
  442. package/lib/DataToolTipLayerDescription.d.ts +91 -82
  443. package/lib/DateTimeCellInfoDescription.d.ts +6 -6
  444. package/lib/DateTimeColumnDescription.d.ts +17 -13
  445. package/lib/DomainChartDescription.d.ts +216 -204
  446. package/lib/DomainChartSeriesPointerEventArgsDescription.d.ts +6 -3
  447. package/lib/EditorCellInfoDescription.d.ts +10 -10
  448. package/lib/FilterCellInfoDescription.d.ts +12 -12
  449. package/lib/FilterExpressionDescription.d.ts +24 -0
  450. package/lib/FinancialChartDescription.d.ts +61 -61
  451. package/lib/FontRegistry.d.ts +13 -0
  452. package/lib/FunctionFilterExpressionDescription.d.ts +11 -2
  453. package/lib/GenericDataSourcePage.d.ts +35 -0
  454. package/lib/GenericDataSourceSchemaPropertyType.d.ts +30 -0
  455. package/lib/GenericInternalVirtualDataProvider.d.ts +43 -0
  456. package/lib/GenericInternalVirtualDataSource.d.ts +49 -0
  457. package/lib/GenericPageResponse.d.ts +23 -0
  458. package/lib/GenericSectionInformation.d.ts +23 -0
  459. package/lib/GenericSummaryResult.d.ts +27 -0
  460. package/lib/GenericVirtualDataProviderWorker.d.ts +39 -0
  461. package/lib/GenericVirtualDataProviderWorkerSettings.d.ts +31 -0
  462. package/lib/GenericVirtualDataSource.d.ts +41 -0
  463. package/lib/GenericVirtualDataSourceDescription.d.ts +13 -0
  464. package/lib/GenericVirtualDataSourceDescriptionMetadata.d.ts +13 -0
  465. package/lib/GenericVirtualDataSourceDescriptionModule.d.ts +9 -0
  466. package/lib/GeographicMapImageryDescription_combined.d.ts +14 -14
  467. package/lib/GeometryUtil.d.ts +4 -3
  468. package/lib/GridConditionalStyleFontInfoDescription.d.ts +23 -0
  469. package/lib/GridConditionalStyleFontInfoDescriptionMetadata.d.ts +13 -0
  470. package/lib/GridConditionalStyleFontInfoDescriptionModule.d.ts +9 -0
  471. package/lib/HierarchicalRingSeriesDescription.d.ts +1 -1
  472. package/lib/IRenderer_combined.d.ts +14 -12
  473. package/lib/ImageCellInfoDescription.d.ts +3 -3
  474. package/lib/ImageColumnDescription.d.ts +12 -8
  475. package/lib/ItemToolTipLayerDescription.d.ts +11 -2
  476. package/lib/LiteralFilterExpressionDescription.d.ts +11 -2
  477. package/lib/NumericAngleAxisDescription.d.ts +2 -2
  478. package/lib/NumericAxisBaseDescription.d.ts +46 -28
  479. package/lib/NumericCellInfoDescription.d.ts +13 -13
  480. package/lib/NumericColumnDescription.d.ts +22 -18
  481. package/lib/NumericRadiusAxisDescription.d.ts +2 -2
  482. package/lib/OperationFilterExpressionDescription.d.ts +29 -5
  483. package/lib/OrdinalTimeXAxisDescription.d.ts +5 -5
  484. package/lib/PageRequestedEventArgs.d.ts +12 -0
  485. package/lib/PageRequestedEventArgsDescription.d.ts +26 -0
  486. package/lib/PageRequestedEventArgsDescriptionMetadata.d.ts +13 -0
  487. package/lib/PropertyReferenceFilterExpressionDescription.d.ts +7 -1
  488. package/lib/ProportionalCategoryAngleAxisDescription.d.ts +4 -4
  489. package/lib/RadialBaseChartDescription.d.ts +80 -80
  490. package/lib/RadialPieSeriesDescription.d.ts +7 -4
  491. package/lib/RingSeriesBaseDescription.d.ts +5 -2
  492. package/lib/RingSeriesDescription.d.ts +1 -1
  493. package/lib/SectionHeaderCellInfoDescription.d.ts +3 -3
  494. package/lib/SeriesViewerDescription.d.ts +167 -137
  495. package/lib/StraightNumericAxisBaseDescription.d.ts +1 -1
  496. package/lib/SummaryCellInfoDescription.d.ts +7 -7
  497. package/lib/TemplateCellInfoDescription.d.ts +1 -1
  498. package/lib/TemplateColumnDescription.d.ts +2 -2
  499. package/lib/TemplateHeaderCellInfoDescription.d.ts +1 -1
  500. package/lib/TextCellInfoDescription.d.ts +1 -1
  501. package/lib/TextColumnDescription.d.ts +11 -7
  502. package/lib/TextHeaderCellInfoDescription.d.ts +5 -5
  503. package/lib/TimeAxisBaseDescription.d.ts +8 -8
  504. package/lib/TimeXAxisDescription.d.ts +4 -4
  505. package/lib/ToolActionButtonPairInfoDescription.d.ts +33 -15
  506. package/lib/TrendLineLayerDescription.d.ts +3 -3
  507. package/lib/ValueLayerDescription.d.ts +11 -17
  508. package/lib/WebTabsDescription.d.ts +7 -3
  509. package/lib/WrapperExpressionDescription.d.ts +9 -3
  510. package/lib/XYChartDescription.d.ts +80 -80
  511. package/lib/XamMultiScaleImageView_combined.d.ts +40 -36
  512. package/lib/igx-base-generic-data-source.d.ts +52 -0
  513. package/lib/igx-data-legend-series-context.d.ts +4 -4
  514. package/lib/igx-data-source-group-description-collection.d.ts +20 -0
  515. package/lib/igx-data-source-group-description-dynamic-module.d.ts +9 -0
  516. package/lib/igx-data-source-group-description-module.d.ts +7 -0
  517. package/lib/igx-data-source-group-description.d.ts +10 -0
  518. package/lib/igx-data-source-sort-description-collection.d.ts +26 -0
  519. package/lib/igx-data-source-sort-description-dynamic-module.d.ts +9 -0
  520. package/lib/igx-data-source-sort-description-module.d.ts +7 -0
  521. package/lib/igx-data-source-sort-description.d.ts +31 -0
  522. package/lib/igx-data-source-summary-description-collection.d.ts +26 -0
  523. package/lib/igx-data-source-summary-description-dynamic-module.d.ts +9 -0
  524. package/lib/igx-data-source-summary-description-module.d.ts +7 -0
  525. package/lib/igx-data-source-summary-description.d.ts +42 -0
  526. package/lib/igx-generic-virtual-data-source-dynamic-module.d.ts +9 -0
  527. package/lib/igx-generic-virtual-data-source-module.d.ts +8 -0
  528. package/lib/igx-generic-virtual-data-source.d.ts +60 -0
  529. package/lib/igx-page-requested-event-args.d.ts +45 -0
  530. package/lib/igx-popup-component.d.ts +1 -1
  531. package/package.json +1 -1
  532. package/public_api.d.ts +66 -0
@@ -4,12 +4,14 @@ https://www.infragistics.com/legal/license/igultimate-la
4
4
  https://www.infragistics.com/legal/license/igultimate-eula
5
5
  GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
6
  */
7
- import { Base, fromEnum, markType, EnumUtil } from "./type";
7
+ import { Base, fromEnum, markType, typeGetValue, typeCast, Array_$type, Boolean_$type, EnumUtil } from "./type";
8
8
  import { List$1 } from "./List$1";
9
9
  import { JsonDictionaryObject } from "./JsonDictionaryObject";
10
10
  import { JsonDictionaryArray } from "./JsonDictionaryArray";
11
11
  import { JsonDictionaryValue } from "./JsonDictionaryValue";
12
12
  import { TypeDescriptionWellKnownType_$type } from "./TypeDescriptionWellKnownType";
13
+ import { EmbeddedRefDescription } from "./EmbeddedRefDescription";
14
+ import { dateToStringFormat } from "./dateExtended";
13
15
  /**
14
16
  * @hidden
15
17
  */
@@ -17,52 +19,70 @@ export let ComponentRendererMethodHelperBuilder = /*@__PURE__*/ (() => {
17
19
  class ComponentRendererMethodHelperBuilder extends Base {
18
20
  constructor(a, b) {
19
21
  super();
20
- this.e = null;
21
- this.f = null;
22
- this.d = new List$1(ComponentRendererMethodHelperArgumentBuilder.$, 0);
23
- this.b = null;
24
- this.e = a;
25
- this.f = b;
22
+ this.i = null;
23
+ this.j = null;
24
+ this.g = new List$1(ComponentRendererMethodHelperArgumentBuilder.$, 0);
25
+ this.c = null;
26
+ this.i = a;
27
+ this.j = b;
28
+ }
29
+ get methodName() {
30
+ return this.i;
31
+ }
32
+ get targetRef() {
33
+ return this.j;
34
+ }
35
+ getArgumentCount() {
36
+ return this.g.count;
37
+ }
38
+ getArgument(a) {
39
+ return this.g._inner[a];
40
+ }
41
+ hasReturn() {
42
+ return this.c != null;
43
+ }
44
+ getReturn() {
45
+ return this.c;
26
46
  }
27
47
  argument() {
28
48
  let a = new ComponentRendererMethodHelperArgumentBuilder(this);
29
- this.d.add(a);
49
+ this.g.add(a);
30
50
  return a;
31
51
  }
32
52
  $return() {
33
53
  let a = new ComponentRendererMethodHelperReturnBuilder(this);
34
- this.b = a;
54
+ this.c = a;
35
55
  return a;
36
56
  }
37
57
  build() {
38
58
  let a = new JsonDictionaryObject();
39
59
  let b = new JsonDictionaryArray();
40
60
  a.item("args", b);
41
- let c = new Array(this.d.count);
61
+ let c = new Array(this.g.count);
42
62
  let d = 0;
43
- for (let e of fromEnum(this.d)) {
44
- c[d] = e.y();
63
+ for (let e of fromEnum(this.g)) {
64
+ c[d] = e.af();
45
65
  d++;
46
66
  }
47
67
  b.items = c;
48
- if (this.f != null) {
68
+ if (this.j != null) {
49
69
  a.item("targetRef", ((() => {
50
70
  let $ret = new JsonDictionaryValue();
51
71
  $ret.e = 2;
52
- $ret.value = this.f;
72
+ $ret.value = this.j;
53
73
  return $ret;
54
74
  })()));
55
75
  }
56
76
  a.item("methodName", ((() => {
57
77
  let $ret = new JsonDictionaryValue();
58
78
  $ret.e = 2;
59
- $ret.value = this.e;
79
+ $ret.value = this.i;
60
80
  return $ret;
61
81
  })()));
62
- if (this.b == null) {
82
+ if (this.c == null) {
63
83
  this.$return().asVoid();
64
84
  }
65
- a.item("return", this.b.x());
85
+ a.item("return", this.c.x());
66
86
  return a.b();
67
87
  }
68
88
  }
@@ -76,28 +96,43 @@ export let ComponentRendererMethodHelperArgumentBuilder = /*@__PURE__*/ (() => {
76
96
  class ComponentRendererMethodHelperArgumentBuilder extends Base {
77
97
  constructor(a) {
78
98
  super();
79
- this.v = null;
80
- this.z = 0;
81
99
  this.ac = null;
82
- this.ab = null;
83
- this.aa = null;
84
- this.x = null;
85
- this.v = a;
100
+ this.ah = 0;
101
+ this.al = null;
102
+ this.ak = null;
103
+ this.aj = null;
104
+ this.ae = null;
105
+ this.ac = a;
86
106
  }
87
107
  argument() {
88
- return this.v.argument();
108
+ return this.ac.argument();
89
109
  }
90
110
  $return() {
91
- return this.v.$return();
111
+ return this.ac.$return();
92
112
  }
93
113
  build() {
94
- return this.v.build();
114
+ return this.ac.build();
115
+ }
116
+ get ai() {
117
+ return this.ah;
118
+ }
119
+ get ao() {
120
+ return this.ak;
121
+ }
122
+ get ap() {
123
+ return this.al;
124
+ }
125
+ get an() {
126
+ return this.aj;
127
+ }
128
+ get ag() {
129
+ return this.ae;
95
130
  }
96
131
  asInt(a) {
97
- this.z = 1;
98
- this.ac = null;
99
- this.ab = "int";
100
- this.x = ((() => {
132
+ this.ah = 1;
133
+ this.al = null;
134
+ this.ak = "int";
135
+ this.ae = ((() => {
101
136
  let $ret = new JsonDictionaryValue();
102
137
  $ret.e = 0;
103
138
  $ret.value = a;
@@ -106,11 +141,11 @@ export let ComponentRendererMethodHelperArgumentBuilder = /*@__PURE__*/ (() => {
106
141
  return this;
107
142
  }
108
143
  asIntArray(a) {
109
- this.z = 10;
110
- this.ac = null;
111
- this.ab = "int";
144
+ this.ah = 10;
145
+ this.al = null;
146
+ this.ak = "int";
112
147
  if (a == null) {
113
- this.x = ((() => {
148
+ this.ae = ((() => {
114
149
  let $ret = new JsonDictionaryValue();
115
150
  $ret.e = 3;
116
151
  $ret.value = null;
@@ -128,15 +163,15 @@ export let ComponentRendererMethodHelperArgumentBuilder = /*@__PURE__*/ (() => {
128
163
  return $ret;
129
164
  })());
130
165
  }
131
- this.x = b;
166
+ this.ae = b;
132
167
  }
133
168
  return this;
134
169
  }
135
170
  asDouble(a) {
136
- this.z = 1;
137
- this.ac = null;
138
- this.ab = "double";
139
- this.x = ((() => {
171
+ this.ah = 1;
172
+ this.al = null;
173
+ this.ak = "double";
174
+ this.ae = ((() => {
140
175
  let $ret = new JsonDictionaryValue();
141
176
  $ret.e = 0;
142
177
  $ret.value = a;
@@ -144,12 +179,51 @@ export let ComponentRendererMethodHelperArgumentBuilder = /*@__PURE__*/ (() => {
144
179
  })());
145
180
  return this;
146
181
  }
182
+ asDate(a) {
183
+ this.ah = 3;
184
+ this.al = null;
185
+ this.ak = null;
186
+ this.ae = ((() => {
187
+ let $ret = new JsonDictionaryValue();
188
+ $ret.e = 2;
189
+ $ret.value = dateToStringFormat(a, "o");
190
+ return $ret;
191
+ })());
192
+ return this;
193
+ }
194
+ asDateArray(a) {
195
+ this.ah = 10;
196
+ this.al = null;
197
+ this.ak = "DateTime";
198
+ if (a == null) {
199
+ this.ae = ((() => {
200
+ let $ret = new JsonDictionaryValue();
201
+ $ret.e = 3;
202
+ $ret.value = null;
203
+ return $ret;
204
+ })());
205
+ }
206
+ else {
207
+ let b = new JsonDictionaryArray();
208
+ b.items = new Array(a.length);
209
+ for (let c = 0; c < a.length; c++) {
210
+ b.items[c] = ((() => {
211
+ let $ret = new JsonDictionaryValue();
212
+ $ret.e = 2;
213
+ $ret.value = dateToStringFormat(a[c], "o");
214
+ return $ret;
215
+ })());
216
+ }
217
+ this.ae = b;
218
+ }
219
+ return this;
220
+ }
147
221
  asDoubleArray(a) {
148
- this.z = 10;
149
- this.ac = null;
150
- this.ab = "double";
222
+ this.ah = 10;
223
+ this.al = null;
224
+ this.ak = "double";
151
225
  if (a == null) {
152
- this.x = ((() => {
226
+ this.ae = ((() => {
153
227
  let $ret = new JsonDictionaryValue();
154
228
  $ret.e = 3;
155
229
  $ret.value = null;
@@ -167,15 +241,15 @@ export let ComponentRendererMethodHelperArgumentBuilder = /*@__PURE__*/ (() => {
167
241
  return $ret;
168
242
  })());
169
243
  }
170
- this.x = b;
244
+ this.ae = b;
171
245
  }
172
246
  return this;
173
247
  }
174
248
  asShort(a) {
175
- this.z = 1;
176
- this.ac = null;
177
- this.ab = "short";
178
- this.x = ((() => {
249
+ this.ah = 1;
250
+ this.al = null;
251
+ this.ak = "short";
252
+ this.ae = ((() => {
179
253
  let $ret = new JsonDictionaryValue();
180
254
  $ret.e = 0;
181
255
  $ret.value = a;
@@ -184,11 +258,11 @@ export let ComponentRendererMethodHelperArgumentBuilder = /*@__PURE__*/ (() => {
184
258
  return this;
185
259
  }
186
260
  asShortArray(a) {
187
- this.z = 10;
188
- this.ac = null;
189
- this.ab = "short";
261
+ this.ah = 10;
262
+ this.al = null;
263
+ this.ak = "short";
190
264
  if (a == null) {
191
- this.x = ((() => {
265
+ this.ae = ((() => {
192
266
  let $ret = new JsonDictionaryValue();
193
267
  $ret.e = 3;
194
268
  $ret.value = null;
@@ -206,15 +280,15 @@ export let ComponentRendererMethodHelperArgumentBuilder = /*@__PURE__*/ (() => {
206
280
  return $ret;
207
281
  })());
208
282
  }
209
- this.x = b;
283
+ this.ae = b;
210
284
  }
211
285
  return this;
212
286
  }
213
287
  asLong(a) {
214
- this.z = 1;
215
- this.ac = null;
216
- this.ab = "long";
217
- this.x = ((() => {
288
+ this.ah = 1;
289
+ this.al = null;
290
+ this.ak = "long";
291
+ this.ae = ((() => {
218
292
  let $ret = new JsonDictionaryValue();
219
293
  $ret.e = 0;
220
294
  $ret.value = a;
@@ -223,11 +297,11 @@ export let ComponentRendererMethodHelperArgumentBuilder = /*@__PURE__*/ (() => {
223
297
  return this;
224
298
  }
225
299
  asLongArray(a) {
226
- this.z = 10;
227
- this.ac = null;
228
- this.ab = "long";
300
+ this.ah = 10;
301
+ this.al = null;
302
+ this.ak = "long";
229
303
  if (a == null) {
230
- this.x = ((() => {
304
+ this.ae = ((() => {
231
305
  let $ret = new JsonDictionaryValue();
232
306
  $ret.e = 3;
233
307
  $ret.value = null;
@@ -245,15 +319,15 @@ export let ComponentRendererMethodHelperArgumentBuilder = /*@__PURE__*/ (() => {
245
319
  return $ret;
246
320
  })());
247
321
  }
248
- this.x = b;
322
+ this.ae = b;
249
323
  }
250
324
  return this;
251
325
  }
252
326
  asFloat(a) {
253
- this.z = 1;
254
- this.ac = null;
255
- this.ab = "float";
256
- this.x = ((() => {
327
+ this.ah = 1;
328
+ this.al = null;
329
+ this.ak = "float";
330
+ this.ae = ((() => {
257
331
  let $ret = new JsonDictionaryValue();
258
332
  $ret.e = 0;
259
333
  $ret.value = a;
@@ -262,11 +336,11 @@ export let ComponentRendererMethodHelperArgumentBuilder = /*@__PURE__*/ (() => {
262
336
  return this;
263
337
  }
264
338
  asFloatArray(a) {
265
- this.z = 10;
266
- this.ac = null;
267
- this.ab = "float";
339
+ this.ah = 10;
340
+ this.al = null;
341
+ this.ak = "float";
268
342
  if (a == null) {
269
- this.x = ((() => {
343
+ this.ae = ((() => {
270
344
  let $ret = new JsonDictionaryValue();
271
345
  $ret.e = 3;
272
346
  $ret.value = null;
@@ -284,16 +358,38 @@ export let ComponentRendererMethodHelperArgumentBuilder = /*@__PURE__*/ (() => {
284
358
  return $ret;
285
359
  })());
286
360
  }
287
- this.x = b;
361
+ this.ae = b;
362
+ }
363
+ return this;
364
+ }
365
+ asEnum1(a, b) {
366
+ this.ah = 8;
367
+ this.al = "string";
368
+ this.ak = a.typeName;
369
+ if (b == null) {
370
+ this.ae = ((() => {
371
+ let $ret = new JsonDictionaryValue();
372
+ $ret.e = 3;
373
+ $ret.value = null;
374
+ return $ret;
375
+ })());
376
+ }
377
+ else {
378
+ this.ae = ((() => {
379
+ let $ret = new JsonDictionaryValue();
380
+ $ret.e = 2;
381
+ $ret.value = b.toString();
382
+ return $ret;
383
+ })());
288
384
  }
289
385
  return this;
290
386
  }
291
387
  asEnum(a, b) {
292
- this.z = 8;
293
- this.ac = a.typeName;
294
- this.ab = "string";
388
+ this.ah = 8;
389
+ this.al = "string";
390
+ this.ak = a;
295
391
  if (b == null) {
296
- this.x = ((() => {
392
+ this.ae = ((() => {
297
393
  let $ret = new JsonDictionaryValue();
298
394
  $ret.e = 3;
299
395
  $ret.value = null;
@@ -301,7 +397,7 @@ export let ComponentRendererMethodHelperArgumentBuilder = /*@__PURE__*/ (() => {
301
397
  })());
302
398
  }
303
399
  else {
304
- this.x = ((() => {
400
+ this.ae = ((() => {
305
401
  let $ret = new JsonDictionaryValue();
306
402
  $ret.e = 2;
307
403
  $ret.value = b.toString();
@@ -311,11 +407,11 @@ export let ComponentRendererMethodHelperArgumentBuilder = /*@__PURE__*/ (() => {
311
407
  return this;
312
408
  }
313
409
  asString(a) {
314
- this.z = 2;
315
- this.ac = null;
316
- this.ab = "string";
410
+ this.ah = 2;
411
+ this.al = null;
412
+ this.ak = "string";
317
413
  if (a == null) {
318
- this.x = ((() => {
414
+ this.ae = ((() => {
319
415
  let $ret = new JsonDictionaryValue();
320
416
  $ret.e = 3;
321
417
  $ret.value = null;
@@ -323,7 +419,7 @@ export let ComponentRendererMethodHelperArgumentBuilder = /*@__PURE__*/ (() => {
323
419
  })());
324
420
  }
325
421
  else {
326
- this.x = ((() => {
422
+ this.ae = ((() => {
327
423
  let $ret = new JsonDictionaryValue();
328
424
  $ret.e = 2;
329
425
  $ret.value = a;
@@ -333,11 +429,11 @@ export let ComponentRendererMethodHelperArgumentBuilder = /*@__PURE__*/ (() => {
333
429
  return this;
334
430
  }
335
431
  asStringArray(a) {
336
- this.z = 10;
337
- this.ac = null;
338
- this.ab = "string";
432
+ this.ah = 10;
433
+ this.al = null;
434
+ this.ak = "string";
339
435
  if (a == null) {
340
- this.x = ((() => {
436
+ this.ae = ((() => {
341
437
  let $ret = new JsonDictionaryValue();
342
438
  $ret.e = 3;
343
439
  $ret.value = null;
@@ -355,16 +451,52 @@ export let ComponentRendererMethodHelperArgumentBuilder = /*@__PURE__*/ (() => {
355
451
  return $ret;
356
452
  })());
357
453
  }
358
- this.x = b;
454
+ this.ae = b;
455
+ }
456
+ return this;
457
+ }
458
+ asEmbeddedRefArray(a) {
459
+ this.ah = 10;
460
+ this.al = null;
461
+ this.ak = null;
462
+ if (a == null) {
463
+ this.ae = ((() => {
464
+ let $ret = new JsonDictionaryValue();
465
+ $ret.e = 3;
466
+ $ret.value = null;
467
+ return $ret;
468
+ })());
469
+ }
470
+ else {
471
+ let b = new JsonDictionaryArray();
472
+ b.items = new Array(a.length);
473
+ for (let c = 0; c < a.length; c++) {
474
+ let d = a[c];
475
+ let e = new JsonDictionaryObject();
476
+ e.item("refType", ((() => {
477
+ let $ret = new JsonDictionaryValue();
478
+ $ret.e = 2;
479
+ $ret.value = d.refType;
480
+ return $ret;
481
+ })()));
482
+ e.item("id", ((() => {
483
+ let $ret = new JsonDictionaryValue();
484
+ $ret.e = 2;
485
+ $ret.value = d.value;
486
+ return $ret;
487
+ })()));
488
+ b.items[c] = e;
489
+ }
490
+ this.ae = b;
359
491
  }
360
492
  return this;
361
493
  }
362
494
  asPublicTypeRef(a, b) {
363
- this.z = 8;
364
- this.ac = a;
365
- this.ab = a;
495
+ this.ah = 8;
496
+ this.al = a;
497
+ this.ak = a;
366
498
  if (b == null) {
367
- this.x = ((() => {
499
+ this.ae = ((() => {
368
500
  let $ret = new JsonDictionaryValue();
369
501
  $ret.e = 3;
370
502
  $ret.value = null;
@@ -385,14 +517,44 @@ export let ComponentRendererMethodHelperArgumentBuilder = /*@__PURE__*/ (() => {
385
517
  $ret.value = b.name;
386
518
  return $ret;
387
519
  })()));
388
- this.x = c;
520
+ this.ae = c;
521
+ }
522
+ return this;
523
+ }
524
+ asEmbeddedRef(a) {
525
+ this.ah = 8;
526
+ this.al = null;
527
+ this.ak = null;
528
+ if (a == null) {
529
+ this.ae = ((() => {
530
+ let $ret = new JsonDictionaryValue();
531
+ $ret.e = 3;
532
+ $ret.value = null;
533
+ return $ret;
534
+ })());
535
+ }
536
+ else {
537
+ let b = new JsonDictionaryObject();
538
+ b.item("refType", ((() => {
539
+ let $ret = new JsonDictionaryValue();
540
+ $ret.e = 2;
541
+ $ret.value = a.refType;
542
+ return $ret;
543
+ })()));
544
+ b.item("id", ((() => {
545
+ let $ret = new JsonDictionaryValue();
546
+ $ret.e = 2;
547
+ $ret.value = a.value;
548
+ return $ret;
549
+ })()));
550
+ this.ae = b;
389
551
  }
390
552
  return this;
391
553
  }
392
554
  asPoint(a) {
393
- this.z = 11;
394
- this.ac = null;
395
- this.ab = null;
555
+ this.ah = 11;
556
+ this.al = null;
557
+ this.ak = null;
396
558
  let b = new JsonDictionaryObject();
397
559
  b.item("x", ((() => {
398
560
  let $ret = new JsonDictionaryValue();
@@ -406,13 +568,13 @@ export let ComponentRendererMethodHelperArgumentBuilder = /*@__PURE__*/ (() => {
406
568
  $ret.value = a.y;
407
569
  return $ret;
408
570
  })()));
409
- this.x = b;
571
+ this.ae = b;
410
572
  return this;
411
573
  }
412
574
  asSize(a) {
413
- this.z = 12;
414
- this.ac = null;
415
- this.ab = null;
575
+ this.ah = 12;
576
+ this.al = null;
577
+ this.ak = null;
416
578
  let b = new JsonDictionaryObject();
417
579
  b.item("width", ((() => {
418
580
  let $ret = new JsonDictionaryValue();
@@ -426,13 +588,13 @@ export let ComponentRendererMethodHelperArgumentBuilder = /*@__PURE__*/ (() => {
426
588
  $ret.value = a.height;
427
589
  return $ret;
428
590
  })()));
429
- this.x = b;
591
+ this.ae = b;
430
592
  return this;
431
593
  }
432
594
  asRect(a) {
433
- this.z = 14;
434
- this.ac = null;
435
- this.ab = null;
595
+ this.ah = 14;
596
+ this.al = null;
597
+ this.ak = null;
436
598
  let b = new JsonDictionaryObject();
437
599
  b.item("left", ((() => {
438
600
  let $ret = new JsonDictionaryValue();
@@ -458,13 +620,13 @@ export let ComponentRendererMethodHelperArgumentBuilder = /*@__PURE__*/ (() => {
458
620
  $ret.value = a.height;
459
621
  return $ret;
460
622
  })()));
461
- this.x = b;
623
+ this.ae = b;
462
624
  return this;
463
625
  }
464
626
  asMethodRef(a) {
465
- this.z = 18;
466
- this.ac = null;
467
- this.ab = null;
627
+ this.ah = 18;
628
+ this.al = null;
629
+ this.ak = null;
468
630
  let b = new JsonDictionaryObject();
469
631
  b.item("refType", ((() => {
470
632
  let $ret = new JsonDictionaryValue();
@@ -478,14 +640,14 @@ export let ComponentRendererMethodHelperArgumentBuilder = /*@__PURE__*/ (() => {
478
640
  $ret.value = a;
479
641
  return $ret;
480
642
  })()));
481
- this.x = b;
643
+ this.ae = b;
482
644
  return this;
483
645
  }
484
646
  asBool(a) {
485
- this.z = 2;
486
- this.ac = null;
487
- this.ab = "boolean";
488
- this.x = ((() => {
647
+ this.ah = 2;
648
+ this.al = null;
649
+ this.ak = "boolean";
650
+ this.ae = ((() => {
489
651
  let $ret = new JsonDictionaryValue();
490
652
  $ret.e = 1;
491
653
  $ret.value = a;
@@ -493,12 +655,115 @@ export let ComponentRendererMethodHelperArgumentBuilder = /*@__PURE__*/ (() => {
493
655
  })());
494
656
  return this;
495
657
  }
658
+ asPrimitive(a) {
659
+ if (a == null) {
660
+ this.ah = 17;
661
+ this.al = null;
662
+ this.ak = null;
663
+ this.ae = ((() => {
664
+ let $ret = new JsonDictionaryValue();
665
+ $ret.e = 3;
666
+ $ret.value = null;
667
+ return $ret;
668
+ })());
669
+ }
670
+ if (typeof a === 'number') {
671
+ return this.asDouble(a);
672
+ }
673
+ if (typeof a === 'number') {
674
+ return this.asInt(typeGetValue(a));
675
+ }
676
+ if (typeof a === 'number') {
677
+ return this.asLong(typeGetValue(a));
678
+ }
679
+ if (typeof a === 'number') {
680
+ return this.asFloat(a);
681
+ }
682
+ if (typeof a === 'number') {
683
+ return this.asShort(typeGetValue(a));
684
+ }
685
+ if (typeof a === 'number') {
686
+ return this.asDouble(a);
687
+ }
688
+ if (typeCast(Array_$type, a) !== null) {
689
+ if (a.length > 0) {
690
+ let b = a[0];
691
+ if (typeof b === 'number') {
692
+ return this.asDoubleArray(a);
693
+ }
694
+ }
695
+ }
696
+ if (typeof a === 'string') {
697
+ return this.asString(a);
698
+ }
699
+ if (typeCast(Array_$type, a) !== null) {
700
+ if (a.length > 0) {
701
+ let c = a[0];
702
+ if (typeof c === 'string') {
703
+ return this.asStringArray(a);
704
+ }
705
+ }
706
+ }
707
+ if (typeCast(Boolean_$type, a) !== null) {
708
+ return this.asBool(a);
709
+ }
710
+ if (typeCast(EmbeddedRefDescription.$, a) !== null) {
711
+ return this.asEmbeddedRef(a);
712
+ }
713
+ return this.asString(a);
714
+ }
715
+ asPrimitiveArray(a) {
716
+ if (a == null) {
717
+ this.ah = 17;
718
+ this.al = null;
719
+ this.ak = null;
720
+ this.ae = ((() => {
721
+ let $ret = new JsonDictionaryValue();
722
+ $ret.e = 3;
723
+ $ret.value = null;
724
+ return $ret;
725
+ })());
726
+ }
727
+ if (typeCast(Array_$type, a) !== null) {
728
+ if (a.length > 0) {
729
+ let b = a[0];
730
+ if (typeof b === 'number') {
731
+ return this.asDoubleArray(a);
732
+ }
733
+ }
734
+ }
735
+ if (typeCast(Array_$type, a) !== null) {
736
+ if (a.length > 0) {
737
+ let c = a[0];
738
+ if (typeof c === 'string') {
739
+ return this.asStringArray(a);
740
+ }
741
+ }
742
+ }
743
+ if (typeCast(Array_$type, a) !== null) {
744
+ if (a.length > 0) {
745
+ let d = a[0];
746
+ if (typeCast(Boolean_$type, d) !== null) {
747
+ return this.asBoolArray(a);
748
+ }
749
+ }
750
+ }
751
+ if (typeCast(Array_$type, a) !== null) {
752
+ if (a.length > 0) {
753
+ let e = a[0];
754
+ if (typeCast(EmbeddedRefDescription.$, e) !== null) {
755
+ return this.asEmbeddedRefArray(a);
756
+ }
757
+ }
758
+ }
759
+ return this.asStringArray(a);
760
+ }
496
761
  asBoolArray(a) {
497
- this.z = 10;
498
- this.ac = null;
499
- this.ab = "boolean";
762
+ this.ah = 10;
763
+ this.al = null;
764
+ this.ak = "boolean";
500
765
  if (a == null) {
501
- this.x = ((() => {
766
+ this.ae = ((() => {
502
767
  let $ret = new JsonDictionaryValue();
503
768
  $ret.e = 3;
504
769
  $ret.value = null;
@@ -516,44 +781,44 @@ export let ComponentRendererMethodHelperArgumentBuilder = /*@__PURE__*/ (() => {
516
781
  return $ret;
517
782
  })());
518
783
  }
519
- this.x = b;
784
+ this.ae = b;
520
785
  }
521
786
  return this;
522
787
  }
523
- y() {
788
+ af() {
524
789
  let a = new JsonDictionaryObject();
525
790
  a.item("knownType", ((() => {
526
791
  let $ret = new JsonDictionaryValue();
527
792
  $ret.e = 2;
528
- $ret.value = EnumUtil.getName(TypeDescriptionWellKnownType_$type, this.z);
793
+ $ret.value = EnumUtil.getName(TypeDescriptionWellKnownType_$type, this.ah);
529
794
  return $ret;
530
795
  })()));
531
- if (this.ac != null) {
796
+ if (this.al != null) {
532
797
  a.item("specificType", ((() => {
533
798
  let $ret = new JsonDictionaryValue();
534
799
  $ret.e = 2;
535
- $ret.value = this.ac;
800
+ $ret.value = this.al;
536
801
  return $ret;
537
802
  })()));
538
803
  }
539
- if (this.ab != null) {
804
+ if (this.ak != null) {
540
805
  a.item("specificExternalType", ((() => {
541
806
  let $ret = new JsonDictionaryValue();
542
807
  $ret.e = 2;
543
- $ret.value = this.ab;
808
+ $ret.value = this.ak;
544
809
  return $ret;
545
810
  })()));
546
811
  }
547
- if (this.aa != null) {
812
+ if (this.aj != null) {
548
813
  a.item("collectionElementType", ((() => {
549
814
  let $ret = new JsonDictionaryValue();
550
815
  $ret.e = 2;
551
- $ret.value = this.aa;
816
+ $ret.value = this.aj;
552
817
  return $ret;
553
818
  })()));
554
819
  }
555
- if (this.x != null) {
556
- a.item("value", this.x);
820
+ if (this.ae != null) {
821
+ a.item("value", this.ae);
557
822
  }
558
823
  else {
559
824
  a.item("value", ((() => {
@@ -577,9 +842,9 @@ export let ComponentRendererMethodHelperReturnBuilder = /*@__PURE__*/ (() => {
577
842
  super();
578
843
  this.b = null;
579
844
  this.y = 0;
845
+ this.ac = null;
580
846
  this.ab = null;
581
847
  this.aa = null;
582
- this.z = null;
583
848
  this.b = a;
584
849
  }
585
850
  argument() {
@@ -591,88 +856,100 @@ export let ComponentRendererMethodHelperReturnBuilder = /*@__PURE__*/ (() => {
591
856
  build() {
592
857
  return this.b.build();
593
858
  }
859
+ get z() {
860
+ return this.y;
861
+ }
862
+ get af() {
863
+ return this.ab;
864
+ }
865
+ get ag() {
866
+ return this.ac;
867
+ }
868
+ get ae() {
869
+ return this.aa;
870
+ }
594
871
  asInt() {
595
872
  this.y = 1;
596
- this.ab = null;
597
- this.aa = "int";
873
+ this.ac = null;
874
+ this.ab = "int";
598
875
  return this;
599
876
  }
600
877
  asIntArray() {
601
878
  this.y = 10;
602
- this.ab = null;
603
- this.aa = "int";
879
+ this.ac = null;
880
+ this.ab = "int";
604
881
  return this;
605
882
  }
606
883
  asDouble() {
607
884
  this.y = 1;
608
- this.ab = null;
609
- this.aa = "double";
885
+ this.ac = null;
886
+ this.ab = "double";
610
887
  return this;
611
888
  }
612
889
  asDoubleArray() {
613
890
  this.y = 10;
614
- this.ab = null;
615
- this.aa = "double";
891
+ this.ac = null;
892
+ this.ab = "double";
616
893
  return this;
617
894
  }
618
895
  asShort() {
619
896
  this.y = 1;
620
- this.ab = null;
621
- this.aa = "short";
897
+ this.ac = null;
898
+ this.ab = "short";
622
899
  return this;
623
900
  }
624
901
  asShortArray() {
625
902
  this.y = 10;
626
- this.ab = null;
627
- this.aa = "short";
903
+ this.ac = null;
904
+ this.ab = "short";
628
905
  return this;
629
906
  }
630
907
  asLong() {
631
908
  this.y = 1;
632
- this.ab = null;
633
- this.aa = "long";
909
+ this.ac = null;
910
+ this.ab = "long";
634
911
  return this;
635
912
  }
636
913
  asLongArray() {
637
914
  this.y = 10;
638
- this.ab = null;
639
- this.aa = "long";
915
+ this.ac = null;
916
+ this.ab = "long";
640
917
  return this;
641
918
  }
642
919
  asFlout() {
643
920
  this.y = 1;
644
- this.ab = null;
645
- this.aa = "float";
921
+ this.ac = null;
922
+ this.ab = "float";
646
923
  return this;
647
924
  }
648
925
  asFloatArray() {
649
926
  this.y = 10;
650
- this.ab = null;
651
- this.aa = "float";
927
+ this.ac = null;
928
+ this.ab = "float";
652
929
  return this;
653
930
  }
654
931
  asEnum(a) {
655
932
  this.y = 8;
656
- this.ab = a.typeName;
657
- this.aa = "string";
933
+ this.ac = a.typeName;
934
+ this.ab = "string";
658
935
  return this;
659
936
  }
660
937
  asString() {
661
938
  this.y = 2;
662
- this.ab = null;
663
- this.aa = "string";
939
+ this.ac = null;
940
+ this.ab = "string";
664
941
  return this;
665
942
  }
666
943
  asStringArray() {
667
944
  this.y = 10;
668
- this.ab = null;
669
- this.aa = "string";
945
+ this.ac = null;
946
+ this.ab = "string";
670
947
  return this;
671
948
  }
672
949
  asPublicTypeRef(a) {
673
950
  this.y = 8;
951
+ this.ac = a;
674
952
  this.ab = a;
675
- this.aa = a;
676
953
  let b = new JsonDictionaryObject();
677
954
  b.item("refType", ((() => {
678
955
  let $ret = new JsonDictionaryValue();
@@ -690,32 +967,32 @@ export let ComponentRendererMethodHelperReturnBuilder = /*@__PURE__*/ (() => {
690
967
  }
691
968
  asPoint() {
692
969
  this.y = 11;
970
+ this.ac = null;
693
971
  this.ab = null;
694
- this.aa = null;
695
972
  return this;
696
973
  }
697
974
  asSize() {
698
975
  this.y = 12;
976
+ this.ac = null;
699
977
  this.ab = null;
700
- this.aa = null;
701
978
  return this;
702
979
  }
703
980
  asRect() {
704
981
  this.y = 14;
982
+ this.ac = null;
705
983
  this.ab = null;
706
- this.aa = null;
707
984
  return this;
708
985
  }
709
986
  asMethodRef() {
710
987
  this.y = 18;
988
+ this.ac = null;
711
989
  this.ab = null;
712
- this.aa = null;
713
990
  return this;
714
991
  }
715
992
  asBool() {
716
993
  this.y = 7;
717
- this.ab = null;
718
- this.aa = "boolean";
994
+ this.ac = null;
995
+ this.ab = "boolean";
719
996
  return this;
720
997
  }
721
998
  x() {
@@ -726,27 +1003,27 @@ export let ComponentRendererMethodHelperReturnBuilder = /*@__PURE__*/ (() => {
726
1003
  $ret.value = EnumUtil.getName(TypeDescriptionWellKnownType_$type, this.y);
727
1004
  return $ret;
728
1005
  })()));
729
- if (this.ab != null) {
1006
+ if (this.ac != null) {
730
1007
  a.item("specificType", ((() => {
731
1008
  let $ret = new JsonDictionaryValue();
732
1009
  $ret.e = 2;
733
- $ret.value = this.ab;
1010
+ $ret.value = this.ac;
734
1011
  return $ret;
735
1012
  })()));
736
1013
  }
737
- if (this.aa != null) {
1014
+ if (this.ab != null) {
738
1015
  a.item("specificExternalType", ((() => {
739
1016
  let $ret = new JsonDictionaryValue();
740
1017
  $ret.e = 2;
741
- $ret.value = this.aa;
1018
+ $ret.value = this.ab;
742
1019
  return $ret;
743
1020
  })()));
744
1021
  }
745
- if (this.z != null) {
1022
+ if (this.aa != null) {
746
1023
  a.item("collectionElementType", ((() => {
747
1024
  let $ret = new JsonDictionaryValue();
748
1025
  $ret.e = 2;
749
- $ret.value = this.z;
1026
+ $ret.value = this.aa;
750
1027
  return $ret;
751
1028
  })()));
752
1029
  }
@@ -754,8 +1031,8 @@ export let ComponentRendererMethodHelperReturnBuilder = /*@__PURE__*/ (() => {
754
1031
  }
755
1032
  asVoid() {
756
1033
  this.y = 0;
1034
+ this.ac = null;
757
1035
  this.ab = null;
758
- this.aa = null;
759
1036
  return this;
760
1037
  }
761
1038
  }