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
@@ -14,247 +14,249 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
14
14
  __extends(DataGridDescription, _super);
15
15
  function DataGridDescription() {
16
16
  var _this = _super.call(this) || this;
17
- _this.ix = null;
18
- _this.g2 = null;
19
- _this.e6 = null;
20
- _this.bt = false;
21
- _this.by = false;
22
- _this.b3 = false;
23
- _this.f1 = null;
24
- _this.ft = null;
17
+ _this.i1 = null;
18
+ _this.g6 = null;
19
+ _this.fa = null;
20
+ _this.bv = false;
25
21
  _this.b0 = false;
26
- _this.hf = null;
27
- _this.hg = null;
28
- _this.gh = null;
29
- _this.dh = 0;
30
- _this.di = 0;
31
- _this.dj = 0;
32
- _this.dk = 0;
33
- _this.bd = null;
22
+ _this.b5 = false;
23
+ _this.f5 = null;
24
+ _this.fx = null;
25
+ _this.b2 = false;
26
+ _this.hj = null;
27
+ _this.hk = null;
28
+ _this.gl = null;
29
+ _this.dl = 0;
30
+ _this.dm = 0;
31
+ _this.dn = 0;
32
+ _this.dp = 0;
34
33
  _this.bf = null;
35
34
  _this.bh = null;
36
- _this.bb = null;
37
- _this.a5 = null;
35
+ _this.bj = null;
36
+ _this.bd = null;
38
37
  _this.a7 = null;
39
- _this.az = null;
40
- _this.ax = null;
41
38
  _this.a9 = null;
39
+ _this.a1 = null;
40
+ _this.az = null;
41
+ _this.bb = null;
42
42
  _this.j = null;
43
43
  _this.l = null;
44
- _this.gb = null;
45
- _this.ej = 0;
46
- _this.eq = 0;
47
- _this.de = 0;
48
- _this.ei = 0;
44
+ _this.gf = null;
45
+ _this.en = 0;
46
+ _this.eu = 0;
47
+ _this.di = 0;
49
48
  _this.em = 0;
50
- _this.f9 = null;
49
+ _this.eq = 0;
50
+ _this.gd = null;
51
51
  _this.av = null;
52
- _this.gt = null;
53
- _this.gf = null;
54
- _this.gg = null;
55
- _this.bo = false;
56
- _this.bl = false;
57
- _this.er = 0;
58
- _this.bz = false;
59
- _this.fo = null;
60
- _this.fz = null;
61
- _this.fa = null;
62
- _this.hh = null;
63
- _this.he = null;
64
- _this.fl = null;
65
- _this.a1 = null;
66
- _this.f0 = null;
67
- _this.f4 = null;
52
+ _this.ax = null;
53
+ _this.gx = null;
54
+ _this.gj = null;
55
+ _this.gk = null;
56
+ _this.bq = false;
57
+ _this.bn = false;
58
+ _this.ev = 0;
59
+ _this.b1 = false;
68
60
  _this.fs = null;
69
- _this.fr = null;
61
+ _this.f3 = null;
62
+ _this.fe = null;
63
+ _this.hl = null;
64
+ _this.hi = null;
70
65
  _this.fp = null;
71
- _this.h0 = null;
72
- _this.e2 = null;
73
- _this.hy = null;
74
- _this.b4 = false;
66
+ _this.a3 = null;
67
+ _this.f4 = null;
68
+ _this.f8 = null;
69
+ _this.fw = null;
70
+ _this.fv = null;
71
+ _this.ft = null;
72
+ _this.h4 = null;
73
+ _this.e6 = null;
74
+ _this.h2 = null;
75
+ _this.b6 = false;
75
76
  _this.x = null;
76
77
  _this.y = null;
77
78
  _this.w = null;
78
79
  _this.v = null;
79
80
  _this.r = null;
80
81
  _this.s = null;
81
- _this.bq = false;
82
- _this.bw = false;
83
- _this.bx = false;
84
- _this.fk = null;
85
- _this.hs = null;
86
- _this.h5 = null;
87
- _this.ih = null;
88
- _this.dm = 0;
89
- _this.gc = null;
90
- _this.df = 0;
91
- _this.gd = null;
82
+ _this.bs = false;
83
+ _this.by = false;
84
+ _this.bz = false;
85
+ _this.fo = null;
86
+ _this.hw = null;
87
+ _this.h9 = null;
88
+ _this.il = null;
89
+ _this.dr = 0;
90
+ _this.gg = null;
91
+ _this.dj = 0;
92
+ _this.gh = null;
93
+ _this.gi = null;
94
+ _this.dk = 0;
92
95
  _this.ge = null;
93
- _this.dg = 0;
94
- _this.ga = null;
95
- _this.h3 = null;
96
+ _this.h7 = null;
97
+ _this.he = null;
96
98
  _this.ha = null;
97
- _this.g6 = null;
98
- _this.a3 = null;
99
- _this.e8 = null;
100
- _this.fm = null;
101
- _this.gz = null;
102
- _this.g0 = null;
103
- _this.fd = null;
104
- _this.c7 = 0;
105
- _this.fe = null;
106
- _this.ff = null;
107
- _this.ho = null;
99
+ _this.a5 = null;
100
+ _this.fc = null;
101
+ _this.fq = null;
102
+ _this.g3 = null;
103
+ _this.g4 = null;
104
+ _this.fh = null;
105
+ _this.db = 0;
106
+ _this.fi = null;
107
+ _this.fj = null;
108
+ _this.hs = null;
109
+ _this.hx = null;
108
110
  _this.ht = null;
109
- _this.hp = null;
110
- _this.dn = 0;
111
- _this.hq = null;
112
- _this.hr = null;
113
- _this.h6 = null;
114
- _this.dp = 0;
115
- _this.h7 = null;
116
- _this.h8 = null;
117
- _this.ii = null;
118
- _this.dr = 0;
119
- _this.ij = null;
120
- _this.ik = null;
121
- _this.ie = null;
111
+ _this.ds = 0;
112
+ _this.hu = null;
113
+ _this.hv = null;
114
+ _this.ia = null;
115
+ _this.dt = 0;
122
116
  _this.ib = null;
123
- _this.dq = 0;
124
117
  _this.ic = null;
125
- _this.id = null;
118
+ _this.im = null;
119
+ _this.dv = 0;
126
120
  _this.io = null;
127
- _this.ds = 0;
128
121
  _this.ip = null;
122
+ _this.ij = null;
123
+ _this.ig = null;
124
+ _this.du = 0;
125
+ _this.ih = null;
126
+ _this.ii = null;
127
+ _this.is = null;
128
+ _this.dw = 0;
129
+ _this.it = null;
130
+ _this.iu = null;
131
+ _this.iv = null;
132
+ _this.id = null;
129
133
  _this.iq = null;
134
+ _this.ie = null;
130
135
  _this.ir = null;
131
- _this.h9 = null;
132
- _this.il = null;
133
- _this.ia = null;
134
- _this.im = null;
135
- _this.ep = 0;
136
- _this.en = 0;
136
+ _this.et = 0;
137
+ _this.er = 0;
138
+ _this.g2 = null;
139
+ _this.gw = null;
140
+ _this.g5 = null;
137
141
  _this.gy = null;
138
- _this.gs = null;
142
+ _this.dq = 0;
143
+ _this.gz = null;
144
+ _this.g0 = null;
145
+ _this.hm = null;
139
146
  _this.g1 = null;
140
- _this.gu = null;
141
- _this.dl = 0;
142
- _this.gv = null;
143
- _this.gw = null;
144
- _this.hi = null;
145
- _this.gx = null;
146
- _this.hl = null;
147
- _this.hj = null;
148
- _this.hk = null;
149
- _this.el = 0;
150
- _this.c9 = 0;
151
- _this.ek = 0;
147
+ _this.hp = null;
148
+ _this.hn = null;
149
+ _this.ho = null;
150
+ _this.ep = 0;
151
+ _this.dd = 0;
152
+ _this.eo = 0;
153
+ _this.dc = 0;
154
+ _this.f6 = null;
155
+ _this.fy = null;
156
+ _this.cb = false;
157
+ _this.fz = null;
158
+ _this.f1 = null;
159
+ _this.f0 = null;
160
+ _this.fb = null;
161
+ _this.c7 = 0;
152
162
  _this.c8 = 0;
153
- _this.f2 = null;
154
- _this.fu = null;
155
- _this.b9 = false;
156
- _this.fv = null;
157
- _this.fx = null;
158
- _this.fw = null;
159
- _this.e7 = null;
160
- _this.c3 = 0;
161
- _this.c4 = 0;
162
- _this.c5 = 0;
163
- _this.c6 = 0;
164
- _this.b5 = false;
165
- _this.db = 0;
163
+ _this.c9 = 0;
166
164
  _this.da = 0;
167
- _this.dc = 0;
168
- _this.dd = 0;
169
- _this.bp = false;
165
+ _this.b7 = false;
166
+ _this.df = 0;
167
+ _this.de = 0;
168
+ _this.dg = 0;
169
+ _this.dh = 0;
170
+ _this.br = false;
171
+ _this.cc = false;
170
172
  _this.u = null;
171
173
  _this.p = null;
172
174
  _this.o = null;
173
175
  _this.q = null;
174
- _this.g4 = null;
175
- _this.g3 = null;
176
- _this.g5 = null;
176
+ _this.g8 = null;
177
+ _this.g7 = null;
178
+ _this.g9 = null;
177
179
  _this.z = null;
178
180
  _this.n = null;
179
181
  _this.m = null;
180
182
  _this.aa = null;
181
- _this.ig = null;
182
- _this.bu = false;
183
- _this.gq = null;
184
- _this.bv = false;
185
- _this.gr = null;
186
- _this.bk = false;
183
+ _this.ik = null;
184
+ _this.bw = false;
185
+ _this.gu = null;
186
+ _this.bx = false;
187
+ _this.gv = null;
188
+ _this.bm = false;
187
189
  _this.t = null;
188
190
  _this.i = null;
189
191
  _this.h = null;
190
192
  _this.k = null;
193
+ _this.ca = false;
194
+ _this.b9 = false;
191
195
  _this.b8 = false;
192
- _this.b7 = false;
193
- _this.b6 = false;
194
- _this.gi = null;
195
- _this.gj = null;
196
- _this.bs = false;
197
- _this.br = false;
198
- _this.g8 = null;
199
- _this.g7 = null;
200
- _this.g9 = null;
201
- _this.go = null;
196
+ _this.gm = null;
202
197
  _this.gn = null;
203
- _this.gk = null;
204
- _this.c1 = new Date();
205
- _this.bm = false;
206
- _this.eo = 0;
207
- _this.b1 = false;
208
- _this.b2 = false;
198
+ _this.bu = false;
199
+ _this.bt = false;
200
+ _this.hc = null;
201
+ _this.hb = null;
202
+ _this.hd = null;
203
+ _this.gs = null;
204
+ _this.gr = null;
205
+ _this.go = null;
206
+ _this.c5 = new Date();
207
+ _this.bo = false;
208
+ _this.es = 0;
209
+ _this.b3 = false;
210
+ _this.b4 = false;
211
+ _this.i0 = null;
209
212
  _this.iw = null;
210
- _this.is = null;
211
- _this.it = null;
212
- _this.iu = null;
213
- _this.iv = null;
214
- _this.hn = null;
215
- _this.hm = null;
216
- _this.bj = false;
217
- _this.bn = false;
218
- _this.gm = null;
219
- _this.gl = null;
220
- _this.fi = null;
221
- _this.fj = null;
222
- _this.fg = null;
223
- _this.fh = null;
224
- _this.e9 = null;
225
- _this.h2 = null;
213
+ _this.ix = null;
214
+ _this.iy = null;
215
+ _this.iz = null;
216
+ _this.hr = null;
217
+ _this.hq = null;
218
+ _this.bl = false;
219
+ _this.bp = false;
220
+ _this.gq = null;
226
221
  _this.gp = null;
227
- _this.h4 = null;
228
- _this.fq = null;
229
- _this.fy = null;
222
+ _this.fm = null;
230
223
  _this.fn = null;
224
+ _this.fk = null;
225
+ _this.fl = null;
226
+ _this.fd = null;
227
+ _this.h6 = null;
228
+ _this.gt = null;
229
+ _this.h8 = null;
230
+ _this.fu = null;
231
+ _this.f2 = null;
232
+ _this.fr = null;
233
+ _this.gb = null;
234
+ _this.gc = null;
235
+ _this.hf = null;
236
+ _this.h5 = null;
237
+ _this.e8 = null;
231
238
  _this.f7 = null;
232
- _this.f8 = null;
233
- _this.hb = null;
239
+ _this.h0 = null;
234
240
  _this.h1 = null;
235
- _this.e4 = null;
236
- _this.f3 = null;
237
- _this.hw = null;
238
- _this.hx = null;
239
- _this.hv = null;
240
241
  _this.hz = null;
241
- _this.e3 = null;
242
- _this.hu = null;
243
- _this.f5 = null;
244
- _this.fc = null;
245
- _this.fb = null;
246
- _this.hd = null;
247
- _this.hc = null;
248
- _this.f6 = null;
249
- _this.e5 = null;
242
+ _this.h3 = null;
243
+ _this.e7 = null;
244
+ _this.hy = null;
245
+ _this.f9 = null;
246
+ _this.fg = null;
247
+ _this.ff = null;
248
+ _this.hh = null;
249
+ _this.hg = null;
250
+ _this.ga = null;
251
+ _this.e9 = null;
250
252
  return _this;
251
253
  }
252
254
  Object.defineProperty(DataGridDescription.prototype, "width", {
253
255
  get: function () {
254
- return this.ix;
256
+ return this.i1;
255
257
  },
256
258
  set: function (a) {
257
- this.ix = a;
259
+ this.i1 = a;
258
260
  this.g("Width");
259
261
  },
260
262
  enumerable: false,
@@ -262,10 +264,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
262
264
  });
263
265
  Object.defineProperty(DataGridDescription.prototype, "height", {
264
266
  get: function () {
265
- return this.g2;
267
+ return this.g6;
266
268
  },
267
269
  set: function (a) {
268
- this.g2 = a;
270
+ this.g6 = a;
269
271
  this.g("Height");
270
272
  },
271
273
  enumerable: false,
@@ -273,10 +275,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
273
275
  });
