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
@@ -13,280 +13,282 @@ export let DataGridDescription = /*@__PURE__*/ (() => {
13
13
  class DataGridDescription extends Description {
14
14
  constructor() {
15
15
  super();
16
- this.ix = null;
17
- this.g2 = null;
18
- this.e6 = null;
19
- this.bt = false;
20
- this.by = false;
21
- this.b3 = false;
22
- this.f1 = null;
23
- this.ft = null;
16
+ this.i1 = null;
17
+ this.g6 = null;
18
+ this.fa = null;
19
+ this.bv = false;
24
20
  this.b0 = false;
25
- this.hf = null;
26
- this.hg = null;
27
- this.gh = null;
28
- this.dh = 0;
29
- this.di = 0;
30
- this.dj = 0;
31
- this.dk = 0;
32
- this.bd = null;
21
+ this.b5 = false;
22
+ this.f5 = null;
23
+ this.fx = null;
24
+ this.b2 = false;
25
+ this.hj = null;
26
+ this.hk = null;
27
+ this.gl = null;
28
+ this.dl = 0;
29
+ this.dm = 0;
30
+ this.dn = 0;
31
+ this.dp = 0;
33
32
  this.bf = null;
34
33
  this.bh = null;
35
- this.bb = null;
36
- this.a5 = null;
34
+ this.bj = null;
35
+ this.bd = null;
37
36
  this.a7 = null;
38
- this.az = null;
39
- this.ax = null;
40
37
  this.a9 = null;
38
+ this.a1 = null;
39
+ this.az = null;
40
+ this.bb = null;
41
41
  this.j = null;
42
42
  this.l = null;
43
- this.gb = null;
44
- this.ej = 0;
45
- this.eq = 0;
46
- this.de = 0;
47
- this.ei = 0;
43
+ this.gf = null;
44
+ this.en = 0;
45
+ this.eu = 0;
46
+ this.di = 0;
48
47
  this.em = 0;
49
- this.f9 = null;
48
+ this.eq = 0;
49
+ this.gd = null;
50
50
  this.av = null;
51
- this.gt = null;
52
- this.gf = null;
53
- this.gg = null;
54
- this.bo = false;
55
- this.bl = false;
56
- this.er = 0;
57
- this.bz = false;
58
- this.fo = null;
59
- this.fz = null;
60
- this.fa = null;
61
- this.hh = null;
62
- this.he = null;
63
- this.fl = null;
64
- this.a1 = null;
65
- this.f0 = null;
66
- this.f4 = null;
51
+ this.ax = null;
52
+ this.gx = null;
53
+ this.gj = null;
54
+ this.gk = null;
55
+ this.bq = false;
56
+ this.bn = false;
57
+ this.ev = 0;
58
+ this.b1 = false;
67
59
  this.fs = null;
68
- this.fr = null;
60
+ this.f3 = null;
61
+ this.fe = null;
62
+ this.hl = null;
63
+ this.hi = null;
69
64
  this.fp = null;
70
- this.h0 = null;
71
- this.e2 = null;
72
- this.hy = null;
73
- this.b4 = false;
65
+ this.a3 = null;
66
+ this.f4 = null;
67
+ this.f8 = null;
68
+ this.fw = null;
69
+ this.fv = null;
70
+ this.ft = null;
71
+ this.h4 = null;
72
+ this.e6 = null;
73
+ this.h2 = null;
74
+ this.b6 = false;
74
75
  this.x = null;
75
76
  this.y = null;
76
77
  this.w = null;
77
78
  this.v = null;
78
79
  this.r = null;
79
80
  this.s = null;
80
- this.bq = false;
81
- this.bw = false;
82
- this.bx = false;
83
- this.fk = null;
84
- this.hs = null;
85
- this.h5 = null;
86
- this.ih = null;
87
- this.dm = 0;
88
- this.gc = null;
89
- this.df = 0;
90
- this.gd = null;
81
+ this.bs = false;
82
+ this.by = false;
83
+ this.bz = false;
84
+ this.fo = null;
85
+ this.hw = null;
86
+ this.h9 = null;
87
+ this.il = null;
88
+ this.dr = 0;
89
+ this.gg = null;
90
+ this.dj = 0;
91
+ this.gh = null;
92
+ this.gi = null;
93
+ this.dk = 0;
91
94
  this.ge = null;
92
- this.dg = 0;
93
- this.ga = null;
94
- this.h3 = null;
95
+ this.h7 = null;
96
+ this.he = null;
95
97
  this.ha = null;
96
- this.g6 = null;
97
- this.a3 = null;
98
- this.e8 = null;
99
- this.fm = null;
100
- this.gz = null;
101
- this.g0 = null;
102
- this.fd = null;
103
- this.c7 = 0;
104
- this.fe = null;
105
- this.ff = null;
106
- this.ho = null;
98
+ this.a5 = null;
99
+ this.fc = null;
100
+ this.fq = null;
101
+ this.g3 = null;
102
+ this.g4 = null;
103
+ this.fh = null;
104
+ this.db = 0;
105
+ this.fi = null;
106
+ this.fj = null;
107
+ this.hs = null;
108
+ this.hx = null;
107
109
  this.ht = null;
108
- this.hp = null;
109
- this.dn = 0;
110
- this.hq = null;
111
- this.hr = null;
112
- this.h6 = null;
113
- this.dp = 0;
114
- this.h7 = null;
115
- this.h8 = null;
116
- this.ii = null;
117
- this.dr = 0;
118
- this.ij = null;
119
- this.ik = null;
120
- this.ie = null;
110
+ this.ds = 0;
111
+ this.hu = null;
112
+ this.hv = null;
113
+ this.ia = null;
114
+ this.dt = 0;
121
115
  this.ib = null;
122
- this.dq = 0;
123
116
  this.ic = null;
124
- this.id = null;
117
+ this.im = null;
118
+ this.dv = 0;
125
119
  this.io = null;
126
- this.ds = 0;
127
120
  this.ip = null;
121
+ this.ij = null;
122
+ this.ig = null;
123
+ this.du = 0;
124
+ this.ih = null;
125
+ this.ii = null;
126
+ this.is = null;
127
+ this.dw = 0;
128
+ this.it = null;
129
+ this.iu = null;
130
+ this.iv = null;
131
+ this.id = null;
128
132
  this.iq = null;
133
+ this.ie = null;
129
134
  this.ir = null;
130
- this.h9 = null;
131
- this.il = null;
132
- this.ia = null;
133
- this.im = null;
134
- this.ep = 0;
135
- this.en = 0;
135
+ this.et = 0;
136
+ this.er = 0;
137
+ this.g2 = null;
138
+ this.gw = null;
139
+ this.g5 = null;
136
140
  this.gy = null;
137
- this.gs = null;
141
+ this.dq = 0;
142
+ this.gz = null;
143
+ this.g0 = null;
144
+ this.hm = null;
138
145
  this.g1 = null;
139
- this.gu = null;
140
- this.dl = 0;
141
- this.gv = null;
142
- this.gw = null;
143
- this.hi = null;
144
- this.gx = null;
145
- this.hl = null;
146
- this.hj = null;
147
- this.hk = null;
148
- this.el = 0;
149
- this.c9 = 0;
150
- this.ek = 0;
146
+ this.hp = null;
147
+ this.hn = null;
148
+ this.ho = null;
149
+ this.ep = 0;
150
+ this.dd = 0;
151
+ this.eo = 0;
152
+ this.dc = 0;
153
+ this.f6 = null;
154
+ this.fy = null;
155
+ this.cb = false;
156
+ this.fz = null;
157
+ this.f1 = null;
158
+ this.f0 = null;
159
+ this.fb = null;
160
+ this.c7 = 0;
151
161
  this.c8 = 0;
152
- this.f2 = null;
153
- this.fu = null;
154
- this.b9 = false;
155
- this.fv = null;
156
- this.fx = null;
157
- this.fw = null;
158
- this.e7 = null;
159
- this.c3 = 0;
160
- this.c4 = 0;
161
- this.c5 = 0;
162
- this.c6 = 0;
163
- this.b5 = false;
164
- this.db = 0;
162
+ this.c9 = 0;
165
163
  this.da = 0;
166
- this.dc = 0;
167
- this.dd = 0;
168
- this.bp = false;
164
+ this.b7 = false;
165
+ this.df = 0;
166
+ this.de = 0;
167
+ this.dg = 0;
168
+ this.dh = 0;
169
+ this.br = false;
170
+ this.cc = false;
169
171
  this.u = null;
170
172
  this.p = null;
171
173
  this.o = null;
172
174
  this.q = null;
173
- this.g4 = null;
174
- this.g3 = null;
175
- this.g5 = null;
175
+ this.g8 = null;
176
+ this.g7 = null;
177
+ this.g9 = null;
176
178
  this.z = null;
177
179
  this.n = null;
178
180
  this.m = null;
179
181
  this.aa = null;
180
- this.ig = null;
181
- this.bu = false;
182
- this.gq = null;
183
- this.bv = false;
184
- this.gr = null;
185
- this.bk = false;
182
+ this.ik = null;
183
+ this.bw = false;
184
+ this.gu = null;
185
+ this.bx = false;
186
+ this.gv = null;
187
+ this.bm = false;
186
188
  this.t = null;
187
189
  this.i = null;
188
190
  this.h = null;
189
191
  this.k = null;
192
+ this.ca = false;
193
+ this.b9 = false;
190
194
  this.b8 = false;
191
- this.b7 = false;
192
- this.b6 = false;
193
- this.gi = null;
194
- this.gj = null;
195
- this.bs = false;
196
- this.br = false;
197
- this.g8 = null;
198
- this.g7 = null;
199
- this.g9 = null;
200
- this.go = null;
195
+ this.gm = null;
201
196
  this.gn = null;
202
- this.gk = null;
203
- this.c1 = new Date();
204
- this.bm = false;
205
- this.eo = 0;
206
- this.b1 = false;
207
- this.b2 = false;
197
+ this.bu = false;
198
+ this.bt = false;
199
+ this.hc = null;
200
+ this.hb = null;
201
+ this.hd = null;
202
+ this.gs = null;
203
+ this.gr = null;
204
+ this.go = null;
205
+ this.c5 = new Date();
206
+ this.bo = false;
207
+ this.es = 0;
208
+ this.b3 = false;
209
+ this.b4 = false;
210
+ this.i0 = null;
208
211
  this.iw = null;
209
- this.is = null;
210
- this.it = null;
211
- this.iu = null;
212
- this.iv = null;
213
- this.hn = null;
214
- this.hm = null;
215
- this.bj = false;
216
- this.bn = false;
217
- this.gm = null;
218
- this.gl = null;
219
- this.fi = null;
220
- this.fj = null;
221
- this.fg = null;
222
- this.fh = null;
223
- this.e9 = null;
224
- this.h2 = null;
212
+ this.ix = null;
213
+ this.iy = null;
214
+ this.iz = null;
215
+ this.hr = null;
216
+ this.hq = null;
217
+ this.bl = false;
218
+ this.bp = false;
219
+ this.gq = null;
225
220
  this.gp = null;
226
- this.h4 = null;
227
- this.fq = null;
228
- this.fy = null;
221
+ this.fm = null;
229
222
  this.fn = null;
223
+ this.fk = null;
224
+ this.fl = null;
225
+ this.fd = null;
226
+ this.h6 = null;
227
+ this.gt = null;
228
+ this.h8 = null;
229
+ this.fu = null;
230
+ this.f2 = null;
231
+ this.fr = null;
232
+ this.gb = null;
233
+ this.gc = null;
234
+ this.hf = null;
235
+ this.h5 = null;
236
+ this.e8 = null;
230
237
  this.f7 = null;
231
- this.f8 = null;
232
- this.hb = null;
238
+ this.h0 = null;
233
239
  this.h1 = null;
234
- this.e4 = null;
235
- this.f3 = null;
236
- this.hw = null;
237
- this.hx = null;
238
- this.hv = null;
239
240
  this.hz = null;
240
- this.e3 = null;
241
- this.hu = null;
242
- this.f5 = null;
243
- this.fc = null;
244
- this.fb = null;
245
- this.hd = null;
246
- this.hc = null;
247
- this.f6 = null;
248
- this.e5 = null;
241
+ this.h3 = null;
242
+ this.e7 = null;
243
+ this.hy = null;
244
+ this.f9 = null;
245
+ this.fg = null;
246
+ this.ff = null;
247
+ this.hh = null;
248
+ this.hg = null;
249
+ this.ga = null;
250
+ this.e9 = null;
249
251
  }
250
252
  get width() {
251
- return this.ix;
253
+ return this.i1;
252
254
  }
253
255
  set width(a) {
254
- this.ix = a;
256
+ this.i1 = a;
255
257
  this.g("Width");
256
258
  }
257
259
  get height() {
258
- return this.g2;
260
+ return this.g6;
259
261
  }
260
262
  set height(a) {
261
- this.g2 = a;
263
+ this.g6 = a;
262
264
  this.g("Height");
263
265
  }
264
266
  get background() {
265
- return this.e6;
267
+ return this.fa;
266
268
  }
267
269
  set background(a) {
268
- this.e6 = a;
270
+ this.fa = a;
269
271
  this.g("Background");
270
272
  }
271
273
  get isGroupByAreaVisible() {
272
- return this.bt;
274
+ return this.bv;
273
275
  }
274
276
  set isGroupByAreaVisible(a) {
275
- this.bt = a;
277
+ this.bv = a;
276
278
  this.g("IsGroupByAreaVisible");
277
279
  }
278
280
  get isPagerVisible() {
279
- return this.by;
281
+ return this.b0;
280
282
  }
281
283
  set isPagerVisible(a) {
282
- this.by = a;
284
+ this.b0 = a;
283
285
  this.g("IsPagerVisible");
284
286
  }
285
287
  get isToolbarVisible() {
286
- return this.b3;
288
+ return this.b5;
287
289
  }
288
290
  set isToolbarVisible(a) {
289
- this.b3 = a;
291
+ this.b5 = a;
290
292
  this.g("IsToolbarVisible");
291
293
  }
292
294
  get_type() {
@@ -296,136 +298,136 @@ export let DataGridDescription = /*@__PURE__*/ (() => {
296
298
  return this.get_type();
297
299
  }
298
300
  get columnResizingMode() {
299
- return this.f1;
301
+ return this.f5;
300
302
  }
301
303
  set columnResizingMode(a) {
302
- this.f1 = a;
304
+ this.f5 = a;
303
305
  this.g("ColumnResizingMode");
304
306
  }
305
307
  get columnMovingMode() {
306
- return this.ft;
308
+ return this.fx;
307
309
  }
308
310
  set columnMovingMode(a) {
309
- this.ft = a;
311
+ this.fx = a;
310
312
  this.g("ColumnMovingMode");
311
313
  }
312
314
  get isRowHoverEnabled() {
313
- return this.b0;
315
+ return this.b2;
314
316
  }
315
317
  set isRowHoverEnabled(a) {
316
- this.b0 = a;
318
+ this.b2 = a;
317
319
  this.g("IsRowHoverEnabled");
318
320
  }
319
321
  get rowHoverBackground() {
320
- return this.hf;
322
+ return this.hj;
321
323
  }
322
324
  set rowHoverBackground(a) {
323
- this.hf = a;
325
+ this.hj = a;
324
326
  this.g("RowHoverBackground");
325
327
  }
326
328
  get rowHoverTextColor() {
327
- return this.hg;
329
+ return this.hk;
328
330
  }
329
331
  set rowHoverTextColor(a) {
330
- this.hg = a;
332
+ this.hk = a;
331
333
  this.g("RowHoverTextColor");
332
334
  }
333
335
  get editRowBorder() {
334
- return this.gh;
336
+ return this.gl;
335
337
  }
336
338
  set editRowBorder(a) {
337
- this.gh = a;
339
+ this.gl = a;
338
340
  this.g("EditRowBorder");
339
341
  }
340
342
  get editRowBorderWidthBottom() {
341
- return this.dh;
343
+ return this.dl;
342
344
  }
343
345
  set editRowBorderWidthBottom(a) {
344
- this.dh = a;
346
+ this.dl = a;
345
347
  this.g("EditRowBorderWidthBottom");
346
348
  }
347
349
  get editRowBorderWidthLeft() {
348
- return this.di;
350
+ return this.dm;
349
351
  }
350
352
  set editRowBorderWidthLeft(a) {
351
- this.di = a;
353
+ this.dm = a;
352
354
  this.g("EditRowBorderWidthLeft");
353
355
  }
354
356
  get editRowBorderWidthRight() {
355
- return this.dj;
357
+ return this.dn;
356
358
  }
357
359
  set editRowBorderWidthRight(a) {
358
- this.dj = a;
360
+ this.dn = a;
359
361
  this.g("EditRowBorderWidthRight");
360
362
  }
361
363
  get editRowBorderWidthTop() {
362
- return this.dk;
364
+ return this.dp;
363
365
  }
364
366
  set editRowBorderWidthTop(a) {
365
- this.dk = a;
367
+ this.dp = a;
366
368
  this.g("EditRowBorderWidthTop");
367
369
  }
368
370
  get sectionHeader() {
369
- return this.bd;
371
+ return this.bf;
370
372
  }
371
373
  set sectionHeader(a) {
372
- this.bd = a;
374
+ this.bf = a;
373
375
  this.g("SectionHeader");
374
376
  }
375
377
  get summaryRowRoot() {
376
- return this.bf;
378
+ return this.bh;
377
379
  }
378
380
  set summaryRowRoot(a) {
379
- this.bf = a;
381
+ this.bh = a;
380
382
  this.g("SummaryRowRoot");
381
383
  }
382
384
  get summaryRowSection() {
383
- return this.bh;
385
+ return this.bj;
384
386
  }
385
387
  set summaryRowSection(a) {
386
- this.bh = a;
388
+ this.bj = a;
387
389
  this.g("SummaryRowSection");
388
390
  }
389
391
  get rowSeparator() {
390
- return this.bb;
392
+ return this.bd;
391
393
  }
392
394
  set rowSeparator(a) {
393
- this.bb = a;
395
+ this.bd = a;
394
396
  this.g("RowSeparator");
395
397
  }
396
398
  get headerRowSeparator() {
397
- return this.a5;
399
+ return this.a7;
398
400
  }
399
401
  set headerRowSeparator(a) {
400
- this.a5 = a;
402
+ this.a7 = a;
401
403
  this.g("HeaderRowSeparator");
402
404
  }
403
405
  get headerSeparator() {
404
- return this.a7;
406
+ return this.a9;
405
407
  }
406
408
  set headerSeparator(a) {
407
- this.a7 = a;
409
+ this.a9 = a;
408
410
  this.g("HeaderSeparator");
409
411
  }
410
412
  get columnResizingSeparator() {
411
- return this.az;
413
+ return this.a1;
412
414
  }
413
415
  set columnResizingSeparator(a) {
414
- this.az = a;
416
+ this.a1 = a;
415
417
  this.g("ColumnResizingSeparator");
416
418
  }
417
419
  get columnMovingSeparator() {
418
- return this.ax;
420
+ return this.az;
419
421
  }
420
422
  set columnMovingSeparator(a) {
421
- this.ax = a;
423
+ this.az = a;
422
424
  this.g("ColumnMovingSeparator");
423
425
  }
424
426
  get pinnedAreaSeparator() {
425
- return this.a9;
427
+ return this.bb;
426
428
  }
427
429
  set pinnedAreaSeparator(a) {
428
- this.a9 = a;
430
+ this.bb = a;
429
431
  this.g("PinnedAreaSeparator");
430
432
  }
431
433
  get autoGenerateDesiredProperties() {
@@ -443,52 +445,52 @@ export let DataGridDescription = /*@__PURE__*/ (() => {
443
445
  this.g("DataSourceDesiredProperties");
444
446
  }
445
447
  get density() {
446
- return this.gb;
448
+ return this.gf;
447
449
  }
448
450
  set density(a) {
449
- this.gb = a;
451
+ this.gf = a;
450
452
  this.g("Density");
451
453
  }
452
454
  get actualRowHeight() {
453
- return this.ej;
455
+ return this.en;
454
456
  }
455
457
  set actualRowHeight(a) {
456
- this.ej = a;
458
+ this.en = a;
457
459
  this.g("ActualRowHeight");
458
460
  }
459
461
  get rowHeight() {
460
- return this.eq;
462
+ return this.eu;
461
463
  }
462
464
  set rowHeight(a) {
463
- this.eq = a;
465
+ this.eu = a;
464
466
  this.g("RowHeight");
465
467
  }
466
468
  get defaultColumnMinWidth() {
467
- return this.de;
469
+ return this.di;
468
470
  }
469
471
  set defaultColumnMinWidth(a) {
470
- this.de = a;
472
+ this.di = a;
471
473
  this.g("DefaultColumnMinWidth");
472
474
  }
473
475
  get actualHeaderHeight() {
474
- return this.ei;
476
+ return this.em;
475
477
  }
476
478
  set actualHeaderHeight(a) {
477
- this.ei = a;
479
+ this.em = a;
478
480
  this.g("ActualHeaderHeight");
479
481
  }
480
482
  get headerHeight() {
481
- return this.em;
483
+ return this.eq;
482
484
  }
483
485
  set headerHeight(a) {
484
- this.em = a;
486
+ this.eq = a;
485
487
  this.g("HeaderHeight");
486
488
  }
487
489
  get dataSourceRef() {
488
- return this.f9;
490
+ return this.gd;
489
491
  }
490
492
  set dataSourceRef(a) {
491
- this.f9 = a;
493
+ this.gd = a;
492
494
  this.g("DataSourceRef");
493
495
  }
494
496
  get dataSource() {
@@ -498,165 +500,172 @@ export let DataGridDescription = /*@__PURE__*/ (() => {
498
500
  this.av = a;
499
501
  this.g("DataSource");
500
502
  }
503
+ get genericDataSource() {
504
+ return this.ax;
505
+ }
506
+ set genericDataSource(a) {
507
+ this.ax = a;
508
+ this.g("GenericDataSource");
509
+ }
501
510
  get headerClickAction() {
502
- return this.gt;
511
+ return this.gx;
503
512
  }
504
513
  set headerClickAction(a) {
505
- this.gt = a;
514
+ this.gx = a;
506
515
  this.g("HeaderClickAction");
507
516
  }
508
517
  get editMode() {
509
- return this.gf;
518
+ return this.gj;
510
519
  }
511
520
  set editMode(a) {
512
- this.gf = a;
521
+ this.gj = a;
513
522
  this.g("EditMode");
514
523
  }
515
524
  get editModeClickAction() {
516
- return this.gg;
525
+ return this.gk;
517
526
  }
518
527
  set editModeClickAction(a) {
519
- this.gg = a;
528
+ this.gk = a;
520
529
  this.g("EditModeClickAction");
521
530
  }
522
531
  get editOnKeyPress() {
523
- return this.bo;
532
+ return this.bq;
524
533
  }
525
534
  set editOnKeyPress(a) {
526
- this.bo = a;
535
+ this.bq = a;
527
536
  this.g("EditOnKeyPress");
528
537
  }
529
538
  get autoGenerateColumns() {
530
- return this.bl;
539
+ return this.bn;
531
540
  }
532
541
  set autoGenerateColumns(a) {
533
- this.bl = a;
542
+ this.bn = a;
534
543
  this.g("AutoGenerateColumns");
535
544
  }
536
545
  get rowSeparatorHeight() {
537
- return this.er;
546
+ return this.ev;
538
547
  }
539
548
  set rowSeparatorHeight(a) {
540
- this.er = a;
549
+ this.ev = a;
541
550
  this.g("RowSeparatorHeight");
542
551
  }
543
552
  get isPlaceholderRenderingEnabled() {
544
- return this.bz;
553
+ return this.b1;
545
554
  }
546
555
  set isPlaceholderRenderingEnabled(a) {
547
- this.bz = a;
556
+ this.b1 = a;
548
557
  this.g("IsPlaceholderRenderingEnabled");
549
558
  }
550
559
  get columnAddingAnimationMode() {
551
- return this.fo;
560
+ return this.fs;
552
561
  }
553
562
  set columnAddingAnimationMode(a) {
554
- this.fo = a;
563
+ this.fs = a;
555
564
  this.g("ColumnAddingAnimationMode");
556
565
  }
557
566
  get columnPropertyUpdatingAnimationMode() {
558
- return this.fz;
567
+ return this.f3;
559
568
  }
560
569
  set columnPropertyUpdatingAnimationMode(a) {
561
- this.fz = a;
570
+ this.f3 = a;
562
571
  this.g("ColumnPropertyUpdatingAnimationMode");
563
572
  }
564
573
  get cellDataLoadedAnimationMode() {
565
- return this.fa;
574
+ return this.fe;
566
575
  }
567
576
  set cellDataLoadedAnimationMode(a) {
568
- this.fa = a;
577
+ this.fe = a;
569
578
  this.g("CellDataLoadedAnimationMode");
570
579
  }
571
580
  get rowSelectionAnimationMode() {
572
- return this.hh;
581
+ return this.hl;
573
582
  }
574
583
  set rowSelectionAnimationMode(a) {
575
- this.hh = a;
584
+ this.hl = a;
576
585
  this.g("RowSelectionAnimationMode");
577
586
  }
578
587
  get rowHoverAnimationMode() {
579
- return this.he;
588
+ return this.hi;
580
589
  }
581
590
  set rowHoverAnimationMode(a) {
582
- this.he = a;
591
+ this.hi = a;
583
592
  this.g("RowHoverAnimationMode");
584
593
  }
585
594
  get cellSelectionAnimationMode() {
586
- return this.fl;
595
+ return this.fp;
587
596
  }
588
597
  set cellSelectionAnimationMode(a) {
589
- this.fl = a;
598
+ this.fp = a;
590
599
  this.g("CellSelectionAnimationMode");
591
600
  }
592
601
  get animationSettings() {
593
- return this.a1;
602
+ return this.a3;
594
603
  }
595
604
  set animationSettings(a) {
596
- this.a1 = a;
605
+ this.a3 = a;
597
606
  this.g("AnimationSettings");
598
607
  }
599
608
  get columnResizingAnimationMode() {
600
- return this.f0;
609
+ return this.f4;
601
610
  }
602
611
  set columnResizingAnimationMode(a) {
603
- this.f0 = a;
612
+ this.f4 = a;
604
613
  this.g("ColumnResizingAnimationMode");
605
614
  }
606
615
  get columnShowingAnimationMode() {
607
- return this.f4;
616
+ return this.f8;
608
617
  }
609
618
  set columnShowingAnimationMode(a) {
610
- this.f4 = a;
619
+ this.f8 = a;
611
620
  this.g("ColumnShowingAnimationMode");
612
621
  }
613
622
  get columnMovingAnimationMode() {
614
- return this.fs;
623
+ return this.fw;
615
624
  }
616
625
  set columnMovingAnimationMode(a) {
617
- this.fs = a;
626
+ this.fw = a;
618
627
  this.g("ColumnMovingAnimationMode");
619
628
  }
620
629
  get columnHidingAnimationMode() {
621
- return this.fr;
630
+ return this.fv;
622
631
  }
623
632
  set columnHidingAnimationMode(a) {
624
- this.fr = a;
633
+ this.fv = a;
625
634
  this.g("ColumnHidingAnimationMode");
626
635
  }
627
636
  get columnExchangingAnimationMode() {
628
- return this.fp;
637
+ return this.ft;
629
638
  }
630
639
  set columnExchangingAnimationMode(a) {
631
- this.fp = a;
640
+ this.ft = a;
632
641
  this.g("ColumnExchangingAnimationMode");
633
642
  }
634
643
  get selectionMode() {
635
- return this.h0;
644
+ return this.h4;
636
645
  }
637
646
  set selectionMode(a) {
638
- this.h0 = a;
647
+ this.h4 = a;
639
648
  this.g("SelectionMode");
640
649
  }
641
650
  get activationMode() {
642
- return this.e2;
651
+ return this.e6;
643
652
  }
644
653
  set activationMode(a) {
645
- this.e2 = a;
654
+ this.e6 = a;
646
655
  this.g("ActivationMode");
647
656
  }
648
657
  get selectionBehavior() {
649
- return this.hy;
658
+ return this.h2;
650
659
  }
651
660
  set selectionBehavior(a) {
652
- this.hy = a;
661
+ this.h2 = a;
653
662
  this.g("SelectionBehavior");
654
663
  }
655
664
  get mouseDragSelectionEnabled() {
656
- return this.b4;
665
+ return this.b6;
657
666
  }
658
667
  set mouseDragSelectionEnabled(a) {
659
- this.b4 = a;
668
+ this.b6 = a;
660
669
  this.g("MouseDragSelectionEnabled");
661
670
  }
662
671
  get selectedItems() {
@@ -702,628 +711,635 @@ export let DataGridDescription = /*@__PURE__*/ (() => {
702
711
  this.g("PinnedKeys");
703
712
  }
704
713
  get isColumnOptionsEnabled() {
705
- return this.bq;
714
+ return this.bs;
706
715
  }
707
716
  set isColumnOptionsEnabled(a) {
708
- this.bq = a;
717
+ this.bs = a;
709
718
  this.g("IsColumnOptionsEnabled");
710
719
  }
711
720
  get isGroupRowSticky() {
712
- return this.bw;
721
+ return this.by;
713
722
  }
714
723
  set isGroupRowSticky(a) {
715
- this.bw = a;
724
+ this.by = a;
716
725
  this.g("IsGroupRowSticky");
717
726
  }
718
727
  get isHeaderSeparatorVisible() {
719
- return this.bx;
728
+ return this.bz;
720
729
  }
721
730
  set isHeaderSeparatorVisible(a) {
722
- this.bx = a;
731
+ this.bz = a;
723
732
  this.g("IsHeaderSeparatorVisible");
724
733
  }
725
734
  get cellSelectedBackground() {
726
- return this.fk;
735
+ return this.fo;
727
736
  }
728
737
  set cellSelectedBackground(a) {
729
- this.fk = a;
738
+ this.fo = a;
730
739
  this.g("CellSelectedBackground");
731
740
  }
732
741
  get sectionHeaderSelectedBackground() {
733
- return this.hs;
742
+ return this.hw;
734
743
  }
735
744
  set sectionHeaderSelectedBackground(a) {
736
- this.hs = a;
745
+ this.hw = a;
737
746
  this.g("SectionHeaderSelectedBackground");
738
747
  }
739
748
  get summaryRootBackground() {
740
- return this.h5;
749
+ return this.h9;
741
750
  }
742
751
  set summaryRootBackground(a) {
743
- this.h5 = a;
752
+ this.h9 = a;
744
753
  this.g("SummaryRootBackground");
745
754
  }
746
755
  get summarySectionBackground() {
747
- return this.ih;
756
+ return this.il;
748
757
  }
749
758
  set summarySectionBackground(a) {
750
- this.ih = a;
759
+ this.il = a;
751
760
  this.g("SummarySectionBackground");
752
761
  }
753
762
  get pinnedRowOpacity() {
754
- return this.dm;
763
+ return this.dr;
755
764
  }
756
765
  set pinnedRowOpacity(a) {
757
- this.dm = a;
766
+ this.dr = a;
758
767
  this.g("PinnedRowOpacity");
759
768
  }
760
769
  get editFontFamily() {
761
- return this.gc;
770
+ return this.gg;
762
771
  }
763
772
  set editFontFamily(a) {
764
- this.gc = a;
773
+ this.gg = a;
765
774
  this.g("EditFontFamily");
766
775
  }
767
776
  get editFontSize() {
768
- return this.df;
777
+ return this.dj;
769
778
  }
770
779
  set editFontSize(a) {
771
- this.df = a;
780
+ this.dj = a;
772
781
  this.g("EditFontSize");
773
782
  }
774
783
  get editFontStyle() {
775
- return this.gd;
784
+ return this.gh;
776
785
  }
777
786
  set editFontStyle(a) {
778
- this.gd = a;
787
+ this.gh = a;
779
788
  this.g("EditFontStyle");
780
789
  }
781
790
  get editFontWeight() {
782
- return this.ge;
791
+ return this.gi;
783
792
  }
784
793
  set editFontWeight(a) {
785
- this.ge = a;
794
+ this.gi = a;
786
795
  this.g("EditFontWeight");
787
796
  }
788
797
  get editOpacity() {
789
- return this.dg;
798
+ return this.dk;
790
799
  }
791
800
  set editOpacity(a) {
792
- this.dg = a;
801
+ this.dk = a;
793
802
  this.g("EditOpacity");
794
803
  }
795
804
  get deletedTextColor() {
796
- return this.ga;
805
+ return this.ge;
797
806
  }
798
807
  set deletedTextColor(a) {
799
- this.ga = a;
808
+ this.ge = a;
800
809
  this.g("DeletedTextColor");
801
810
  }
802
811
  get stickyRowBackground() {
803
- return this.h3;
812
+ return this.h7;
804
813
  }
805
814
  set stickyRowBackground(a) {
806
- this.h3 = a;
815
+ this.h7 = a;
807
816
  this.g("StickyRowBackground");
808
817
  }
809
818
  get pinnedRowBackground() {
810
- return this.ha;
819
+ return this.he;
811
820
  }
812
821
  set pinnedRowBackground(a) {
813
- this.ha = a;
822
+ this.he = a;
814
823
  this.g("PinnedRowBackground");
815
824
  }
816
825
  get lastStickyRowBackground() {
817
- return this.g6;
826
+ return this.ha;
818
827
  }
819
828
  set lastStickyRowBackground(a) {
820
- this.g6 = a;
829
+ this.ha = a;
821
830
  this.g("LastStickyRowBackground");
822
831
  }
823
832
  get activeCell() {
824
- return this.a3;
833
+ return this.a5;
825
834
  }
826
835
  set activeCell(a) {
827
- this.a3 = a;
836
+ this.a5 = a;
828
837
  this.g("ActiveCell");
829
838
  }
830
839
  get cellBackground() {
831
- return this.e8;
840
+ return this.fc;
832
841
  }
833
842
  set cellBackground(a) {
834
- this.e8 = a;
843
+ this.fc = a;
835
844
  this.g("CellBackground");
836
845
  }
837
846
  get cellTextColor() {
838
- return this.fm;
847
+ return this.fq;
839
848
  }
840
849
  set cellTextColor(a) {
841
- this.fm = a;
850
+ this.fq = a;
842
851
  this.g("CellTextColor");
843
852
  }
844
853
  get headerSortIndicatorColor() {
845
- return this.gz;
854
+ return this.g3;
846
855
  }
847
856
  set headerSortIndicatorColor(a) {
848
- this.gz = a;
857
+ this.g3 = a;
849
858
  this.g("HeaderSortIndicatorColor");
850
859
  }
851
860
  get headerSortIndicatorStyle() {
852
- return this.g0;
861
+ return this.g4;
853
862
  }
854
863
  set headerSortIndicatorStyle(a) {
855
- this.g0 = a;
864
+ this.g4 = a;
856
865
  this.g("HeaderSortIndicatorStyle");
857
866
  }
858
867
  get cellFontFamily() {
859
- return this.fd;
868
+ return this.fh;
860
869
  }
861
870
  set cellFontFamily(a) {
862
- this.fd = a;
871
+ this.fh = a;
863
872
  this.g("CellFontFamily");
864
873
  }
865
874
  get cellFontSize() {
866
- return this.c7;
875
+ return this.db;
867
876
  }
868
877
  set cellFontSize(a) {
869
- this.c7 = a;
878
+ this.db = a;
870
879
  this.g("CellFontSize");
871
880
  }
872
881
  get cellFontStyle() {
873
- return this.fe;
882
+ return this.fi;
874
883
  }
875
884
  set cellFontStyle(a) {
876
- this.fe = a;
885
+ this.fi = a;
877
886
  this.g("CellFontStyle");
878
887
  }
879
888
  get cellFontWeight() {
880
- return this.ff;
889
+ return this.fj;
881
890
  }
882
891
  set cellFontWeight(a) {
883
- this.ff = a;
892
+ this.fj = a;
884
893
  this.g("CellFontWeight");
885
894
  }
886
895
  get sectionHeaderBackground() {
887
- return this.ho;
896
+ return this.hs;
888
897
  }
889
898
  set sectionHeaderBackground(a) {
890
- this.ho = a;
899
+ this.hs = a;
891
900
  this.g("SectionHeaderBackground");
892
901
  }
893
902
  get sectionHeaderTextColor() {
894
- return this.ht;
903
+ return this.hx;
895
904
  }
896
905
  set sectionHeaderTextColor(a) {
897
- this.ht = a;
906
+ this.hx = a;
898
907
  this.g("SectionHeaderTextColor");
899
908
  }
900
909
  get sectionHeaderFontFamily() {
901
- return this.hp;
910
+ return this.ht;
902
911
  }
903
912
  set sectionHeaderFontFamily(a) {
904
- this.hp = a;
913
+ this.ht = a;
905
914
  this.g("SectionHeaderFontFamily");
906
915
  }
907
916
  get sectionHeaderFontSize() {
908
- return this.dn;
917
+ return this.ds;
909
918
  }
910
919
  set sectionHeaderFontSize(a) {
911
- this.dn = a;
920
+ this.ds = a;
912
921
  this.g("SectionHeaderFontSize");
913
922
  }
914
923
  get sectionHeaderFontStyle() {
915
- return this.hq;
924
+ return this.hu;
916
925
  }
917
926
  set sectionHeaderFontStyle(a) {
918
- this.hq = a;
927
+ this.hu = a;
919
928
  this.g("SectionHeaderFontStyle");
920
929
  }
921
930
  get sectionHeaderFontWeight() {
922
- return this.hr;
931
+ return this.hv;
923
932
  }
924
933
  set sectionHeaderFontWeight(a) {
925
- this.hr = a;
934
+ this.hv = a;
926
935
  this.g("SectionHeaderFontWeight");
927
936
  }
928
937
  get summaryRootLabelFontFamily() {
929
- return this.h6;
938
+ return this.ia;
930
939
  }
931
940
  set summaryRootLabelFontFamily(a) {
932
- this.h6 = a;
941
+ this.ia = a;
933
942
  this.g("SummaryRootLabelFontFamily");
934
943
  }
935
944
  get summaryRootLabelFontSize() {
936
- return this.dp;
945
+ return this.dt;
937
946
  }
938
947
  set summaryRootLabelFontSize(a) {
939
- this.dp = a;
948
+ this.dt = a;
940
949
  this.g("SummaryRootLabelFontSize");
941
950
  }
942
951
  get summaryRootLabelFontStyle() {
943
- return this.h7;
952
+ return this.ib;
944
953
  }
945
954
  set summaryRootLabelFontStyle(a) {
946
- this.h7 = a;
955
+ this.ib = a;
947
956
  this.g("SummaryRootLabelFontStyle");
948
957
  }
949
958
  get summaryRootLabelFontWeight() {
950
- return this.h8;
959
+ return this.ic;
951
960
  }
952
961
  set summaryRootLabelFontWeight(a) {
953
- this.h8 = a;
962
+ this.ic = a;
954
963
  this.g("SummaryRootLabelFontWeight");
955
964
  }
956
965
  get summarySectionLabelFontFamily() {
957
- return this.ii;
966
+ return this.im;
958
967
  }
959
968
  set summarySectionLabelFontFamily(a) {
960
- this.ii = a;
969
+ this.im = a;
961
970
  this.g("SummarySectionLabelFontFamily");
962
971
  }
963
972
  get summarySectionLabelFontSize() {
964
- return this.dr;
973
+ return this.dv;
965
974
  }
966
975
  set summarySectionLabelFontSize(a) {
967
- this.dr = a;
976
+ this.dv = a;
968
977
  this.g("SummarySectionLabelFontSize");
969
978
  }
970
979
  get summarySectionLabelFontStyle() {
971
- return this.ij;
980
+ return this.io;
972
981
  }
973
982
  set summarySectionLabelFontStyle(a) {
974
- this.ij = a;
983
+ this.io = a;
975
984
  this.g("SummarySectionLabelFontStyle");
976
985
  }
977
986
  get summarySectionLabelFontWeight() {
978
- return this.ik;
987
+ return this.ip;
979
988
  }
980
989
  set summarySectionLabelFontWeight(a) {
981
- this.ik = a;
990
+ this.ip = a;
982
991
  this.g("SummarySectionLabelFontWeight");
983
992
  }
984
993
  get summaryRootValueTextColor() {
985
- return this.ie;
994
+ return this.ij;
986
995
  }
987
996
  set summaryRootValueTextColor(a) {
988
- this.ie = a;
997
+ this.ij = a;
989
998
  this.g("SummaryRootValueTextColor");
990
999
  }
991
1000
  get summaryRootValueFontFamily() {
992
- return this.ib;
1001
+ return this.ig;
993
1002
  }
994
1003
  set summaryRootValueFontFamily(a) {
995
- this.ib = a;
1004
+ this.ig = a;
996
1005
  this.g("SummaryRootValueFontFamily");
997
1006
  }
998
1007
  get summaryRootValueFontSize() {
999
- return this.dq;
1008
+ return this.du;
1000
1009
  }
1001
1010
  set summaryRootValueFontSize(a) {
1002
- this.dq = a;
1011
+ this.du = a;
1003
1012
  this.g("SummaryRootValueFontSize");
1004
1013
  }
1005
1014
  get summaryRootValueFontStyle() {
1006
- return this.ic;
1015
+ return this.ih;
1007
1016
  }
1008
1017
  set summaryRootValueFontStyle(a) {
1009
- this.ic = a;
1018
+ this.ih = a;
1010
1019
  this.g("SummaryRootValueFontStyle");
1011
1020
  }
1012
1021
  get summaryRootValueFontWeight() {
1013
- return this.id;
1022
+ return this.ii;
1014
1023
  }
1015
1024
  set summaryRootValueFontWeight(a) {
1016
- this.id = a;
1025
+ this.ii = a;
1017
1026
  this.g("SummaryRootValueFontWeight");
1018
1027
  }
1019
1028
  get summarySectionValueFontFamily() {
1020
- return this.io;
1029
+ return this.is;
1021
1030
  }
1022
1031
  set summarySectionValueFontFamily(a) {
1023
- this.io = a;
1032
+ this.is = a;
1024
1033
  this.g("SummarySectionValueFontFamily");
1025
1034
  }
1026
1035
  get summarySectionValueFontSize() {
1027
- return this.ds;
1036
+ return this.dw;
1028
1037
  }
1029
1038
  set summarySectionValueFontSize(a) {
1030
- this.ds = a;
1039
+ this.dw = a;
1031
1040
  this.g("SummarySectionValueFontSize");
1032
1041
  }
1033
1042
  get summarySectionValueFontStyle() {
1034
- return this.ip;
1043
+ return this.it;
1035
1044
  }
1036
1045
  set summarySectionValueFontStyle(a) {
1037
- this.ip = a;
1046
+ this.it = a;
1038
1047
  this.g("SummarySectionValueFontStyle");
1039
1048
  }
1040
1049
  get summarySectionValueFontWeight() {
1041
- return this.iq;
1050
+ return this.iu;
1042
1051
  }
1043
1052
  set summarySectionValueFontWeight(a) {
1044
- this.iq = a;
1053
+ this.iu = a;
1045
1054
  this.g("SummarySectionValueFontWeight");
1046
1055
  }
1047
1056
  get summarySectionValueTextColor() {
1048
- return this.ir;
1057
+ return this.iv;
1049
1058
  }
1050
1059
  set summarySectionValueTextColor(a) {
1051
- this.ir = a;
1060
+ this.iv = a;
1052
1061
  this.g("SummarySectionValueTextColor");
1053
1062
  }
1054
1063
  get summaryRootLabelTextColor() {
1055
- return this.h9;
1064
+ return this.id;
1056
1065
  }
1057
1066
  set summaryRootLabelTextColor(a) {
1058
- this.h9 = a;
1067
+ this.id = a;
1059
1068
  this.g("SummaryRootLabelTextColor");
1060
1069
  }
1061
1070
  get summarySectionLabelTextColor() {
1062
- return this.il;
1071
+ return this.iq;
1063
1072
  }
1064
1073
  set summarySectionLabelTextColor(a) {
1065
- this.il = a;
1074
+ this.iq = a;
1066
1075
  this.g("SummarySectionLabelTextColor");
1067
1076
  }
1068
1077
  get summaryRootSelectedBackground() {
1069
- return this.ia;
1078
+ return this.ie;
1070
1079
  }
1071
1080
  set summaryRootSelectedBackground(a) {
1072
- this.ia = a;
1081
+ this.ie = a;
1073
1082
  this.g("SummaryRootSelectedBackground");
1074
1083
  }
1075
1084
  get summarySectionSelectedBackground() {
1076
- return this.im;
1085
+ return this.ir;
1077
1086
  }
1078
1087
  set summarySectionSelectedBackground(a) {
1079
- this.im = a;
1088
+ this.ir = a;
1080
1089
  this.g("SummarySectionSelectedBackground");
1081
1090
  }
1082
1091
  get pinnedAreaSeparatorWidth() {
1083
- return this.ep;
1092
+ return this.et;
1084
1093
  }
1085
1094
  set pinnedAreaSeparatorWidth(a) {
1086
- this.ep = a;
1095
+ this.et = a;
1087
1096
  this.g("PinnedAreaSeparatorWidth");
1088
1097
  }
1089
1098
  get headerSeparatorWidth() {
1090
- return this.en;
1099
+ return this.er;
1091
1100
  }
1092
1101
  set headerSeparatorWidth(a) {
1093
- this.en = a;
1102
+ this.er = a;
1094
1103
  this.g("HeaderSeparatorWidth");
1095
1104
  }
1096
1105
  get headerSeparatorBackground() {
1097
- return this.gy;
1106
+ return this.g2;
1098
1107
  }
1099
1108
  set headerSeparatorBackground(a) {
1100
- this.gy = a;
1109
+ this.g2 = a;
1101
1110
  this.g("HeaderSeparatorBackground");
1102
1111
  }
1103
1112
  get headerBackground() {
1104
- return this.gs;
1113
+ return this.gw;
1105
1114
  }
1106
1115
  set headerBackground(a) {
1107
- this.gs = a;
1116
+ this.gw = a;
1108
1117
  this.g("HeaderBackground");
1109
1118
  }
1110
1119
  get headerTextColor() {
1111
- return this.g1;
1120
+ return this.g5;
1112
1121
  }
1113
1122
  set headerTextColor(a) {
1114
- this.g1 = a;
1123
+ this.g5 = a;
1115
1124
  this.g("HeaderTextColor");
1116
1125
  }
1117
1126
  get headerFontFamily() {
1118
- return this.gu;
1127
+ return this.gy;
1119
1128
  }
1120
1129
  set headerFontFamily(a) {
1121
- this.gu = a;
1130
+ this.gy = a;
1122
1131
  this.g("HeaderFontFamily");
1123
1132
  }
1124
1133
  get headerFontSize() {
1125
- return this.dl;
1134
+ return this.dq;
1126
1135
  }
1127
1136
  set headerFontSize(a) {
1128
- this.dl = a;
1137
+ this.dq = a;
1129
1138
  this.g("HeaderFontSize");
1130
1139
  }
1131
1140
  get headerFontStyle() {
1132
- return this.gv;
1141
+ return this.gz;
1133
1142
  }
1134
1143
  set headerFontStyle(a) {
1135
- this.gv = a;
1144
+ this.gz = a;
1136
1145
  this.g("HeaderFontStyle");
1137
1146
  }
1138
1147
  get headerFontWeight() {
1139
- return this.gw;
1148
+ return this.g0;
1140
1149
  }
1141
1150
  set headerFontWeight(a) {
1142
- this.gw = a;
1151
+ this.g0 = a;
1143
1152
  this.g("HeaderFontWeight");
1144
1153
  }
1145
1154
  get rowSeparatorBackground() {
1146
- return this.hi;
1155
+ return this.hm;
1147
1156
  }
1148
1157
  set rowSeparatorBackground(a) {
1149
- this.hi = a;
1158
+ this.hm = a;
1150
1159
  this.g("RowSeparatorBackground");
1151
1160
  }
1152
1161
  get headerRowSeparatorBackground() {
1153
- return this.gx;
1162
+ return this.g1;
1154
1163
  }
1155
1164
  set headerRowSeparatorBackground(a) {
1156
- this.gx = a;
1165
+ this.g1 = a;
1157
1166
  this.g("HeaderRowSeparatorBackground");
1158
1167
  }
1159
1168
  get rowSeparatorStickyRowBackground() {
1160
- return this.hl;
1169
+ return this.hp;
1161
1170
  }
1162
1171
  set rowSeparatorStickyRowBackground(a) {
1163
- this.hl = a;
1172
+ this.hp = a;
1164
1173
  this.g("RowSeparatorStickyRowBackground");
1165
1174
  }
1166
1175
  get rowSeparatorLastStickyRowBackground() {
1167
- return this.hj;
1176
+ return this.hn;
1168
1177
  }
1169
1178
  set rowSeparatorLastStickyRowBackground(a) {
1170
- this.hj = a;
1179
+ this.hn = a;
1171
1180
  this.g("RowSeparatorLastStickyRowBackground");
1172
1181
  }
1173
1182
  get rowSeparatorPinnedRowBackground() {
1174
- return this.hk;
1183
+ return this.ho;
1175
1184
  }
1176
1185
  set rowSeparatorPinnedRowBackground(a) {
1177
- this.hk = a;
1186
+ this.ho = a;
1178
1187
  this.g("RowSeparatorPinnedRowBackground");
1179
1188
  }
1180
1189
  get columnResizingSeparatorWidth() {
1181
- return this.el;
1190
+ return this.ep;
1182
1191
  }
1183
1192
  set columnResizingSeparatorWidth(a) {
1184
- this.el = a;
1193
+ this.ep = a;
1185
1194
  this.g("ColumnResizingSeparatorWidth");
1186
1195
  }
1187
1196
  get columnResizingSeparatorOpacity() {
1188
- return this.c9;
1197
+ return this.dd;
1189
1198
  }
1190
1199
  set columnResizingSeparatorOpacity(a) {
1191
- this.c9 = a;
1200
+ this.dd = a;
1192
1201
  this.g("ColumnResizingSeparatorOpacity");
1193
1202
  }
1194
1203
  get columnMovingSeparatorWidth() {
1195
- return this.ek;
1204
+ return this.eo;
1196
1205
  }
1197
1206
  set columnMovingSeparatorWidth(a) {
1198
- this.ek = a;
1207
+ this.eo = a;
1199
1208
  this.g("ColumnMovingSeparatorWidth");
1200
1209
  }
1201
1210
  get columnMovingSeparatorOpacity() {
1202
- return this.c8;
1211
+ return this.dc;
1203
1212
  }
1204
1213
  set columnMovingSeparatorOpacity(a) {
1205
- this.c8 = a;
1214
+ this.dc = a;
1206
1215
  this.g("ColumnMovingSeparatorOpacity");
1207
1216
  }
1208
1217
  get columnResizingSeparatorBackground() {
1209
- return this.f2;
1218
+ return this.f6;
1210
1219
  }
1211
1220
  set columnResizingSeparatorBackground(a) {
1212
- this.f2 = a;
1221
+ this.f6 = a;
1213
1222
  this.g("ColumnResizingSeparatorBackground");
1214
1223
  }
1215
1224
  get columnMovingSeparatorBackground() {
1216
- return this.fu;
1225
+ return this.fy;
1217
1226
  }
1218
1227
  set columnMovingSeparatorBackground(a) {
1219
- this.fu = a;
1228
+ this.fy = a;
1220
1229
  this.g("ColumnMovingSeparatorBackground");
1221
1230
  }
1222
1231
  get shiftSectionContent() {
1223
- return this.b9;
1232
+ return this.cb;
1224
1233
  }
1225
1234
  set shiftSectionContent(a) {
1226
- this.b9 = a;
1235
+ this.cb = a;
1227
1236
  this.g("ShiftSectionContent");
1228
1237
  }
1229
1238
  get columnOptionsIconAlignment() {
1230
- return this.fv;
1239
+ return this.fz;
1231
1240
  }
1232
1241
  set columnOptionsIconAlignment(a) {
1233
- this.fv = a;
1242
+ this.fz = a;
1234
1243
  this.g("ColumnOptionsIconAlignment");
1235
1244
  }
1236
1245
  get columnOptionsIconColor() {
1237
- return this.fx;
1246
+ return this.f1;
1238
1247
  }
1239
1248
  set columnOptionsIconColor(a) {
1240
- this.fx = a;
1249
+ this.f1 = a;
1241
1250
  this.g("ColumnOptionsIconColor");
1242
1251
  }
1243
1252
  get columnOptionsIconBehavior() {
1244
- return this.fw;
1253
+ return this.f0;
1245
1254
  }
1246
1255
  set columnOptionsIconBehavior(a) {
1247
- this.fw = a;
1256
+ this.f0 = a;
1248
1257
  this.g("ColumnOptionsIconBehavior");
1249
1258
  }
1250
1259
  get border() {
1251
- return this.e7;
1260
+ return this.fb;
1252
1261
  }
1253
1262
  set border(a) {
1254
- this.e7 = a;
1263
+ this.fb = a;
1255
1264
  this.g("Border");
1256
1265
  }
1257
1266
  get borderWidthBottom() {
1258
- return this.c3;
1267
+ return this.c7;
1259
1268
  }
1260
1269
  set borderWidthBottom(a) {
1261
- this.c3 = a;
1270
+ this.c7 = a;
1262
1271
  this.g("BorderWidthBottom");
1263
1272
  }
1264
1273
  get borderWidthLeft() {
1265
- return this.c4;
1274
+ return this.c8;
1266
1275
  }
1267
1276
  set borderWidthLeft(a) {
1268
- this.c4 = a;
1277
+ this.c8 = a;
1269
1278
  this.g("BorderWidthLeft");
1270
1279
  }
1271
1280
  get borderWidthRight() {
1272
- return this.c5;
1281
+ return this.c9;
1273
1282
  }
1274
1283
  set borderWidthRight(a) {
1275
- this.c5 = a;
1284
+ this.c9 = a;
1276
1285
  this.g("BorderWidthRight");
1277
1286
  }
1278
1287
  get borderWidthTop() {
1279
- return this.c6;
1288
+ return this.da;
1280
1289
  }
1281
1290
  set borderWidthTop(a) {
1282
- this.c6 = a;
1291
+ this.da = a;
1283
1292
  this.g("BorderWidthTop");
1284
1293
  }
1285
1294
  get notifyOnAllSelectionChanges() {
1286
- return this.b5;
1295
+ return this.b7;
1287
1296
  }
1288
1297
  set notifyOnAllSelectionChanges(a) {
1289
- this.b5 = a;
1298
+ this.b7 = a;
1290
1299
  this.g("NotifyOnAllSelectionChanges");
1291
1300
  }
1292
1301
  get cornerRadiusBottomRight() {
1293
- return this.db;
1302
+ return this.df;
1294
1303
  }
1295
1304
  set cornerRadiusBottomRight(a) {
1296
- this.db = a;
1305
+ this.df = a;
1297
1306
  this.g("CornerRadiusBottomRight");
1298
1307
  }
1299
1308
  get cornerRadiusBottomLeft() {
1300
- return this.da;
1309
+ return this.de;
1301
1310
  }
1302
1311
  set cornerRadiusBottomLeft(a) {
1303
- this.da = a;
1312
+ this.de = a;
1304
1313
  this.g("CornerRadiusBottomLeft");
1305
1314
  }
1306
1315
  get cornerRadiusTopLeft() {
1307
- return this.dc;
1316
+ return this.dg;
1308
1317
  }
1309
1318
  set cornerRadiusTopLeft(a) {
1310
- this.dc = a;
1319
+ this.dg = a;
1311
1320
  this.g("CornerRadiusTopLeft");
1312
1321
  }
1313
1322
  get cornerRadiusTopRight() {
1314
- return this.dd;
1323
+ return this.dh;
1315
1324
  }
1316
1325
  set cornerRadiusTopRight(a) {
1317
- this.dd = a;
1326
+ this.dh = a;
1318
1327
  this.g("CornerRadiusTopRight");
1319
1328
  }
1320
1329
  get isActiveCellStyleEnabled() {
1321
- return this.bp;
1330
+ return this.br;
1322
1331
  }
1323
1332
  set isActiveCellStyleEnabled(a) {
1324
- this.bp = a;
1333
+ this.br = a;
1325
1334
  this.g("IsActiveCellStyleEnabled");
1326
1335
  }
1336
+ get stopPropagation() {
1337
+ return this.cc;
1338
+ }
1339
+ set stopPropagation(a) {
1340
+ this.cc = a;
1341
+ this.g("StopPropagation");
1342
+ }
1327
1343
  get responsiveStates() {
1328
1344
  return this.u;
1329
1345
  }
@@ -1353,24 +1369,24 @@ export let DataGridDescription = /*@__PURE__*/ (() => {
1353
1369
  this.g("InitialSummaryDescriptions");
1354
1370
  }
1355
1371
  get initialSorts() {
1356
- return this.g4;
1372
+ return this.g8;
1357
1373
  }
1358
1374
  set initialSorts(a) {
1359
- this.g4 = a;
1375
+ this.g8 = a;
1360
1376
  this.g("InitialSorts");
1361
1377
  }
1362
1378
  get initialGroups() {
1363
- return this.g3;
1379
+ return this.g7;
1364
1380
  }
1365
1381
  set initialGroups(a) {
1366
- this.g3 = a;
1382
+ this.g7 = a;
1367
1383
  this.g("InitialGroups");
1368
1384
  }
1369
1385
  get initialSummaries() {
1370
- return this.g5;
1386
+ return this.g9;
1371
1387
  }
1372
1388
  set initialSummaries(a) {
1373
- this.g5 = a;
1389
+ this.g9 = a;
1374
1390
  this.g("InitialSummaries");
1375
1391
  }
1376
1392
  get sortDescriptions() {
@@ -1402,45 +1418,45 @@ export let DataGridDescription = /*@__PURE__*/ (() => {
1402
1418
  this.g("SummaryDescriptions");
1403
1419
  }
1404
1420
  get summaryScope() {
1405
- return this.ig;
1421
+ return this.ik;
1406
1422
  }
1407
1423
  set summaryScope(a) {
1408
- this.ig = a;
1424
+ this.ik = a;
1409
1425
  this.g("SummaryScope");
1410
1426
  }
1411
1427
  get isGroupCollapsable() {
1412
- return this.bu;
1428
+ return this.bw;
1413
1429
  }
1414
1430
  set isGroupCollapsable(a) {
1415
- this.bu = a;
1431
+ this.bw = a;
1416
1432
  this.g("IsGroupCollapsable");
1417
1433
  }
1418
1434
  get groupHeaderDisplayMode() {
1419
- return this.gq;
1435
+ return this.gu;
1420
1436
  }
1421
1437
  set groupHeaderDisplayMode(a) {
1422
- this.gq = a;
1438
+ this.gu = a;
1423
1439
  this.g("GroupHeaderDisplayMode");
1424
1440
  }
1425
1441
  get isGroupExpandedDefault() {
1426
- return this.bv;
1442
+ return this.bx;
1427
1443
  }
1428
1444
  set isGroupExpandedDefault(a) {
1429
- this.bv = a;
1445
+ this.bx = a;
1430
1446
  this.g("IsGroupExpandedDefault");
1431
1447
  }
1432
1448
  get groupSummaryDisplayMode() {
1433
- return this.gr;
1449
+ return this.gv;
1434
1450
  }
1435
1451
  set groupSummaryDisplayMode(a) {
1436
- this.gr = a;
1452
+ this.gv = a;
1437
1453
  this.g("GroupSummaryDisplayMode");
1438
1454
  }
1439
1455
  get autoAcceptEdits() {
1440
- return this.bk;
1456
+ return this.bm;
1441
1457
  }
1442
1458
  set autoAcceptEdits(a) {
1443
- this.bk = a;
1459
+ this.bm = a;
1444
1460
  this.g("AutoAcceptEdits");
1445
1461
  }
1446
1462
  get primaryKey() {
@@ -1472,416 +1488,416 @@ export let DataGridDescription = /*@__PURE__*/ (() => {
1472
1488
  this.g("Columns");
1473
1489
  }
1474
1490
  get reactsToSortChanges() {
1475
- return this.b8;
1491
+ return this.ca;
1476
1492
  }
1477
1493
  set reactsToSortChanges(a) {
1478
- this.b8 = a;
1494
+ this.ca = a;
1479
1495
  this.g("ReactsToSortChanges");
1480
1496
  }
1481
1497
  get reactsToGroupChanges() {
1482
- return this.b7;
1498
+ return this.b9;
1483
1499
  }
1484
1500
  set reactsToGroupChanges(a) {
1485
- this.b7 = a;
1501
+ this.b9 = a;
1486
1502
  this.g("ReactsToGroupChanges");
1487
1503
  }
1488
1504
  get reactsToFilterChanges() {
1489
- return this.b6;
1505
+ return this.b8;
1490
1506
  }
1491
1507
  set reactsToFilterChanges(a) {
1492
- this.b6 = a;
1508
+ this.b8 = a;
1493
1509
  this.g("ReactsToFilterChanges");
1494
1510
  }
1495
1511
  get enterBehavior() {
1496
- return this.gi;
1512
+ return this.gm;
1497
1513
  }
1498
1514
  set enterBehavior(a) {
1499
- this.gi = a;
1515
+ this.gm = a;
1500
1516
  this.g("EnterBehavior");
1501
1517
  }
1502
1518
  get enterBehaviorAfterEdit() {
1503
- return this.gj;
1519
+ return this.gn;
1504
1520
  }
1505
1521
  set enterBehaviorAfterEdit(a) {
1506
- this.gj = a;
1522
+ this.gn = a;
1507
1523
  this.g("EnterBehaviorAfterEdit");
1508
1524
  }
1509
1525
  get isColumnOptionsSummariesEnabled() {
1510
- return this.bs;
1526
+ return this.bu;
1511
1527
  }
1512
1528
  set isColumnOptionsSummariesEnabled(a) {
1513
- this.bs = a;
1529
+ this.bu = a;
1514
1530
  this.g("IsColumnOptionsSummariesEnabled");
1515
1531
  }
1516
1532
  get isColumnOptionsGroupingEnabled() {
1517
- return this.br;
1533
+ return this.bt;
1518
1534
  }
1519
1535
  set isColumnOptionsGroupingEnabled(a) {
1520
- this.br = a;
1536
+ this.bt = a;
1521
1537
  this.g("IsColumnOptionsGroupingEnabled");
1522
1538
  }
1523
1539
  get mergedCellMode() {
1524
- return this.g8;
1540
+ return this.hc;
1525
1541
  }
1526
1542
  set mergedCellMode(a) {
1527
- this.g8 = a;
1543
+ this.hc = a;
1528
1544
  this.g("MergedCellMode");
1529
1545
  }
1530
1546
  get mergedCellEvaluationCriteria() {
1531
- return this.g7;
1547
+ return this.hb;
1532
1548
  }
1533
1549
  set mergedCellEvaluationCriteria(a) {
1534
- this.g7 = a;
1550
+ this.hb = a;
1535
1551
  this.g("MergedCellEvaluationCriteria");
1536
1552
  }
1537
1553
  get mergedCellVerticalAlignment() {
1538
- return this.g9;
1554
+ return this.hd;
1539
1555
  }
1540
1556
  set mergedCellVerticalAlignment(a) {
1541
- this.g9 = a;
1557
+ this.hd = a;
1542
1558
  this.g("MergedCellVerticalAlignment");
1543
1559
  }
1544
1560
  get filterUIType() {
1545
- return this.go;
1561
+ return this.gs;
1546
1562
  }
1547
1563
  set filterUIType(a) {
1548
- this.go = a;
1564
+ this.gs = a;
1549
1565
  this.g("FilterUIType");
1550
1566
  }
1551
1567
  get filterLogicalOperator() {
1552
- return this.gn;
1568
+ return this.gr;
1553
1569
  }
1554
1570
  set filterLogicalOperator(a) {
1555
- this.gn = a;
1571
+ this.gr = a;
1556
1572
  this.g("FilterLogicalOperator");
1557
1573
  }
1558
1574
  get filterComparisonType() {
1559
- return this.gk;
1575
+ return this.go;
1560
1576
  }
1561
1577
  set filterComparisonType(a) {
1562
- this.gk = a;
1578
+ this.go = a;
1563
1579
  this.g("FilterComparisonType");
1564
1580
  }
1565
1581
  get todayOverride() {
1566
- return this.c1;
1582
+ return this.c5;
1567
1583
  }
1568
1584
  set todayOverride(a) {
1569
- this.c1 = a;
1585
+ this.c5 = a;
1570
1586
  this.g("TodayOverride");
1571
1587
  }
1572
1588
  get clearSelectionOnEscape() {
1573
- return this.bm;
1589
+ return this.bo;
1574
1590
  }
1575
1591
  set clearSelectionOnEscape(a) {
1576
- this.bm = a;
1592
+ this.bo = a;
1577
1593
  this.g("ClearSelectionOnEscape");
1578
1594
  }
1579
1595
  get pageSize() {
1580
- return this.eo;
1596
+ return this.es;
1581
1597
  }
1582
1598
  set pageSize(a) {
1583
- this.eo = a;
1599
+ this.es = a;
1584
1600
  this.g("PageSize");
1585
1601
  }
1586
1602
  get isToolbarColumnChooserVisible() {
1587
- return this.b1;
1603
+ return this.b3;
1588
1604
  }
1589
1605
  set isToolbarColumnChooserVisible(a) {
1590
- this.b1 = a;
1606
+ this.b3 = a;
1591
1607
  this.g("IsToolbarColumnChooserVisible");
1592
1608
  }
1593
1609
  get isToolbarColumnPinningVisible() {
1594
- return this.b2;
1610
+ return this.b4;
1595
1611
  }
1596
1612
  set isToolbarColumnPinningVisible(a) {
1597
- this.b2 = a;
1613
+ this.b4 = a;
1598
1614
  this.g("IsToolbarColumnPinningVisible");
1599
1615
  }
1600
1616
  get toolbarTitle() {
1601
- return this.iw;
1617
+ return this.i0;
1602
1618
  }
1603
1619
  set toolbarTitle(a) {
1604
- this.iw = a;
1620
+ this.i0 = a;
1605
1621
  this.g("ToolbarTitle");
1606
1622
  }
1607
1623
  get toolbarColumnChooserText() {
1608
- return this.is;
1624
+ return this.iw;
1609
1625
  }
1610
1626
  set toolbarColumnChooserText(a) {
1611
- this.is = a;
1627
+ this.iw = a;
1612
1628
  this.g("ToolbarColumnChooserText");
1613
1629
  }
1614
1630
  get toolbarColumnChooserTitle() {
1615
- return this.it;
1631
+ return this.ix;
1616
1632
  }
1617
1633
  set toolbarColumnChooserTitle(a) {
1618
- this.it = a;
1634
+ this.ix = a;
1619
1635
  this.g("ToolbarColumnChooserTitle");
1620
1636
  }
1621
1637
  get toolbarColumnPinningText() {
1622
- return this.iu;
1638
+ return this.iy;
1623
1639
  }
1624
1640
  set toolbarColumnPinningText(a) {
1625
- this.iu = a;
1641
+ this.iy = a;
1626
1642
  this.g("ToolbarColumnPinningText");
1627
1643
  }
1628
1644
  get toolbarColumnPinningTitle() {
1629
- return this.iv;
1645
+ return this.iz;
1630
1646
  }
1631
1647
  set toolbarColumnPinningTitle(a) {
1632
- this.iv = a;
1648
+ this.iz = a;
1633
1649
  this.g("ToolbarColumnPinningTitle");
1634
1650
  }
1635
1651
  get scrollbarStyle() {
1636
- return this.hn;
1652
+ return this.hr;
1637
1653
  }
1638
1654
  set scrollbarStyle(a) {
1639
- this.hn = a;
1655
+ this.hr = a;
1640
1656
  this.g("ScrollbarStyle");
1641
1657
  }
1642
1658
  get scrollbarBackground() {
1643
- return this.hm;
1659
+ return this.hq;
1644
1660
  }
1645
1661
  set scrollbarBackground(a) {
1646
- this.hm = a;
1662
+ this.hq = a;
1647
1663
  this.g("ScrollbarBackground");
1648
1664
  }
1649
1665
  get allowCopyOperation() {
1650
- return this.bj;
1666
+ return this.bl;
1651
1667
  }
1652
1668
  set allowCopyOperation(a) {
1653
- this.bj = a;
1669
+ this.bl = a;
1654
1670
  this.g("AllowCopyOperation");
1655
1671
  }
1656
1672
  get deferEventForRowDragSelection() {
1657
- return this.bn;
1673
+ return this.bp;
1658
1674
  }
1659
1675
  set deferEventForRowDragSelection(a) {
1660
- this.bn = a;
1676
+ this.bp = a;
1661
1677
  this.g("DeferEventForRowDragSelection");
1662
1678
  }
1663
1679
  get filterExpressionsChangingRef() {
1664
- return this.gm;
1680
+ return this.gq;
1665
1681
  }
1666
1682
  set filterExpressionsChangingRef(a) {
1667
- this.gm = a;
1683
+ this.gq = a;
1668
1684
  this.g("FilterExpressionsChangingRef");
1669
1685
  }
1670
1686
  get filterExpressionsChangedRef() {
1671
- return this.gl;
1687
+ return this.gp;
1672
1688
  }
1673
1689
  set filterExpressionsChangedRef(a) {
1674
- this.gl = a;
1690
+ this.gp = a;
1675
1691
  this.g("FilterExpressionsChangedRef");
1676
1692
  }
1677
1693
  get cellPreviewPointerDownRef() {
1678
- return this.fi;
1694
+ return this.fm;
1679
1695
  }
1680
1696
  set cellPreviewPointerDownRef(a) {
1681
- this.fi = a;
1697
+ this.fm = a;
1682
1698
  this.g("CellPreviewPointerDownRef");
1683
1699
  }
1684
1700
  get cellPreviewPointerUpRef() {
1685
- return this.fj;
1701
+ return this.fn;
1686
1702
  }
1687
1703
  set cellPreviewPointerUpRef(a) {
1688
- this.fj = a;
1704
+ this.fn = a;
1689
1705
  this.g("CellPreviewPointerUpRef");
1690
1706
  }
1691
1707
  get cellPointerDownRef() {
1692
- return this.fg;
1708
+ return this.fk;
1693
1709
  }
1694
1710
  set cellPointerDownRef(a) {
1695
- this.fg = a;
1711
+ this.fk = a;
1696
1712
  this.g("CellPointerDownRef");
1697
1713
  }
1698
1714
  get cellPointerUpRef() {
1699
- return this.fh;
1715
+ return this.fl;
1700
1716
  }
1701
1717
  set cellPointerUpRef(a) {
1702
- this.fh = a;
1718
+ this.fl = a;
1703
1719
  this.g("CellPointerUpRef");
1704
1720
  }
1705
1721
  get cellClickedRef() {
1706
- return this.e9;
1722
+ return this.fd;
1707
1723
  }
1708
1724
  set cellClickedRef(a) {
1709
- this.e9 = a;
1725
+ this.fd = a;
1710
1726
  this.g("CellClickedRef");
1711
1727
  }
1712
1728
  get sortDescriptionsChangedRef() {
1713
- return this.h2;
1729
+ return this.h6;
1714
1730
  }
1715
1731
  set sortDescriptionsChangedRef(a) {
1716
- this.h2 = a;
1732
+ this.h6 = a;
1717
1733
  this.g("SortDescriptionsChangedRef");
1718
1734
  }
1719
1735
  get groupDescriptionsChangedRef() {
1720
- return this.gp;
1736
+ return this.gt;
1721
1737
  }
1722
1738
  set groupDescriptionsChangedRef(a) {
1723
- this.gp = a;
1739
+ this.gt = a;
1724
1740
  this.g("GroupDescriptionsChangedRef");
1725
1741
  }
1726
1742
  get summaryDescriptionsChangedRef() {
1727
- return this.h4;
1743
+ return this.h8;
1728
1744
  }
1729
1745
  set summaryDescriptionsChangedRef(a) {
1730
- this.h4 = a;
1746
+ this.h8 = a;
1731
1747
  this.g("SummaryDescriptionsChangedRef");
1732
1748
  }
1733
1749
  get columnHiddenChangedRef() {
1734
- return this.fq;
1750
+ return this.fu;
1735
1751
  }
1736
1752
  set columnHiddenChangedRef(a) {
1737
- this.fq = a;
1753
+ this.fu = a;
1738
1754
  this.g("ColumnHiddenChangedRef");
1739
1755
  }
1740
1756
  get columnPinnedChangedRef() {
1741
- return this.fy;
1757
+ return this.f2;
1742
1758
  }
1743
1759
  set columnPinnedChangedRef(a) {
1744
- this.fy = a;
1760
+ this.f2 = a;
1745
1761
  this.g("ColumnPinnedChangedRef");
1746
1762
  }
1747
1763
  get cellValueChangingRef() {
1748
- return this.fn;
1764
+ return this.fr;
1749
1765
  }
1750
1766
  set cellValueChangingRef(a) {
1751
- this.fn = a;
1767
+ this.fr = a;
1752
1768
  this.g("CellValueChangingRef");
1753
1769
  }
1754
1770
  get dataCommittedRef() {
1755
- return this.f7;
1771
+ return this.gb;
1756
1772
  }
1757
1773
  set dataCommittedRef(a) {
1758
- this.f7 = a;
1774
+ this.gb = a;
1759
1775
  this.g("DataCommittedRef");
1760
1776
  }
1761
1777
  get dataCommittingRef() {
1762
- return this.f8;
1778
+ return this.gc;
1763
1779
  }
1764
1780
  set dataCommittingRef(a) {
1765
- this.f8 = a;
1781
+ this.gc = a;
1766
1782
  this.g("DataCommittingRef");
1767
1783
  }
1768
1784
  get rootSummariesChangedRef() {
1769
- return this.hb;
1785
+ return this.hf;
1770
1786
  }
1771
1787
  set rootSummariesChangedRef(a) {
1772
- this.hb = a;
1788
+ this.hf = a;
1773
1789
  this.g("RootSummariesChangedRef");
1774
1790
  }
1775
1791
  get sizeChangedRef() {
1776
- return this.h1;
1792
+ return this.h5;
1777
1793
  }
1778
1794
  set sizeChangedRef(a) {
1779
- this.h1 = a;
1795
+ this.h5 = a;
1780
1796
  this.g("SizeChangedRef");
1781
1797
  }
1782
1798
  get actualColumnsChangedRef() {
1783
- return this.e4;
1799
+ return this.e8;
1784
1800
  }
1785
1801
  set actualColumnsChangedRef(a) {
1786
- this.e4 = a;
1802
+ this.e8 = a;
1787
1803
  this.g("ActualColumnsChangedRef");
1788
1804
  }
1789
1805
  get columnsAutoGeneratedRef() {
1790
- return this.f3;
1806
+ return this.f7;
1791
1807
  }
1792
1808
  set columnsAutoGeneratedRef(a) {
1793
- this.f3 = a;
1809
+ this.f7 = a;
1794
1810
  this.g("ColumnsAutoGeneratedRef");
1795
1811
  }
1796
1812
  get selectedItemsChangedRef() {
1797
- return this.hw;
1813
+ return this.h0;
1798
1814
  }
1799
1815
  set selectedItemsChangedRef(a) {
1800
- this.hw = a;
1816
+ this.h0 = a;
1801
1817
  this.g("SelectedItemsChangedRef");
1802
1818
  }
1803
1819
  get selectedKeysChangedRef() {
1804
- return this.hx;
1820
+ return this.h1;
1805
1821
  }
1806
1822
  set selectedKeysChangedRef(a) {
1807
- this.hx = a;
1823
+ this.h1 = a;
1808
1824
  this.g("SelectedKeysChangedRef");
1809
1825
  }
1810
1826
  get selectedCellsChangedRef() {
1811
- return this.hv;
1827
+ return this.hz;
1812
1828
  }
1813
1829
  set selectedCellsChangedRef(a) {
1814
- this.hv = a;
1830
+ this.hz = a;
1815
1831
  this.g("SelectedCellsChangedRef");
1816
1832
  }
1817
1833
  get selectionChangedRef() {
1818
- return this.hz;
1834
+ return this.h3;
1819
1835
  }
1820
1836
  set selectionChangedRef(a) {
1821
- this.hz = a;
1837
+ this.h3 = a;
1822
1838
  this.g("SelectionChangedRef");
1823
1839
  }
1824
1840
  get activeCellChangedRef() {
1825
- return this.e3;
1841
+ return this.e7;
1826
1842
  }
1827
1843
  set activeCellChangedRef(a) {
1828
- this.e3 = a;
1844
+ this.e7 = a;
1829
1845
  this.g("ActiveCellChangedRef");
1830
1846
  }
1831
1847
  get selectedCellRangesChangedRef() {
1832
- return this.hu;
1848
+ return this.hy;
1833
1849
  }
1834
1850
  set selectedCellRangesChangedRef(a) {
1835
- this.hu = a;
1851
+ this.hy = a;
1836
1852
  this.g("SelectedCellRangesChangedRef");
1837
1853
  }
1838
1854
  get columnWidthChangedRef() {
1839
- return this.f5;
1855
+ return this.f9;
1840
1856
  }
1841
1857
  set columnWidthChangedRef(a) {
1842
- this.f5 = a;
1858
+ this.f9 = a;
1843
1859
  this.g("ColumnWidthChangedRef");
1844
1860
  }
1845
1861
  get cellEditStartedRef() {
1846
- return this.fc;
1862
+ return this.fg;
1847
1863
  }
1848
1864
  set cellEditStartedRef(a) {
1849
- this.fc = a;
1865
+ this.fg = a;
1850
1866
  this.g("CellEditStartedRef");
1851
1867
  }
1852
1868
  get cellEditEndedRef() {
1853
- return this.fb;
1869
+ return this.ff;
1854
1870
  }
1855
1871
  set cellEditEndedRef(a) {
1856
- this.fb = a;
1872
+ this.ff = a;
1857
1873
  this.g("CellEditEndedRef");
1858
1874
  }
1859
1875
  get rowEditStartedRef() {
1860
- return this.hd;
1876
+ return this.hh;
1861
1877
  }
1862
1878
  set rowEditStartedRef(a) {
1863
- this.hd = a;
1879
+ this.hh = a;
1864
1880
  this.g("RowEditStartedRef");
1865
1881
  }
1866
1882
  get rowEditEndedRef() {
1867
- return this.hc;
1883
+ return this.hg;
1868
1884
  }
1869
1885
  set rowEditEndedRef(a) {
1870
- this.hc = a;
1886
+ this.hg = a;
1871
1887
  this.g("RowEditEndedRef");
1872
1888
  }
1873
1889
  get customFilterRequestedRef() {
1874
- return this.f6;
1890
+ return this.ga;
1875
1891
  }
1876
1892
  set customFilterRequestedRef(a) {
1877
- this.f6 = a;
1893
+ this.ga = a;
1878
1894
  this.g("CustomFilterRequestedRef");
1879
1895
  }
1880
1896
  get actualPrimaryKeyChangeRef() {
1881
- return this.e5;
1897
+ return this.e9;
1882
1898
  }
1883
1899
  set actualPrimaryKeyChangeRef(a) {
1884
- this.e5 = a;
1900
+ this.e9 = a;
1885
1901
  this.g("ActualPrimaryKeyChangeRef");
1886
1902
  }
1887
1903
  }