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
@@ -5,12 +5,14 @@ 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
7
  import { __extends, __values } from "tslib";
8
- import { Base, fromEnum, markType, EnumUtil } from "./type";
8
+ import { Base, fromEnum, markType, typeGetValue, typeCast, Array_$type, Boolean_$type, EnumUtil } from "./type";
9
9
  import { List$1 } from "./List$1";
10
10
  import { JsonDictionaryObject } from "./JsonDictionaryObject";
11
11
  import { JsonDictionaryArray } from "./JsonDictionaryArray";
12
12
  import { JsonDictionaryValue } from "./JsonDictionaryValue";
13
13
  import { TypeDescriptionWellKnownType_$type } from "./TypeDescriptionWellKnownType";
14
+ import { EmbeddedRefDescription } from "./EmbeddedRefDescription";
15
+ import { dateToStringFormat } from "./dateExtended";
14
16
  /**
15
17
  * @hidden
16
18
  */
@@ -18,22 +20,48 @@ var ComponentRendererMethodHelperBuilder = /** @class */ /*@__PURE__*/ (function
18
20
  __extends(ComponentRendererMethodHelperBuilder, _super);
19
21
  function ComponentRendererMethodHelperBuilder(a, b) {
20
22
  var _this = _super.call(this) || this;
21
- _this.e = null;
22
- _this.f = null;
23
- _this.d = new List$1(ComponentRendererMethodHelperArgumentBuilder.$, 0);
24
- _this.b = null;
25
- _this.e = a;
26
- _this.f = b;
23
+ _this.i = null;
24
+ _this.j = null;
25
+ _this.g = new List$1(ComponentRendererMethodHelperArgumentBuilder.$, 0);
26
+ _this.c = null;
27
+ _this.i = a;
28
+ _this.j = b;
27
29
  return _this;
28
30
  }
31
+ Object.defineProperty(ComponentRendererMethodHelperBuilder.prototype, "methodName", {
32
+ get: function () {
33
+ return this.i;
34
+ },
35
+ enumerable: false,
36
+ configurable: true
37
+ });
38
+ Object.defineProperty(ComponentRendererMethodHelperBuilder.prototype, "targetRef", {
39
+ get: function () {
40
+ return this.j;
41
+ },
42
+ enumerable: false,
43
+ configurable: true
44
+ });
45
+ ComponentRendererMethodHelperBuilder.prototype.getArgumentCount = function () {
46
+ return this.g.count;
47
+ };
48
+ ComponentRendererMethodHelperBuilder.prototype.getArgument = function (a) {
49
+ return this.g._inner[a];
50
+ };
51
+ ComponentRendererMethodHelperBuilder.prototype.hasReturn = function () {
52
+ return this.c != null;
53
+ };
54
+ ComponentRendererMethodHelperBuilder.prototype.getReturn = function () {
55
+ return this.c;
56
+ };
29
57
  ComponentRendererMethodHelperBuilder.prototype.argument = function () {
30
58
  var a = new ComponentRendererMethodHelperArgumentBuilder(this);
31
- this.d.add(a);
59
+ this.g.add(a);
32
60
  return a;
33
61
  };
34
62
  ComponentRendererMethodHelperBuilder.prototype.$return = function () {
35
63
  var a = new ComponentRendererMethodHelperReturnBuilder(this);
36
- this.b = a;
64
+ this.c = a;
37
65
  return a;
38
66
  };
39
67
  ComponentRendererMethodHelperBuilder.prototype.build = function () {
@@ -42,12 +70,12 @@ var ComponentRendererMethodHelperBuilder = /** @class */ /*@__PURE__*/ (function
42
70
  var a = new JsonDictionaryObject();
43
71
  var b = new JsonDictionaryArray();
44
72
  a.item("args", b);
45
- var c = new Array(this.d.count);
73
+ var c = new Array(this.g.count);
46
74
  var d = 0;
47
75
  try {
48
- for (var _b = __values(fromEnum(this.d)), _c = _b.next(); !_c.done; _c = _b.next()) {
76
+ for (var _b = __values(fromEnum(this.g)), _c = _b.next(); !_c.done; _c = _b.next()) {
49
77
  var e = _c.value;
50
- c[d] = e.y();
78
+ c[d] = e.af();
51
79
  d++;
52
80
  }
53
81
  }
@@ -65,24 +93,24 @@ var ComponentRendererMethodHelperBuilder = /** @class */ /*@__PURE__*/ (function
65
93
  }
66
94
  }
67
95
  b.items = c;
68
- if (this.f != null) {
96
+ if (this.j != null) {
69
97
  a.item("targetRef", ((function () {
70
98
  var $ret = new JsonDictionaryValue();
71
99
  $ret.e = 2;
72
- $ret.value = _this.f;
100
+ $ret.value = _this.j;
73
101
  return $ret;
74
102
  })()));
75
103
  }
76
104
  a.item("methodName", ((function () {
77
105
  var $ret = new JsonDictionaryValue();
78
106
  $ret.e = 2;
79
- $ret.value = _this.e;
107
+ $ret.value = _this.i;
80
108
  return $ret;
81
109
  })()));
82
- if (this.b == null) {
110
+ if (this.c == null) {
83
111
  this.$return().asVoid();
84
112
  }
85
- a.item("return", this.b.x());
113
+ a.item("return", this.c.x());
86
114
  return a.b();
87
115
  };
88
116
  ComponentRendererMethodHelperBuilder.$t = markType(ComponentRendererMethodHelperBuilder, 'ComponentRendererMethodHelperBuilder');
@@ -96,29 +124,64 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
96
124
  __extends(ComponentRendererMethodHelperArgumentBuilder, _super);
97
125
  function ComponentRendererMethodHelperArgumentBuilder(a) {
98
126
  var _this = _super.call(this) || this;
99
- _this.v = null;
100
- _this.z = 0;
101
127
  _this.ac = null;
102
- _this.ab = null;
103
- _this.aa = null;
104
- _this.x = null;
105
- _this.v = a;
128
+ _this.ah = 0;
129
+ _this.al = null;
130
+ _this.ak = null;
131
+ _this.aj = null;
132
+ _this.ae = null;
133
+ _this.ac = a;
106
134
  return _this;
107
135
  }
108
136
  ComponentRendererMethodHelperArgumentBuilder.prototype.argument = function () {
109
- return this.v.argument();
137
+ return this.ac.argument();
110
138
  };
111
139
  ComponentRendererMethodHelperArgumentBuilder.prototype.$return = function () {
112
- return this.v.$return();
140
+ return this.ac.$return();
113
141
  };
114
142
  ComponentRendererMethodHelperArgumentBuilder.prototype.build = function () {
115
- return this.v.build();
143
+ return this.ac.build();
116
144
  };
145
+ Object.defineProperty(ComponentRendererMethodHelperArgumentBuilder.prototype, "ai", {
146
+ get: function () {
147
+ return this.ah;
148
+ },
149
+ enumerable: false,
150
+ configurable: true
151
+ });
152
+ Object.defineProperty(ComponentRendererMethodHelperArgumentBuilder.prototype, "ao", {
153
+ get: function () {
154
+ return this.ak;
155
+ },
156
+ enumerable: false,
157
+ configurable: true
158
+ });
159
+ Object.defineProperty(ComponentRendererMethodHelperArgumentBuilder.prototype, "ap", {
160
+ get: function () {
161
+ return this.al;
162
+ },
163
+ enumerable: false,
164
+ configurable: true
165
+ });
166
+ Object.defineProperty(ComponentRendererMethodHelperArgumentBuilder.prototype, "an", {
167
+ get: function () {
168
+ return this.aj;
169
+ },
170
+ enumerable: false,
171
+ configurable: true
172
+ });
173
+ Object.defineProperty(ComponentRendererMethodHelperArgumentBuilder.prototype, "ag", {
174
+ get: function () {
175
+ return this.ae;
176
+ },
177
+ enumerable: false,
178
+ configurable: true
179
+ });
117
180
  ComponentRendererMethodHelperArgumentBuilder.prototype.asInt = function (a) {
118
- this.z = 1;
119
- this.ac = null;
120
- this.ab = "int";
121
- this.x = ((function () {
181
+ this.ah = 1;
182
+ this.al = null;
183
+ this.ak = "int";
184
+ this.ae = ((function () {
122
185
  var $ret = new JsonDictionaryValue();
123
186
  $ret.e = 0;
124
187
  $ret.value = a;
@@ -127,11 +190,11 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
127
190
  return this;
128
191
  };
129
192
  ComponentRendererMethodHelperArgumentBuilder.prototype.asIntArray = function (a) {
130
- this.z = 10;
131
- this.ac = null;
132
- this.ab = "int";
193
+ this.ah = 10;
194
+ this.al = null;
195
+ this.ak = "int";
133
196
  if (a == null) {
134
- this.x = ((function () {
197
+ this.ae = ((function () {
135
198
  var $ret = new JsonDictionaryValue();
136
199
  $ret.e = 3;
137
200
  $ret.value = null;
@@ -152,15 +215,15 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
152
215
  for (var c = 0; c < a.length; c++) {
153
216
  _loop_1(c);
154
217
  }
155
- this.x = b;
218
+ this.ae = b;
156
219
  }
157
220
  return this;
158
221
  };
159
222
  ComponentRendererMethodHelperArgumentBuilder.prototype.asDouble = function (a) {
160
- this.z = 1;
161
- this.ac = null;
162
- this.ab = "double";
163
- this.x = ((function () {
223
+ this.ah = 1;
224
+ this.al = null;
225
+ this.ak = "double";
226
+ this.ae = ((function () {
164
227
  var $ret = new JsonDictionaryValue();
165
228
  $ret.e = 0;
166
229
  $ret.value = a;
@@ -168,12 +231,24 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
168
231
  })());
169
232
  return this;
170
233
  };
171
- ComponentRendererMethodHelperArgumentBuilder.prototype.asDoubleArray = function (a) {
172
- this.z = 10;
173
- this.ac = null;
174
- this.ab = "double";
234
+ ComponentRendererMethodHelperArgumentBuilder.prototype.asDate = function (a) {
235
+ this.ah = 3;
236
+ this.al = null;
237
+ this.ak = null;
238
+ this.ae = ((function () {
239
+ var $ret = new JsonDictionaryValue();
240
+ $ret.e = 2;
241
+ $ret.value = dateToStringFormat(a, "o");
242
+ return $ret;
243
+ })());
244
+ return this;
245
+ };
246
+ ComponentRendererMethodHelperArgumentBuilder.prototype.asDateArray = function (a) {
247
+ this.ah = 10;
248
+ this.al = null;
249
+ this.ak = "DateTime";
175
250
  if (a == null) {
176
- this.x = ((function () {
251
+ this.ae = ((function () {
177
252
  var $ret = new JsonDictionaryValue();
178
253
  $ret.e = 3;
179
254
  $ret.value = null;
@@ -184,6 +259,36 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
184
259
  var b = new JsonDictionaryArray();
185
260
  b.items = new Array(a.length);
186
261
  var _loop_2 = function (c) {
262
+ b.items[c] = ((function () {
263
+ var $ret = new JsonDictionaryValue();
264
+ $ret.e = 2;
265
+ $ret.value = dateToStringFormat(a[c], "o");
266
+ return $ret;
267
+ })());
268
+ };
269
+ for (var c = 0; c < a.length; c++) {
270
+ _loop_2(c);
271
+ }
272
+ this.ae = b;
273
+ }
274
+ return this;
275
+ };
276
+ ComponentRendererMethodHelperArgumentBuilder.prototype.asDoubleArray = function (a) {
277
+ this.ah = 10;
278
+ this.al = null;
279
+ this.ak = "double";
280
+ if (a == null) {
281
+ this.ae = ((function () {
282
+ var $ret = new JsonDictionaryValue();
283
+ $ret.e = 3;
284
+ $ret.value = null;
285
+ return $ret;
286
+ })());
287
+ }
288
+ else {
289
+ var b = new JsonDictionaryArray();
290
+ b.items = new Array(a.length);
291
+ var _loop_3 = function (c) {
187
292
  b.items[c] = ((function () {
188
293
  var $ret = new JsonDictionaryValue();
189
294
  $ret.e = 0;
@@ -192,17 +297,17 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
192
297
  })());
193
298
  };
194
299
  for (var c = 0; c < a.length; c++) {
195
- _loop_2(c);
300
+ _loop_3(c);
196
301
  }
197
- this.x = b;
302
+ this.ae = b;
198
303
  }
199
304
  return this;
200
305
  };
201
306
  ComponentRendererMethodHelperArgumentBuilder.prototype.asShort = function (a) {
202
- this.z = 1;
203
- this.ac = null;
204
- this.ab = "short";
205
- this.x = ((function () {
307
+ this.ah = 1;
308
+ this.al = null;
309
+ this.ak = "short";
310
+ this.ae = ((function () {
206
311
  var $ret = new JsonDictionaryValue();
207
312
  $ret.e = 0;
208
313
  $ret.value = a;
@@ -211,11 +316,11 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
211
316
  return this;
212
317
  };
213
318
  ComponentRendererMethodHelperArgumentBuilder.prototype.asShortArray = function (a) {
214
- this.z = 10;
215
- this.ac = null;
216
- this.ab = "short";
319
+ this.ah = 10;
320
+ this.al = null;
321
+ this.ak = "short";
217
322
  if (a == null) {
218
- this.x = ((function () {
323
+ this.ae = ((function () {
219
324
  var $ret = new JsonDictionaryValue();
220
325
  $ret.e = 3;
221
326
  $ret.value = null;
@@ -225,7 +330,7 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
225
330
  else {
226
331
  var b = new JsonDictionaryArray();
227
332
  b.items = new Array(a.length);
228
- var _loop_3 = function (c) {
333
+ var _loop_4 = function (c) {
229
334
  b.items[c] = ((function () {
230
335
  var $ret = new JsonDictionaryValue();
231
336
  $ret.e = 0;
@@ -234,17 +339,17 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
234
339
  })());
235
340
  };
236
341
  for (var c = 0; c < a.length; c++) {
237
- _loop_3(c);
342
+ _loop_4(c);
238
343
  }
239
- this.x = b;
344
+ this.ae = b;
240
345
  }
241
346
  return this;
242
347
  };
243
348
  ComponentRendererMethodHelperArgumentBuilder.prototype.asLong = function (a) {
244
- this.z = 1;
245
- this.ac = null;
246
- this.ab = "long";
247
- this.x = ((function () {
349
+ this.ah = 1;
350
+ this.al = null;
351
+ this.ak = "long";
352
+ this.ae = ((function () {
248
353
  var $ret = new JsonDictionaryValue();
249
354
  $ret.e = 0;
250
355
  $ret.value = a;
@@ -253,11 +358,11 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
253
358
  return this;
254
359
  };
255
360
  ComponentRendererMethodHelperArgumentBuilder.prototype.asLongArray = function (a) {
256
- this.z = 10;
257
- this.ac = null;
258
- this.ab = "long";
361
+ this.ah = 10;
362
+ this.al = null;
363
+ this.ak = "long";
259
364
  if (a == null) {
260
- this.x = ((function () {
365
+ this.ae = ((function () {
261
366
  var $ret = new JsonDictionaryValue();
262
367
  $ret.e = 3;
263
368
  $ret.value = null;
@@ -267,7 +372,7 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
267
372
  else {
268
373
  var b = new JsonDictionaryArray();
269
374
  b.items = new Array(a.length);
270
- var _loop_4 = function (c) {
375
+ var _loop_5 = function (c) {
271
376
  b.items[c] = ((function () {
272
377
  var $ret = new JsonDictionaryValue();
273
378
  $ret.e = 0;
@@ -276,17 +381,17 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
276
381
  })());
277
382
  };
278
383
  for (var c = 0; c < a.length; c++) {
279
- _loop_4(c);
384
+ _loop_5(c);
280
385
  }
281
- this.x = b;
386
+ this.ae = b;
282
387
  }
283
388
  return this;
284
389
  };
285
390
  ComponentRendererMethodHelperArgumentBuilder.prototype.asFloat = function (a) {
286
- this.z = 1;
287
- this.ac = null;
288
- this.ab = "float";
289
- this.x = ((function () {
391
+ this.ah = 1;
392
+ this.al = null;
393
+ this.ak = "float";
394
+ this.ae = ((function () {
290
395
  var $ret = new JsonDictionaryValue();
291
396
  $ret.e = 0;
292
397
  $ret.value = a;
@@ -295,11 +400,11 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
295
400
  return this;
296
401
  };
297
402
  ComponentRendererMethodHelperArgumentBuilder.prototype.asFloatArray = function (a) {
298
- this.z = 10;
299
- this.ac = null;
300
- this.ab = "float";
403
+ this.ah = 10;
404
+ this.al = null;
405
+ this.ak = "float";
301
406
  if (a == null) {
302
- this.x = ((function () {
407
+ this.ae = ((function () {
303
408
  var $ret = new JsonDictionaryValue();
304
409
  $ret.e = 3;
305
410
  $ret.value = null;
@@ -309,7 +414,7 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
309
414
  else {
310
415
  var b = new JsonDictionaryArray();
311
416
  b.items = new Array(a.length);
312
- var _loop_5 = function (c) {
417
+ var _loop_6 = function (c) {
313
418
  b.items[c] = ((function () {
314
419
  var $ret = new JsonDictionaryValue();
315
420
  $ret.e = 0;
@@ -318,18 +423,40 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
318
423
  })());
319
424
  };
320
425
  for (var c = 0; c < a.length; c++) {
321
- _loop_5(c);
426
+ _loop_6(c);
322
427
  }
323
- this.x = b;
428
+ this.ae = b;
429
+ }
430
+ return this;
431
+ };
432
+ ComponentRendererMethodHelperArgumentBuilder.prototype.asEnum1 = function (a, b) {
433
+ this.ah = 8;
434
+ this.al = "string";
435
+ this.ak = a.typeName;
436
+ if (b == null) {
437
+ this.ae = ((function () {
438
+ var $ret = new JsonDictionaryValue();
439
+ $ret.e = 3;
440
+ $ret.value = null;
441
+ return $ret;
442
+ })());
443
+ }
444
+ else {
445
+ this.ae = ((function () {
446
+ var $ret = new JsonDictionaryValue();
447
+ $ret.e = 2;
448
+ $ret.value = b.toString();
449
+ return $ret;
450
+ })());
324
451
  }
325
452
  return this;
326
453
  };
327
454
  ComponentRendererMethodHelperArgumentBuilder.prototype.asEnum = function (a, b) {
328
- this.z = 8;
329
- this.ac = a.typeName;
330
- this.ab = "string";
455
+ this.ah = 8;
456
+ this.al = "string";
457
+ this.ak = a;
331
458
  if (b == null) {
332
- this.x = ((function () {
459
+ this.ae = ((function () {
333
460
  var $ret = new JsonDictionaryValue();
334
461
  $ret.e = 3;
335
462
  $ret.value = null;
@@ -337,7 +464,7 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
337
464
  })());
338
465
  }
339
466
  else {
340
- this.x = ((function () {
467
+ this.ae = ((function () {
341
468
  var $ret = new JsonDictionaryValue();
342
469
  $ret.e = 2;
343
470
  $ret.value = b.toString();
@@ -347,11 +474,11 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
347
474
  return this;
348
475
  };
349
476
  ComponentRendererMethodHelperArgumentBuilder.prototype.asString = function (a) {
350
- this.z = 2;
351
- this.ac = null;
352
- this.ab = "string";
477
+ this.ah = 2;
478
+ this.al = null;
479
+ this.ak = "string";
353
480
  if (a == null) {
354
- this.x = ((function () {
481
+ this.ae = ((function () {
355
482
  var $ret = new JsonDictionaryValue();
356
483
  $ret.e = 3;
357
484
  $ret.value = null;
@@ -359,7 +486,7 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
359
486
  })());
360
487
  }
361
488
  else {
362
- this.x = ((function () {
489
+ this.ae = ((function () {
363
490
  var $ret = new JsonDictionaryValue();
364
491
  $ret.e = 2;
365
492
  $ret.value = a;
@@ -369,11 +496,11 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
369
496
  return this;
370
497
  };
371
498
  ComponentRendererMethodHelperArgumentBuilder.prototype.asStringArray = function (a) {
372
- this.z = 10;
373
- this.ac = null;
374
- this.ab = "string";
499
+ this.ah = 10;
500
+ this.al = null;
501
+ this.ak = "string";
375
502
  if (a == null) {
376
- this.x = ((function () {
503
+ this.ae = ((function () {
377
504
  var $ret = new JsonDictionaryValue();
378
505
  $ret.e = 3;
379
506
  $ret.value = null;
@@ -383,7 +510,7 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
383
510
  else {
384
511
  var b = new JsonDictionaryArray();
385
512
  b.items = new Array(a.length);
386
- var _loop_6 = function (c) {
513
+ var _loop_7 = function (c) {
387
514
  b.items[c] = ((function () {
388
515
  var $ret = new JsonDictionaryValue();
389
516
  $ret.e = 2;
@@ -392,18 +519,57 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
392
519
  })());
393
520
  };
394
521
  for (var c = 0; c < a.length; c++) {
395
- _loop_6(c);
522
+ _loop_7(c);
523
+ }
524
+ this.ae = b;
525
+ }
526
+ return this;
527
+ };
528
+ ComponentRendererMethodHelperArgumentBuilder.prototype.asEmbeddedRefArray = function (a) {
529
+ this.ah = 10;
530
+ this.al = null;
531
+ this.ak = null;
532
+ if (a == null) {
533
+ this.ae = ((function () {
534
+ var $ret = new JsonDictionaryValue();
535
+ $ret.e = 3;
536
+ $ret.value = null;
537
+ return $ret;
538
+ })());
539
+ }
540
+ else {
541
+ var b = new JsonDictionaryArray();
542
+ b.items = new Array(a.length);
543
+ var _loop_8 = function (c) {
544
+ var d = a[c];
545
+ var e = new JsonDictionaryObject();
546
+ e.item("refType", ((function () {
547
+ var $ret = new JsonDictionaryValue();
548
+ $ret.e = 2;
549
+ $ret.value = d.refType;
550
+ return $ret;
551
+ })()));
552
+ e.item("id", ((function () {
553
+ var $ret = new JsonDictionaryValue();
554
+ $ret.e = 2;
555
+ $ret.value = d.value;
556
+ return $ret;
557
+ })()));
558
+ b.items[c] = e;
559
+ };
560
+ for (var c = 0; c < a.length; c++) {
561
+ _loop_8(c);
396
562
  }
397
- this.x = b;
563
+ this.ae = b;
398
564
  }
399
565
  return this;
400
566
  };
401
567
  ComponentRendererMethodHelperArgumentBuilder.prototype.asPublicTypeRef = function (a, b) {
402
- this.z = 8;
403
- this.ac = a;
404
- this.ab = a;
568
+ this.ah = 8;
569
+ this.al = a;
570
+ this.ak = a;
405
571
  if (b == null) {
406
- this.x = ((function () {
572
+ this.ae = ((function () {
407
573
  var $ret = new JsonDictionaryValue();
408
574
  $ret.e = 3;
409
575
  $ret.value = null;
@@ -424,14 +590,44 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
424
590
  $ret.value = b.name;
425
591
  return $ret;
426
592
  })()));
427
- this.x = c;
593
+ this.ae = c;
594
+ }
595
+ return this;
596
+ };
597
+ ComponentRendererMethodHelperArgumentBuilder.prototype.asEmbeddedRef = function (a) {
598
+ this.ah = 8;
599
+ this.al = null;
600
+ this.ak = null;
601
+ if (a == null) {
602
+ this.ae = ((function () {
603
+ var $ret = new JsonDictionaryValue();
604
+ $ret.e = 3;
605
+ $ret.value = null;
606
+ return $ret;
607
+ })());
608
+ }
609
+ else {
610
+ var b = new JsonDictionaryObject();
611
+ b.item("refType", ((function () {
612
+ var $ret = new JsonDictionaryValue();
613
+ $ret.e = 2;
614
+ $ret.value = a.refType;
615
+ return $ret;
616
+ })()));
617
+ b.item("id", ((function () {
618
+ var $ret = new JsonDictionaryValue();
619
+ $ret.e = 2;
620
+ $ret.value = a.value;
621
+ return $ret;
622
+ })()));
623
+ this.ae = b;
428
624
  }
429
625
  return this;
430
626
  };
431
627
  ComponentRendererMethodHelperArgumentBuilder.prototype.asPoint = function (a) {
432
- this.z = 11;
433
- this.ac = null;
434
- this.ab = null;
628
+ this.ah = 11;
629
+ this.al = null;
630
+ this.ak = null;
435
631
  var b = new JsonDictionaryObject();
436
632
  b.item("x", ((function () {
437
633
  var $ret = new JsonDictionaryValue();
@@ -445,13 +641,13 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
445
641
  $ret.value = a.y;
446
642
  return $ret;
447
643
  })()));
448
- this.x = b;
644
+ this.ae = b;
449
645
  return this;
450
646
  };
451
647
  ComponentRendererMethodHelperArgumentBuilder.prototype.asSize = function (a) {
452
- this.z = 12;
453
- this.ac = null;
454
- this.ab = null;
648
+ this.ah = 12;
649
+ this.al = null;
650
+ this.ak = null;
455
651
  var b = new JsonDictionaryObject();
456
652
  b.item("width", ((function () {
457
653
  var $ret = new JsonDictionaryValue();
@@ -465,13 +661,13 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
465
661
  $ret.value = a.height;
466
662
  return $ret;
467
663
  })()));
468
- this.x = b;
664
+ this.ae = b;
469
665
  return this;
470
666
  };
471
667
  ComponentRendererMethodHelperArgumentBuilder.prototype.asRect = function (a) {
472
- this.z = 14;
473
- this.ac = null;
474
- this.ab = null;
668
+ this.ah = 14;
669
+ this.al = null;
670
+ this.ak = null;
475
671
  var b = new JsonDictionaryObject();
476
672
  b.item("left", ((function () {
477
673
  var $ret = new JsonDictionaryValue();
@@ -497,13 +693,13 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
497
693
  $ret.value = a.height;
498
694
  return $ret;
499
695
  })()));
500
- this.x = b;
696
+ this.ae = b;
501
697
  return this;
502
698
  };
503
699
  ComponentRendererMethodHelperArgumentBuilder.prototype.asMethodRef = function (a) {
504
- this.z = 18;
505
- this.ac = null;
506
- this.ab = null;
700
+ this.ah = 18;
701
+ this.al = null;
702
+ this.ak = null;
507
703
  var b = new JsonDictionaryObject();
508
704
  b.item("refType", ((function () {
509
705
  var $ret = new JsonDictionaryValue();
@@ -517,14 +713,14 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
517
713
  $ret.value = a;
518
714
  return $ret;
519
715
  })()));
520
- this.x = b;
716
+ this.ae = b;
521
717
  return this;
522
718
  };
523
719
  ComponentRendererMethodHelperArgumentBuilder.prototype.asBool = function (a) {
524
- this.z = 2;
525
- this.ac = null;
526
- this.ab = "boolean";
527
- this.x = ((function () {
720
+ this.ah = 2;
721
+ this.al = null;
722
+ this.ak = "boolean";
723
+ this.ae = ((function () {
528
724
  var $ret = new JsonDictionaryValue();
529
725
  $ret.e = 1;
530
726
  $ret.value = a;
@@ -532,12 +728,115 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
532
728
  })());
533
729
  return this;
534
730
  };
731
+ ComponentRendererMethodHelperArgumentBuilder.prototype.asPrimitive = function (a) {
732
+ if (a == null) {
733
+ this.ah = 17;
734
+ this.al = null;
735
+ this.ak = null;
736
+ this.ae = ((function () {
737
+ var $ret = new JsonDictionaryValue();
738
+ $ret.e = 3;
739
+ $ret.value = null;
740
+ return $ret;
741
+ })());
742
+ }
743
+ if (typeof a === 'number') {
744
+ return this.asDouble(a);
745
+ }
746
+ if (typeof a === 'number') {
747
+ return this.asInt(typeGetValue(a));
748
+ }
749
+ if (typeof a === 'number') {
750
+ return this.asLong(typeGetValue(a));
751
+ }
752
+ if (typeof a === 'number') {
753
+ return this.asFloat(a);
754
+ }
755
+ if (typeof a === 'number') {
756
+ return this.asShort(typeGetValue(a));
757
+ }
758
+ if (typeof a === 'number') {
759
+ return this.asDouble(a);
760
+ }
761
+ if (typeCast(Array_$type, a) !== null) {
762
+ if (a.length > 0) {
763
+ var b = a[0];
764
+ if (typeof b === 'number') {
765
+ return this.asDoubleArray(a);
766
+ }
767
+ }
768
+ }
769
+ if (typeof a === 'string') {
770
+ return this.asString(a);
771
+ }
772
+ if (typeCast(Array_$type, a) !== null) {
773
+ if (a.length > 0) {
774
+ var c = a[0];
775
+ if (typeof c === 'string') {
776
+ return this.asStringArray(a);
777
+ }
778
+ }
779
+ }
780
+ if (typeCast(Boolean_$type, a) !== null) {
781
+ return this.asBool(a);
782
+ }
783
+ if (typeCast(EmbeddedRefDescription.$, a) !== null) {
784
+ return this.asEmbeddedRef(a);
785
+ }
786
+ return this.asString(a);
787
+ };
788
+ ComponentRendererMethodHelperArgumentBuilder.prototype.asPrimitiveArray = function (a) {
789
+ if (a == null) {
790
+ this.ah = 17;
791
+ this.al = null;
792
+ this.ak = null;
793
+ this.ae = ((function () {
794
+ var $ret = new JsonDictionaryValue();
795
+ $ret.e = 3;
796
+ $ret.value = null;
797
+ return $ret;
798
+ })());
799
+ }
800
+ if (typeCast(Array_$type, a) !== null) {
801
+ if (a.length > 0) {
802
+ var b = a[0];
803
+ if (typeof b === 'number') {
804
+ return this.asDoubleArray(a);
805
+ }
806
+ }
807
+ }
808
+ if (typeCast(Array_$type, a) !== null) {
809
+ if (a.length > 0) {
810
+ var c = a[0];
811
+ if (typeof c === 'string') {
812
+ return this.asStringArray(a);
813
+ }
814
+ }
815
+ }
816
+ if (typeCast(Array_$type, a) !== null) {
817
+ if (a.length > 0) {
818
+ var d = a[0];
819
+ if (typeCast(Boolean_$type, d) !== null) {
820
+ return this.asBoolArray(a);
821
+ }
822
+ }
823
+ }
824
+ if (typeCast(Array_$type, a) !== null) {
825
+ if (a.length > 0) {
826
+ var e = a[0];
827
+ if (typeCast(EmbeddedRefDescription.$, e) !== null) {
828
+ return this.asEmbeddedRefArray(a);
829
+ }
830
+ }
831
+ }
832
+ return this.asStringArray(a);
833
+ };
535
834
  ComponentRendererMethodHelperArgumentBuilder.prototype.asBoolArray = function (a) {
536
- this.z = 10;
537
- this.ac = null;
538
- this.ab = "boolean";
835
+ this.ah = 10;
836
+ this.al = null;
837
+ this.ak = "boolean";
539
838
  if (a == null) {
540
- this.x = ((function () {
839
+ this.ae = ((function () {
541
840
  var $ret = new JsonDictionaryValue();
542
841
  $ret.e = 3;
543
842
  $ret.value = null;
@@ -547,7 +846,7 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
547
846
  else {
548
847
  var b = new JsonDictionaryArray();
549
848
  b.items = new Array(a.length);
550
- var _loop_7 = function (c) {
849
+ var _loop_9 = function (c) {
551
850
  b.items[c] = ((function () {
552
851
  var $ret = new JsonDictionaryValue();
553
852
  $ret.e = 1;
@@ -556,47 +855,47 @@ var ComponentRendererMethodHelperArgumentBuilder = /** @class */ /*@__PURE__*/ (
556
855
  })());
557
856
  };
558
857
  for (var c = 0; c < a.length; c++) {
559
- _loop_7(c);
858
+ _loop_9(c);
560
859
  }
561
- this.x = b;
860
+ this.ae = b;
562
861
  }
563
862
  return this;
564
863
  };
565
- ComponentRendererMethodHelperArgumentBuilder.prototype.y = function () {
864
+ ComponentRendererMethodHelperArgumentBuilder.prototype.af = function () {
566
865
  var _this = this;
567
866
  var a = new JsonDictionaryObject();
568
867
  a.item("knownType", ((function () {
569
868
  var $ret = new JsonDictionaryValue();
570
869
  $ret.e = 2;
571
- $ret.value = EnumUtil.getName(TypeDescriptionWellKnownType_$type, _this.z);
870
+ $ret.value = EnumUtil.getName(TypeDescriptionWellKnownType_$type, _this.ah);
572
871
  return $ret;
573
872
  })()));
574
- if (this.ac != null) {
873
+ if (this.al != null) {
575
874
  a.item("specificType", ((function () {
576
875
  var $ret = new JsonDictionaryValue();
577
876
  $ret.e = 2;
578
- $ret.value = _this.ac;
877
+ $ret.value = _this.al;
579
878
  return $ret;
580
879
  })()));
581
880
  }
582
- if (this.ab != null) {
881
+ if (this.ak != null) {
583
882
  a.item("specificExternalType", ((function () {
584
883
  var $ret = new JsonDictionaryValue();
585
884
  $ret.e = 2;
586
- $ret.value = _this.ab;
885
+ $ret.value = _this.ak;
587
886
  return $ret;
588
887
  })()));
589
888
  }
590
- if (this.aa != null) {
889
+ if (this.aj != null) {
591
890
  a.item("collectionElementType", ((function () {
592
891
  var $ret = new JsonDictionaryValue();
593
892
  $ret.e = 2;
594
- $ret.value = _this.aa;
893
+ $ret.value = _this.aj;
595
894
  return $ret;
596
895
  })()));
597
896
  }
598
- if (this.x != null) {
599
- a.item("value", this.x);
897
+ if (this.ae != null) {
898
+ a.item("value", this.ae);
600
899
  }
601
900
  else {
602
901
  a.item("value", ((function () {
@@ -620,9 +919,9 @@ var ComponentRendererMethodHelperReturnBuilder = /** @class */ /*@__PURE__*/ (fu
620
919
  var _this = _super.call(this) || this;
621
920
  _this.b = null;
622
921
  _this.y = 0;
922
+ _this.ac = null;
623
923
  _this.ab = null;
624
924
  _this.aa = null;
625
- _this.z = null;
626
925
  _this.b = a;
627
926
  return _this;
628
927
  }
@@ -635,88 +934,116 @@ var ComponentRendererMethodHelperReturnBuilder = /** @class */ /*@__PURE__*/ (fu
635
934
  ComponentRendererMethodHelperReturnBuilder.prototype.build = function () {
636
935
  return this.b.build();
637
936
  };
937
+ Object.defineProperty(ComponentRendererMethodHelperReturnBuilder.prototype, "z", {
938
+ get: function () {
939
+ return this.y;
940
+ },
941
+ enumerable: false,
942
+ configurable: true
943
+ });
944
+ Object.defineProperty(ComponentRendererMethodHelperReturnBuilder.prototype, "af", {
945
+ get: function () {
946
+ return this.ab;
947
+ },
948
+ enumerable: false,
949
+ configurable: true
950
+ });
951
+ Object.defineProperty(ComponentRendererMethodHelperReturnBuilder.prototype, "ag", {
952
+ get: function () {
953
+ return this.ac;
954
+ },
955
+ enumerable: false,
956
+ configurable: true
957
+ });
958
+ Object.defineProperty(ComponentRendererMethodHelperReturnBuilder.prototype, "ae", {
959
+ get: function () {
960
+ return this.aa;
961
+ },
962
+ enumerable: false,
963
+ configurable: true
964
+ });
638
965
  ComponentRendererMethodHelperReturnBuilder.prototype.asInt = function () {
639
966
  this.y = 1;
640
- this.ab = null;
641
- this.aa = "int";
967
+ this.ac = null;
968
+ this.ab = "int";
642
969
  return this;
643
970
  };
644
971
  ComponentRendererMethodHelperReturnBuilder.prototype.asIntArray = function () {
645
972
  this.y = 10;
646
- this.ab = null;
647
- this.aa = "int";
973
+ this.ac = null;
974
+ this.ab = "int";
648
975
  return this;
649
976
  };
650
977
  ComponentRendererMethodHelperReturnBuilder.prototype.asDouble = function () {
651
978
  this.y = 1;
652
- this.ab = null;
653
- this.aa = "double";
979
+ this.ac = null;
980
+ this.ab = "double";
654
981
  return this;
655
982
  };
656
983
  ComponentRendererMethodHelperReturnBuilder.prototype.asDoubleArray = function () {
657
984
  this.y = 10;
658
- this.ab = null;
659
- this.aa = "double";
985
+ this.ac = null;
986
+ this.ab = "double";
660
987
  return this;
661
988
  };
662
989
  ComponentRendererMethodHelperReturnBuilder.prototype.asShort = function () {
663
990
  this.y = 1;
664
- this.ab = null;
665
- this.aa = "short";
991
+ this.ac = null;
992
+ this.ab = "short";
666
993
  return this;
667
994
  };
668
995
  ComponentRendererMethodHelperReturnBuilder.prototype.asShortArray = function () {
669
996
  this.y = 10;
670
- this.ab = null;
671
- this.aa = "short";
997
+ this.ac = null;
998
+ this.ab = "short";
672
999
  return this;
673
1000
  };
674
1001
  ComponentRendererMethodHelperReturnBuilder.prototype.asLong = function () {
675
1002
  this.y = 1;
676
- this.ab = null;
677
- this.aa = "long";
1003
+ this.ac = null;
1004
+ this.ab = "long";
678
1005
  return this;
679
1006
  };
680
1007
  ComponentRendererMethodHelperReturnBuilder.prototype.asLongArray = function () {
681
1008
  this.y = 10;
682
- this.ab = null;
683
- this.aa = "long";
1009
+ this.ac = null;
1010
+ this.ab = "long";
684
1011
  return this;
685
1012
  };
686
1013
  ComponentRendererMethodHelperReturnBuilder.prototype.asFlout = function () {
687
1014
  this.y = 1;
688
- this.ab = null;
689
- this.aa = "float";
1015
+ this.ac = null;
1016
+ this.ab = "float";
690
1017
  return this;
691
1018
  };
692
1019
  ComponentRendererMethodHelperReturnBuilder.prototype.asFloatArray = function () {
693
1020
  this.y = 10;
694
- this.ab = null;
695
- this.aa = "float";
1021
+ this.ac = null;
1022
+ this.ab = "float";
696
1023
  return this;
697
1024
  };
698
1025
  ComponentRendererMethodHelperReturnBuilder.prototype.asEnum = function (a) {
699
1026
  this.y = 8;
700
- this.ab = a.typeName;
701
- this.aa = "string";
1027
+ this.ac = a.typeName;
1028
+ this.ab = "string";
702
1029
  return this;
703
1030
  };
704
1031
  ComponentRendererMethodHelperReturnBuilder.prototype.asString = function () {
705
1032
  this.y = 2;
706
- this.ab = null;
707
- this.aa = "string";
1033
+ this.ac = null;
1034
+ this.ab = "string";
708
1035
  return this;
709
1036
  };
710
1037
  ComponentRendererMethodHelperReturnBuilder.prototype.asStringArray = function () {
711
1038
  this.y = 10;
712
- this.ab = null;
713
- this.aa = "string";
1039
+ this.ac = null;
1040
+ this.ab = "string";
714
1041
  return this;
715
1042
  };
716
1043
  ComponentRendererMethodHelperReturnBuilder.prototype.asPublicTypeRef = function (a) {
717
1044
  this.y = 8;
1045
+ this.ac = a;
718
1046
  this.ab = a;
719
- this.aa = a;
720
1047
  var b = new JsonDictionaryObject();
721
1048
  b.item("refType", ((function () {
722
1049
  var $ret = new JsonDictionaryValue();
@@ -734,32 +1061,32 @@ var ComponentRendererMethodHelperReturnBuilder = /** @class */ /*@__PURE__*/ (fu
734
1061
  };
735
1062
  ComponentRendererMethodHelperReturnBuilder.prototype.asPoint = function () {
736
1063
  this.y = 11;
1064
+ this.ac = null;
737
1065
  this.ab = null;
738
- this.aa = null;
739
1066
  return this;
740
1067
  };
741
1068
  ComponentRendererMethodHelperReturnBuilder.prototype.asSize = function () {
742
1069
  this.y = 12;
1070
+ this.ac = null;
743
1071
  this.ab = null;
744
- this.aa = null;
745
1072
  return this;
746
1073
  };
747
1074
  ComponentRendererMethodHelperReturnBuilder.prototype.asRect = function () {
748
1075
  this.y = 14;
1076
+ this.ac = null;
749
1077
  this.ab = null;
750
- this.aa = null;
751
1078
  return this;
752
1079
  };
753
1080
  ComponentRendererMethodHelperReturnBuilder.prototype.asMethodRef = function () {
754
1081
  this.y = 18;
1082
+ this.ac = null;
755
1083
  this.ab = null;
756
- this.aa = null;
757
1084
  return this;
758
1085
  };
759
1086
  ComponentRendererMethodHelperReturnBuilder.prototype.asBool = function () {
760
1087
  this.y = 7;
761
- this.ab = null;
762
- this.aa = "boolean";
1088
+ this.ac = null;
1089
+ this.ab = "boolean";
763
1090
  return this;
764
1091
  };
765
1092
  ComponentRendererMethodHelperReturnBuilder.prototype.x = function () {
@@ -771,27 +1098,27 @@ var ComponentRendererMethodHelperReturnBuilder = /** @class */ /*@__PURE__*/ (fu
771
1098
  $ret.value = EnumUtil.getName(TypeDescriptionWellKnownType_$type, _this.y);
772
1099
  return $ret;
773
1100
  })()));
774
- if (this.ab != null) {
1101
+ if (this.ac != null) {
775
1102
  a.item("specificType", ((function () {
776
1103
  var $ret = new JsonDictionaryValue();
777
1104
  $ret.e = 2;
778
- $ret.value = _this.ab;
1105
+ $ret.value = _this.ac;
779
1106
  return $ret;
780
1107
  })()));
781
1108
  }
782
- if (this.aa != null) {
1109
+ if (this.ab != null) {
783
1110
  a.item("specificExternalType", ((function () {
784
1111
  var $ret = new JsonDictionaryValue();
785
1112
  $ret.e = 2;
786
- $ret.value = _this.aa;
1113
+ $ret.value = _this.ab;
787
1114
  return $ret;
788
1115
  })()));
789
1116
  }
790
- if (this.z != null) {
1117
+ if (this.aa != null) {
791
1118
  a.item("collectionElementType", ((function () {
792
1119
  var $ret = new JsonDictionaryValue();
793
1120
  $ret.e = 2;
794
- $ret.value = _this.z;
1121
+ $ret.value = _this.aa;
795
1122
  return $ret;
796
1123
  })()));
797
1124
  }
@@ -799,8 +1126,8 @@ var ComponentRendererMethodHelperReturnBuilder = /** @class */ /*@__PURE__*/ (fu
799
1126
  };
800
1127
  ComponentRendererMethodHelperReturnBuilder.prototype.asVoid = function () {
801
1128
  this.y = 0;
1129
+ this.ac = null;
802
1130
  this.ab = null;
803
- this.aa = null;
804
1131
  return this;
805
1132
  };
806
1133
  ComponentRendererMethodHelperReturnBuilder.$t = markType(ComponentRendererMethodHelperReturnBuilder, 'ComponentRendererMethodHelperReturnBuilder');