274
276
  Object.defineProperty(DataGridDescription.prototype, "background", {
275
277
  get: function () {
276
- return this.e6;
278
+ return this.fa;
277
279
  },
278
280
  set: function (a) {
279
- this.e6 = a;
281
+ this.fa = a;
280
282
  this.g("Background");
281
283
  },
282
284
  enumerable: false,
@@ -284,10 +286,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
284
286
  });
285
287
  Object.defineProperty(DataGridDescription.prototype, "isGroupByAreaVisible", {
286
288
  get: function () {
287
- return this.bt;
289
+ return this.bv;
288
290
  },
289
291
  set: function (a) {
290
- this.bt = a;
292
+ this.bv = a;
291
293
  this.g("IsGroupByAreaVisible");
292
294
  },
293
295
  enumerable: false,
@@ -295,10 +297,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
295
297
  });
296
298
  Object.defineProperty(DataGridDescription.prototype, "isPagerVisible", {
297
299
  get: function () {
298
- return this.by;
300
+ return this.b0;
299
301
  },
300
302
  set: function (a) {
301
- this.by = a;
303
+ this.b0 = a;
302
304
  this.g("IsPagerVisible");
303
305
  },
304
306
  enumerable: false,
@@ -306,10 +308,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
306
308
  });
307
309
  Object.defineProperty(DataGridDescription.prototype, "isToolbarVisible", {
308
310
  get: function () {
309
- return this.b3;
311
+ return this.b5;
310
312
  },
311
313
  set: function (a) {
312
- this.b3 = a;
314
+ this.b5 = a;
313
315
  this.g("IsToolbarVisible");
314
316
  },
315
317
  enumerable: false,
@@ -327,10 +329,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
327
329
  });
328
330
  Object.defineProperty(DataGridDescription.prototype, "columnResizingMode", {
329
331
  get: function () {
330
- return this.f1;
332
+ return this.f5;
331
333
  },
332
334
  set: function (a) {
333
- this.f1 = a;
335
+ this.f5 = a;
334
336
  this.g("ColumnResizingMode");
335
337
  },
336
338
  enumerable: false,
@@ -338,10 +340,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
338
340
  });
339
341
  Object.defineProperty(DataGridDescription.prototype, "columnMovingMode", {
340
342
  get: function () {
341
- return this.ft;
343
+ return this.fx;
342
344
  },
343
345
  set: function (a) {
344
- this.ft = a;
346
+ this.fx = a;
345
347
  this.g("ColumnMovingMode");
346
348
  },
347
349
  enumerable: false,
@@ -349,10 +351,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
349
351
  });
350
352
  Object.defineProperty(DataGridDescription.prototype, "isRowHoverEnabled", {
351
353
  get: function () {
352
- return this.b0;
354
+ return this.b2;
353
355
  },
354
356
  set: function (a) {
355
- this.b0 = a;
357
+ this.b2 = a;
356
358
  this.g("IsRowHoverEnabled");
357
359
  },
358
360
  enumerable: false,
@@ -360,10 +362,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
360
362
  });
361
363
  Object.defineProperty(DataGridDescription.prototype, "rowHoverBackground", {
362
364
  get: function () {
363
- return this.hf;
365
+ return this.hj;
364
366
  },
365
367
  set: function (a) {
366
- this.hf = a;
368
+ this.hj = a;
367
369
  this.g("RowHoverBackground");
368
370
  },
369
371
  enumerable: false,
@@ -371,10 +373,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
371
373
  });
372
374
  Object.defineProperty(DataGridDescription.prototype, "rowHoverTextColor", {
373
375
  get: function () {
374
- return this.hg;
376
+ return this.hk;
375
377
  },
376
378
  set: function (a) {
377
- this.hg = a;
379
+ this.hk = a;
378
380
  this.g("RowHoverTextColor");
379
381
  },
380
382
  enumerable: false,
@@ -382,10 +384,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
382
384
  });
383
385
  Object.defineProperty(DataGridDescription.prototype, "editRowBorder", {
384
386
  get: function () {
385
- return this.gh;
387
+ return this.gl;
386
388
  },
387
389
  set: function (a) {
388
- this.gh = a;
390
+ this.gl = a;
389
391
  this.g("EditRowBorder");
390
392
  },
391
393
  enumerable: false,
@@ -393,10 +395,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
393
395
  });
394
396
  Object.defineProperty(DataGridDescription.prototype, "editRowBorderWidthBottom", {
395
397
  get: function () {
396
- return this.dh;
398
+ return this.dl;
397
399
  },
398
400
  set: function (a) {
399
- this.dh = a;
401
+ this.dl = a;
400
402
  this.g("EditRowBorderWidthBottom");
401
403
  },
402
404
  enumerable: false,
@@ -404,10 +406,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
404
406
  });
405
407
  Object.defineProperty(DataGridDescription.prototype, "editRowBorderWidthLeft", {
406
408
  get: function () {
407
- return this.di;
409
+ return this.dm;
408
410
  },
409
411
  set: function (a) {
410
- this.di = a;
412
+ this.dm = a;
411
413
  this.g("EditRowBorderWidthLeft");
412
414
  },
413
415
  enumerable: false,
@@ -415,10 +417,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
415
417
  });
416
418
  Object.defineProperty(DataGridDescription.prototype, "editRowBorderWidthRight", {
417
419
  get: function () {
418
- return this.dj;
420
+ return this.dn;
419
421
  },
420
422
  set: function (a) {
421
- this.dj = a;
423
+ this.dn = a;
422
424
  this.g("EditRowBorderWidthRight");
423
425
  },
424
426
  enumerable: false,
@@ -426,10 +428,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
426
428
  });
427
429
  Object.defineProperty(DataGridDescription.prototype, "editRowBorderWidthTop", {
428
430
  get: function () {
429
- return this.dk;
431
+ return this.dp;
430
432
  },
431
433
  set: function (a) {
432
- this.dk = a;
434
+ this.dp = a;
433
435
  this.g("EditRowBorderWidthTop");
434
436
  },
435
437
  enumerable: false,
@@ -437,10 +439,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
437
439
  });
438
440
  Object.defineProperty(DataGridDescription.prototype, "sectionHeader", {
439
441
  get: function () {
440
- return this.bd;
442
+ return this.bf;
441
443
  },
442
444
  set: function (a) {
443
- this.bd = a;
445
+ this.bf = a;
444
446
  this.g("SectionHeader");
445
447
  },
446
448
  enumerable: false,
@@ -448,10 +450,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
448
450
  });
449
451
  Object.defineProperty(DataGridDescription.prototype, "summaryRowRoot", {
450
452
  get: function () {
451
- return this.bf;
453
+ return this.bh;
452
454
  },
453
455
  set: function (a) {
454
- this.bf = a;
456
+ this.bh = a;
455
457
  this.g("SummaryRowRoot");
456
458
  },
457
459
  enumerable: false,
@@ -459,10 +461,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
459
461
  });
460
462
  Object.defineProperty(DataGridDescription.prototype, "summaryRowSection", {
461
463
  get: function () {
462
- return this.bh;
464
+ return this.bj;
463
465
  },
464
466
  set: function (a) {
465
- this.bh = a;
467
+ this.bj = a;
466
468
  this.g("SummaryRowSection");
467
469
  },
468
470
  enumerable: false,
@@ -470,10 +472,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
470
472
  });
471
473
  Object.defineProperty(DataGridDescription.prototype, "rowSeparator", {
472
474
  get: function () {
473
- return this.bb;
475
+ return this.bd;
474
476
  },
475
477
  set: function (a) {
476
- this.bb = a;
478
+ this.bd = a;
477
479
  this.g("RowSeparator");
478
480
  },
479
481
  enumerable: false,
@@ -481,10 +483,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
481
483
  });
482
484
  Object.defineProperty(DataGridDescription.prototype, "headerRowSeparator", {
483
485
  get: function () {
484
- return this.a5;
486
+ return this.a7;
485
487
  },
486
488
  set: function (a) {
487
- this.a5 = a;
489
+ this.a7 = a;
488
490
  this.g("HeaderRowSeparator");
489
491
  },
490
492
  enumerable: false,
@@ -492,10 +494,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
492
494
  });
493
495
  Object.defineProperty(DataGridDescription.prototype, "headerSeparator", {
494
496
  get: function () {
495
- return this.a7;
497
+ return this.a9;
496
498
  },
497
499
  set: function (a) {
498
- this.a7 = a;
500
+ this.a9 = a;
499
501
  this.g("HeaderSeparator");
500
502
  },
501
503
  enumerable: false,
@@ -503,10 +505,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
503
505
  });
504
506
  Object.defineProperty(DataGridDescription.prototype, "columnResizingSeparator", {
505
507
  get: function () {
506
- return this.az;
508
+ return this.a1;
507
509
  },
508
510
  set: function (a) {
509
- this.az = a;
511
+ this.a1 = a;
510
512
  this.g("ColumnResizingSeparator");
511
513
  },
512
514
  enumerable: false,
@@ -514,10 +516,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
514
516
  });
515
517
  Object.defineProperty(DataGridDescription.prototype, "columnMovingSeparator", {
516
518
  get: function () {
517
- return this.ax;
519
+ return this.az;
518
520
  },
519
521
  set: function (a) {
520
- this.ax = a;
522
+ this.az = a;
521
523
  this.g("ColumnMovingSeparator");
522
524
  },
523
525
  enumerable: false,
@@ -525,10 +527,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
525
527
  });
526
528
  Object.defineProperty(DataGridDescription.prototype, "pinnedAreaSeparator", {
527
529
  get: function () {
528
- return this.a9;
530
+ return this.bb;
529
531
  },
530
532
  set: function (a) {
531
- this.a9 = a;
533
+ this.bb = a;
532
534
  this.g("PinnedAreaSeparator");
533
535
  },
534
536
  enumerable: false,
@@ -558,10 +560,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
558
560
  });
559
561
  Object.defineProperty(DataGridDescription.prototype, "density", {
560
562
  get: function () {
561
- return this.gb;
563
+ return this.gf;
562
564
  },
563
565
  set: function (a) {
564
- this.gb = a;
566
+ this.gf = a;
565
567
  this.g("Density");
566
568
  },
567
569
  enumerable: false,
@@ -569,10 +571,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
569
571
  });
570
572
  Object.defineProperty(DataGridDescription.prototype, "actualRowHeight", {
571
573
  get: function () {
572
- return this.ej;
574
+ return this.en;
573
575
  },
574
576
  set: function (a) {
575
- this.ej = a;
577
+ this.en = a;
576
578
  this.g("ActualRowHeight");
577
579
  },
578
580
  enumerable: false,
@@ -580,10 +582,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
580
582
  });
581
583
  Object.defineProperty(DataGridDescription.prototype, "rowHeight", {
582
584
  get: function () {
583
- return this.eq;
585
+ return this.eu;
584
586
  },
585
587
  set: function (a) {
586
- this.eq = a;
588
+ this.eu = a;
587
589
  this.g("RowHeight");
588
590
  },
589
591
  enumerable: false,
@@ -591,10 +593,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
591
593
  });
592
594
  Object.defineProperty(DataGridDescription.prototype, "defaultColumnMinWidth", {
593
595
  get: function () {
594
- return this.de;
596
+ return this.di;
595
597
  },
596
598
  set: function (a) {
597
- this.de = a;
599
+ this.di = a;
598
600
  this.g("DefaultColumnMinWidth");
599
601
  },
600
602
  enumerable: false,
@@ -602,10 +604,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
602
604
  });
603
605
  Object.defineProperty(DataGridDescription.prototype, "actualHeaderHeight", {
604
606
  get: function () {
605
- return this.ei;
607
+ return this.em;
606
608
  },
607
609
  set: function (a) {
608
- this.ei = a;
610
+ this.em = a;
609
611
  this.g("ActualHeaderHeight");
610
612
  },
611
613
  enumerable: false,
@@ -613,10 +615,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
613
615
  });
614
616
  Object.defineProperty(DataGridDescription.prototype, "headerHeight", {
615
617
  get: function () {
616
- return this.em;
618
+ return this.eq;
617
619
  },
618
620
  set: function (a) {
619
- this.em = a;
621
+ this.eq = a;
620
622
  this.g("HeaderHeight");
621
623
  },
622
624
  enumerable: false,
@@ -624,10 +626,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
624
626
  });
625
627
  Object.defineProperty(DataGridDescription.prototype, "dataSourceRef", {
626
628
  get: function () {
627
- return this.f9;
629
+ return this.gd;
628
630
  },
629
631
  set: function (a) {
630
- this.f9 = a;
632
+ this.gd = a;
631
633
  this.g("DataSourceRef");
632
634
  },
633
635
  enumerable: false,
@@ -644,12 +646,23 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
644
646
  enumerable: false,
645
647
  configurable: true
646
648
  });
649
+ Object.defineProperty(DataGridDescription.prototype, "genericDataSource", {
650
+ get: function () {
651
+ return this.ax;
652
+ },
653
+ set: function (a) {
654
+ this.ax = a;
655
+ this.g("GenericDataSource");
656
+ },
657
+ enumerable: false,
658
+ configurable: true
659
+ });
647
660
  Object.defineProperty(DataGridDescription.prototype, "headerClickAction", {
648
661
  get: function () {
649
- return this.gt;
662
+ return this.gx;
650
663
  },
651
664
  set: function (a) {
652
- this.gt = a;
665
+ this.gx = a;
653
666
  this.g("HeaderClickAction");
654
667
  },
655
668
  enumerable: false,
@@ -657,10 +670,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
657
670
  });
658
671
  Object.defineProperty(DataGridDescription.prototype, "editMode", {
659
672
  get: function () {
660
- return this.gf;
673
+ return this.gj;
661
674
  },
662
675
  set: function (a) {
663
- this.gf = a;
676
+ this.gj = a;
664
677
  this.g("EditMode");
665
678
  },
666
679
  enumerable: false,
@@ -668,10 +681,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
668
681
  });
669
682
  Object.defineProperty(DataGridDescription.prototype, "editModeClickAction", {
670
683
  get: function () {
671
- return this.gg;
684
+ return this.gk;
672
685
  },
673
686
  set: function (a) {
674
- this.gg = a;
687
+ this.gk = a;
675
688
  this.g("EditModeClickAction");
676
689
  },
677
690
  enumerable: false,
@@ -679,10 +692,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
679
692
  });
680
693
  Object.defineProperty(DataGridDescription.prototype, "editOnKeyPress", {
681
694
  get: function () {
682
- return this.bo;
695
+ return this.bq;
683
696
  },
684
697
  set: function (a) {
685
- this.bo = a;
698
+ this.bq = a;
686
699
  this.g("EditOnKeyPress");
687
700
  },
688
701
  enumerable: false,
@@ -690,10 +703,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
690
703
  });
691
704
  Object.defineProperty(DataGridDescription.prototype, "autoGenerateColumns", {
692
705
  get: function () {
693
- return this.bl;
706
+ return this.bn;
694
707
  },
695
708
  set: function (a) {
696
- this.bl = a;
709
+ this.bn = a;
697
710
  this.g("AutoGenerateColumns");
698
711
  },
699
712
  enumerable: false,
@@ -701,10 +714,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
701
714
  });
702
715
  Object.defineProperty(DataGridDescription.prototype, "rowSeparatorHeight", {
703
716
  get: function () {
704
- return this.er;
717
+ return this.ev;
705
718
  },
706
719
  set: function (a) {
707
- this.er = a;
720
+ this.ev = a;
708
721
  this.g("RowSeparatorHeight");
709
722
  },
710
723
  enumerable: false,
@@ -712,10 +725,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
712
725
  });
713
726
  Object.defineProperty(DataGridDescription.prototype, "isPlaceholderRenderingEnabled", {
714
727
  get: function () {
715
- return this.bz;
728
+ return this.b1;
716
729
  },
717
730
  set: function (a) {
718
- this.bz = a;
731
+ this.b1 = a;
719
732
  this.g("IsPlaceholderRenderingEnabled");
720
733
  },
721
734
  enumerable: false,
@@ -723,10 +736,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
723
736
  });
724
737
  Object.defineProperty(DataGridDescription.prototype, "columnAddingAnimationMode", {
725
738
  get: function () {
726
- return this.fo;
739
+ return this.fs;
727
740
  },
728
741
  set: function (a) {
729
- this.fo = a;
742
+ this.fs = a;
730
743
  this.g("ColumnAddingAnimationMode");
731
744
  },
732
745
  enumerable: false,
@@ -734,10 +747,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
734
747
  });
735
748
  Object.defineProperty(DataGridDescription.prototype, "columnPropertyUpdatingAnimationMode", {
736
749
  get: function () {
737
- return this.fz;
750
+ return this.f3;
738
751
  },
739
752
  set: function (a) {
740
- this.fz = a;
753
+ this.f3 = a;
741
754
  this.g("ColumnPropertyUpdatingAnimationMode");
742
755
  },
743
756
  enumerable: false,
@@ -745,10 +758,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
745
758
  });
746
759
  Object.defineProperty(DataGridDescription.prototype, "cellDataLoadedAnimationMode", {
747
760
  get: function () {
748
- return this.fa;
761
+ return this.fe;
749
762
  },
750
763
  set: function (a) {
751
- this.fa = a;
764
+ this.fe = a;
752
765
  this.g("CellDataLoadedAnimationMode");
753
766
  },
754
767
  enumerable: false,
@@ -756,10 +769,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
756
769
  });
757
770
  Object.defineProperty(DataGridDescription.prototype, "rowSelectionAnimationMode", {
758
771
  get: function () {
759
- return this.hh;
772
+ return this.hl;
760
773
  },
761
774
  set: function (a) {
762
- this.hh = a;
775
+ this.hl = a;
763
776
  this.g("RowSelectionAnimationMode");
764
777
  },
765
778
  enumerable: false,
@@ -767,10 +780,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
767
780
  });
768
781
  Object.defineProperty(DataGridDescription.prototype, "rowHoverAnimationMode", {
769
782
  get: function () {
770
- return this.he;
783
+ return this.hi;
771
784
  },
772
785
  set: function (a) {
773
- this.he = a;
786
+ this.hi = a;
774
787
  this.g("RowHoverAnimationMode");
775
788
  },
776
789
  enumerable: false,
@@ -778,10 +791,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
778
791
  });
779
792
  Object.defineProperty(DataGridDescription.prototype, "cellSelectionAnimationMode", {
780
793
  get: function () {
781
- return this.fl;
794
+ return this.fp;
782
795
  },
783
796
  set: function (a) {
784
- this.fl = a;
797
+ this.fp = a;
785
798
  this.g("CellSelectionAnimationMode");
786
799
  },
787
800
  enumerable: false,
@@ -789,10 +802,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
789
802
  });
790
803
  Object.defineProperty(DataGridDescription.prototype, "animationSettings", {
791
804
  get: function () {
792
- return this.a1;
805
+ return this.a3;
793
806
  },
794
807
  set: function (a) {
795
- this.a1 = a;
808
+ this.a3 = a;
796
809
  this.g("AnimationSettings");
797
810
  },
798
811
  enumerable: false,
@@ -800,10 +813,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
800
813
  });
801
814
  Object.defineProperty(DataGridDescription.prototype, "columnResizingAnimationMode", {
802
815
  get: function () {
803
- return this.f0;
816
+ return this.f4;
804
817
  },
805
818
  set: function (a) {
806
- this.f0 = a;
819
+ this.f4 = a;
807
820
  this.g("ColumnResizingAnimationMode");
808
821
  },
809
822
  enumerable: false,
@@ -811,10 +824,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
811
824
  });
812
825
  Object.defineProperty(DataGridDescription.prototype, "columnShowingAnimationMode", {
813
826
  get: function () {
814
- return this.f4;
827
+ return this.f8;
815
828
  },
816
829
  set: function (a) {
817
- this.f4 = a;
830
+ this.f8 = a;
818
831
  this.g("ColumnShowingAnimationMode");
819
832
  },
820
833
  enumerable: false,
@@ -822,10 +835,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
822
835
  });
823
836
  Object.defineProperty(DataGridDescription.prototype, "columnMovingAnimationMode", {
824
837
  get: function () {
825
- return this.fs;
838
+ return this.fw;
826
839
  },
827
840
  set: function (a) {
828
- this.fs = a;
841
+ this.fw = a;
829
842
  this.g("ColumnMovingAnimationMode");
830
843
  },
831
844
  enumerable: false,
@@ -833,10 +846,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
833
846
  });
834
847
  Object.defineProperty(DataGridDescription.prototype, "columnHidingAnimationMode", {
835
848
  get: function () {
836
- return this.fr;
849
+ return this.fv;
837
850
  },
838
851
  set: function (a) {
839
- this.fr = a;
852
+ this.fv = a;
840
853
  this.g("ColumnHidingAnimationMode");
841
854
  },
842
855
  enumerable: false,
@@ -844,10 +857,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
844
857
  });
845
858
  Object.defineProperty(DataGridDescription.prototype, "columnExchangingAnimationMode", {
846
859
  get: function () {
847
- return this.fp;
860
+ return this.ft;
848
861
  },
849
862
  set: function (a) {
850
- this.fp = a;
863
+ this.ft = a;
851
864
  this.g("ColumnExchangingAnimationMode");
852
865
  },
853
866
  enumerable: false,
@@ -855,10 +868,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
855
868
  });
856
869
  Object.defineProperty(DataGridDescription.prototype, "selectionMode", {
857
870
  get: function () {
858
- return this.h0;
871
+ return this.h4;
859
872
  },
860
873
  set: function (a) {
861
- this.h0 = a;
874
+ this.h4 = a;
862
875
  this.g("SelectionMode");
863
876
  },
864
877
  enumerable: false,
@@ -866,10 +879,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
866
879
  });
867
880
  Object.defineProperty(DataGridDescription.prototype, "activationMode", {
868
881
  get: function () {
869
- return this.e2;
882
+ return this.e6;
870
883
  },
871
884
  set: function (a) {
872
- this.e2 = a;
885
+ this.e6 = a;
873
886
  this.g("ActivationMode");
874
887
  },
875
888
  enumerable: false,
@@ -877,10 +890,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
877
890
  });
878
891
  Object.defineProperty(DataGridDescription.prototype, "selectionBehavior", {
879
892
  get: function () {
880
- return this.hy;
893
+ return this.h2;
881
894
  },
882
895
  set: function (a) {
883
- this.hy = a;
896
+ this.h2 = a;
884
897
  this.g("SelectionBehavior");
885
898
  },
886
899
  enumerable: false,
@@ -888,10 +901,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
888
901
  });
889
902
  Object.defineProperty(DataGridDescription.prototype, "mouseDragSelectionEnabled", {
890
903
  get: function () {
891
- return this.b4;
904
+ return this.b6;
892
905
  },
893
906
  set: function (a) {
894
- this.b4 = a;
907
+ this.b6 = a;
895
908
  this.g("MouseDragSelectionEnabled");
896
909
  },
897
910
  enumerable: false,
@@ -965,10 +978,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
965
978
  });
966
979
  Object.defineProperty(DataGridDescription.prototype, "isColumnOptionsEnabled", {
967
980
  get: function () {
968
- return this.bq;
981
+ return this.bs;
969
982
  },
970
983
  set: function (a) {
971
- this.bq = a;
984
+ this.bs = a;
972
985
  this.g("IsColumnOptionsEnabled");
973
986
  },
974
987
  enumerable: false,
@@ -976,10 +989,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
976
989
  });
977
990
  Object.defineProperty(DataGridDescription.prototype, "isGroupRowSticky", {
978
991
  get: function () {
979
- return this.bw;
992
+ return this.by;
980
993
  },
981
994
  set: function (a) {
982
- this.bw = a;
995
+ this.by = a;
983
996
  this.g("IsGroupRowSticky");
984
997
  },
985
998
  enumerable: false,
@@ -987,10 +1000,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
987
1000
  });
988
1001
  Object.defineProperty(DataGridDescription.prototype, "isHeaderSeparatorVisible", {
989
1002
  get: function () {
990
- return this.bx;
1003
+ return this.bz;
991
1004
  },
992
1005
  set: function (a) {
993
- this.bx = a;
1006
+ this.bz = a;
994
1007
  this.g("IsHeaderSeparatorVisible");
995
1008
  },
996
1009
  enumerable: false,
@@ -998,10 +1011,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
998
1011
  });
999
1012
  Object.defineProperty(DataGridDescription.prototype, "cellSelectedBackground", {
1000
1013
  get: function () {
1001
- return this.fk;
1014
+ return this.fo;
1002
1015
  },
1003
1016
  set: function (a) {
1004
- this.fk = a;
1017
+ this.fo = a;
1005
1018
  this.g("CellSelectedBackground");
1006
1019
  },
1007
1020
  enumerable: false,
@@ -1009,10 +1022,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1009
1022
  });
1010
1023
  Object.defineProperty(DataGridDescription.prototype, "sectionHeaderSelectedBackground", {
1011
1024
  get: function () {
1012
- return this.hs;
1025
+ return this.hw;
1013
1026
  },
1014
1027
  set: function (a) {
1015
- this.hs = a;
1028
+ this.hw = a;
1016
1029
  this.g("SectionHeaderSelectedBackground");
1017
1030
  },
1018
1031
  enumerable: false,
@@ -1020,10 +1033,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1020
1033
  });
1021
1034
  Object.defineProperty(DataGridDescription.prototype, "summaryRootBackground", {
1022
1035
  get: function () {
1023
- return this.h5;
1036
+ return this.h9;
1024
1037
  },
1025
1038
  set: function (a) {
1026
- this.h5 = a;
1039
+ this.h9 = a;
1027
1040
  this.g("SummaryRootBackground");
1028
1041
  },
1029
1042
  enumerable: false,
@@ -1031,10 +1044,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1031
1044
  });
1032
1045
  Object.defineProperty(DataGridDescription.prototype, "summarySectionBackground", {
1033
1046
  get: function () {
1034
- return this.ih;
1047
+ return this.il;
1035
1048
  },
1036
1049
  set: function (a) {
1037
- this.ih = a;
1050
+ this.il = a;
1038
1051
  this.g("SummarySectionBackground");
1039
1052
  },
1040
1053
  enumerable: false,
@@ -1042,10 +1055,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1042
1055
  });
1043
1056
  Object.defineProperty(DataGridDescription.prototype, "pinnedRowOpacity", {
1044
1057
  get: function () {
1045
- return this.dm;
1058
+ return this.dr;
1046
1059
  },
1047
1060
  set: function (a) {
1048
- this.dm = a;
1061
+ this.dr = a;
1049
1062
  this.g("PinnedRowOpacity");
1050
1063
  },
1051
1064
  enumerable: false,
@@ -1053,10 +1066,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1053
1066
  });
1054
1067
  Object.defineProperty(DataGridDescription.prototype, "editFontFamily", {
1055
1068
  get: function () {
1056
- return this.gc;
1069
+ return this.gg;
1057
1070
  },
1058
1071
  set: function (a) {
1059
- this.gc = a;
1072
+ this.gg = a;
1060
1073
  this.g("EditFontFamily");
1061
1074
  },
1062
1075
  enumerable: false,
@@ -1064,10 +1077,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1064
1077
  });
1065
1078
  Object.defineProperty(DataGridDescription.prototype, "editFontSize", {
1066
1079
  get: function () {
1067
- return this.df;
1080
+ return this.dj;
1068
1081
  },
1069
1082
  set: function (a) {
1070
- this.df = a;
1083
+ this.dj = a;
1071
1084
  this.g("EditFontSize");
1072
1085
  },
1073
1086
  enumerable: false,
@@ -1075,10 +1088,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1075
1088
  });
1076
1089
  Object.defineProperty(DataGridDescription.prototype, "editFontStyle", {
1077
1090
  get: function () {
1078
- return this.gd;
1091
+ return this.gh;
1079
1092
  },
1080
1093
  set: function (a) {
1081
- this.gd = a;
1094
+ this.gh = a;
1082
1095
  this.g("EditFontStyle");
1083
1096
  },
1084
1097
  enumerable: false,
@@ -1086,10 +1099,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1086
1099
  });
1087
1100
  Object.defineProperty(DataGridDescription.prototype, "editFontWeight", {
1088
1101
  get: function () {
1089
- return this.ge;
1102
+ return this.gi;
1090
1103
  },
1091
1104
  set: function (a) {
1092
- this.ge = a;
1105
+ this.gi = a;
1093
1106
  this.g("EditFontWeight");
1094
1107
  },
1095
1108
  enumerable: false,
@@ -1097,10 +1110,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1097
1110
  });
1098
1111
  Object.defineProperty(DataGridDescription.prototype, "editOpacity", {
1099
1112
  get: function () {
1100
- return this.dg;
1113
+ return this.dk;
1101
1114
  },
1102
1115
  set: function (a) {
1103
- this.dg = a;
1116
+ this.dk = a;
1104
1117
  this.g("EditOpacity");
1105
1118
  },
1106
1119
  enumerable: false,
@@ -1108,10 +1121,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1108
1121
  });
1109
1122
  Object.defineProperty(DataGridDescription.prototype, "deletedTextColor", {
1110
1123
  get: function () {
1111
- return this.ga;
1124
+ return this.ge;
1112
1125
  },
1113
1126
  set: function (a) {
1114
- this.ga = a;
1127
+ this.ge = a;
1115
1128
  this.g("DeletedTextColor");
1116
1129
  },
1117
1130
  enumerable: false,
@@ -1119,10 +1132,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1119
1132
  });
1120
1133
  Object.defineProperty(DataGridDescription.prototype, "stickyRowBackground", {
1121
1134
  get: function () {
1122
- return this.h3;
1135
+ return this.h7;
1123
1136
  },
1124
1137
  set: function (a) {
1125
- this.h3 = a;
1138
+ this.h7 = a;
1126
1139
  this.g("StickyRowBackground");
1127
1140
  },
1128
1141
  enumerable: false,
@@ -1130,10 +1143,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1130
1143
  });
1131
1144
  Object.defineProperty(DataGridDescription.prototype, "pinnedRowBackground", {
1132
1145
  get: function () {
1133
- return this.ha;
1146
+ return this.he;
1134
1147
  },
1135
1148
  set: function (a) {
1136
- this.ha = a;
1149
+ this.he = a;
1137
1150
  this.g("PinnedRowBackground");
1138
1151
  },
1139
1152
  enumerable: false,
@@ -1141,10 +1154,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1141
1154
  });
1142
1155
  Object.defineProperty(DataGridDescription.prototype, "lastStickyRowBackground", {
1143
1156
  get: function () {
1144
- return this.g6;
1157
+ return this.ha;
1145
1158
  },
1146
1159
  set: function (a) {
1147
- this.g6 = a;
1160
+ this.ha = a;
1148
1161
  this.g("LastStickyRowBackground");
1149
1162
  },
1150
1163
  enumerable: false,
@@ -1152,10 +1165,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1152
1165
  });
1153
1166
  Object.defineProperty(DataGridDescription.prototype, "activeCell", {
1154
1167
  get: function () {
1155
- return this.a3;
1168
+ return this.a5;
1156
1169
  },
1157
1170
  set: function (a) {
1158
- this.a3 = a;
1171
+ this.a5 = a;
1159
1172
  this.g("ActiveCell");
1160
1173
  },
1161
1174
  enumerable: false,
@@ -1163,10 +1176,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1163
1176
  });
1164
1177
  Object.defineProperty(DataGridDescription.prototype, "cellBackground", {
1165
1178
  get: function () {
1166
- return this.e8;
1179
+ return this.fc;
1167
1180
  },
1168
1181
  set: function (a) {
1169
- this.e8 = a;
1182
+ this.fc = a;
1170
1183
  this.g("CellBackground");
1171
1184
  },
1172
1185
  enumerable: false,
@@ -1174,10 +1187,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1174
1187
  });
1175
1188
  Object.defineProperty(DataGridDescription.prototype, "cellTextColor", {
1176
1189
  get: function () {
1177
- return this.fm;
1190
+ return this.fq;
1178
1191
  },
1179
1192
  set: function (a) {
1180
- this.fm = a;
1193
+ this.fq = a;
1181
1194
  this.g("CellTextColor");
1182
1195
  },
1183
1196
  enumerable: false,
@@ -1185,10 +1198,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1185
1198
  });
1186
1199
  Object.defineProperty(DataGridDescription.prototype, "headerSortIndicatorColor", {
1187
1200
  get: function () {
1188
- return this.gz;
1201
+ return this.g3;
1189
1202
  },
1190
1203
  set: function (a) {
1191
- this.gz = a;
1204
+ this.g3 = a;
1192
1205
  this.g("HeaderSortIndicatorColor");
1193
1206
  },
1194
1207
  enumerable: false,
@@ -1196,10 +1209,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1196
1209
  });
1197
1210
  Object.defineProperty(DataGridDescription.prototype, "headerSortIndicatorStyle", {
1198
1211
  get: function () {
1199
- return this.g0;
1212
+ return this.g4;
1200
1213
  },
1201
1214
  set: function (a) {
1202
- this.g0 = a;
1215
+ this.g4 = a;
1203
1216
  this.g("HeaderSortIndicatorStyle");
1204
1217
  },
1205
1218
  enumerable: false,
@@ -1207,10 +1220,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1207
1220
  });
1208
1221
  Object.defineProperty(DataGridDescription.prototype, "cellFontFamily", {
1209
1222
  get: function () {
1210
- return this.fd;
1223
+ return this.fh;
1211
1224
  },
1212
1225
  set: function (a) {
1213
- this.fd = a;
1226
+ this.fh = a;
1214
1227
  this.g("CellFontFamily");
1215
1228
  },
1216
1229
  enumerable: false,
@@ -1218,10 +1231,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1218
1231
  });
1219
1232
  Object.defineProperty(DataGridDescription.prototype, "cellFontSize", {
1220
1233
  get: function () {
1221
- return this.c7;
1234
+ return this.db;
1222
1235
  },
1223
1236
  set: function (a) {
1224
- this.c7 = a;
1237
+ this.db = a;
1225
1238
  this.g("CellFontSize");
1226
1239
  },
1227
1240
  enumerable: false,
@@ -1229,10 +1242,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1229
1242
  });
1230
1243
  Object.defineProperty(DataGridDescription.prototype, "cellFontStyle", {
1231
1244
  get: function () {
1232
- return this.fe;
1245
+ return this.fi;
1233
1246
  },
1234
1247
  set: function (a) {
1235
- this.fe = a;
1248
+ this.fi = a;
1236
1249
  this.g("CellFontStyle");
1237
1250
  },
1238
1251
  enumerable: false,
@@ -1240,10 +1253,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1240
1253
  });
1241
1254
  Object.defineProperty(DataGridDescription.prototype, "cellFontWeight", {
1242
1255
  get: function () {
1243
- return this.ff;
1256
+ return this.fj;
1244
1257
  },
1245
1258
  set: function (a) {
1246
- this.ff = a;
1259
+ this.fj = a;
1247
1260
  this.g("CellFontWeight");
1248
1261
  },
1249
1262
  enumerable: false,
@@ -1251,10 +1264,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1251
1264
  });
1252
1265
  Object.defineProperty(DataGridDescription.prototype, "sectionHeaderBackground", {
1253
1266
  get: function () {
1254
- return this.ho;
1267
+ return this.hs;
1255
1268
  },
1256
1269
  set: function (a) {
1257
- this.ho = a;
1270
+ this.hs = a;
1258
1271
  this.g("SectionHeaderBackground");
1259
1272
  },
1260
1273
  enumerable: false,
@@ -1262,10 +1275,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1262
1275
  });
1263
1276
  Object.defineProperty(DataGridDescription.prototype, "sectionHeaderTextColor", {
1264
1277
  get: function () {
1265
- return this.ht;
1278
+ return this.hx;
1266
1279
  },
1267
1280
  set: function (a) {
1268
- this.ht = a;
1281
+ this.hx = a;
1269
1282
  this.g("SectionHeaderTextColor");
1270
1283
  },
1271
1284
  enumerable: false,
@@ -1273,10 +1286,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1273
1286
  });
1274
1287
  Object.defineProperty(DataGridDescription.prototype, "sectionHeaderFontFamily", {
1275
1288
  get: function () {
1276
- return this.hp;
1289
+ return this.ht;
1277
1290
  },
1278
1291
  set: function (a) {
1279
- this.hp = a;
1292
+ this.ht = a;
1280
1293
  this.g("SectionHeaderFontFamily");
1281
1294
  },
1282
1295
  enumerable: false,
@@ -1284,10 +1297,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1284
1297
  });
1285
1298
  Object.defineProperty(DataGridDescription.prototype, "sectionHeaderFontSize", {
1286
1299
  get: function () {
1287
- return this.dn;
1300
+ return this.ds;
1288
1301
  },
1289
1302
  set: function (a) {
1290
- this.dn = a;
1303
+ this.ds = a;
1291
1304
  this.g("SectionHeaderFontSize");
1292
1305
  },
1293
1306
  enumerable: false,
@@ -1295,10 +1308,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1295
1308
  });
1296
1309
  Object.defineProperty(DataGridDescription.prototype, "sectionHeaderFontStyle", {
1297
1310
  get: function () {
1298
- return this.hq;
1311
+ return this.hu;
1299
1312
  },
1300
1313
  set: function (a) {
1301
- this.hq = a;
1314
+ this.hu = a;
1302
1315
  this.g("SectionHeaderFontStyle");
1303
1316
  },
1304
1317
  enumerable: false,
@@ -1306,10 +1319,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1306
1319
  });
1307
1320
  Object.defineProperty(DataGridDescription.prototype, "sectionHeaderFontWeight", {
1308
1321
  get: function () {
1309
- return this.hr;
1322
+ return this.hv;
1310
1323
  },
1311
1324
  set: function (a) {
1312
- this.hr = a;
1325
+ this.hv = a;
1313
1326
  this.g("SectionHeaderFontWeight");
1314
1327
  },
1315
1328
  enumerable: false,
@@ -1317,10 +1330,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1317
1330
  });
1318
1331
  Object.defineProperty(DataGridDescription.prototype, "summaryRootLabelFontFamily", {
1319
1332
  get: function () {
1320
- return this.h6;
1333
+ return this.ia;
1321
1334
  },
1322
1335
  set: function (a) {
1323
- this.h6 = a;
1336
+ this.ia = a;
1324
1337
  this.g("SummaryRootLabelFontFamily");
1325
1338
  },
1326
1339
  enumerable: false,
@@ -1328,10 +1341,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1328
1341
  });
1329
1342
  Object.defineProperty(DataGridDescription.prototype, "summaryRootLabelFontSize", {
1330
1343
  get: function () {
1331
- return this.dp;
1344
+ return this.dt;
1332
1345
  },
1333
1346
  set: function (a) {
1334
- this.dp = a;
1347
+ this.dt = a;
1335
1348
  this.g("SummaryRootLabelFontSize");
1336
1349
  },
1337
1350
  enumerable: false,
@@ -1339,10 +1352,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1339
1352
  });
1340
1353
  Object.defineProperty(DataGridDescription.prototype, "summaryRootLabelFontStyle", {
1341
1354
  get: function () {
1342
- return this.h7;
1355
+ return this.ib;
1343
1356
  },
1344
1357
  set: function (a) {
1345
- this.h7 = a;
1358
+ this.ib = a;
1346
1359
  this.g("SummaryRootLabelFontStyle");
1347
1360
  },
1348
1361
  enumerable: false,
@@ -1350,10 +1363,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1350
1363
  });
1351
1364
  Object.defineProperty(DataGridDescription.prototype, "summaryRootLabelFontWeight", {
1352
1365
  get: function () {
1353
- return this.h8;
1366
+ return this.ic;
1354
1367
  },
1355
1368
  set: function (a) {
1356
- this.h8 = a;
1369
+ this.ic = a;
1357
1370
  this.g("SummaryRootLabelFontWeight");
1358
1371
  },
1359
1372
  enumerable: false,
@@ -1361,10 +1374,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1361
1374
  });
1362
1375
  Object.defineProperty(DataGridDescription.prototype, "summarySectionLabelFontFamily", {
1363
1376
  get: function () {
1364
- return this.ii;
1377
+ return this.im;
1365
1378
  },
1366
1379
  set: function (a) {
1367
- this.ii = a;
1380
+ this.im = a;
1368
1381
  this.g("SummarySectionLabelFontFamily");
1369
1382
  },
1370
1383
  enumerable: false,
@@ -1372,10 +1385,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1372
1385
  });
1373
1386
  Object.defineProperty(DataGridDescription.prototype, "summarySectionLabelFontSize", {
1374
1387
  get: function () {
1375
- return this.dr;
1388
+ return this.dv;
1376
1389
  },
1377
1390
  set: function (a) {
1378
- this.dr = a;
1391
+ this.dv = a;
1379
1392
  this.g("SummarySectionLabelFontSize");
1380
1393
  },
1381
1394
  enumerable: false,
@@ -1383,10 +1396,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1383
1396
  });
1384
1397
  Object.defineProperty(DataGridDescription.prototype, "summarySectionLabelFontStyle", {
1385
1398
  get: function () {
1386
- return this.ij;
1399
+ return this.io;
1387
1400
  },
1388
1401
  set: function (a) {
1389
- this.ij = a;
1402
+ this.io = a;
1390
1403
  this.g("SummarySectionLabelFontStyle");
1391
1404
  },
1392
1405
  enumerable: false,
@@ -1394,10 +1407,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1394
1407
  });
1395
1408
  Object.defineProperty(DataGridDescription.prototype, "summarySectionLabelFontWeight", {
1396
1409
  get: function () {
1397
- return this.ik;
1410
+ return this.ip;
1398
1411
  },
1399
1412
  set: function (a) {
1400
- this.ik = a;
1413
+ this.ip = a;
1401
1414
  this.g("SummarySectionLabelFontWeight");
1402
1415
  },
1403
1416
  enumerable: false,
@@ -1405,10 +1418,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1405
1418
  });
1406
1419
  Object.defineProperty(DataGridDescription.prototype, "summaryRootValueTextColor", {
1407
1420
  get: function () {
1408
- return this.ie;
1421
+ return this.ij;
1409
1422
  },
1410
1423
  set: function (a) {
1411
- this.ie = a;
1424
+ this.ij = a;
1412
1425
  this.g("SummaryRootValueTextColor");
1413
1426
  },
1414
1427
  enumerable: false,
@@ -1416,10 +1429,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1416
1429
  });
1417
1430
  Object.defineProperty(DataGridDescription.prototype, "summaryRootValueFontFamily", {
1418
1431
  get: function () {
1419
- return this.ib;
1432
+ return this.ig;
1420
1433
  },
1421
1434
  set: function (a) {
1422
- this.ib = a;
1435
+ this.ig = a;
1423
1436
  this.g("SummaryRootValueFontFamily");
1424
1437
  },
1425
1438
  enumerable: false,
@@ -1427,10 +1440,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1427
1440
  });
1428
1441
  Object.defineProperty(DataGridDescription.prototype, "summaryRootValueFontSize", {
1429
1442
  get: function () {
1430
- return this.dq;
1443
+ return this.du;
1431
1444
  },
1432
1445
  set: function (a) {
1433
- this.dq = a;
1446
+ this.du = a;
1434
1447
  this.g("SummaryRootValueFontSize");
1435
1448
  },
1436
1449
  enumerable: false,
@@ -1438,10 +1451,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1438
1451
  });
1439
1452
  Object.defineProperty(DataGridDescription.prototype, "summaryRootValueFontStyle", {
1440
1453
  get: function () {
1441
- return this.ic;
1454
+ return this.ih;
1442
1455
  },
1443
1456
  set: function (a) {
1444
- this.ic = a;
1457
+ this.ih = a;
1445
1458
  this.g("SummaryRootValueFontStyle");
1446
1459
  },
1447
1460
  enumerable: false,
@@ -1449,10 +1462,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1449
1462
  });
1450
1463
  Object.defineProperty(DataGridDescription.prototype, "summaryRootValueFontWeight", {
1451
1464
  get: function () {
1452
- return this.id;
1465
+ return this.ii;
1453
1466
  },
1454
1467
  set: function (a) {
1455
- this.id = a;
1468
+ this.ii = a;
1456
1469
  this.g("SummaryRootValueFontWeight");
1457
1470
  },
1458
1471
  enumerable: false,
@@ -1460,10 +1473,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1460
1473
  });
1461
1474
  Object.defineProperty(DataGridDescription.prototype, "summarySectionValueFontFamily", {
1462
1475
  get: function () {
1463
- return this.io;
1476
+ return this.is;
1464
1477
  },
1465
1478
  set: function (a) {
1466
- this.io = a;
1479
+ this.is = a;
1467
1480
  this.g("SummarySectionValueFontFamily");
1468
1481
  },
1469
1482
  enumerable: false,
@@ -1471,10 +1484,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1471
1484
  });
1472
1485
  Object.defineProperty(DataGridDescription.prototype, "summarySectionValueFontSize", {
1473
1486
  get: function () {
1474
- return this.ds;
1487
+ return this.dw;
1475
1488
  },
1476
1489
  set: function (a) {
1477
- this.ds = a;
1490
+ this.dw = a;
1478
1491
  this.g("SummarySectionValueFontSize");
1479
1492
  },
1480
1493
  enumerable: false,
@@ -1482,10 +1495,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1482
1495
  });
1483
1496
  Object.defineProperty(DataGridDescription.prototype, "summarySectionValueFontStyle", {
1484
1497
  get: function () {
1485
- return this.ip;
1498
+ return this.it;
1486
1499
  },
1487
1500
  set: function (a) {
1488
- this.ip = a;
1501
+ this.it = a;
1489
1502
  this.g("SummarySectionValueFontStyle");
1490
1503
  },
1491
1504
  enumerable: false,
@@ -1493,10 +1506,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1493
1506
  });
1494
1507
  Object.defineProperty(DataGridDescription.prototype, "summarySectionValueFontWeight", {
1495
1508
  get: function () {
1496
- return this.iq;
1509
+ return this.iu;
1497
1510
  },
1498
1511
  set: function (a) {
1499
- this.iq = a;
1512
+ this.iu = a;
1500
1513
  this.g("SummarySectionValueFontWeight");
1501
1514
  },
1502
1515
  enumerable: false,
@@ -1504,10 +1517,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1504
1517
  });
1505
1518
  Object.defineProperty(DataGridDescription.prototype, "summarySectionValueTextColor", {
1506
1519
  get: function () {
1507
- return this.ir;
1520
+ return this.iv;
1508
1521
  },
1509
1522
  set: function (a) {
1510
- this.ir = a;
1523
+ this.iv = a;
1511
1524
  this.g("SummarySectionValueTextColor");
1512
1525
  },
1513
1526
  enumerable: false,
@@ -1515,10 +1528,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1515
1528
  });
1516
1529
  Object.defineProperty(DataGridDescription.prototype, "summaryRootLabelTextColor", {
1517
1530
  get: function () {
1518
- return this.h9;
1531
+ return this.id;
1519
1532
  },
1520
1533
  set: function (a) {
1521
- this.h9 = a;
1534
+ this.id = a;
1522
1535
  this.g("SummaryRootLabelTextColor");
1523
1536
  },
1524
1537
  enumerable: false,
@@ -1526,10 +1539,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1526
1539
  });
1527
1540
  Object.defineProperty(DataGridDescription.prototype, "summarySectionLabelTextColor", {
1528
1541
  get: function () {
1529
- return this.il;
1542
+ return this.iq;
1530
1543
  },
1531
1544
  set: function (a) {
1532
- this.il = a;
1545
+ this.iq = a;
1533
1546
  this.g("SummarySectionLabelTextColor");
1534
1547
  },
1535
1548
  enumerable: false,
@@ -1537,10 +1550,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1537
1550
  });
1538
1551
  Object.defineProperty(DataGridDescription.prototype, "summaryRootSelectedBackground", {
1539
1552
  get: function () {
1540
- return this.ia;
1553
+ return this.ie;
1541
1554
  },
1542
1555
  set: function (a) {
1543
- this.ia = a;
1556
+ this.ie = a;
1544
1557
  this.g("SummaryRootSelectedBackground");
1545
1558
  },
1546
1559
  enumerable: false,
@@ -1548,10 +1561,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1548
1561
  });
1549
1562
  Object.defineProperty(DataGridDescription.prototype, "summarySectionSelectedBackground", {
1550
1563
  get: function () {
1551
- return this.im;
1564
+ return this.ir;
1552
1565
  },
1553
1566
  set: function (a) {
1554
- this.im = a;
1567
+ this.ir = a;
1555
1568
  this.g("SummarySectionSelectedBackground");
1556
1569
  },
1557
1570
  enumerable: false,
@@ -1559,10 +1572,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1559
1572
  });
1560
1573
  Object.defineProperty(DataGridDescription.prototype, "pinnedAreaSeparatorWidth", {
1561
1574
  get: function () {
1562
- return this.ep;
1575
+ return this.et;
1563
1576
  },
1564
1577
  set: function (a) {
1565
- this.ep = a;
1578
+ this.et = a;
1566
1579
  this.g("PinnedAreaSeparatorWidth");
1567
1580
  },
1568
1581
  enumerable: false,
@@ -1570,10 +1583,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1570
1583
  });
1571
1584
  Object.defineProperty(DataGridDescription.prototype, "headerSeparatorWidth", {
1572
1585
  get: function () {
1573
- return this.en;
1586
+ return this.er;
1574
1587
  },
1575
1588
  set: function (a) {
1576
- this.en = a;
1589
+ this.er = a;
1577
1590
  this.g("HeaderSeparatorWidth");
1578
1591
  },
1579
1592
  enumerable: false,
@@ -1581,10 +1594,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1581
1594
  });
1582
1595
  Object.defineProperty(DataGridDescription.prototype, "headerSeparatorBackground", {
1583
1596
  get: function () {
1584
- return this.gy;
1597
+ return this.g2;
1585
1598
  },
1586
1599
  set: function (a) {
1587
- this.gy = a;
1600
+ this.g2 = a;
1588
1601
  this.g("HeaderSeparatorBackground");
1589
1602
  },
1590
1603
  enumerable: false,
@@ -1592,10 +1605,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1592
1605
  });
1593
1606
  Object.defineProperty(DataGridDescription.prototype, "headerBackground", {
1594
1607
  get: function () {
1595
- return this.gs;
1608
+ return this.gw;
1596
1609
  },
1597
1610
  set: function (a) {
1598
- this.gs = a;
1611
+ this.gw = a;
1599
1612
  this.g("HeaderBackground");
1600
1613
  },
1601
1614
  enumerable: false,
@@ -1603,10 +1616,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1603
1616
  });
1604
1617
  Object.defineProperty(DataGridDescription.prototype, "headerTextColor", {
1605
1618
  get: function () {
1606
- return this.g1;
1619
+ return this.g5;
1607
1620
  },
1608
1621
  set: function (a) {
1609
- this.g1 = a;
1622
+ this.g5 = a;
1610
1623
  this.g("HeaderTextColor");
1611
1624
  },
1612
1625
  enumerable: false,
@@ -1614,10 +1627,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1614
1627
  });
1615
1628
  Object.defineProperty(DataGridDescription.prototype, "headerFontFamily", {
1616
1629
  get: function () {
1617
- return this.gu;
1630
+ return this.gy;
1618
1631
  },
1619
1632
  set: function (a) {
1620
- this.gu = a;
1633
+ this.gy = a;
1621
1634
  this.g("HeaderFontFamily");
1622
1635
  },
1623
1636
  enumerable: false,
@@ -1625,10 +1638,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1625
1638
  });
1626
1639
  Object.defineProperty(DataGridDescription.prototype, "headerFontSize", {
1627
1640
  get: function () {
1628
- return this.dl;
1641
+ return this.dq;
1629
1642
  },
1630
1643
  set: function (a) {
1631
- this.dl = a;
1644
+ this.dq = a;
1632
1645
  this.g("HeaderFontSize");
1633
1646
  },
1634
1647
  enumerable: false,
@@ -1636,10 +1649,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1636
1649
  });
1637
1650
  Object.defineProperty(DataGridDescription.prototype, "headerFontStyle", {
1638
1651
  get: function () {
1639
- return this.gv;
1652
+ return this.gz;
1640
1653
  },
1641
1654
  set: function (a) {
1642
- this.gv = a;
1655
+ this.gz = a;
1643
1656
  this.g("HeaderFontStyle");
1644
1657
  },
1645
1658
  enumerable: false,
@@ -1647,10 +1660,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1647
1660
  });
1648
1661
  Object.defineProperty(DataGridDescription.prototype, "headerFontWeight", {
1649
1662
  get: function () {
1650
- return this.gw;
1663
+ return this.g0;
1651
1664
  },
1652
1665
  set: function (a) {
1653
- this.gw = a;
1666
+ this.g0 = a;
1654
1667
  this.g("HeaderFontWeight");
1655
1668
  },
1656
1669
  enumerable: false,
@@ -1658,10 +1671,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1658
1671
  });
1659
1672
  Object.defineProperty(DataGridDescription.prototype, "rowSeparatorBackground", {
1660
1673
  get: function () {
1661
- return this.hi;
1674
+ return this.hm;
1662
1675
  },
1663
1676
  set: function (a) {
1664
- this.hi = a;
1677
+ this.hm = a;
1665
1678
  this.g("RowSeparatorBackground");
1666
1679
  },
1667
1680
  enumerable: false,
@@ -1669,10 +1682,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1669
1682
  });
1670
1683
  Object.defineProperty(DataGridDescription.prototype, "headerRowSeparatorBackground", {
1671
1684
  get: function () {
1672
- return this.gx;
1685
+ return this.g1;
1673
1686
  },
1674
1687
  set: function (a) {
1675
- this.gx = a;
1688
+ this.g1 = a;
1676
1689
  this.g("HeaderRowSeparatorBackground");
1677
1690
  },
1678
1691
  enumerable: false,
@@ -1680,10 +1693,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1680
1693
  });
1681
1694
  Object.defineProperty(DataGridDescription.prototype, "rowSeparatorStickyRowBackground", {
1682
1695
  get: function () {
1683
- return this.hl;
1696
+ return this.hp;
1684
1697
  },
1685
1698
  set: function (a) {
1686
- this.hl = a;
1699
+ this.hp = a;
1687
1700
  this.g("RowSeparatorStickyRowBackground");
1688
1701
  },
1689
1702
  enumerable: false,
@@ -1691,10 +1704,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1691
1704
  });
1692
1705
  Object.defineProperty(DataGridDescription.prototype, "rowSeparatorLastStickyRowBackground", {
1693
1706
  get: function () {
1694
- return this.hj;
1707
+ return this.hn;
1695
1708
  },
1696
1709
  set: function (a) {
1697
- this.hj = a;
1710
+ this.hn = a;
1698
1711
  this.g("RowSeparatorLastStickyRowBackground");
1699
1712
  },
1700
1713
  enumerable: false,
@@ -1702,10 +1715,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1702
1715
  });
1703
1716
  Object.defineProperty(DataGridDescription.prototype, "rowSeparatorPinnedRowBackground", {
1704
1717
  get: function () {
1705
- return this.hk;
1718
+ return this.ho;
1706
1719
  },
1707
1720
  set: function (a) {
1708
- this.hk = a;
1721
+ this.ho = a;
1709
1722
  this.g("RowSeparatorPinnedRowBackground");
1710
1723
  },
1711
1724
  enumerable: false,
@@ -1713,10 +1726,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1713
1726
  });
1714
1727
  Object.defineProperty(DataGridDescription.prototype, "columnResizingSeparatorWidth", {
1715
1728
  get: function () {
1716
- return this.el;
1729
+ return this.ep;
1717
1730
  },
1718
1731
  set: function (a) {
1719
- this.el = a;
1732
+ this.ep = a;
1720
1733
  this.g("ColumnResizingSeparatorWidth");
1721
1734
  },
1722
1735
  enumerable: false,
@@ -1724,10 +1737,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1724
1737
  });
1725
1738
  Object.defineProperty(DataGridDescription.prototype, "columnResizingSeparatorOpacity", {
1726
1739
  get: function () {
1727
- return this.c9;
1740
+ return this.dd;
1728
1741
  },
1729
1742
  set: function (a) {
1730
- this.c9 = a;
1743
+ this.dd = a;
1731
1744
  this.g("ColumnResizingSeparatorOpacity");
1732
1745
  },
1733
1746
  enumerable: false,
@@ -1735,10 +1748,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1735
1748
  });
1736
1749
  Object.defineProperty(DataGridDescription.prototype, "columnMovingSeparatorWidth", {
1737
1750
  get: function () {
1738
- return this.ek;
1751
+ return this.eo;
1739
1752
  },
1740
1753
  set: function (a) {
1741
- this.ek = a;
1754
+ this.eo = a;
1742
1755
  this.g("ColumnMovingSeparatorWidth");
1743
1756
  },
1744
1757
  enumerable: false,
@@ -1746,10 +1759,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1746
1759
  });
1747
1760
  Object.defineProperty(DataGridDescription.prototype, "columnMovingSeparatorOpacity", {
1748
1761
  get: function () {
1749
- return this.c8;
1762
+ return this.dc;
1750
1763
  },
1751
1764
  set: function (a) {
1752
- this.c8 = a;
1765
+ this.dc = a;
1753
1766
  this.g("ColumnMovingSeparatorOpacity");
1754
1767
  },
1755
1768
  enumerable: false,
@@ -1757,10 +1770,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1757
1770
  });
1758
1771
  Object.defineProperty(DataGridDescription.prototype, "columnResizingSeparatorBackground", {
1759
1772
  get: function () {
1760
- return this.f2;
1773
+ return this.f6;
1761
1774
  },
1762
1775
  set: function (a) {
1763
- this.f2 = a;
1776
+ this.f6 = a;
1764
1777
  this.g("ColumnResizingSeparatorBackground");
1765
1778
  },
1766
1779
  enumerable: false,
@@ -1768,10 +1781,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1768
1781
  });
1769
1782
  Object.defineProperty(DataGridDescription.prototype, "columnMovingSeparatorBackground", {
1770
1783
  get: function () {
1771
- return this.fu;
1784
+ return this.fy;
1772
1785
  },
1773
1786
  set: function (a) {
1774
- this.fu = a;
1787
+ this.fy = a;
1775
1788
  this.g("ColumnMovingSeparatorBackground");
1776
1789
  },
1777
1790
  enumerable: false,
@@ -1779,10 +1792,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1779
1792
  });
1780
1793
  Object.defineProperty(DataGridDescription.prototype, "shiftSectionContent", {
1781
1794
  get: function () {
1782
- return this.b9;
1795
+ return this.cb;
1783
1796
  },
1784
1797
  set: function (a) {
1785
- this.b9 = a;
1798
+ this.cb = a;
1786
1799
  this.g("ShiftSectionContent");
1787
1800
  },
1788
1801
  enumerable: false,
@@ -1790,10 +1803,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1790
1803
  });
1791
1804
  Object.defineProperty(DataGridDescription.prototype, "columnOptionsIconAlignment", {
1792
1805
  get: function () {
1793
- return this.fv;
1806
+ return this.fz;
1794
1807
  },
1795
1808
  set: function (a) {
1796
- this.fv = a;
1809
+ this.fz = a;
1797
1810
  this.g("ColumnOptionsIconAlignment");
1798
1811
  },
1799
1812
  enumerable: false,
@@ -1801,10 +1814,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1801
1814
  });
1802
1815
  Object.defineProperty(DataGridDescription.prototype, "columnOptionsIconColor", {
1803
1816
  get: function () {
1804
- return this.fx;
1817
+ return this.f1;
1805
1818
  },
1806
1819
  set: function (a) {
1807
- this.fx = a;
1820
+ this.f1 = a;
1808
1821
  this.g("ColumnOptionsIconColor");
1809
1822
  },
1810
1823
  enumerable: false,
@@ -1812,10 +1825,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1812
1825
  });
1813
1826
  Object.defineProperty(DataGridDescription.prototype, "columnOptionsIconBehavior", {
1814
1827
  get: function () {
1815
- return this.fw;
1828
+ return this.f0;
1816
1829
  },
1817
1830
  set: function (a) {
1818
- this.fw = a;
1831
+ this.f0 = a;
1819
1832
  this.g("ColumnOptionsIconBehavior");
1820
1833
  },
1821
1834
  enumerable: false,
@@ -1823,10 +1836,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1823
1836
  });
1824
1837
  Object.defineProperty(DataGridDescription.prototype, "border", {
1825
1838
  get: function () {
1826
- return this.e7;
1839
+ return this.fb;
1827
1840
  },
1828
1841
  set: function (a) {
1829
- this.e7 = a;
1842
+ this.fb = a;
1830
1843
  this.g("Border");
1831
1844
  },
1832
1845
  enumerable: false,
@@ -1834,10 +1847,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1834
1847
  });
1835
1848
  Object.defineProperty(DataGridDescription.prototype, "borderWidthBottom", {
1836
1849
  get: function () {
1837
- return this.c3;
1850
+ return this.c7;
1838
1851
  },
1839
1852
  set: function (a) {
1840
- this.c3 = a;
1853
+ this.c7 = a;
1841
1854
  this.g("BorderWidthBottom");
1842
1855
  },
1843
1856
  enumerable: false,
@@ -1845,10 +1858,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1845
1858
  });
1846
1859
  Object.defineProperty(DataGridDescription.prototype, "borderWidthLeft", {
1847
1860
  get: function () {
1848
- return this.c4;
1861
+ return this.c8;
1849
1862
  },
1850
1863
  set: function (a) {
1851
- this.c4 = a;
1864
+ this.c8 = a;
1852
1865
  this.g("BorderWidthLeft");
1853
1866
  },
1854
1867
  enumerable: false,
@@ -1856,10 +1869,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1856
1869
  });
1857
1870
  Object.defineProperty(DataGridDescription.prototype, "borderWidthRight", {
1858
1871
  get: function () {
1859
- return this.c5;
1872
+ return this.c9;
1860
1873
  },
1861
1874
  set: function (a) {
1862
- this.c5 = a;
1875
+ this.c9 = a;
1863
1876
  this.g("BorderWidthRight");
1864
1877
  },
1865
1878
  enumerable: false,
@@ -1867,10 +1880,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1867
1880
  });
1868
1881
  Object.defineProperty(DataGridDescription.prototype, "borderWidthTop", {
1869
1882
  get: function () {
1870
- return this.c6;
1883
+ return this.da;
1871
1884
  },
1872
1885
  set: function (a) {
1873
- this.c6 = a;
1886
+ this.da = a;
1874
1887
  this.g("BorderWidthTop");
1875
1888
  },
1876
1889
  enumerable: false,
@@ -1878,10 +1891,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1878
1891
  });
1879
1892
  Object.defineProperty(DataGridDescription.prototype, "notifyOnAllSelectionChanges", {
1880
1893
  get: function () {
1881
- return this.b5;
1894
+ return this.b7;
1882
1895
  },
1883
1896
  set: function (a) {
1884
- this.b5 = a;
1897
+ this.b7 = a;
1885
1898
  this.g("NotifyOnAllSelectionChanges");
1886
1899
  },
1887
1900
  enumerable: false,
@@ -1889,10 +1902,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1889
1902
  });
1890
1903
  Object.defineProperty(DataGridDescription.prototype, "cornerRadiusBottomRight", {
1891
1904
  get: function () {
1892
- return this.db;
1905
+ return this.df;
1893
1906
  },
1894
1907
  set: function (a) {
1895
- this.db = a;
1908
+ this.df = a;
1896
1909
  this.g("CornerRadiusBottomRight");
1897
1910
  },
1898
1911
  enumerable: false,
@@ -1900,10 +1913,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1900
1913
  });
1901
1914
  Object.defineProperty(DataGridDescription.prototype, "cornerRadiusBottomLeft", {
1902
1915
  get: function () {
1903
- return this.da;
1916
+ return this.de;
1904
1917
  },
1905
1918
  set: function (a) {
1906
- this.da = a;
1919
+ this.de = a;
1907
1920
  this.g("CornerRadiusBottomLeft");
1908
1921
  },
1909
1922
  enumerable: false,
@@ -1911,10 +1924,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1911
1924
  });
1912
1925
  Object.defineProperty(DataGridDescription.prototype, "cornerRadiusTopLeft", {
1913
1926
  get: function () {
1914
- return this.dc;
1927
+ return this.dg;
1915
1928
  },
1916
1929
  set: function (a) {
1917
- this.dc = a;
1930
+ this.dg = a;
1918
1931
  this.g("CornerRadiusTopLeft");
1919
1932
  },
1920
1933
  enumerable: false,
@@ -1922,22 +1935,33 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1922
1935
  });
1923
1936
  Object.defineProperty(DataGridDescription.prototype, "cornerRadiusTopRight", {
1924
1937
  get: function () {
1925
- return this.dd;
1938
+ return this.dh;
1926
1939
  },
1927
1940
  set: function (a) {
1928
- this.dd = a;
1941
+ this.dh = a;
1929
1942
  this.g("CornerRadiusTopRight");
1930
1943
  },
1931
1944
  enumerable: false,
1932
1945
  configurable: true
1933
1946
  });
1934
- Object.defineProperty(DataGridDescription.prototype, "isActiveCellStyleEnabled", {
1947
+ Object.defineProperty(DataGridDescription.prototype, "isActiveCellStyleEnabled", {
1948
+ get: function () {
1949
+ return this.br;
1950
+ },
1951
+ set: function (a) {
1952
+ this.br = a;
1953
+ this.g("IsActiveCellStyleEnabled");
1954
+ },
1955
+ enumerable: false,
1956
+ configurable: true
1957
+ });
1958
+ Object.defineProperty(DataGridDescription.prototype, "stopPropagation", {
1935
1959
  get: function () {
1936
- return this.bp;
1960
+ return this.cc;
1937
1961
  },
1938
1962
  set: function (a) {
1939
- this.bp = a;
1940
- this.g("IsActiveCellStyleEnabled");
1963
+ this.cc = a;
1964
+ this.g("StopPropagation");
1941
1965
  },
1942
1966
  enumerable: false,
1943
1967
  configurable: true
@@ -1988,10 +2012,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1988
2012
  });
1989
2013
  Object.defineProperty(DataGridDescription.prototype, "initialSorts", {
1990
2014
  get: function () {
1991
- return this.g4;
2015
+ return this.g8;
1992
2016
  },
1993
2017
  set: function (a) {
1994
- this.g4 = a;
2018
+ this.g8 = a;
1995
2019
  this.g("InitialSorts");
1996
2020
  },
1997
2021
  enumerable: false,
@@ -1999,10 +2023,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
1999
2023
  });
2000
2024
  Object.defineProperty(DataGridDescription.prototype, "initialGroups", {
2001
2025
  get: function () {
2002
- return this.g3;
2026
+ return this.g7;
2003
2027
  },
2004
2028
  set: function (a) {
2005
- this.g3 = a;
2029
+ this.g7 = a;
2006
2030
  this.g("InitialGroups");
2007
2031
  },
2008
2032
  enumerable: false,
@@ -2010,10 +2034,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2010
2034
  });
2011
2035
  Object.defineProperty(DataGridDescription.prototype, "initialSummaries", {
2012
2036
  get: function () {
2013
- return this.g5;
2037
+ return this.g9;
2014
2038
  },
2015
2039
  set: function (a) {
2016
- this.g5 = a;
2040
+ this.g9 = a;
2017
2041
  this.g("InitialSummaries");
2018
2042
  },
2019
2043
  enumerable: false,
@@ -2065,10 +2089,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2065
2089
  });
2066
2090
  Object.defineProperty(DataGridDescription.prototype, "summaryScope", {
2067
2091
  get: function () {
2068
- return this.ig;
2092
+ return this.ik;
2069
2093
  },
2070
2094
  set: function (a) {
2071
- this.ig = a;
2095
+ this.ik = a;
2072
2096
  this.g("SummaryScope");
2073
2097
  },
2074
2098
  enumerable: false,
@@ -2076,10 +2100,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2076
2100
  });
2077
2101
  Object.defineProperty(DataGridDescription.prototype, "isGroupCollapsable", {
2078
2102
  get: function () {
2079
- return this.bu;
2103
+ return this.bw;
2080
2104
  },
2081
2105
  set: function (a) {
2082
- this.bu = a;
2106
+ this.bw = a;
2083
2107
  this.g("IsGroupCollapsable");
2084
2108
  },
2085
2109
  enumerable: false,
@@ -2087,10 +2111,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2087
2111
  });
2088
2112
  Object.defineProperty(DataGridDescription.prototype, "groupHeaderDisplayMode", {
2089
2113
  get: function () {
2090
- return this.gq;
2114
+ return this.gu;
2091
2115
  },
2092
2116
  set: function (a) {
2093
- this.gq = a;
2117
+ this.gu = a;
2094
2118
  this.g("GroupHeaderDisplayMode");
2095
2119
  },
2096
2120
  enumerable: false,
@@ -2098,10 +2122,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2098
2122
  });
2099
2123
  Object.defineProperty(DataGridDescription.prototype, "isGroupExpandedDefault", {
2100
2124
  get: function () {
2101
- return this.bv;
2125
+ return this.bx;
2102
2126
  },
2103
2127
  set: function (a) {
2104
- this.bv = a;
2128
+ this.bx = a;
2105
2129
  this.g("IsGroupExpandedDefault");
2106
2130
  },
2107
2131
  enumerable: false,
@@ -2109,10 +2133,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2109
2133
  });
2110
2134
  Object.defineProperty(DataGridDescription.prototype, "groupSummaryDisplayMode", {
2111
2135
  get: function () {
2112
- return this.gr;
2136
+ return this.gv;
2113
2137
  },
2114
2138
  set: function (a) {
2115
- this.gr = a;
2139
+ this.gv = a;
2116
2140
  this.g("GroupSummaryDisplayMode");
2117
2141
  },
2118
2142
  enumerable: false,
@@ -2120,10 +2144,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2120
2144
  });
2121
2145
  Object.defineProperty(DataGridDescription.prototype, "autoAcceptEdits", {
2122
2146
  get: function () {
2123
- return this.bk;
2147
+ return this.bm;
2124
2148
  },
2125
2149
  set: function (a) {
2126
- this.bk = a;
2150
+ this.bm = a;
2127
2151
  this.g("AutoAcceptEdits");
2128
2152
  },
2129
2153
  enumerable: false,
@@ -2175,10 +2199,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2175
2199
  });
2176
2200
  Object.defineProperty(DataGridDescription.prototype, "reactsToSortChanges", {
2177
2201
  get: function () {
2178
- return this.b8;
2202
+ return this.ca;
2179
2203
  },
2180
2204
  set: function (a) {
2181
- this.b8 = a;
2205
+ this.ca = a;
2182
2206
  this.g("ReactsToSortChanges");
2183
2207
  },
2184
2208
  enumerable: false,
@@ -2186,10 +2210,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2186
2210
  });
2187
2211
  Object.defineProperty(DataGridDescription.prototype, "reactsToGroupChanges", {
2188
2212
  get: function () {
2189
- return this.b7;
2213
+ return this.b9;
2190
2214
  },
2191
2215
  set: function (a) {
2192
- this.b7 = a;
2216
+ this.b9 = a;
2193
2217
  this.g("ReactsToGroupChanges");
2194
2218
  },
2195
2219
  enumerable: false,
@@ -2197,10 +2221,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2197
2221
  });
2198
2222
  Object.defineProperty(DataGridDescription.prototype, "reactsToFilterChanges", {
2199
2223
  get: function () {
2200
- return this.b6;
2224
+ return this.b8;
2201
2225
  },
2202
2226
  set: function (a) {
2203
- this.b6 = a;
2227
+ this.b8 = a;
2204
2228
  this.g("ReactsToFilterChanges");
2205
2229
  },
2206
2230
  enumerable: false,
@@ -2208,10 +2232,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2208
2232
  });
2209
2233
  Object.defineProperty(DataGridDescription.prototype, "enterBehavior", {
2210
2234
  get: function () {
2211
- return this.gi;
2235
+ return this.gm;
2212
2236
  },
2213
2237
  set: function (a) {
2214
- this.gi = a;
2238
+ this.gm = a;
2215
2239
  this.g("EnterBehavior");
2216
2240
  },
2217
2241
  enumerable: false,
@@ -2219,10 +2243,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2219
2243
  });
2220
2244
  Object.defineProperty(DataGridDescription.prototype, "enterBehaviorAfterEdit", {
2221
2245
  get: function () {
2222
- return this.gj;
2246
+ return this.gn;
2223
2247
  },
2224
2248
  set: function (a) {
2225
- this.gj = a;
2249
+ this.gn = a;
2226
2250
  this.g("EnterBehaviorAfterEdit");
2227
2251
  },
2228
2252
  enumerable: false,
@@ -2230,10 +2254,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2230
2254
  });
2231
2255
  Object.defineProperty(DataGridDescription.prototype, "isColumnOptionsSummariesEnabled", {
2232
2256
  get: function () {
2233
- return this.bs;
2257
+ return this.bu;
2234
2258
  },
2235
2259
  set: function (a) {
2236
- this.bs = a;
2260
+ this.bu = a;
2237
2261
  this.g("IsColumnOptionsSummariesEnabled");
2238
2262
  },
2239
2263
  enumerable: false,
@@ -2241,10 +2265,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2241
2265
  });
2242
2266
  Object.defineProperty(DataGridDescription.prototype, "isColumnOptionsGroupingEnabled", {
2243
2267
  get: function () {
2244
- return this.br;
2268
+ return this.bt;
2245
2269
  },
2246
2270
  set: function (a) {
2247
- this.br = a;
2271
+ this.bt = a;
2248
2272
  this.g("IsColumnOptionsGroupingEnabled");
2249
2273
  },
2250
2274
  enumerable: false,
@@ -2252,10 +2276,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2252
2276
  });
2253
2277
  Object.defineProperty(DataGridDescription.prototype, "mergedCellMode", {
2254
2278
  get: function () {
2255
- return this.g8;
2279
+ return this.hc;
2256
2280
  },
2257
2281
  set: function (a) {
2258
- this.g8 = a;
2282
+ this.hc = a;
2259
2283
  this.g("MergedCellMode");
2260
2284
  },
2261
2285
  enumerable: false,
@@ -2263,10 +2287,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2263
2287
  });
2264
2288
  Object.defineProperty(DataGridDescription.prototype, "mergedCellEvaluationCriteria", {
2265
2289
  get: function () {
2266
- return this.g7;
2290
+ return this.hb;
2267
2291
  },
2268
2292
  set: function (a) {
2269
- this.g7 = a;
2293
+ this.hb = a;
2270
2294
  this.g("MergedCellEvaluationCriteria");
2271
2295
  },
2272
2296
  enumerable: false,
@@ -2274,10 +2298,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2274
2298
  });
2275
2299
  Object.defineProperty(DataGridDescription.prototype, "mergedCellVerticalAlignment", {
2276
2300
  get: function () {
2277
- return this.g9;
2301
+ return this.hd;
2278
2302
  },
2279
2303
  set: function (a) {
2280
- this.g9 = a;
2304
+ this.hd = a;
2281
2305
  this.g("MergedCellVerticalAlignment");
2282
2306
  },
2283
2307
  enumerable: false,
@@ -2285,10 +2309,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2285
2309
  });
2286
2310
  Object.defineProperty(DataGridDescription.prototype, "filterUIType", {
2287
2311
  get: function () {
2288
- return this.go;
2312
+ return this.gs;
2289
2313
  },
2290
2314
  set: function (a) {
2291
- this.go = a;
2315
+ this.gs = a;
2292
2316
  this.g("FilterUIType");
2293
2317
  },
2294
2318
  enumerable: false,
@@ -2296,10 +2320,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2296
2320
  });
2297
2321
  Object.defineProperty(DataGridDescription.prototype, "filterLogicalOperator", {
2298
2322
  get: function () {
2299
- return this.gn;
2323
+ return this.gr;
2300
2324
  },
2301
2325
  set: function (a) {
2302
- this.gn = a;
2326
+ this.gr = a;
2303
2327
  this.g("FilterLogicalOperator");
2304
2328
  },
2305
2329
  enumerable: false,
@@ -2307,10 +2331,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2307
2331
  });
2308
2332
  Object.defineProperty(DataGridDescription.prototype, "filterComparisonType", {
2309
2333
  get: function () {
2310
- return this.gk;
2334
+ return this.go;
2311
2335
  },
2312
2336
  set: function (a) {
2313
- this.gk = a;
2337
+ this.go = a;
2314
2338
  this.g("FilterComparisonType");
2315
2339
  },
2316
2340
  enumerable: false,
@@ -2318,10 +2342,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2318
2342
  });
2319
2343
  Object.defineProperty(DataGridDescription.prototype, "todayOverride", {
2320
2344
  get: function () {
2321
- return this.c1;
2345
+ return this.c5;
2322
2346
  },
2323
2347
  set: function (a) {
2324
- this.c1 = a;
2348
+ this.c5 = a;
2325
2349
  this.g("TodayOverride");
2326
2350
  },
2327
2351
  enumerable: false,
@@ -2329,10 +2353,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2329
2353
  });
2330
2354
  Object.defineProperty(DataGridDescription.prototype, "clearSelectionOnEscape", {
2331
2355
  get: function () {
2332
- return this.bm;
2356
+ return this.bo;
2333
2357
  },
2334
2358
  set: function (a) {
2335
- this.bm = a;
2359
+ this.bo = a;
2336
2360
  this.g("ClearSelectionOnEscape");
2337
2361
  },
2338
2362
  enumerable: false,
@@ -2340,10 +2364,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2340
2364
  });
2341
2365
  Object.defineProperty(DataGridDescription.prototype, "pageSize", {
2342
2366
  get: function () {
2343
- return this.eo;
2367
+ return this.es;
2344
2368
  },
2345
2369
  set: function (a) {
2346
- this.eo = a;
2370
+ this.es = a;
2347
2371
  this.g("PageSize");
2348
2372
  },
2349
2373
  enumerable: false,
@@ -2351,10 +2375,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2351
2375
  });
2352
2376
  Object.defineProperty(DataGridDescription.prototype, "isToolbarColumnChooserVisible", {
2353
2377
  get: function () {
2354
- return this.b1;
2378
+ return this.b3;
2355
2379
  },
2356
2380
  set: function (a) {
2357
- this.b1 = a;
2381
+ this.b3 = a;
2358
2382
  this.g("IsToolbarColumnChooserVisible");
2359
2383
  },
2360
2384
  enumerable: false,
@@ -2362,10 +2386,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2362
2386
  });
2363
2387
  Object.defineProperty(DataGridDescription.prototype, "isToolbarColumnPinningVisible", {
2364
2388
  get: function () {
2365
- return this.b2;
2389
+ return this.b4;
2366
2390
  },
2367
2391
  set: function (a) {
2368
- this.b2 = a;
2392
+ this.b4 = a;
2369
2393
  this.g("IsToolbarColumnPinningVisible");
2370
2394
  },
2371
2395
  enumerable: false,
@@ -2373,10 +2397,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2373
2397
  });
2374
2398
  Object.defineProperty(DataGridDescription.prototype, "toolbarTitle", {
2375
2399
  get: function () {
2376
- return this.iw;
2400
+ return this.i0;
2377
2401
  },
2378
2402
  set: function (a) {
2379
- this.iw = a;
2403
+ this.i0 = a;
2380
2404
  this.g("ToolbarTitle");
2381
2405
  },
2382
2406
  enumerable: false,
@@ -2384,10 +2408,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2384
2408
  });
2385
2409
  Object.defineProperty(DataGridDescription.prototype, "toolbarColumnChooserText", {
2386
2410
  get: function () {
2387
- return this.is;
2411
+ return this.iw;
2388
2412
  },
2389
2413
  set: function (a) {
2390
- this.is = a;
2414
+ this.iw = a;
2391
2415
  this.g("ToolbarColumnChooserText");
2392
2416
  },
2393
2417
  enumerable: false,
@@ -2395,10 +2419,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2395
2419
  });
2396
2420
  Object.defineProperty(DataGridDescription.prototype, "toolbarColumnChooserTitle", {
2397
2421
  get: function () {
2398
- return this.it;
2422
+ return this.ix;
2399
2423
  },
2400
2424
  set: function (a) {
2401
- this.it = a;
2425
+ this.ix = a;
2402
2426
  this.g("ToolbarColumnChooserTitle");
2403
2427
  },
2404
2428
  enumerable: false,
@@ -2406,10 +2430,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2406
2430
  });
2407
2431
  Object.defineProperty(DataGridDescription.prototype, "toolbarColumnPinningText", {
2408
2432
  get: function () {
2409
- return this.iu;
2433
+ return this.iy;
2410
2434
  },
2411
2435
  set: function (a) {
2412
- this.iu = a;
2436
+ this.iy = a;
2413
2437
  this.g("ToolbarColumnPinningText");
2414
2438
  },
2415
2439
  enumerable: false,
@@ -2417,10 +2441,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2417
2441
  });
2418
2442
  Object.defineProperty(DataGridDescription.prototype, "toolbarColumnPinningTitle", {
2419
2443
  get: function () {
2420
- return this.iv;
2444
+ return this.iz;
2421
2445
  },
2422
2446
  set: function (a) {
2423
- this.iv = a;
2447
+ this.iz = a;
2424
2448
  this.g("ToolbarColumnPinningTitle");
2425
2449
  },
2426
2450
  enumerable: false,
@@ -2428,10 +2452,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2428
2452
  });
2429
2453
  Object.defineProperty(DataGridDescription.prototype, "scrollbarStyle", {
2430
2454
  get: function () {
2431
- return this.hn;
2455
+ return this.hr;
2432
2456
  },
2433
2457
  set: function (a) {
2434
- this.hn = a;
2458
+ this.hr = a;
2435
2459
  this.g("ScrollbarStyle");
2436
2460
  },
2437
2461
  enumerable: false,
@@ -2439,10 +2463,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2439
2463
  });
2440
2464
  Object.defineProperty(DataGridDescription.prototype, "scrollbarBackground", {
2441
2465
  get: function () {
2442
- return this.hm;
2466
+ return this.hq;
2443
2467
  },
2444
2468
  set: function (a) {
2445
- this.hm = a;
2469
+ this.hq = a;
2446
2470
  this.g("ScrollbarBackground");
2447
2471
  },
2448
2472
  enumerable: false,
@@ -2450,10 +2474,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2450
2474
  });
2451
2475
  Object.defineProperty(DataGridDescription.prototype, "allowCopyOperation", {
2452
2476
  get: function () {
2453
- return this.bj;
2477
+ return this.bl;
2454
2478
  },
2455
2479
  set: function (a) {
2456
- this.bj = a;
2480
+ this.bl = a;
2457
2481
  this.g("AllowCopyOperation");
2458
2482
  },
2459
2483
  enumerable: false,
@@ -2461,10 +2485,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2461
2485
  });
2462
2486
  Object.defineProperty(DataGridDescription.prototype, "deferEventForRowDragSelection", {
2463
2487
  get: function () {
2464
- return this.bn;
2488
+ return this.bp;
2465
2489
  },
2466
2490
  set: function (a) {
2467
- this.bn = a;
2491
+ this.bp = a;
2468
2492
  this.g("DeferEventForRowDragSelection");
2469
2493
  },
2470
2494
  enumerable: false,
@@ -2472,10 +2496,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2472
2496
  });
2473
2497
  Object.defineProperty(DataGridDescription.prototype, "filterExpressionsChangingRef", {
2474
2498
  get: function () {
2475
- return this.gm;
2499
+ return this.gq;
2476
2500
  },
2477
2501
  set: function (a) {
2478
- this.gm = a;
2502
+ this.gq = a;
2479
2503
  this.g("FilterExpressionsChangingRef");
2480
2504
  },
2481
2505
  enumerable: false,
@@ -2483,10 +2507,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2483
2507
  });
2484
2508
  Object.defineProperty(DataGridDescription.prototype, "filterExpressionsChangedRef", {
2485
2509
  get: function () {
2486
- return this.gl;
2510
+ return this.gp;
2487
2511
  },
2488
2512
  set: function (a) {
2489
- this.gl = a;
2513
+ this.gp = a;
2490
2514
  this.g("FilterExpressionsChangedRef");
2491
2515
  },
2492
2516
  enumerable: false,
@@ -2494,10 +2518,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2494
2518
  });
2495
2519
  Object.defineProperty(DataGridDescription.prototype, "cellPreviewPointerDownRef", {
2496
2520
  get: function () {
2497
- return this.fi;
2521
+ return this.fm;
2498
2522
  },
2499
2523
  set: function (a) {
2500
- this.fi = a;
2524
+ this.fm = a;
2501
2525
  this.g("CellPreviewPointerDownRef");
2502
2526
  },
2503
2527
  enumerable: false,
@@ -2505,10 +2529,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2505
2529
  });
2506
2530
  Object.defineProperty(DataGridDescription.prototype, "cellPreviewPointerUpRef", {
2507
2531
  get: function () {
2508
- return this.fj;
2532
+ return this.fn;
2509
2533
  },
2510
2534
  set: function (a) {
2511
- this.fj = a;
2535
+ this.fn = a;
2512
2536
  this.g("CellPreviewPointerUpRef");
2513
2537
  },
2514
2538
  enumerable: false,
@@ -2516,10 +2540,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2516
2540
  });
2517
2541
  Object.defineProperty(DataGridDescription.prototype, "cellPointerDownRef", {
2518
2542
  get: function () {
2519
- return this.fg;
2543
+ return this.fk;
2520
2544
  },
2521
2545
  set: function (a) {
2522
- this.fg = a;
2546
+ this.fk = a;
2523
2547
  this.g("CellPointerDownRef");
2524
2548
  },
2525
2549
  enumerable: false,
@@ -2527,10 +2551,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2527
2551
  });
2528
2552
  Object.defineProperty(DataGridDescription.prototype, "cellPointerUpRef", {
2529
2553
  get: function () {
2530
- return this.fh;
2554
+ return this.fl;
2531
2555
  },
2532
2556
  set: function (a) {
2533
- this.fh = a;
2557
+ this.fl = a;
2534
2558
  this.g("CellPointerUpRef");
2535
2559
  },
2536
2560
  enumerable: false,
@@ -2538,10 +2562,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2538
2562
  });
2539
2563
  Object.defineProperty(DataGridDescription.prototype, "cellClickedRef", {
2540
2564
  get: function () {
2541
- return this.e9;
2565
+ return this.fd;
2542
2566
  },
2543
2567
  set: function (a) {
2544
- this.e9 = a;
2568
+ this.fd = a;
2545
2569
  this.g("CellClickedRef");
2546
2570
  },
2547
2571
  enumerable: false,
@@ -2549,10 +2573,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2549
2573
  });
2550
2574
  Object.defineProperty(DataGridDescription.prototype, "sortDescriptionsChangedRef", {
2551
2575
  get: function () {
2552
- return this.h2;
2576
+ return this.h6;
2553
2577
  },
2554
2578
  set: function (a) {
2555
- this.h2 = a;
2579
+ this.h6 = a;
2556
2580
  this.g("SortDescriptionsChangedRef");
2557
2581
  },
2558
2582
  enumerable: false,
@@ -2560,10 +2584,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2560
2584
  });
2561
2585
  Object.defineProperty(DataGridDescription.prototype, "groupDescriptionsChangedRef", {
2562
2586
  get: function () {
2563
- return this.gp;
2587
+ return this.gt;
2564
2588
  },
2565
2589
  set: function (a) {
2566
- this.gp = a;
2590
+ this.gt = a;
2567
2591
  this.g("GroupDescriptionsChangedRef");
2568
2592
  },
2569
2593
  enumerable: false,
@@ -2571,10 +2595,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2571
2595
  });
2572
2596
  Object.defineProperty(DataGridDescription.prototype, "summaryDescriptionsChangedRef", {
2573
2597
  get: function () {
2574
- return this.h4;
2598
+ return this.h8;
2575
2599
  },
2576
2600
  set: function (a) {
2577
- this.h4 = a;
2601
+ this.h8 = a;
2578
2602
  this.g("SummaryDescriptionsChangedRef");
2579
2603
  },
2580
2604
  enumerable: false,
@@ -2582,10 +2606,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2582
2606
  });
2583
2607
  Object.defineProperty(DataGridDescription.prototype, "columnHiddenChangedRef", {
2584
2608
  get: function () {
2585
- return this.fq;
2609
+ return this.fu;
2586
2610
  },
2587
2611
  set: function (a) {
2588
- this.fq = a;
2612
+ this.fu = a;
2589
2613
  this.g("ColumnHiddenChangedRef");
2590
2614
  },
2591
2615
  enumerable: false,
@@ -2593,10 +2617,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2593
2617
  });
2594
2618
  Object.defineProperty(DataGridDescription.prototype, "columnPinnedChangedRef", {
2595
2619
  get: function () {
2596
- return this.fy;
2620
+ return this.f2;
2597
2621
  },
2598
2622
  set: function (a) {
2599
- this.fy = a;
2623
+ this.f2 = a;
2600
2624
  this.g("ColumnPinnedChangedRef");
2601
2625
  },
2602
2626
  enumerable: false,
@@ -2604,10 +2628,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2604
2628
  });
2605
2629
  Object.defineProperty(DataGridDescription.prototype, "cellValueChangingRef", {
2606
2630
  get: function () {
2607
- return this.fn;
2631
+ return this.fr;
2608
2632
  },
2609
2633
  set: function (a) {
2610
- this.fn = a;
2634
+ this.fr = a;
2611
2635
  this.g("CellValueChangingRef");
2612
2636
  },
2613
2637
  enumerable: false,
@@ -2615,10 +2639,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2615
2639
  });
2616
2640
  Object.defineProperty(DataGridDescription.prototype, "dataCommittedRef", {
2617
2641
  get: function () {
2618
- return this.f7;
2642
+ return this.gb;
2619
2643
  },
2620
2644
  set: function (a) {
2621
- this.f7 = a;
2645
+ this.gb = a;
2622
2646
  this.g("DataCommittedRef");
2623
2647
  },
2624
2648
  enumerable: false,
@@ -2626,10 +2650,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2626
2650
  });
2627
2651
  Object.defineProperty(DataGridDescription.prototype, "dataCommittingRef", {
2628
2652
  get: function () {
2629
- return this.f8;
2653
+ return this.gc;
2630
2654
  },
2631
2655
  set: function (a) {
2632
- this.f8 = a;
2656
+ this.gc = a;
2633
2657
  this.g("DataCommittingRef");
2634
2658
  },
2635
2659
  enumerable: false,
@@ -2637,10 +2661,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2637
2661
  });
2638
2662
  Object.defineProperty(DataGridDescription.prototype, "rootSummariesChangedRef", {
2639
2663
  get: function () {
2640
- return this.hb;
2664
+ return this.hf;
2641
2665
  },
2642
2666
  set: function (a) {
2643
- this.hb = a;
2667
+ this.hf = a;
2644
2668
  this.g("RootSummariesChangedRef");
2645
2669
  },
2646
2670
  enumerable: false,
@@ -2648,10 +2672,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2648
2672
  });
2649
2673
  Object.defineProperty(DataGridDescription.prototype, "sizeChangedRef", {
2650
2674
  get: function () {
2651
- return this.h1;
2675
+ return this.h5;
2652
2676
  },
2653
2677
  set: function (a) {
2654
- this.h1 = a;
2678
+ this.h5 = a;
2655
2679
  this.g("SizeChangedRef");
2656
2680
  },
2657
2681
  enumerable: false,
@@ -2659,10 +2683,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2659
2683
  });
2660
2684
  Object.defineProperty(DataGridDescription.prototype, "actualColumnsChangedRef", {
2661
2685
  get: function () {
2662
- return this.e4;
2686
+ return this.e8;
2663
2687
  },
2664
2688
  set: function (a) {
2665
- this.e4 = a;
2689
+ this.e8 = a;
2666
2690
  this.g("ActualColumnsChangedRef");
2667
2691
  },
2668
2692
  enumerable: false,
@@ -2670,10 +2694,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2670
2694
  });
2671
2695
  Object.defineProperty(DataGridDescription.prototype, "columnsAutoGeneratedRef", {
2672
2696
  get: function () {
2673
- return this.f3;
2697
+ return this.f7;
2674
2698
  },
2675
2699
  set: function (a) {
2676
- this.f3 = a;
2700
+ this.f7 = a;
2677
2701
  this.g("ColumnsAutoGeneratedRef");
2678
2702
  },
2679
2703
  enumerable: false,
@@ -2681,10 +2705,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2681
2705
  });
2682
2706
  Object.defineProperty(DataGridDescription.prototype, "selectedItemsChangedRef", {
2683
2707
  get: function () {
2684
- return this.hw;
2708
+ return this.h0;
2685
2709
  },
2686
2710
  set: function (a) {
2687
- this.hw = a;
2711
+ this.h0 = a;
2688
2712
  this.g("SelectedItemsChangedRef");
2689
2713
  },
2690
2714
  enumerable: false,
@@ -2692,10 +2716,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2692
2716
  });
2693
2717
  Object.defineProperty(DataGridDescription.prototype, "selectedKeysChangedRef", {
2694
2718
  get: function () {
2695
- return this.hx;
2719
+ return this.h1;
2696
2720
  },
2697
2721
  set: function (a) {
2698
- this.hx = a;
2722
+ this.h1 = a;
2699
2723
  this.g("SelectedKeysChangedRef");
2700
2724
  },
2701
2725
  enumerable: false,
@@ -2703,10 +2727,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2703
2727
  });
2704
2728
  Object.defineProperty(DataGridDescription.prototype, "selectedCellsChangedRef", {
2705
2729
  get: function () {
2706
- return this.hv;
2730
+ return this.hz;
2707
2731
  },
2708
2732
  set: function (a) {
2709
- this.hv = a;
2733
+ this.hz = a;
2710
2734
  this.g("SelectedCellsChangedRef");
2711
2735
  },
2712
2736
  enumerable: false,
@@ -2714,10 +2738,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2714
2738
  });
2715
2739
  Object.defineProperty(DataGridDescription.prototype, "selectionChangedRef", {
2716
2740
  get: function () {
2717
- return this.hz;
2741
+ return this.h3;
2718
2742
  },
2719
2743
  set: function (a) {
2720
- this.hz = a;
2744
+ this.h3 = a;
2721
2745
  this.g("SelectionChangedRef");
2722
2746
  },
2723
2747
  enumerable: false,
@@ -2725,10 +2749,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2725
2749
  });
2726
2750
  Object.defineProperty(DataGridDescription.prototype, "activeCellChangedRef", {
2727
2751
  get: function () {
2728
- return this.e3;
2752
+ return this.e7;
2729
2753
  },
2730
2754
  set: function (a) {
2731
- this.e3 = a;
2755
+ this.e7 = a;
2732
2756
  this.g("ActiveCellChangedRef");
2733
2757
  },
2734
2758
  enumerable: false,
@@ -2736,10 +2760,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2736
2760
  });
2737
2761
  Object.defineProperty(DataGridDescription.prototype, "selectedCellRangesChangedRef", {
2738
2762
  get: function () {
2739
- return this.hu;
2763
+ return this.hy;
2740
2764
  },
2741
2765
  set: function (a) {
2742
- this.hu = a;
2766
+ this.hy = a;
2743
2767
  this.g("SelectedCellRangesChangedRef");
2744
2768
  },
2745
2769
  enumerable: false,
@@ -2747,10 +2771,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2747
2771
  });
2748
2772
  Object.defineProperty(DataGridDescription.prototype, "columnWidthChangedRef", {
2749
2773
  get: function () {
2750
- return this.f5;
2774
+ return this.f9;
2751
2775
  },
2752
2776
  set: function (a) {
2753
- this.f5 = a;
2777
+ this.f9 = a;
2754
2778
  this.g("ColumnWidthChangedRef");
2755
2779
  },
2756
2780
  enumerable: false,
@@ -2758,10 +2782,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2758
2782
  });
2759
2783
  Object.defineProperty(DataGridDescription.prototype, "cellEditStartedRef", {
2760
2784
  get: function () {
2761
- return this.fc;
2785
+ return this.fg;
2762
2786
  },
2763
2787
  set: function (a) {
2764
- this.fc = a;
2788
+ this.fg = a;
2765
2789
  this.g("CellEditStartedRef");
2766
2790
  },
2767
2791
  enumerable: false,
@@ -2769,10 +2793,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2769
2793
  });
2770
2794
  Object.defineProperty(DataGridDescription.prototype, "cellEditEndedRef", {
2771
2795
  get: function () {
2772
- return this.fb;
2796
+ return this.ff;
2773
2797
  },
2774
2798
  set: function (a) {
2775
- this.fb = a;
2799
+ this.ff = a;
2776
2800
  this.g("CellEditEndedRef");
2777
2801
  },
2778
2802
  enumerable: false,
@@ -2780,10 +2804,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2780
2804
  });
2781
2805
  Object.defineProperty(DataGridDescription.prototype, "rowEditStartedRef", {
2782
2806
  get: function () {
2783
- return this.hd;
2807
+ return this.hh;
2784
2808
  },
2785
2809
  set: function (a) {
2786
- this.hd = a;
2810
+ this.hh = a;
2787
2811
  this.g("RowEditStartedRef");
2788
2812
  },
2789
2813
  enumerable: false,
@@ -2791,10 +2815,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2791
2815
  });
2792
2816
  Object.defineProperty(DataGridDescription.prototype, "rowEditEndedRef", {
2793
2817
  get: function () {
2794
- return this.hc;
2818
+ return this.hg;
2795
2819
  },
2796
2820
  set: function (a) {
2797
- this.hc = a;
2821
+ this.hg = a;
2798
2822
  this.g("RowEditEndedRef");
2799
2823
  },
2800
2824
  enumerable: false,
@@ -2802,10 +2826,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2802
2826
  });
2803
2827
  Object.defineProperty(DataGridDescription.prototype, "customFilterRequestedRef", {
2804
2828
  get: function () {
2805
- return this.f6;
2829
+ return this.ga;
2806
2830
  },
2807
2831
  set: function (a) {
2808
- this.f6 = a;
2832
+ this.ga = a;
2809
2833
  this.g("CustomFilterRequestedRef");
2810
2834
  },
2811
2835
  enumerable: false,
@@ -2813,10 +2837,10 @@ var DataGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
2813
2837
  });
2814
2838
  Object.defineProperty(DataGridDescription.prototype, "actualPrimaryKeyChangeRef", {
2815
2839
  get: function () {
2816
- return this.e5;
2840
+ return this.e9;
2817
2841
  },
2818
2842
  set: function (a) {
2819
- this.e5 = a;
2843
+ this.e9 = a;
2820
2844
  this.g("ActualPrimaryKeyChangeRef");
2821
2845
  },
2822
2846
  enumerable: false,