@mui/x-data-grid 9.0.0-alpha.1 → 9.0.0-alpha.2

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 (1853) hide show
  1. package/CHANGELOG.md +118 -0
  2. package/DataGrid/DataGrid.d.mts +16 -0
  3. package/DataGrid/DataGrid.js +4 -0
  4. package/DataGrid/DataGrid.mjs +825 -0
  5. package/DataGrid/index.d.mts +1 -0
  6. package/DataGrid/index.mjs +1 -0
  7. package/DataGrid/useDataGridComponent.d.mts +5 -0
  8. package/DataGrid/useDataGridComponent.mjs +104 -0
  9. package/DataGrid/useDataGridProps.d.mts +3 -0
  10. package/DataGrid/useDataGridProps.mjs +50 -0
  11. package/colDef/gridActionsColDef.d.mts +3 -0
  12. package/colDef/gridActionsColDef.mjs +20 -0
  13. package/colDef/gridBooleanColDef.d.mts +2 -0
  14. package/colDef/gridBooleanColDef.mjs +41 -0
  15. package/colDef/gridBooleanOperators.d.mts +2 -0
  16. package/colDef/gridBooleanOperators.mjs +12 -0
  17. package/colDef/gridCheckboxSelectionColDef.d.mts +3 -0
  18. package/colDef/gridCheckboxSelectionColDef.mjs +30 -0
  19. package/colDef/gridDateColDef.d.mts +5 -0
  20. package/colDef/gridDateColDef.js +2 -1
  21. package/colDef/gridDateColDef.mjs +68 -0
  22. package/colDef/gridDateOperators.d.mts +3 -0
  23. package/colDef/gridDateOperators.mjs +108 -0
  24. package/colDef/gridDefaultColumnTypes.d.mts +3 -0
  25. package/colDef/gridDefaultColumnTypes.mjs +22 -0
  26. package/colDef/gridLongTextColDef.d.mts +2 -0
  27. package/colDef/gridLongTextColDef.mjs +10 -0
  28. package/colDef/gridNumericColDef.d.mts +2 -0
  29. package/colDef/gridNumericColDef.mjs +15 -0
  30. package/colDef/gridNumericOperators.d.mts +7 -0
  31. package/colDef/gridNumericOperators.mjs +143 -0
  32. package/colDef/gridSingleSelectColDef.d.mts +2 -0
  33. package/colDef/gridSingleSelectColDef.mjs +61 -0
  34. package/colDef/gridSingleSelectOperators.d.mts +2 -0
  35. package/colDef/gridSingleSelectOperators.mjs +38 -0
  36. package/colDef/gridStringColDef.d.mts +5 -0
  37. package/colDef/gridStringColDef.mjs +28 -0
  38. package/colDef/gridStringOperators.d.mts +4 -0
  39. package/colDef/gridStringOperators.mjs +121 -0
  40. package/colDef/index.d.mts +14 -0
  41. package/colDef/index.mjs +14 -0
  42. package/components/GridColumnHeaders.d.mts +7 -0
  43. package/components/GridColumnHeaders.mjs +88 -0
  44. package/components/GridColumnSortButton.d.mts +16 -0
  45. package/components/GridColumnSortButton.mjs +105 -0
  46. package/components/GridColumnUnsortedIcon.d.mts +7 -0
  47. package/components/GridColumnUnsortedIcon.mjs +17 -0
  48. package/components/GridFooter.d.mts +5 -0
  49. package/components/GridFooter.mjs +42 -0
  50. package/components/GridHeader.mjs +11 -0
  51. package/components/GridHeaders.mjs +49 -0
  52. package/components/GridLoadingOverlay.d.mts +17 -0
  53. package/components/GridLoadingOverlay.mjs +70 -0
  54. package/components/GridNoColumnsOverlay.d.mts +5 -0
  55. package/components/GridNoColumnsOverlay.mjs +38 -0
  56. package/components/GridNoResultsOverlay.d.mts +4 -0
  57. package/components/GridNoResultsOverlay.mjs +16 -0
  58. package/components/GridNoRowsOverlay.d.mts +5 -0
  59. package/components/GridNoRowsOverlay.mjs +25 -0
  60. package/components/GridPagination.mjs +86 -0
  61. package/components/GridRow.d.mts +39 -0
  62. package/components/GridRow.mjs +355 -0
  63. package/components/GridRowCount.mjs +66 -0
  64. package/components/GridRowDragAndDropOverlay.d.mts +7 -0
  65. package/components/GridRowDragAndDropOverlay.mjs +66 -0
  66. package/components/GridScrollArea.d.mts +9 -0
  67. package/components/GridScrollArea.js +9 -11
  68. package/components/GridScrollArea.mjs +254 -0
  69. package/components/GridScrollShadows.mjs +122 -0
  70. package/components/GridScrollbarFillerCell.mjs +16 -0
  71. package/components/GridSelectedRowCount.mjs +69 -0
  72. package/components/GridSkeletonLoadingOverlay.d.mts +14 -0
  73. package/components/GridSkeletonLoadingOverlay.js +2 -1
  74. package/components/GridSkeletonLoadingOverlay.mjs +196 -0
  75. package/components/base/GridBody.d.mts +2 -0
  76. package/components/base/GridBody.mjs +2 -0
  77. package/components/base/GridFooterPlaceholder.mjs +10 -0
  78. package/components/base/GridOverlays.d.mts +11 -0
  79. package/components/base/GridOverlays.mjs +83 -0
  80. package/components/base/index.d.mts +2 -0
  81. package/components/base/index.mjs +2 -0
  82. package/components/cell/GridActionsCell.d.mts +41 -0
  83. package/components/cell/GridActionsCell.js +2 -1
  84. package/components/cell/GridActionsCell.mjs +291 -0
  85. package/components/cell/GridActionsCellItem.d.mts +55 -0
  86. package/components/cell/GridActionsCellItem.mjs +59 -0
  87. package/components/cell/GridBooleanCell.d.mts +13 -0
  88. package/components/cell/GridBooleanCell.mjs +124 -0
  89. package/components/cell/GridCell.d.mts +77 -0
  90. package/components/cell/GridCell.mjs +344 -0
  91. package/components/cell/GridEditBooleanCell.d.mts +17 -0
  92. package/components/cell/GridEditBooleanCell.mjs +144 -0
  93. package/components/cell/GridEditDateCell.d.mts +21 -0
  94. package/components/cell/GridEditDateCell.mjs +199 -0
  95. package/components/cell/GridEditInputCell.d.mts +19 -0
  96. package/components/cell/GridEditInputCell.mjs +105 -0
  97. package/components/cell/GridEditLongTextCell.d.mts +41 -0
  98. package/components/cell/GridEditLongTextCell.mjs +240 -0
  99. package/components/cell/GridEditSingleSelectCell.d.mts +21 -0
  100. package/components/cell/GridEditSingleSelectCell.mjs +192 -0
  101. package/components/cell/GridFooterCell.d.mts +9 -0
  102. package/components/cell/GridFooterCell.mjs +48 -0
  103. package/components/cell/GridLongTextCell.d.mts +43 -0
  104. package/components/cell/GridLongTextCell.mjs +246 -0
  105. package/components/cell/GridSkeletonCell.d.mts +20 -0
  106. package/components/cell/GridSkeletonCell.mjs +105 -0
  107. package/components/cell/index.d.mts +12 -0
  108. package/components/cell/index.mjs +11 -0
  109. package/components/columnHeaders/ColumnHeaderMenuIcon.d.mts +10 -0
  110. package/components/columnHeaders/ColumnHeaderMenuIcon.mjs +66 -0
  111. package/components/columnHeaders/GridBaseColumnHeaders.mjs +47 -0
  112. package/components/columnHeaders/GridColumnGroupHeader.d.mts +21 -0
  113. package/components/columnHeaders/GridColumnGroupHeader.mjs +152 -0
  114. package/components/columnHeaders/GridColumnHeaderFilterIconButton.d.mts +12 -0
  115. package/components/columnHeaders/GridColumnHeaderFilterIconButton.mjs +109 -0
  116. package/components/columnHeaders/GridColumnHeaderItem.d.mts +33 -0
  117. package/components/columnHeaders/GridColumnHeaderItem.mjs +275 -0
  118. package/components/columnHeaders/GridColumnHeaderSeparator.mjs +73 -0
  119. package/components/columnHeaders/GridColumnHeaderSortIcon.d.mts +9 -0
  120. package/components/columnHeaders/GridColumnHeaderSortIcon.mjs +38 -0
  121. package/components/columnHeaders/GridColumnHeaderTitle.mjs +90 -0
  122. package/components/columnHeaders/GridGenericColumnHeaderItem.d.mts +32 -0
  123. package/components/columnHeaders/GridGenericColumnHeaderItem.mjs +82 -0
  124. package/components/columnHeaders/GridIconButtonContainer.mjs +45 -0
  125. package/components/columnHeaders/index.d.mts +5 -0
  126. package/components/columnHeaders/index.mjs +5 -0
  127. package/components/columnSelection/GridCellCheckboxRenderer.d.mts +5 -0
  128. package/components/columnSelection/GridCellCheckboxRenderer.js +1 -1
  129. package/components/columnSelection/GridCellCheckboxRenderer.mjs +174 -0
  130. package/components/columnSelection/GridHeaderCheckbox.d.mts +4 -0
  131. package/components/columnSelection/GridHeaderCheckbox.js +7 -5
  132. package/components/columnSelection/GridHeaderCheckbox.mjs +178 -0
  133. package/components/columnSelection/index.d.mts +2 -0
  134. package/components/columnSelection/index.mjs +2 -0
  135. package/components/columnsManagement/GridColumnsManagement.d.mts +50 -0
  136. package/components/columnsManagement/GridColumnsManagement.mjs +317 -0
  137. package/components/columnsManagement/index.d.mts +1 -0
  138. package/components/columnsManagement/index.mjs +1 -0
  139. package/components/columnsManagement/utils.d.mts +4 -0
  140. package/components/columnsPanel/ColumnsPanelTrigger.d.mts +33 -0
  141. package/components/columnsPanel/ColumnsPanelTrigger.mjs +102 -0
  142. package/components/columnsPanel/index.d.mts +1 -0
  143. package/components/columnsPanel/index.mjs +1 -0
  144. package/components/containers/GridFooterContainer.mjs +56 -0
  145. package/components/containers/GridOverlay.mjs +63 -0
  146. package/components/containers/GridRoot.mjs +88 -0
  147. package/components/containers/GridRootStyles.d.mts +7 -0
  148. package/components/containers/GridRootStyles.mjs +722 -0
  149. package/components/containers/GridToolbarContainer.mjs +69 -0
  150. package/components/containers/index.d.mts +4 -0
  151. package/components/containers/index.mjs +4 -0
  152. package/components/export/ExportCsv.d.mts +30 -0
  153. package/components/export/ExportCsv.mjs +83 -0
  154. package/components/export/ExportPrint.d.mts +30 -0
  155. package/components/export/ExportPrint.mjs +83 -0
  156. package/components/export/index.d.mts +2 -0
  157. package/components/export/index.mjs +2 -0
  158. package/components/filterPanel/FilterPanelTrigger.d.mts +37 -0
  159. package/components/filterPanel/FilterPanelTrigger.mjs +105 -0
  160. package/components/filterPanel/index.d.mts +1 -0
  161. package/components/filterPanel/index.mjs +1 -0
  162. package/components/index.d.mts +26 -0
  163. package/components/index.mjs +26 -0
  164. package/components/menu/GridMenu.d.mts +15 -0
  165. package/components/menu/GridMenu.mjs +110 -0
  166. package/components/menu/columnMenu/GridColumnHeaderMenu.d.mts +26 -0
  167. package/components/menu/columnMenu/GridColumnHeaderMenu.mjs +63 -0
  168. package/components/menu/columnMenu/GridColumnMenu.d.mts +23 -0
  169. package/components/menu/columnMenu/GridColumnMenu.mjs +114 -0
  170. package/components/menu/columnMenu/GridColumnMenuContainer.d.mts +4 -0
  171. package/components/menu/columnMenu/GridColumnMenuContainer.mjs +72 -0
  172. package/components/menu/columnMenu/GridColumnMenuItemProps.d.mts +7 -0
  173. package/components/menu/columnMenu/GridColumnMenuProps.d.mts +20 -0
  174. package/components/menu/columnMenu/index.d.mts +6 -0
  175. package/components/menu/columnMenu/index.mjs +8 -0
  176. package/components/menu/columnMenu/menuItems/GridColumnMenuColumnsItem.d.mts +6 -0
  177. package/components/menu/columnMenu/menuItems/GridColumnMenuColumnsItem.mjs +20 -0
  178. package/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.d.mts +6 -0
  179. package/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.mjs +36 -0
  180. package/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.d.mts +6 -0
  181. package/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.mjs +53 -0
  182. package/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.d.mts +6 -0
  183. package/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.mjs +36 -0
  184. package/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.d.mts +6 -0
  185. package/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.mjs +69 -0
  186. package/components/menu/columnMenu/menuItems/index.d.mts +5 -0
  187. package/components/menu/columnMenu/menuItems/index.mjs +5 -0
  188. package/components/menu/index.d.mts +2 -0
  189. package/components/menu/index.mjs +2 -0
  190. package/components/panel/GridColumnsPanel.d.mts +4 -0
  191. package/components/panel/GridColumnsPanel.mjs +11 -0
  192. package/components/panel/GridPanel.d.mts +21 -0
  193. package/components/panel/GridPanel.mjs +110 -0
  194. package/components/panel/GridPanelContent.mjs +53 -0
  195. package/components/panel/GridPanelContext.js +3 -1
  196. package/components/panel/GridPanelContext.mjs +30 -0
  197. package/components/panel/GridPanelFooter.mjs +50 -0
  198. package/components/panel/GridPanelHeader.mjs +47 -0
  199. package/components/panel/GridPanelWrapper.mjs +50 -0
  200. package/components/panel/GridPreferencesPanel.mjs +43 -0
  201. package/components/panel/filterPanel/GridFilterForm.d.mts +107 -0
  202. package/components/panel/filterPanel/GridFilterForm.js +2 -1
  203. package/components/panel/filterPanel/GridFilterForm.mjs +475 -0
  204. package/components/panel/filterPanel/GridFilterInputBoolean.d.mts +9 -0
  205. package/components/panel/filterPanel/GridFilterInputBoolean.js +2 -1
  206. package/components/panel/filterPanel/GridFilterInputBoolean.mjs +126 -0
  207. package/components/panel/filterPanel/GridFilterInputDate.d.mts +10 -0
  208. package/components/panel/filterPanel/GridFilterInputDate.js +2 -1
  209. package/components/panel/filterPanel/GridFilterInputDate.mjs +138 -0
  210. package/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.d.mts +11 -0
  211. package/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +2 -1
  212. package/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.mjs +114 -0
  213. package/components/panel/filterPanel/GridFilterInputMultipleValue.d.mts +10 -0
  214. package/components/panel/filterPanel/GridFilterInputMultipleValue.js +2 -1
  215. package/components/panel/filterPanel/GridFilterInputMultipleValue.mjs +104 -0
  216. package/components/panel/filterPanel/GridFilterInputSingleSelect.d.mts +10 -0
  217. package/components/panel/filterPanel/GridFilterInputSingleSelect.js +2 -1
  218. package/components/panel/filterPanel/GridFilterInputSingleSelect.mjs +142 -0
  219. package/components/panel/filterPanel/GridFilterInputValue.d.mts +14 -0
  220. package/components/panel/filterPanel/GridFilterInputValue.js +2 -1
  221. package/components/panel/filterPanel/GridFilterInputValue.mjs +124 -0
  222. package/components/panel/filterPanel/GridFilterPanel.d.mts +49 -0
  223. package/components/panel/filterPanel/GridFilterPanel.mjs +250 -0
  224. package/components/panel/filterPanel/filterPanelUtils.d.mts +5 -0
  225. package/components/panel/filterPanel/index.d.mts +10 -0
  226. package/components/panel/filterPanel/index.mjs +8 -0
  227. package/components/panel/index.d.mts +7 -0
  228. package/components/panel/index.mjs +7 -0
  229. package/components/quickFilter/QuickFilter.d.mts +64 -0
  230. package/components/quickFilter/QuickFilter.mjs +191 -0
  231. package/components/quickFilter/QuickFilterClear.d.mts +28 -0
  232. package/components/quickFilter/QuickFilterClear.mjs +77 -0
  233. package/components/quickFilter/QuickFilterContext.js +3 -1
  234. package/components/quickFilter/QuickFilterContext.mjs +13 -0
  235. package/components/quickFilter/QuickFilterControl.d.mts +28 -0
  236. package/components/quickFilter/QuickFilterControl.mjs +124 -0
  237. package/components/quickFilter/QuickFilterTrigger.d.mts +28 -0
  238. package/components/quickFilter/QuickFilterTrigger.mjs +80 -0
  239. package/components/quickFilter/index.d.mts +4 -0
  240. package/components/quickFilter/index.mjs +4 -0
  241. package/components/reexportable.d.mts +1 -0
  242. package/components/reexportable.mjs +1 -0
  243. package/components/toolbar/GridToolbar.d.mts +24 -0
  244. package/components/toolbar/GridToolbar.mjs +88 -0
  245. package/components/toolbar/GridToolbarColumnsButton.d.mts +17 -0
  246. package/components/toolbar/GridToolbarColumnsButton.mjs +85 -0
  247. package/components/toolbar/GridToolbarDensitySelector.d.mts +17 -0
  248. package/components/toolbar/GridToolbarDensitySelector.mjs +123 -0
  249. package/components/toolbar/GridToolbarExport.d.mts +42 -0
  250. package/components/toolbar/GridToolbarExport.mjs +131 -0
  251. package/components/toolbar/GridToolbarExportContainer.d.mts +16 -0
  252. package/components/toolbar/GridToolbarExportContainer.mjs +88 -0
  253. package/components/toolbar/GridToolbarFilterButton.d.mts +18 -0
  254. package/components/toolbar/GridToolbarFilterButton.mjs +149 -0
  255. package/components/toolbar/GridToolbarQuickFilter.d.mts +45 -0
  256. package/components/toolbar/GridToolbarQuickFilter.js +2 -1
  257. package/components/toolbar/GridToolbarQuickFilter.mjs +189 -0
  258. package/components/toolbar/index.d.mts +8 -0
  259. package/components/toolbar/index.mjs +7 -0
  260. package/components/toolbarV8/GridToolbar.d.mts +17 -0
  261. package/components/toolbarV8/GridToolbar.mjs +201 -0
  262. package/components/toolbarV8/Toolbar.mjs +208 -0
  263. package/components/toolbarV8/ToolbarButton.d.mts +23 -0
  264. package/components/toolbarV8/ToolbarButton.mjs +111 -0
  265. package/components/toolbarV8/ToolbarContext.js +3 -1
  266. package/components/toolbarV8/ToolbarContext.mjs +13 -0
  267. package/components/toolbarV8/index.d.mts +2 -0
  268. package/components/toolbarV8/index.mjs +2 -0
  269. package/components/virtualization/GridBottomContainer.mjs +28 -0
  270. package/components/virtualization/GridMainContainer.d.mts +19 -0
  271. package/components/virtualization/GridMainContainer.mjs +57 -0
  272. package/components/virtualization/GridTopContainer.mjs +28 -0
  273. package/components/virtualization/GridVirtualScrollbar.mjs +110 -0
  274. package/components/virtualization/GridVirtualScroller.mjs +156 -0
  275. package/components/virtualization/GridVirtualScrollerContent.mjs +46 -0
  276. package/components/virtualization/GridVirtualScrollerFiller.mjs +85 -0
  277. package/components/virtualization/GridVirtualScrollerRenderZone.mjs +41 -0
  278. package/constants/dataGridPropsDefaultValues.d.mts +5 -0
  279. package/constants/dataGridPropsDefaultValues.mjs +63 -0
  280. package/constants/defaultGridSlotsComponents.d.mts +2 -0
  281. package/constants/defaultGridSlotsComponents.mjs +38 -0
  282. package/constants/index.d.mts +4 -0
  283. package/constants/index.mjs +4 -0
  284. package/constants/localeTextConstants.d.mts +2 -0
  285. package/constants/localeTextConstants.js +5 -3
  286. package/constants/localeTextConstants.mjs +298 -0
  287. package/context/GridContextProvider.d.mts +17 -0
  288. package/context/GridContextProvider.mjs +35 -0
  289. package/context/index.d.mts +1 -0
  290. package/context/index.mjs +1 -0
  291. package/hooks/core/gridCoreSelector.d.mts +6 -0
  292. package/hooks/core/gridCoreSelector.mjs +6 -0
  293. package/hooks/core/gridPropsSelectors.d.mts +10 -0
  294. package/hooks/core/gridPropsSelectors.mjs +18 -0
  295. package/hooks/core/index.d.mts +2 -0
  296. package/hooks/core/index.mjs +1 -0
  297. package/hooks/core/pipeProcessing/gridPipeProcessingApi.d.mts +163 -0
  298. package/hooks/core/pipeProcessing/index.d.mts +4 -0
  299. package/hooks/core/pipeProcessing/index.mjs +4 -0
  300. package/hooks/core/pipeProcessing/useGridPipeProcessing.d.mts +32 -0
  301. package/hooks/core/pipeProcessing/useGridPipeProcessing.mjs +124 -0
  302. package/hooks/core/pipeProcessing/useGridRegisterPipeApplier.d.mts +4 -0
  303. package/hooks/core/pipeProcessing/useGridRegisterPipeApplier.mjs +28 -0
  304. package/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.d.mts +4 -0
  305. package/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.mjs +30 -0
  306. package/hooks/core/strategyProcessing/gridStrategyProcessingApi.d.mts +81 -0
  307. package/hooks/core/strategyProcessing/index.d.mts +3 -0
  308. package/hooks/core/strategyProcessing/index.mjs +3 -0
  309. package/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.d.mts +4 -0
  310. package/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.mjs +20 -0
  311. package/hooks/core/strategyProcessing/useGridStrategyProcessing.d.mts +43 -0
  312. package/hooks/core/strategyProcessing/useGridStrategyProcessing.js +3 -2
  313. package/hooks/core/strategyProcessing/useGridStrategyProcessing.mjs +113 -0
  314. package/hooks/core/useGridApiInitialization.d.mts +5 -0
  315. package/hooks/core/useGridApiInitialization.mjs +114 -0
  316. package/hooks/core/useGridInitialization.d.mts +7 -0
  317. package/hooks/core/useGridInitialization.mjs +25 -0
  318. package/hooks/core/useGridIsRtl.d.mts +3 -0
  319. package/hooks/core/useGridLocaleText.d.mts +4 -0
  320. package/hooks/core/useGridLocaleText.js +3 -1
  321. package/hooks/core/useGridLocaleText.mjs +13 -0
  322. package/hooks/core/useGridLoggerFactory.d.mts +4 -0
  323. package/hooks/core/useGridLoggerFactory.js +3 -1
  324. package/hooks/core/useGridLoggerFactory.mjs +45 -0
  325. package/hooks/core/useGridProps.d.mts +6 -0
  326. package/hooks/core/useGridRefs.d.mts +3 -0
  327. package/hooks/core/useGridStateInitialization.d.mts +3 -0
  328. package/hooks/core/useGridStateInitialization.js +2 -1
  329. package/hooks/core/useGridStateInitialization.mjs +98 -0
  330. package/hooks/core/useGridVirtualizer.mjs +265 -0
  331. package/hooks/features/clipboard/useGridClipboard.d.mts +8 -0
  332. package/hooks/features/clipboard/useGridClipboard.mjs +97 -0
  333. package/hooks/features/columnGrouping/gridColumnGroupsInterfaces.d.mts +19 -0
  334. package/hooks/features/columnGrouping/gridColumnGroupsSelector.d.mts +20 -0
  335. package/hooks/features/columnGrouping/gridColumnGroupsSelector.mjs +10 -0
  336. package/hooks/features/columnGrouping/gridColumnGroupsUtils.d.mts +19 -0
  337. package/hooks/features/columnGrouping/gridColumnGroupsUtils.js +4 -3
  338. package/hooks/features/columnGrouping/gridColumnGroupsUtils.mjs +120 -0
  339. package/hooks/features/columnGrouping/index.d.mts +2 -0
  340. package/hooks/features/columnGrouping/index.mjs +2 -0
  341. package/hooks/features/columnGrouping/useGridColumnGrouping.d.mts +10 -0
  342. package/hooks/features/columnGrouping/useGridColumnGrouping.mjs +110 -0
  343. package/hooks/features/columnHeaders/useGridColumnHeaders.d.mts +65 -0
  344. package/hooks/features/columnHeaders/useGridColumnHeaders.mjs +316 -0
  345. package/hooks/features/columnMenu/columnMenuSelector.d.mts +2 -0
  346. package/hooks/features/columnMenu/columnMenuSelector.mjs +2 -0
  347. package/hooks/features/columnMenu/getColumnMenuItemKeys.d.mts +17 -0
  348. package/hooks/features/columnMenu/index.d.mts +2 -0
  349. package/hooks/features/columnMenu/index.mjs +2 -0
  350. package/hooks/features/columnMenu/useGridColumnMenu.d.mts +9 -0
  351. package/hooks/features/columnMenu/useGridColumnMenu.mjs +116 -0
  352. package/hooks/features/columnMenu/useGridColumnMenuSlots.d.mts +13 -0
  353. package/hooks/features/columnMenu/useGridColumnMenuSlots.mjs +54 -0
  354. package/hooks/features/columnResize/columnResizeSelector.d.mts +5 -0
  355. package/hooks/features/columnResize/columnResizeSelector.mjs +3 -0
  356. package/hooks/features/columnResize/gridColumnResizeApi.d.mts +57 -0
  357. package/hooks/features/columnResize/index.d.mts +3 -0
  358. package/hooks/features/columnResize/index.mjs +3 -0
  359. package/hooks/features/columnResize/useGridColumnResize.d.mts +10 -0
  360. package/hooks/features/columnResize/useGridColumnResize.mjs +616 -0
  361. package/hooks/features/columns/gridColumnsInterfaces.d.mts +42 -0
  362. package/hooks/features/columns/gridColumnsSelector.d.mts +114 -0
  363. package/hooks/features/columns/gridColumnsSelector.mjs +142 -0
  364. package/hooks/features/columns/gridColumnsUtils.d.mts +75 -0
  365. package/hooks/features/columns/gridColumnsUtils.mjs +345 -0
  366. package/hooks/features/columns/index.d.mts +2 -0
  367. package/hooks/features/columns/index.mjs +2 -0
  368. package/hooks/features/columns/useGridColumnSpanning.d.mts +7 -0
  369. package/hooks/features/columns/useGridColumnSpanning.mjs +27 -0
  370. package/hooks/features/columns/useGridColumns.d.mts +11 -0
  371. package/hooks/features/columns/useGridColumns.mjs +348 -0
  372. package/hooks/features/dataSource/cache.d.mts +29 -0
  373. package/hooks/features/dataSource/gridDataSourceError.d.mts +31 -0
  374. package/hooks/features/dataSource/gridDataSourceSelector.d.mts +10 -0
  375. package/hooks/features/dataSource/gridDataSourceSelector.mjs +12 -0
  376. package/hooks/features/dataSource/index.d.mts +2 -0
  377. package/hooks/features/dataSource/index.mjs +2 -0
  378. package/hooks/features/dataSource/models.d.mts +47 -0
  379. package/hooks/features/dataSource/useGridDataSource.d.mts +7 -0
  380. package/hooks/features/dataSource/useGridDataSource.mjs +26 -0
  381. package/hooks/features/dataSource/useGridDataSourceBase.d.mts +31 -0
  382. package/hooks/features/dataSource/useGridDataSourceBase.mjs +321 -0
  383. package/hooks/features/dataSource/utils.d.mts +24 -0
  384. package/hooks/features/density/densitySelector.d.mts +8 -0
  385. package/hooks/features/density/densitySelector.mjs +10 -0
  386. package/hooks/features/density/densityState.d.mts +2 -0
  387. package/hooks/features/density/index.d.mts +2 -0
  388. package/hooks/features/density/index.mjs +2 -0
  389. package/hooks/features/density/useGridDensity.d.mts +6 -0
  390. package/hooks/features/density/useGridDensity.mjs +66 -0
  391. package/hooks/features/dimensions/gridDimensionsSelectors.d.mts +42 -0
  392. package/hooks/features/dimensions/gridDimensionsSelectors.mjs +25 -0
  393. package/hooks/features/dimensions/index.d.mts +3 -0
  394. package/hooks/features/dimensions/index.mjs +1 -0
  395. package/hooks/features/dimensions/useGridDimensions.d.mts +10 -0
  396. package/hooks/features/dimensions/useGridDimensions.mjs +144 -0
  397. package/hooks/features/editing/gridEditingSelectors.d.mts +19 -0
  398. package/hooks/features/editing/gridEditingSelectors.mjs +15 -0
  399. package/hooks/features/editing/index.d.mts +1 -0
  400. package/hooks/features/editing/index.mjs +1 -0
  401. package/hooks/features/editing/useGridCellEditable.d.mts +5 -0
  402. package/hooks/features/editing/useGridCellEditable.mjs +9 -0
  403. package/hooks/features/editing/useGridCellEditing.d.mts +4 -0
  404. package/hooks/features/editing/useGridCellEditing.js +3 -2
  405. package/hooks/features/editing/useGridCellEditing.mjs +497 -0
  406. package/hooks/features/editing/useGridEditing.d.mts +7 -0
  407. package/hooks/features/editing/useGridEditing.mjs +125 -0
  408. package/hooks/features/editing/useGridRowEditing.d.mts +4 -0
  409. package/hooks/features/editing/useGridRowEditing.js +3 -2
  410. package/hooks/features/editing/useGridRowEditing.mjs +646 -0
  411. package/hooks/features/editing/utils.d.mts +2 -0
  412. package/hooks/features/events/useGridEvents.d.mts +8 -0
  413. package/hooks/features/events/useGridEvents.mjs +24 -0
  414. package/hooks/features/export/serializers/csvSerializer.d.mts +19 -0
  415. package/hooks/features/export/serializers/csvSerializer.mjs +141 -0
  416. package/hooks/features/export/useGridCsvExport.d.mts +11 -0
  417. package/hooks/features/export/useGridCsvExport.mjs +74 -0
  418. package/hooks/features/export/useGridPrintExport.d.mts +10 -0
  419. package/hooks/features/export/useGridPrintExport.js +2 -1
  420. package/hooks/features/export/useGridPrintExport.mjs +257 -0
  421. package/hooks/features/export/utils.d.mts +20 -0
  422. package/hooks/features/export/utils.mjs +39 -0
  423. package/hooks/features/filter/gridFilterSelector.d.mts +153 -0
  424. package/hooks/features/filter/gridFilterSelector.mjs +206 -0
  425. package/hooks/features/filter/gridFilterState.d.mts +64 -0
  426. package/hooks/features/filter/gridFilterState.mjs +24 -0
  427. package/hooks/features/filter/gridFilterUtils.d.mts +23 -0
  428. package/hooks/features/filter/gridFilterUtils.js +3 -2
  429. package/hooks/features/filter/gridFilterUtils.mjs +325 -0
  430. package/hooks/features/filter/index.d.mts +4 -0
  431. package/hooks/features/filter/index.mjs +2 -0
  432. package/hooks/features/filter/useGridFilter.d.mts +12 -0
  433. package/hooks/features/filter/useGridFilter.mjs +370 -0
  434. package/hooks/features/focus/gridFocusState.d.mts +20 -0
  435. package/hooks/features/focus/gridFocusStateSelector.d.mts +28 -0
  436. package/hooks/features/focus/gridFocusStateSelector.mjs +11 -0
  437. package/hooks/features/focus/index.d.mts +2 -0
  438. package/hooks/features/focus/index.mjs +2 -0
  439. package/hooks/features/focus/useGridFocus.d.mts +11 -0
  440. package/hooks/features/focus/useGridFocus.mjs +447 -0
  441. package/hooks/features/headerFiltering/gridHeaderFilteringSelectors.d.mts +11 -0
  442. package/hooks/features/headerFiltering/gridHeaderFilteringSelectors.mjs +7 -0
  443. package/hooks/features/headerFiltering/index.d.mts +1 -0
  444. package/hooks/features/headerFiltering/index.mjs +1 -0
  445. package/hooks/features/headerFiltering/useGridHeaderFiltering.d.mts +6 -0
  446. package/hooks/features/headerFiltering/useGridHeaderFiltering.mjs +107 -0
  447. package/hooks/features/index.d.mts +20 -0
  448. package/hooks/features/index.mjs +21 -0
  449. package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.d.mts +13 -0
  450. package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.mjs +700 -0
  451. package/hooks/features/keyboardNavigation/utils.d.mts +26 -0
  452. package/hooks/features/keyboardNavigation/utils.mjs +53 -0
  453. package/hooks/features/listView/gridListViewSelectors.d.mts +14 -0
  454. package/hooks/features/listView/gridListViewSelectors.mjs +14 -0
  455. package/hooks/features/listView/index.d.mts +1 -0
  456. package/hooks/features/listView/index.mjs +1 -0
  457. package/hooks/features/listView/useGridListView.d.mts +10 -0
  458. package/hooks/features/listView/useGridListView.mjs +63 -0
  459. package/hooks/features/overlays/gridOverlaysInterfaces.d.mts +3 -0
  460. package/hooks/features/overlays/index.d.mts +1 -0
  461. package/hooks/features/overlays/useGridOverlays.d.mts +12 -0
  462. package/hooks/features/overlays/useGridOverlays.mjs +45 -0
  463. package/hooks/features/pagination/gridPaginationInterfaces.d.mts +58 -0
  464. package/hooks/features/pagination/gridPaginationSelector.d.mts +95 -0
  465. package/hooks/features/pagination/gridPaginationSelector.mjs +156 -0
  466. package/hooks/features/pagination/gridPaginationUtils.d.mts +9 -0
  467. package/hooks/features/pagination/gridPaginationUtils.js +4 -1
  468. package/hooks/features/pagination/gridPaginationUtils.mjs +30 -0
  469. package/hooks/features/pagination/index.d.mts +2 -0
  470. package/hooks/features/pagination/index.mjs +2 -0
  471. package/hooks/features/pagination/useGridPagination.d.mts +10 -0
  472. package/hooks/features/pagination/useGridPagination.mjs +30 -0
  473. package/hooks/features/pagination/useGridPaginationMeta.d.mts +4 -0
  474. package/hooks/features/pagination/useGridPaginationMeta.mjs +79 -0
  475. package/hooks/features/pagination/useGridPaginationModel.d.mts +11 -0
  476. package/hooks/features/pagination/useGridPaginationModel.mjs +239 -0
  477. package/hooks/features/pagination/useGridRowCount.d.mts +4 -0
  478. package/hooks/features/pagination/useGridRowCount.mjs +142 -0
  479. package/hooks/features/pivoting/gridPivotingInterfaces.d.mts +10 -0
  480. package/hooks/features/pivoting/gridPivotingSelectors.d.mts +8 -0
  481. package/hooks/features/pivoting/gridPivotingSelectors.mjs +7 -0
  482. package/hooks/features/pivoting/index.d.mts +2 -0
  483. package/hooks/features/pivoting/index.mjs +2 -0
  484. package/hooks/features/preferencesPanel/gridPreferencePanelSelector.d.mts +5 -0
  485. package/hooks/features/preferencesPanel/gridPreferencePanelSelector.mjs +8 -0
  486. package/hooks/features/preferencesPanel/gridPreferencePanelState.d.mts +13 -0
  487. package/hooks/features/preferencesPanel/index.d.mts +3 -0
  488. package/hooks/features/preferencesPanel/index.mjs +3 -0
  489. package/hooks/features/preferencesPanel/useGridPreferencesPanel.d.mts +9 -0
  490. package/hooks/features/preferencesPanel/useGridPreferencesPanel.mjs +88 -0
  491. package/hooks/features/rowReorder/gridRowReorderInterfaces.d.mts +28 -0
  492. package/hooks/features/rowReorder/gridRowReorderSelector.d.mts +24 -0
  493. package/hooks/features/rowReorder/gridRowReorderSelector.mjs +21 -0
  494. package/hooks/features/rowSelection/gridRowSelectionSelector.d.mts +12 -0
  495. package/hooks/features/rowSelection/gridRowSelectionSelector.mjs +29 -0
  496. package/hooks/features/rowSelection/index.d.mts +1 -0
  497. package/hooks/features/rowSelection/index.mjs +1 -0
  498. package/hooks/features/rowSelection/useGridRowSelection.d.mts +12 -0
  499. package/hooks/features/rowSelection/useGridRowSelection.js +3 -1
  500. package/hooks/features/rowSelection/useGridRowSelection.mjs +602 -0
  501. package/hooks/features/rowSelection/useGridRowSelectionPreProcessors.d.mts +4 -0
  502. package/hooks/features/rowSelection/useGridRowSelectionPreProcessors.js +4 -1
  503. package/hooks/features/rowSelection/useGridRowSelectionPreProcessors.mjs +51 -0
  504. package/hooks/features/rowSelection/utils.d.mts +20 -0
  505. package/hooks/features/rowSelection/utils.mjs +211 -0
  506. package/hooks/features/rows/gridRowSpanningUtils.d.mts +10 -0
  507. package/hooks/features/rows/gridRowSpanningUtils.mjs +45 -0
  508. package/hooks/features/rows/gridRowsInterfaces.d.mts +98 -0
  509. package/hooks/features/rows/gridRowsMetaInterfaces.d.mts +10 -0
  510. package/hooks/features/rows/gridRowsMetaSelector.d.mts +2 -0
  511. package/hooks/features/rows/gridRowsMetaSelector.mjs +2 -0
  512. package/hooks/features/rows/gridRowsSelector.d.mts +80 -0
  513. package/hooks/features/rows/gridRowsSelector.mjs +70 -0
  514. package/hooks/features/rows/gridRowsUtils.d.mts +61 -0
  515. package/hooks/features/rows/gridRowsUtils.js +6 -2
  516. package/hooks/features/rows/gridRowsUtils.mjs +309 -0
  517. package/hooks/features/rows/index.d.mts +5 -0
  518. package/hooks/features/rows/index.mjs +4 -0
  519. package/hooks/features/rows/useGridParamsApi.d.mts +14 -0
  520. package/hooks/features/rows/useGridParamsApi.js +2 -2
  521. package/hooks/features/rows/useGridParamsApi.mjs +117 -0
  522. package/hooks/features/rows/useGridParamsOverridableMethods.d.mts +7 -0
  523. package/hooks/features/rows/useGridParamsOverridableMethods.js +3 -1
  524. package/hooks/features/rows/useGridParamsOverridableMethods.mjs +29 -0
  525. package/hooks/features/rows/useGridRowAriaAttributes.d.mts +2 -0
  526. package/hooks/features/rows/useGridRowAriaAttributes.mjs +19 -0
  527. package/hooks/features/rows/useGridRowSpanning.d.mts +17 -0
  528. package/hooks/features/rows/useGridRowSpanning.mjs +208 -0
  529. package/hooks/features/rows/useGridRows.d.mts +7 -0
  530. package/hooks/features/rows/useGridRows.js +8 -5
  531. package/hooks/features/rows/useGridRows.mjs +485 -0
  532. package/hooks/features/rows/useGridRowsMeta.d.mts +10 -0
  533. package/hooks/features/rows/useGridRowsMeta.mjs +60 -0
  534. package/hooks/features/rows/useGridRowsOverridableMethods.d.mts +7 -0
  535. package/hooks/features/rows/useGridRowsOverridableMethods.js +9 -8
  536. package/hooks/features/rows/useGridRowsOverridableMethods.mjs +94 -0
  537. package/hooks/features/rows/useGridRowsPreProcessors.d.mts +3 -0
  538. package/hooks/features/rows/useGridRowsPreProcessors.mjs +81 -0
  539. package/hooks/features/scroll/useGridScroll.d.mts +12 -0
  540. package/hooks/features/scroll/useGridScroll.mjs +132 -0
  541. package/hooks/features/sorting/gridSortingSelector.d.mts +42 -0
  542. package/hooks/features/sorting/gridSortingSelector.mjs +70 -0
  543. package/hooks/features/sorting/gridSortingState.d.mts +14 -0
  544. package/hooks/features/sorting/gridSortingUtils.d.mts +18 -0
  545. package/hooks/features/sorting/gridSortingUtils.mjs +140 -0
  546. package/hooks/features/sorting/index.d.mts +4 -0
  547. package/hooks/features/sorting/index.mjs +2 -0
  548. package/hooks/features/sorting/useGridSorting.d.mts +10 -0
  549. package/hooks/features/sorting/useGridSorting.mjs +252 -0
  550. package/hooks/features/statePersistence/gridStatePersistenceInterface.d.mts +40 -0
  551. package/hooks/features/statePersistence/index.d.mts +1 -0
  552. package/hooks/features/statePersistence/useGridStatePersistence.d.mts +3 -0
  553. package/hooks/features/statePersistence/useGridStatePersistence.mjs +23 -0
  554. package/hooks/features/virtualization/gridFocusedVirtualCellSelector.d.mts +8 -0
  555. package/hooks/features/virtualization/gridFocusedVirtualCellSelector.mjs +32 -0
  556. package/hooks/features/virtualization/gridVirtualizationSelectors.d.mts +46 -0
  557. package/hooks/features/virtualization/gridVirtualizationSelectors.mjs +45 -0
  558. package/hooks/features/virtualization/index.d.mts +3 -0
  559. package/hooks/features/virtualization/index.mjs +3 -0
  560. package/hooks/features/virtualization/useGridVirtualization.d.mts +10 -0
  561. package/hooks/features/virtualization/useGridVirtualization.mjs +101 -0
  562. package/hooks/index.d.mts +3 -0
  563. package/hooks/index.mjs +3 -0
  564. package/hooks/utils/index.d.mts +10 -0
  565. package/hooks/utils/index.mjs +9 -0
  566. package/hooks/utils/useGridApiContext.d.mts +4 -0
  567. package/hooks/utils/useGridApiContext.js +3 -1
  568. package/hooks/utils/useGridApiContext.mjs +12 -0
  569. package/hooks/utils/useGridApiMethod.d.mts +7 -0
  570. package/hooks/utils/useGridApiRef.d.mts +6 -0
  571. package/hooks/utils/useGridAriaAttributes.mjs +28 -0
  572. package/hooks/utils/useGridConfiguration.d.mts +4 -0
  573. package/hooks/utils/useGridConfiguration.js +3 -1
  574. package/hooks/utils/useGridConfiguration.mjs +12 -0
  575. package/hooks/utils/useGridEvent.d.mts +12 -0
  576. package/hooks/utils/useGridEvent.mjs +94 -0
  577. package/hooks/utils/useGridInitializeState.d.mts +8 -0
  578. package/hooks/utils/useGridLogger.d.mts +4 -0
  579. package/hooks/utils/useGridNativeEventListener.d.mts +3 -0
  580. package/hooks/utils/useGridNativeEventListener.mjs +17 -0
  581. package/hooks/utils/useGridPrivateApiContext.d.mts +6 -0
  582. package/hooks/utils/useGridPrivateApiContext.js +3 -1
  583. package/hooks/utils/useGridPrivateApiContext.mjs +13 -0
  584. package/hooks/utils/useGridRootProps.d.mts +2 -0
  585. package/hooks/utils/useGridRootProps.js +3 -1
  586. package/hooks/utils/useGridRootProps.mjs +12 -0
  587. package/hooks/utils/useGridSelector.d.mts +6 -0
  588. package/hooks/utils/useGridSelector.mjs +84 -0
  589. package/hooks/utils/useGridVisibleRows.d.mts +26 -0
  590. package/hooks/utils/useGridVisibleRows.mjs +17 -0
  591. package/index.d.mts +39 -0
  592. package/index.js +1 -1
  593. package/index.mjs +39 -0
  594. package/internals/demo/index.d.mts +1 -0
  595. package/internals/demo/index.mjs +1 -0
  596. package/internals/index.d.mts +128 -0
  597. package/internals/index.mjs +99 -0
  598. package/internals/utils/attachPinnedStyle.d.mts +2 -0
  599. package/internals/utils/attachPinnedStyle.mjs +9 -0
  600. package/internals/utils/cache.d.mts +9 -0
  601. package/internals/utils/cache.mjs +18 -0
  602. package/internals/utils/getPinnedCellOffset.d.mts +3 -0
  603. package/internals/utils/getPinnedCellOffset.mjs +21 -0
  604. package/internals/utils/gridRowGroupingUtils.mjs +9 -0
  605. package/internals/utils/index.d.mts +5 -0
  606. package/internals/utils/index.mjs +5 -0
  607. package/internals/utils/propValidation.d.mts +4 -0
  608. package/internals/utils/propValidation.mjs +12 -0
  609. package/locales/arSD.d.mts +2 -0
  610. package/locales/arSD.js +4 -3
  611. package/locales/arSD.mjs +310 -0
  612. package/locales/beBY.d.mts +2 -0
  613. package/locales/beBY.js +3 -3
  614. package/locales/beBY.mjs +334 -0
  615. package/locales/bgBG.d.mts +2 -0
  616. package/locales/bgBG.js +3 -3
  617. package/locales/bgBG.mjs +311 -0
  618. package/locales/bnBD.d.mts +2 -0
  619. package/locales/bnBD.js +3 -3
  620. package/locales/bnBD.mjs +309 -0
  621. package/locales/caES.d.mts +2 -0
  622. package/locales/caES.js +4 -3
  623. package/locales/caES.mjs +298 -0
  624. package/locales/csCZ.d.mts +2 -0
  625. package/locales/csCZ.js +4 -3
  626. package/locales/csCZ.mjs +337 -0
  627. package/locales/daDK.d.mts +2 -0
  628. package/locales/daDK.js +3 -3
  629. package/locales/daDK.mjs +310 -0
  630. package/locales/deDE.d.mts +2 -0
  631. package/locales/deDE.js +4 -3
  632. package/locales/deDE.mjs +301 -0
  633. package/locales/elGR.d.mts +2 -0
  634. package/locales/elGR.js +3 -3
  635. package/locales/elGR.mjs +312 -0
  636. package/locales/enUS.d.mts +2 -0
  637. package/locales/enUS.mjs +3 -0
  638. package/locales/esES.d.mts +2 -0
  639. package/locales/esES.js +4 -3
  640. package/locales/esES.mjs +298 -0
  641. package/locales/faIR.d.mts +2 -0
  642. package/locales/faIR.js +3 -3
  643. package/locales/faIR.mjs +310 -0
  644. package/locales/fiFI.d.mts +2 -0
  645. package/locales/fiFI.js +3 -3
  646. package/locales/fiFI.mjs +311 -0
  647. package/locales/frFR.d.mts +2 -0
  648. package/locales/frFR.js +4 -3
  649. package/locales/frFR.mjs +307 -0
  650. package/locales/heIL.d.mts +2 -0
  651. package/locales/heIL.js +4 -3
  652. package/locales/heIL.mjs +309 -0
  653. package/locales/hrHR.d.mts +1 -0
  654. package/locales/hrHR.js +4 -3
  655. package/locales/hrHR.mjs +329 -0
  656. package/locales/huHU.d.mts +2 -0
  657. package/locales/huHU.js +3 -3
  658. package/locales/huHU.mjs +309 -0
  659. package/locales/hyAM.d.mts +2 -0
  660. package/locales/hyAM.js +3 -3
  661. package/locales/hyAM.mjs +335 -0
  662. package/locales/idID.d.mts +4 -0
  663. package/locales/idID.js +4 -3
  664. package/locales/idID.mjs +301 -0
  665. package/locales/index.d.mts +40 -0
  666. package/locales/index.mjs +41 -0
  667. package/locales/isIS.d.mts +2 -0
  668. package/locales/isIS.js +3 -3
  669. package/locales/isIS.mjs +311 -0
  670. package/locales/itIT.d.mts +2 -0
  671. package/locales/itIT.js +4 -3
  672. package/locales/itIT.mjs +299 -0
  673. package/locales/jaJP.d.mts +2 -0
  674. package/locales/jaJP.js +4 -3
  675. package/locales/jaJP.mjs +306 -0
  676. package/locales/koKR.d.mts +2 -0
  677. package/locales/koKR.js +4 -3
  678. package/locales/koKR.mjs +301 -0
  679. package/locales/nbNO.d.mts +2 -0
  680. package/locales/nbNO.js +4 -3
  681. package/locales/nbNO.mjs +309 -0
  682. package/locales/nlNL.d.mts +2 -0
  683. package/locales/nlNL.js +3 -3
  684. package/locales/nlNL.mjs +310 -0
  685. package/locales/nnNO.d.mts +2 -0
  686. package/locales/nnNO.js +4 -3
  687. package/locales/nnNO.mjs +301 -0
  688. package/locales/plPL.d.mts +2 -0
  689. package/locales/plPL.js +4 -3
  690. package/locales/plPL.mjs +306 -0
  691. package/locales/ptBR.d.mts +2 -0
  692. package/locales/ptBR.js +4 -3
  693. package/locales/ptBR.mjs +298 -0
  694. package/locales/ptPT.d.mts +2 -0
  695. package/locales/ptPT.js +4 -3
  696. package/locales/ptPT.mjs +298 -0
  697. package/locales/roRO.d.mts +2 -0
  698. package/locales/roRO.js +3 -3
  699. package/locales/roRO.mjs +309 -0
  700. package/locales/ruRU.d.mts +2 -0
  701. package/locales/ruRU.js +3 -3
  702. package/locales/ruRU.mjs +331 -0
  703. package/locales/skSK.d.mts +2 -0
  704. package/locales/skSK.js +4 -3
  705. package/locales/skSK.mjs +337 -0
  706. package/locales/svSE.d.mts +2 -0
  707. package/locales/svSE.js +3 -3
  708. package/locales/svSE.mjs +311 -0
  709. package/locales/thTH.d.mts +2 -0
  710. package/locales/thTH.js +5 -3
  711. package/locales/thTH.mjs +299 -0
  712. package/locales/trTR.d.mts +2 -0
  713. package/locales/trTR.js +3 -3
  714. package/locales/trTR.mjs +309 -0
  715. package/locales/ukUA.d.mts +2 -0
  716. package/locales/ukUA.js +3 -3
  717. package/locales/ukUA.mjs +331 -0
  718. package/locales/urPK.d.mts +2 -0
  719. package/locales/urPK.js +3 -3
  720. package/locales/urPK.mjs +311 -0
  721. package/locales/viVN.d.mts +2 -0
  722. package/locales/viVN.js +3 -3
  723. package/locales/viVN.mjs +311 -0
  724. package/locales/zhCN.d.mts +2 -0
  725. package/locales/zhCN.js +4 -3
  726. package/locales/zhCN.mjs +307 -0
  727. package/locales/zhHK.d.mts +1 -0
  728. package/locales/zhHK.js +4 -3
  729. package/locales/zhHK.mjs +307 -0
  730. package/locales/zhTW.d.mts +2 -0
  731. package/locales/zhTW.js +4 -3
  732. package/locales/zhTW.mjs +307 -0
  733. package/material/icons/createSvgIcon.d.mts +2 -0
  734. package/material/icons/index.mjs +103 -0
  735. package/material/index.d.mts +6 -0
  736. package/material/index.mjs +851 -0
  737. package/material/variables.d.mts +5 -0
  738. package/material/variables.mjs +131 -0
  739. package/models/api/gridApiCommon.d.mts +38 -0
  740. package/models/api/gridApiCommunity.d.mts +12 -0
  741. package/models/api/gridCallbackDetails.d.mts +15 -0
  742. package/models/api/gridColumnApi.d.mts +74 -0
  743. package/models/api/gridColumnGroupingApi.d.mts +19 -0
  744. package/models/api/gridColumnSpanning.d.mts +28 -0
  745. package/models/api/gridCoreApi.d.mts +96 -0
  746. package/models/api/gridCsvExportApi.d.mts +18 -0
  747. package/models/api/gridDensityApi.d.mts +17 -0
  748. package/models/api/gridEditingApi.d.mts +237 -0
  749. package/models/api/gridFilterApi.d.mts +67 -0
  750. package/models/api/gridFocusApi.d.mts +46 -0
  751. package/models/api/gridHeaderFilteringApi.d.mts +30 -0
  752. package/models/api/gridLocaleTextApi.d.mts +247 -0
  753. package/models/api/gridLoggerApi.d.mts +11 -0
  754. package/models/api/gridParamsApi.d.mts +111 -0
  755. package/models/api/gridPreferencesPanelApi.d.mts +17 -0
  756. package/models/api/gridPrintExportApi.d.mts +11 -0
  757. package/models/api/gridRowApi.d.mts +147 -0
  758. package/models/api/gridRowSelectionApi.d.mts +92 -0
  759. package/models/api/gridRowsMetaApi.d.mts +60 -0
  760. package/models/api/gridScrollApi.d.mts +24 -0
  761. package/models/api/gridSortApi.d.mts +46 -0
  762. package/models/api/gridStateApi.d.mts +33 -0
  763. package/models/api/index.d.mts +23 -0
  764. package/models/api/index.mjs +12 -0
  765. package/models/colDef/gridColDef.d.mts +345 -0
  766. package/models/colDef/gridColDef.d.ts +12 -0
  767. package/models/colDef/gridColumnTypesRecord.d.mts +3 -0
  768. package/models/colDef/index.d.mts +3 -0
  769. package/models/colDef/index.mjs +6 -0
  770. package/models/configuration/gridAggregationConfiguration.d.mts +19 -0
  771. package/models/configuration/gridCellEditableConfiguration.d.mts +19 -0
  772. package/models/configuration/gridConfiguration.d.mts +21 -0
  773. package/models/configuration/gridParamsConfiguration.d.mts +12 -0
  774. package/models/configuration/gridRowConfiguration.d.mts +23 -0
  775. package/models/controlStateItem.d.mts +14 -0
  776. package/models/events/gridEventListener.d.mts +8 -0
  777. package/models/events/gridEventLookup.d.mts +683 -0
  778. package/models/events/gridEventPublisher.d.mts +29 -0
  779. package/models/events/index.d.mts +3 -0
  780. package/models/events/index.mjs +3 -0
  781. package/models/gridApiCaches.d.mts +12 -0
  782. package/models/gridCell.d.mts +30 -0
  783. package/models/gridCellClass.d.mts +12 -0
  784. package/models/gridColumnGrouping.d.mts +43 -0
  785. package/models/gridColumnHeaderClass.d.mts +11 -0
  786. package/models/gridDataSource.d.mts +83 -0
  787. package/models/gridEditRowModel.d.mts +28 -0
  788. package/models/gridExport.d.mts +157 -0
  789. package/models/gridFilterInputComponent.d.mts +32 -0
  790. package/models/gridFilterItem.d.mts +32 -0
  791. package/models/gridFilterModel.d.mts +34 -0
  792. package/models/gridFilterOperator.d.mts +58 -0
  793. package/models/gridHeaderFilteringModel.d.mts +6 -0
  794. package/models/gridIconSlotsComponent.d.mts +213 -0
  795. package/models/gridRowSelectionManager.d.mts +9 -0
  796. package/models/gridRowSelectionModel.d.mts +9 -0
  797. package/models/gridRows.d.mts +180 -0
  798. package/models/gridSlotsComponent.d.mts +235 -0
  799. package/models/gridSlotsComponentsProps.d.mts +133 -0
  800. package/models/gridSortModel.d.mts +35 -0
  801. package/models/gridStateCommunity.d.mts +61 -0
  802. package/models/index.d.mts +31 -0
  803. package/models/index.mjs +29 -0
  804. package/models/params/gridCellParams.d.mts +103 -0
  805. package/models/params/gridColumnGroupHeaderParams.d.mts +30 -0
  806. package/models/params/gridColumnHeaderParams.d.mts +15 -0
  807. package/models/params/gridColumnOrderChangeParams.d.mts +18 -0
  808. package/models/params/gridColumnResizeParams.d.mts +18 -0
  809. package/models/params/gridEditCellParams.d.mts +65 -0
  810. package/models/params/gridPreferencePanelParams.d.mts +2 -0
  811. package/models/params/gridRowParams.d.mts +109 -0
  812. package/models/params/gridRowSelectionCheckboxParams.d.mts +5 -0
  813. package/models/params/gridValueOptionsParams.d.mts +18 -0
  814. package/models/params/index.d.mts +13 -0
  815. package/models/params/index.mjs +13 -0
  816. package/models/props/DataGridProps.d.mts +915 -0
  817. package/models/props/DataGridProps.d.ts +10 -1
  818. package/package.json +182 -15
  819. package/themeAugmentation/index.d.mts +2 -0
  820. package/themeAugmentation/index.mjs +4 -0
  821. package/themeAugmentation/overrides.d.mts +18 -0
  822. package/themeAugmentation/props.d.mts +15 -0
  823. package/utils/assert.js +3 -1
  824. package/utils/assert.mjs +4 -0
  825. package/utils/cellBorderUtils.d.mts +4 -0
  826. package/utils/cellBorderUtils.mjs +24 -0
  827. package/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.d.mts +7 -0
  828. package/utils/cleanupTracking/TimerBasedCleanupTracking.d.mts +9 -0
  829. package/utils/composeGridClasses.d.mts +3 -0
  830. package/utils/composeGridClasses.mjs +5 -0
  831. package/utils/css/context.mjs +60 -0
  832. package/utils/domUtils.d.mts +30 -0
  833. package/utils/domUtils.js +3 -1
  834. package/utils/domUtils.mjs +209 -0
  835. package/utils/exportAs.d.mts +12 -0
  836. package/utils/exportAs.js +3 -1
  837. package/utils/exportAs.mjs +39 -0
  838. package/utils/getGridLocalization.d.mts +13 -0
  839. package/utils/getGridLocalization.d.ts +3 -1
  840. package/utils/getGridLocalization.js +23 -2
  841. package/utils/getGridLocalization.mjs +28 -0
  842. package/utils/getPublicApiRef.d.mts +3 -0
  843. package/utils/index.d.mts +2 -0
  844. package/utils/index.mjs +1 -0
  845. package/utils/rtlFlipSide.d.mts +2 -0
  846. package/utils/rtlFlipSide.mjs +22 -0
  847. package/esm/DataGrid/DataGrid.d.ts +0 -16
  848. package/esm/DataGrid/DataGrid.js +0 -821
  849. package/esm/DataGrid/index.d.ts +0 -1
  850. package/esm/DataGrid/index.js +0 -1
  851. package/esm/DataGrid/useDataGridComponent.d.ts +0 -5
  852. package/esm/DataGrid/useDataGridComponent.js +0 -104
  853. package/esm/DataGrid/useDataGridProps.d.ts +0 -3
  854. package/esm/DataGrid/useDataGridProps.js +0 -50
  855. package/esm/colDef/gridActionsColDef.d.ts +0 -3
  856. package/esm/colDef/gridActionsColDef.js +0 -20
  857. package/esm/colDef/gridBooleanColDef.d.ts +0 -2
  858. package/esm/colDef/gridBooleanColDef.js +0 -41
  859. package/esm/colDef/gridBooleanOperators.d.ts +0 -2
  860. package/esm/colDef/gridBooleanOperators.js +0 -12
  861. package/esm/colDef/gridCheckboxSelectionColDef.d.ts +0 -3
  862. package/esm/colDef/gridCheckboxSelectionColDef.js +0 -30
  863. package/esm/colDef/gridDateColDef.d.ts +0 -5
  864. package/esm/colDef/gridDateColDef.js +0 -67
  865. package/esm/colDef/gridDateOperators.d.ts +0 -3
  866. package/esm/colDef/gridDateOperators.js +0 -108
  867. package/esm/colDef/gridDefaultColumnTypes.d.ts +0 -3
  868. package/esm/colDef/gridDefaultColumnTypes.js +0 -22
  869. package/esm/colDef/gridLongTextColDef.d.ts +0 -2
  870. package/esm/colDef/gridLongTextColDef.js +0 -10
  871. package/esm/colDef/gridNumericColDef.d.ts +0 -2
  872. package/esm/colDef/gridNumericColDef.js +0 -15
  873. package/esm/colDef/gridNumericOperators.d.ts +0 -7
  874. package/esm/colDef/gridNumericOperators.js +0 -143
  875. package/esm/colDef/gridSingleSelectColDef.d.ts +0 -2
  876. package/esm/colDef/gridSingleSelectColDef.js +0 -61
  877. package/esm/colDef/gridSingleSelectOperators.d.ts +0 -2
  878. package/esm/colDef/gridSingleSelectOperators.js +0 -38
  879. package/esm/colDef/gridStringColDef.d.ts +0 -5
  880. package/esm/colDef/gridStringColDef.js +0 -28
  881. package/esm/colDef/gridStringOperators.d.ts +0 -4
  882. package/esm/colDef/gridStringOperators.js +0 -121
  883. package/esm/colDef/index.d.ts +0 -14
  884. package/esm/colDef/index.js +0 -14
  885. package/esm/components/GridColumnHeaders.d.ts +0 -7
  886. package/esm/components/GridColumnHeaders.js +0 -88
  887. package/esm/components/GridColumnSortButton.d.ts +0 -16
  888. package/esm/components/GridColumnSortButton.js +0 -105
  889. package/esm/components/GridColumnUnsortedIcon.d.ts +0 -7
  890. package/esm/components/GridColumnUnsortedIcon.js +0 -17
  891. package/esm/components/GridFooter.d.ts +0 -5
  892. package/esm/components/GridFooter.js +0 -42
  893. package/esm/components/GridHeader.js +0 -11
  894. package/esm/components/GridHeaders.js +0 -49
  895. package/esm/components/GridLoadingOverlay.d.ts +0 -17
  896. package/esm/components/GridLoadingOverlay.js +0 -70
  897. package/esm/components/GridNoColumnsOverlay.d.ts +0 -5
  898. package/esm/components/GridNoColumnsOverlay.js +0 -38
  899. package/esm/components/GridNoResultsOverlay.d.ts +0 -4
  900. package/esm/components/GridNoResultsOverlay.js +0 -16
  901. package/esm/components/GridNoRowsOverlay.d.ts +0 -5
  902. package/esm/components/GridNoRowsOverlay.js +0 -25
  903. package/esm/components/GridPagination.js +0 -86
  904. package/esm/components/GridRow.d.ts +0 -39
  905. package/esm/components/GridRow.js +0 -355
  906. package/esm/components/GridRowCount.js +0 -66
  907. package/esm/components/GridRowDragAndDropOverlay.d.ts +0 -7
  908. package/esm/components/GridRowDragAndDropOverlay.js +0 -66
  909. package/esm/components/GridScrollArea.d.ts +0 -9
  910. package/esm/components/GridScrollArea.js +0 -256
  911. package/esm/components/GridScrollShadows.js +0 -122
  912. package/esm/components/GridScrollbarFillerCell.js +0 -16
  913. package/esm/components/GridSelectedRowCount.js +0 -69
  914. package/esm/components/GridSkeletonLoadingOverlay.d.ts +0 -14
  915. package/esm/components/GridSkeletonLoadingOverlay.js +0 -195
  916. package/esm/components/base/GridBody.d.ts +0 -2
  917. package/esm/components/base/GridBody.js +0 -2
  918. package/esm/components/base/GridFooterPlaceholder.js +0 -10
  919. package/esm/components/base/GridOverlays.d.ts +0 -11
  920. package/esm/components/base/GridOverlays.js +0 -83
  921. package/esm/components/base/index.d.ts +0 -2
  922. package/esm/components/base/index.js +0 -2
  923. package/esm/components/cell/GridActionsCell.d.ts +0 -41
  924. package/esm/components/cell/GridActionsCell.js +0 -290
  925. package/esm/components/cell/GridActionsCellItem.d.ts +0 -55
  926. package/esm/components/cell/GridActionsCellItem.js +0 -59
  927. package/esm/components/cell/GridBooleanCell.d.ts +0 -13
  928. package/esm/components/cell/GridBooleanCell.js +0 -124
  929. package/esm/components/cell/GridCell.d.ts +0 -77
  930. package/esm/components/cell/GridCell.js +0 -344
  931. package/esm/components/cell/GridEditBooleanCell.d.ts +0 -17
  932. package/esm/components/cell/GridEditBooleanCell.js +0 -144
  933. package/esm/components/cell/GridEditDateCell.d.ts +0 -21
  934. package/esm/components/cell/GridEditDateCell.js +0 -199
  935. package/esm/components/cell/GridEditInputCell.d.ts +0 -19
  936. package/esm/components/cell/GridEditInputCell.js +0 -105
  937. package/esm/components/cell/GridEditLongTextCell.d.ts +0 -41
  938. package/esm/components/cell/GridEditLongTextCell.js +0 -240
  939. package/esm/components/cell/GridEditSingleSelectCell.d.ts +0 -21
  940. package/esm/components/cell/GridEditSingleSelectCell.js +0 -192
  941. package/esm/components/cell/GridFooterCell.d.ts +0 -9
  942. package/esm/components/cell/GridFooterCell.js +0 -48
  943. package/esm/components/cell/GridLongTextCell.d.ts +0 -43
  944. package/esm/components/cell/GridLongTextCell.js +0 -246
  945. package/esm/components/cell/GridSkeletonCell.d.ts +0 -20
  946. package/esm/components/cell/GridSkeletonCell.js +0 -105
  947. package/esm/components/cell/index.d.ts +0 -12
  948. package/esm/components/cell/index.js +0 -11
  949. package/esm/components/columnHeaders/ColumnHeaderMenuIcon.d.ts +0 -10
  950. package/esm/components/columnHeaders/ColumnHeaderMenuIcon.js +0 -66
  951. package/esm/components/columnHeaders/GridBaseColumnHeaders.js +0 -47
  952. package/esm/components/columnHeaders/GridColumnGroupHeader.d.ts +0 -21
  953. package/esm/components/columnHeaders/GridColumnGroupHeader.js +0 -152
  954. package/esm/components/columnHeaders/GridColumnHeaderFilterIconButton.d.ts +0 -12
  955. package/esm/components/columnHeaders/GridColumnHeaderFilterIconButton.js +0 -109
  956. package/esm/components/columnHeaders/GridColumnHeaderItem.d.ts +0 -33
  957. package/esm/components/columnHeaders/GridColumnHeaderItem.js +0 -275
  958. package/esm/components/columnHeaders/GridColumnHeaderSeparator.js +0 -73
  959. package/esm/components/columnHeaders/GridColumnHeaderSortIcon.d.ts +0 -9
  960. package/esm/components/columnHeaders/GridColumnHeaderSortIcon.js +0 -38
  961. package/esm/components/columnHeaders/GridColumnHeaderTitle.js +0 -90
  962. package/esm/components/columnHeaders/GridGenericColumnHeaderItem.d.ts +0 -32
  963. package/esm/components/columnHeaders/GridGenericColumnHeaderItem.js +0 -82
  964. package/esm/components/columnHeaders/GridIconButtonContainer.js +0 -45
  965. package/esm/components/columnHeaders/index.d.ts +0 -5
  966. package/esm/components/columnHeaders/index.js +0 -5
  967. package/esm/components/columnSelection/GridCellCheckboxRenderer.d.ts +0 -5
  968. package/esm/components/columnSelection/GridCellCheckboxRenderer.js +0 -174
  969. package/esm/components/columnSelection/GridHeaderCheckbox.d.ts +0 -4
  970. package/esm/components/columnSelection/GridHeaderCheckbox.js +0 -176
  971. package/esm/components/columnSelection/index.d.ts +0 -2
  972. package/esm/components/columnSelection/index.js +0 -2
  973. package/esm/components/columnsManagement/GridColumnsManagement.d.ts +0 -50
  974. package/esm/components/columnsManagement/GridColumnsManagement.js +0 -317
  975. package/esm/components/columnsManagement/index.d.ts +0 -1
  976. package/esm/components/columnsManagement/index.js +0 -1
  977. package/esm/components/columnsManagement/utils.d.ts +0 -4
  978. package/esm/components/columnsPanel/ColumnsPanelTrigger.d.ts +0 -33
  979. package/esm/components/columnsPanel/ColumnsPanelTrigger.js +0 -102
  980. package/esm/components/columnsPanel/index.d.ts +0 -1
  981. package/esm/components/columnsPanel/index.js +0 -1
  982. package/esm/components/containers/GridFooterContainer.js +0 -56
  983. package/esm/components/containers/GridOverlay.js +0 -63
  984. package/esm/components/containers/GridRoot.js +0 -88
  985. package/esm/components/containers/GridRootStyles.d.ts +0 -7
  986. package/esm/components/containers/GridRootStyles.js +0 -722
  987. package/esm/components/containers/GridToolbarContainer.js +0 -69
  988. package/esm/components/containers/index.d.ts +0 -4
  989. package/esm/components/containers/index.js +0 -4
  990. package/esm/components/export/ExportCsv.d.ts +0 -30
  991. package/esm/components/export/ExportCsv.js +0 -83
  992. package/esm/components/export/ExportPrint.d.ts +0 -30
  993. package/esm/components/export/ExportPrint.js +0 -83
  994. package/esm/components/export/index.d.ts +0 -2
  995. package/esm/components/export/index.js +0 -2
  996. package/esm/components/filterPanel/FilterPanelTrigger.d.ts +0 -37
  997. package/esm/components/filterPanel/FilterPanelTrigger.js +0 -105
  998. package/esm/components/filterPanel/index.d.ts +0 -1
  999. package/esm/components/filterPanel/index.js +0 -1
  1000. package/esm/components/index.d.ts +0 -26
  1001. package/esm/components/index.js +0 -26
  1002. package/esm/components/menu/GridMenu.d.ts +0 -15
  1003. package/esm/components/menu/GridMenu.js +0 -110
  1004. package/esm/components/menu/columnMenu/GridColumnHeaderMenu.d.ts +0 -26
  1005. package/esm/components/menu/columnMenu/GridColumnHeaderMenu.js +0 -63
  1006. package/esm/components/menu/columnMenu/GridColumnMenu.d.ts +0 -23
  1007. package/esm/components/menu/columnMenu/GridColumnMenu.js +0 -114
  1008. package/esm/components/menu/columnMenu/GridColumnMenuContainer.d.ts +0 -4
  1009. package/esm/components/menu/columnMenu/GridColumnMenuContainer.js +0 -72
  1010. package/esm/components/menu/columnMenu/GridColumnMenuItemProps.d.ts +0 -7
  1011. package/esm/components/menu/columnMenu/GridColumnMenuProps.d.ts +0 -20
  1012. package/esm/components/menu/columnMenu/index.d.ts +0 -6
  1013. package/esm/components/menu/columnMenu/index.js +0 -8
  1014. package/esm/components/menu/columnMenu/menuItems/GridColumnMenuColumnsItem.d.ts +0 -6
  1015. package/esm/components/menu/columnMenu/menuItems/GridColumnMenuColumnsItem.js +0 -20
  1016. package/esm/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.d.ts +0 -6
  1017. package/esm/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.js +0 -36
  1018. package/esm/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.d.ts +0 -6
  1019. package/esm/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.js +0 -53
  1020. package/esm/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.d.ts +0 -6
  1021. package/esm/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.js +0 -36
  1022. package/esm/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.d.ts +0 -6
  1023. package/esm/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.js +0 -69
  1024. package/esm/components/menu/columnMenu/menuItems/index.d.ts +0 -5
  1025. package/esm/components/menu/columnMenu/menuItems/index.js +0 -5
  1026. package/esm/components/menu/index.d.ts +0 -2
  1027. package/esm/components/menu/index.js +0 -2
  1028. package/esm/components/panel/GridColumnsPanel.d.ts +0 -4
  1029. package/esm/components/panel/GridColumnsPanel.js +0 -11
  1030. package/esm/components/panel/GridPanel.d.ts +0 -21
  1031. package/esm/components/panel/GridPanel.js +0 -110
  1032. package/esm/components/panel/GridPanelContent.js +0 -53
  1033. package/esm/components/panel/GridPanelContext.js +0 -29
  1034. package/esm/components/panel/GridPanelFooter.js +0 -50
  1035. package/esm/components/panel/GridPanelHeader.js +0 -47
  1036. package/esm/components/panel/GridPanelWrapper.js +0 -50
  1037. package/esm/components/panel/GridPreferencesPanel.js +0 -43
  1038. package/esm/components/panel/filterPanel/GridFilterForm.d.ts +0 -107
  1039. package/esm/components/panel/filterPanel/GridFilterForm.js +0 -474
  1040. package/esm/components/panel/filterPanel/GridFilterInputBoolean.d.ts +0 -9
  1041. package/esm/components/panel/filterPanel/GridFilterInputBoolean.js +0 -125
  1042. package/esm/components/panel/filterPanel/GridFilterInputDate.d.ts +0 -10
  1043. package/esm/components/panel/filterPanel/GridFilterInputDate.js +0 -137
  1044. package/esm/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.d.ts +0 -11
  1045. package/esm/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +0 -113
  1046. package/esm/components/panel/filterPanel/GridFilterInputMultipleValue.d.ts +0 -10
  1047. package/esm/components/panel/filterPanel/GridFilterInputMultipleValue.js +0 -103
  1048. package/esm/components/panel/filterPanel/GridFilterInputSingleSelect.d.ts +0 -10
  1049. package/esm/components/panel/filterPanel/GridFilterInputSingleSelect.js +0 -141
  1050. package/esm/components/panel/filterPanel/GridFilterInputValue.d.ts +0 -14
  1051. package/esm/components/panel/filterPanel/GridFilterInputValue.js +0 -123
  1052. package/esm/components/panel/filterPanel/GridFilterPanel.d.ts +0 -49
  1053. package/esm/components/panel/filterPanel/GridFilterPanel.js +0 -250
  1054. package/esm/components/panel/filterPanel/filterPanelUtils.d.ts +0 -5
  1055. package/esm/components/panel/filterPanel/index.d.ts +0 -10
  1056. package/esm/components/panel/filterPanel/index.js +0 -8
  1057. package/esm/components/panel/index.d.ts +0 -7
  1058. package/esm/components/panel/index.js +0 -7
  1059. package/esm/components/quickFilter/QuickFilter.d.ts +0 -64
  1060. package/esm/components/quickFilter/QuickFilter.js +0 -191
  1061. package/esm/components/quickFilter/QuickFilterClear.d.ts +0 -28
  1062. package/esm/components/quickFilter/QuickFilterClear.js +0 -77
  1063. package/esm/components/quickFilter/QuickFilterContext.js +0 -12
  1064. package/esm/components/quickFilter/QuickFilterControl.d.ts +0 -28
  1065. package/esm/components/quickFilter/QuickFilterControl.js +0 -124
  1066. package/esm/components/quickFilter/QuickFilterTrigger.d.ts +0 -28
  1067. package/esm/components/quickFilter/QuickFilterTrigger.js +0 -80
  1068. package/esm/components/quickFilter/index.d.ts +0 -4
  1069. package/esm/components/quickFilter/index.js +0 -4
  1070. package/esm/components/reexportable.d.ts +0 -1
  1071. package/esm/components/reexportable.js +0 -1
  1072. package/esm/components/toolbar/GridToolbar.d.ts +0 -24
  1073. package/esm/components/toolbar/GridToolbar.js +0 -88
  1074. package/esm/components/toolbar/GridToolbarColumnsButton.d.ts +0 -17
  1075. package/esm/components/toolbar/GridToolbarColumnsButton.js +0 -85
  1076. package/esm/components/toolbar/GridToolbarDensitySelector.d.ts +0 -17
  1077. package/esm/components/toolbar/GridToolbarDensitySelector.js +0 -123
  1078. package/esm/components/toolbar/GridToolbarExport.d.ts +0 -42
  1079. package/esm/components/toolbar/GridToolbarExport.js +0 -131
  1080. package/esm/components/toolbar/GridToolbarExportContainer.d.ts +0 -16
  1081. package/esm/components/toolbar/GridToolbarExportContainer.js +0 -88
  1082. package/esm/components/toolbar/GridToolbarFilterButton.d.ts +0 -18
  1083. package/esm/components/toolbar/GridToolbarFilterButton.js +0 -149
  1084. package/esm/components/toolbar/GridToolbarQuickFilter.d.ts +0 -45
  1085. package/esm/components/toolbar/GridToolbarQuickFilter.js +0 -188
  1086. package/esm/components/toolbar/index.d.ts +0 -8
  1087. package/esm/components/toolbar/index.js +0 -7
  1088. package/esm/components/toolbarV8/GridToolbar.d.ts +0 -17
  1089. package/esm/components/toolbarV8/GridToolbar.js +0 -201
  1090. package/esm/components/toolbarV8/Toolbar.js +0 -208
  1091. package/esm/components/toolbarV8/ToolbarButton.d.ts +0 -23
  1092. package/esm/components/toolbarV8/ToolbarButton.js +0 -111
  1093. package/esm/components/toolbarV8/ToolbarContext.js +0 -12
  1094. package/esm/components/toolbarV8/index.d.ts +0 -2
  1095. package/esm/components/toolbarV8/index.js +0 -2
  1096. package/esm/components/virtualization/GridBottomContainer.js +0 -28
  1097. package/esm/components/virtualization/GridMainContainer.d.ts +0 -19
  1098. package/esm/components/virtualization/GridMainContainer.js +0 -57
  1099. package/esm/components/virtualization/GridTopContainer.js +0 -28
  1100. package/esm/components/virtualization/GridVirtualScrollbar.js +0 -110
  1101. package/esm/components/virtualization/GridVirtualScroller.js +0 -156
  1102. package/esm/components/virtualization/GridVirtualScrollerContent.js +0 -46
  1103. package/esm/components/virtualization/GridVirtualScrollerFiller.js +0 -85
  1104. package/esm/components/virtualization/GridVirtualScrollerRenderZone.js +0 -41
  1105. package/esm/constants/dataGridPropsDefaultValues.d.ts +0 -5
  1106. package/esm/constants/dataGridPropsDefaultValues.js +0 -63
  1107. package/esm/constants/defaultGridSlotsComponents.d.ts +0 -2
  1108. package/esm/constants/defaultGridSlotsComponents.js +0 -38
  1109. package/esm/constants/index.d.ts +0 -4
  1110. package/esm/constants/index.js +0 -4
  1111. package/esm/constants/localeTextConstants.d.ts +0 -2
  1112. package/esm/constants/localeTextConstants.js +0 -296
  1113. package/esm/context/GridContextProvider.d.ts +0 -17
  1114. package/esm/context/GridContextProvider.js +0 -35
  1115. package/esm/context/index.d.ts +0 -1
  1116. package/esm/context/index.js +0 -1
  1117. package/esm/hooks/core/gridCoreSelector.d.ts +0 -6
  1118. package/esm/hooks/core/gridCoreSelector.js +0 -6
  1119. package/esm/hooks/core/gridPropsSelectors.d.ts +0 -10
  1120. package/esm/hooks/core/gridPropsSelectors.js +0 -18
  1121. package/esm/hooks/core/index.d.ts +0 -2
  1122. package/esm/hooks/core/index.js +0 -1
  1123. package/esm/hooks/core/pipeProcessing/gridPipeProcessingApi.d.ts +0 -163
  1124. package/esm/hooks/core/pipeProcessing/index.d.ts +0 -4
  1125. package/esm/hooks/core/pipeProcessing/index.js +0 -4
  1126. package/esm/hooks/core/pipeProcessing/useGridPipeProcessing.d.ts +0 -32
  1127. package/esm/hooks/core/pipeProcessing/useGridPipeProcessing.js +0 -124
  1128. package/esm/hooks/core/pipeProcessing/useGridRegisterPipeApplier.d.ts +0 -4
  1129. package/esm/hooks/core/pipeProcessing/useGridRegisterPipeApplier.js +0 -28
  1130. package/esm/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.d.ts +0 -4
  1131. package/esm/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.js +0 -30
  1132. package/esm/hooks/core/strategyProcessing/gridStrategyProcessingApi.d.ts +0 -81
  1133. package/esm/hooks/core/strategyProcessing/index.d.ts +0 -3
  1134. package/esm/hooks/core/strategyProcessing/index.js +0 -3
  1135. package/esm/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.d.ts +0 -4
  1136. package/esm/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.js +0 -20
  1137. package/esm/hooks/core/strategyProcessing/useGridStrategyProcessing.d.ts +0 -43
  1138. package/esm/hooks/core/strategyProcessing/useGridStrategyProcessing.js +0 -112
  1139. package/esm/hooks/core/useGridApiInitialization.d.ts +0 -5
  1140. package/esm/hooks/core/useGridApiInitialization.js +0 -114
  1141. package/esm/hooks/core/useGridInitialization.d.ts +0 -7
  1142. package/esm/hooks/core/useGridInitialization.js +0 -25
  1143. package/esm/hooks/core/useGridIsRtl.d.ts +0 -3
  1144. package/esm/hooks/core/useGridLocaleText.d.ts +0 -4
  1145. package/esm/hooks/core/useGridLocaleText.js +0 -12
  1146. package/esm/hooks/core/useGridLoggerFactory.d.ts +0 -4
  1147. package/esm/hooks/core/useGridLoggerFactory.js +0 -44
  1148. package/esm/hooks/core/useGridProps.d.ts +0 -6
  1149. package/esm/hooks/core/useGridRefs.d.ts +0 -3
  1150. package/esm/hooks/core/useGridStateInitialization.d.ts +0 -3
  1151. package/esm/hooks/core/useGridStateInitialization.js +0 -97
  1152. package/esm/hooks/core/useGridVirtualizer.js +0 -265
  1153. package/esm/hooks/features/clipboard/useGridClipboard.d.ts +0 -8
  1154. package/esm/hooks/features/clipboard/useGridClipboard.js +0 -97
  1155. package/esm/hooks/features/columnGrouping/gridColumnGroupsInterfaces.d.ts +0 -19
  1156. package/esm/hooks/features/columnGrouping/gridColumnGroupsSelector.d.ts +0 -20
  1157. package/esm/hooks/features/columnGrouping/gridColumnGroupsSelector.js +0 -10
  1158. package/esm/hooks/features/columnGrouping/gridColumnGroupsUtils.d.ts +0 -19
  1159. package/esm/hooks/features/columnGrouping/gridColumnGroupsUtils.js +0 -119
  1160. package/esm/hooks/features/columnGrouping/index.d.ts +0 -2
  1161. package/esm/hooks/features/columnGrouping/index.js +0 -2
  1162. package/esm/hooks/features/columnGrouping/useGridColumnGrouping.d.ts +0 -10
  1163. package/esm/hooks/features/columnGrouping/useGridColumnGrouping.js +0 -110
  1164. package/esm/hooks/features/columnHeaders/useGridColumnHeaders.d.ts +0 -65
  1165. package/esm/hooks/features/columnHeaders/useGridColumnHeaders.js +0 -316
  1166. package/esm/hooks/features/columnMenu/columnMenuSelector.d.ts +0 -2
  1167. package/esm/hooks/features/columnMenu/columnMenuSelector.js +0 -2
  1168. package/esm/hooks/features/columnMenu/getColumnMenuItemKeys.d.ts +0 -17
  1169. package/esm/hooks/features/columnMenu/index.d.ts +0 -2
  1170. package/esm/hooks/features/columnMenu/index.js +0 -2
  1171. package/esm/hooks/features/columnMenu/useGridColumnMenu.d.ts +0 -9
  1172. package/esm/hooks/features/columnMenu/useGridColumnMenu.js +0 -116
  1173. package/esm/hooks/features/columnMenu/useGridColumnMenuSlots.d.ts +0 -13
  1174. package/esm/hooks/features/columnMenu/useGridColumnMenuSlots.js +0 -54
  1175. package/esm/hooks/features/columnResize/columnResizeSelector.d.ts +0 -5
  1176. package/esm/hooks/features/columnResize/columnResizeSelector.js +0 -3
  1177. package/esm/hooks/features/columnResize/gridColumnResizeApi.d.ts +0 -57
  1178. package/esm/hooks/features/columnResize/index.d.ts +0 -3
  1179. package/esm/hooks/features/columnResize/index.js +0 -3
  1180. package/esm/hooks/features/columnResize/useGridColumnResize.d.ts +0 -10
  1181. package/esm/hooks/features/columnResize/useGridColumnResize.js +0 -616
  1182. package/esm/hooks/features/columns/gridColumnsInterfaces.d.ts +0 -42
  1183. package/esm/hooks/features/columns/gridColumnsSelector.d.ts +0 -114
  1184. package/esm/hooks/features/columns/gridColumnsSelector.js +0 -142
  1185. package/esm/hooks/features/columns/gridColumnsUtils.d.ts +0 -75
  1186. package/esm/hooks/features/columns/gridColumnsUtils.js +0 -345
  1187. package/esm/hooks/features/columns/index.d.ts +0 -2
  1188. package/esm/hooks/features/columns/index.js +0 -2
  1189. package/esm/hooks/features/columns/useGridColumnSpanning.d.ts +0 -7
  1190. package/esm/hooks/features/columns/useGridColumnSpanning.js +0 -27
  1191. package/esm/hooks/features/columns/useGridColumns.d.ts +0 -11
  1192. package/esm/hooks/features/columns/useGridColumns.js +0 -348
  1193. package/esm/hooks/features/dataSource/cache.d.ts +0 -29
  1194. package/esm/hooks/features/dataSource/gridDataSourceError.d.ts +0 -31
  1195. package/esm/hooks/features/dataSource/gridDataSourceSelector.d.ts +0 -10
  1196. package/esm/hooks/features/dataSource/gridDataSourceSelector.js +0 -12
  1197. package/esm/hooks/features/dataSource/index.d.ts +0 -2
  1198. package/esm/hooks/features/dataSource/index.js +0 -2
  1199. package/esm/hooks/features/dataSource/models.d.ts +0 -47
  1200. package/esm/hooks/features/dataSource/useGridDataSource.d.ts +0 -7
  1201. package/esm/hooks/features/dataSource/useGridDataSource.js +0 -26
  1202. package/esm/hooks/features/dataSource/useGridDataSourceBase.d.ts +0 -31
  1203. package/esm/hooks/features/dataSource/useGridDataSourceBase.js +0 -321
  1204. package/esm/hooks/features/dataSource/utils.d.ts +0 -24
  1205. package/esm/hooks/features/density/densitySelector.d.ts +0 -8
  1206. package/esm/hooks/features/density/densitySelector.js +0 -10
  1207. package/esm/hooks/features/density/densityState.d.ts +0 -2
  1208. package/esm/hooks/features/density/index.d.ts +0 -2
  1209. package/esm/hooks/features/density/index.js +0 -2
  1210. package/esm/hooks/features/density/useGridDensity.d.ts +0 -6
  1211. package/esm/hooks/features/density/useGridDensity.js +0 -66
  1212. package/esm/hooks/features/dimensions/gridDimensionsSelectors.d.ts +0 -42
  1213. package/esm/hooks/features/dimensions/gridDimensionsSelectors.js +0 -25
  1214. package/esm/hooks/features/dimensions/index.d.ts +0 -3
  1215. package/esm/hooks/features/dimensions/index.js +0 -1
  1216. package/esm/hooks/features/dimensions/useGridDimensions.d.ts +0 -10
  1217. package/esm/hooks/features/dimensions/useGridDimensions.js +0 -144
  1218. package/esm/hooks/features/editing/gridEditingSelectors.d.ts +0 -19
  1219. package/esm/hooks/features/editing/gridEditingSelectors.js +0 -15
  1220. package/esm/hooks/features/editing/index.d.ts +0 -1
  1221. package/esm/hooks/features/editing/index.js +0 -1
  1222. package/esm/hooks/features/editing/useGridCellEditable.d.ts +0 -5
  1223. package/esm/hooks/features/editing/useGridCellEditable.js +0 -9
  1224. package/esm/hooks/features/editing/useGridCellEditing.d.ts +0 -4
  1225. package/esm/hooks/features/editing/useGridCellEditing.js +0 -496
  1226. package/esm/hooks/features/editing/useGridEditing.d.ts +0 -7
  1227. package/esm/hooks/features/editing/useGridEditing.js +0 -125
  1228. package/esm/hooks/features/editing/useGridRowEditing.d.ts +0 -4
  1229. package/esm/hooks/features/editing/useGridRowEditing.js +0 -645
  1230. package/esm/hooks/features/editing/utils.d.ts +0 -2
  1231. package/esm/hooks/features/events/useGridEvents.d.ts +0 -8
  1232. package/esm/hooks/features/events/useGridEvents.js +0 -24
  1233. package/esm/hooks/features/export/serializers/csvSerializer.d.ts +0 -19
  1234. package/esm/hooks/features/export/serializers/csvSerializer.js +0 -141
  1235. package/esm/hooks/features/export/useGridCsvExport.d.ts +0 -11
  1236. package/esm/hooks/features/export/useGridCsvExport.js +0 -74
  1237. package/esm/hooks/features/export/useGridPrintExport.d.ts +0 -10
  1238. package/esm/hooks/features/export/useGridPrintExport.js +0 -256
  1239. package/esm/hooks/features/export/utils.d.ts +0 -20
  1240. package/esm/hooks/features/export/utils.js +0 -39
  1241. package/esm/hooks/features/filter/gridFilterSelector.d.ts +0 -153
  1242. package/esm/hooks/features/filter/gridFilterSelector.js +0 -206
  1243. package/esm/hooks/features/filter/gridFilterState.d.ts +0 -64
  1244. package/esm/hooks/features/filter/gridFilterState.js +0 -24
  1245. package/esm/hooks/features/filter/gridFilterUtils.d.ts +0 -23
  1246. package/esm/hooks/features/filter/gridFilterUtils.js +0 -324
  1247. package/esm/hooks/features/filter/index.d.ts +0 -4
  1248. package/esm/hooks/features/filter/index.js +0 -2
  1249. package/esm/hooks/features/filter/useGridFilter.d.ts +0 -12
  1250. package/esm/hooks/features/filter/useGridFilter.js +0 -370
  1251. package/esm/hooks/features/focus/gridFocusState.d.ts +0 -20
  1252. package/esm/hooks/features/focus/gridFocusStateSelector.d.ts +0 -28
  1253. package/esm/hooks/features/focus/gridFocusStateSelector.js +0 -11
  1254. package/esm/hooks/features/focus/index.d.ts +0 -2
  1255. package/esm/hooks/features/focus/index.js +0 -2
  1256. package/esm/hooks/features/focus/useGridFocus.d.ts +0 -11
  1257. package/esm/hooks/features/focus/useGridFocus.js +0 -447
  1258. package/esm/hooks/features/headerFiltering/gridHeaderFilteringSelectors.d.ts +0 -11
  1259. package/esm/hooks/features/headerFiltering/gridHeaderFilteringSelectors.js +0 -7
  1260. package/esm/hooks/features/headerFiltering/index.d.ts +0 -1
  1261. package/esm/hooks/features/headerFiltering/index.js +0 -1
  1262. package/esm/hooks/features/headerFiltering/useGridHeaderFiltering.d.ts +0 -6
  1263. package/esm/hooks/features/headerFiltering/useGridHeaderFiltering.js +0 -107
  1264. package/esm/hooks/features/index.d.ts +0 -20
  1265. package/esm/hooks/features/index.js +0 -21
  1266. package/esm/hooks/features/keyboardNavigation/useGridKeyboardNavigation.d.ts +0 -13
  1267. package/esm/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +0 -700
  1268. package/esm/hooks/features/keyboardNavigation/utils.d.ts +0 -26
  1269. package/esm/hooks/features/keyboardNavigation/utils.js +0 -53
  1270. package/esm/hooks/features/listView/gridListViewSelectors.d.ts +0 -14
  1271. package/esm/hooks/features/listView/gridListViewSelectors.js +0 -14
  1272. package/esm/hooks/features/listView/index.d.ts +0 -1
  1273. package/esm/hooks/features/listView/index.js +0 -1
  1274. package/esm/hooks/features/listView/useGridListView.d.ts +0 -10
  1275. package/esm/hooks/features/listView/useGridListView.js +0 -63
  1276. package/esm/hooks/features/overlays/gridOverlaysInterfaces.d.ts +0 -3
  1277. package/esm/hooks/features/overlays/index.d.ts +0 -1
  1278. package/esm/hooks/features/overlays/useGridOverlays.d.ts +0 -12
  1279. package/esm/hooks/features/overlays/useGridOverlays.js +0 -45
  1280. package/esm/hooks/features/pagination/gridPaginationInterfaces.d.ts +0 -58
  1281. package/esm/hooks/features/pagination/gridPaginationSelector.d.ts +0 -95
  1282. package/esm/hooks/features/pagination/gridPaginationSelector.js +0 -156
  1283. package/esm/hooks/features/pagination/gridPaginationUtils.d.ts +0 -9
  1284. package/esm/hooks/features/pagination/gridPaginationUtils.js +0 -28
  1285. package/esm/hooks/features/pagination/index.d.ts +0 -2
  1286. package/esm/hooks/features/pagination/index.js +0 -2
  1287. package/esm/hooks/features/pagination/useGridPagination.d.ts +0 -10
  1288. package/esm/hooks/features/pagination/useGridPagination.js +0 -30
  1289. package/esm/hooks/features/pagination/useGridPaginationMeta.d.ts +0 -4
  1290. package/esm/hooks/features/pagination/useGridPaginationMeta.js +0 -79
  1291. package/esm/hooks/features/pagination/useGridPaginationModel.d.ts +0 -11
  1292. package/esm/hooks/features/pagination/useGridPaginationModel.js +0 -239
  1293. package/esm/hooks/features/pagination/useGridRowCount.d.ts +0 -4
  1294. package/esm/hooks/features/pagination/useGridRowCount.js +0 -142
  1295. package/esm/hooks/features/pivoting/gridPivotingInterfaces.d.ts +0 -10
  1296. package/esm/hooks/features/pivoting/gridPivotingSelectors.d.ts +0 -8
  1297. package/esm/hooks/features/pivoting/gridPivotingSelectors.js +0 -7
  1298. package/esm/hooks/features/pivoting/index.d.ts +0 -2
  1299. package/esm/hooks/features/pivoting/index.js +0 -2
  1300. package/esm/hooks/features/preferencesPanel/gridPreferencePanelSelector.d.ts +0 -5
  1301. package/esm/hooks/features/preferencesPanel/gridPreferencePanelSelector.js +0 -8
  1302. package/esm/hooks/features/preferencesPanel/gridPreferencePanelState.d.ts +0 -13
  1303. package/esm/hooks/features/preferencesPanel/index.d.ts +0 -3
  1304. package/esm/hooks/features/preferencesPanel/index.js +0 -3
  1305. package/esm/hooks/features/preferencesPanel/useGridPreferencesPanel.d.ts +0 -9
  1306. package/esm/hooks/features/preferencesPanel/useGridPreferencesPanel.js +0 -88
  1307. package/esm/hooks/features/rowReorder/gridRowReorderInterfaces.d.ts +0 -28
  1308. package/esm/hooks/features/rowReorder/gridRowReorderSelector.d.ts +0 -24
  1309. package/esm/hooks/features/rowReorder/gridRowReorderSelector.js +0 -21
  1310. package/esm/hooks/features/rowSelection/gridRowSelectionSelector.d.ts +0 -12
  1311. package/esm/hooks/features/rowSelection/gridRowSelectionSelector.js +0 -29
  1312. package/esm/hooks/features/rowSelection/index.d.ts +0 -1
  1313. package/esm/hooks/features/rowSelection/index.js +0 -1
  1314. package/esm/hooks/features/rowSelection/useGridRowSelection.d.ts +0 -12
  1315. package/esm/hooks/features/rowSelection/useGridRowSelection.js +0 -600
  1316. package/esm/hooks/features/rowSelection/useGridRowSelectionPreProcessors.d.ts +0 -4
  1317. package/esm/hooks/features/rowSelection/useGridRowSelectionPreProcessors.js +0 -48
  1318. package/esm/hooks/features/rowSelection/utils.d.ts +0 -20
  1319. package/esm/hooks/features/rowSelection/utils.js +0 -211
  1320. package/esm/hooks/features/rows/gridRowSpanningUtils.d.ts +0 -10
  1321. package/esm/hooks/features/rows/gridRowSpanningUtils.js +0 -45
  1322. package/esm/hooks/features/rows/gridRowsInterfaces.d.ts +0 -98
  1323. package/esm/hooks/features/rows/gridRowsMetaInterfaces.d.ts +0 -10
  1324. package/esm/hooks/features/rows/gridRowsMetaSelector.d.ts +0 -2
  1325. package/esm/hooks/features/rows/gridRowsMetaSelector.js +0 -2
  1326. package/esm/hooks/features/rows/gridRowsSelector.d.ts +0 -80
  1327. package/esm/hooks/features/rows/gridRowsSelector.js +0 -70
  1328. package/esm/hooks/features/rows/gridRowsUtils.d.ts +0 -61
  1329. package/esm/hooks/features/rows/gridRowsUtils.js +0 -305
  1330. package/esm/hooks/features/rows/index.d.ts +0 -5
  1331. package/esm/hooks/features/rows/index.js +0 -4
  1332. package/esm/hooks/features/rows/useGridParamsApi.d.ts +0 -14
  1333. package/esm/hooks/features/rows/useGridParamsApi.js +0 -117
  1334. package/esm/hooks/features/rows/useGridParamsOverridableMethods.d.ts +0 -7
  1335. package/esm/hooks/features/rows/useGridParamsOverridableMethods.js +0 -28
  1336. package/esm/hooks/features/rows/useGridRowAriaAttributes.d.ts +0 -2
  1337. package/esm/hooks/features/rows/useGridRowAriaAttributes.js +0 -19
  1338. package/esm/hooks/features/rows/useGridRowSpanning.d.ts +0 -17
  1339. package/esm/hooks/features/rows/useGridRowSpanning.js +0 -208
  1340. package/esm/hooks/features/rows/useGridRows.d.ts +0 -7
  1341. package/esm/hooks/features/rows/useGridRows.js +0 -482
  1342. package/esm/hooks/features/rows/useGridRowsMeta.d.ts +0 -10
  1343. package/esm/hooks/features/rows/useGridRowsMeta.js +0 -60
  1344. package/esm/hooks/features/rows/useGridRowsOverridableMethods.d.ts +0 -7
  1345. package/esm/hooks/features/rows/useGridRowsOverridableMethods.js +0 -93
  1346. package/esm/hooks/features/rows/useGridRowsPreProcessors.d.ts +0 -3
  1347. package/esm/hooks/features/rows/useGridRowsPreProcessors.js +0 -81
  1348. package/esm/hooks/features/scroll/useGridScroll.d.ts +0 -12
  1349. package/esm/hooks/features/scroll/useGridScroll.js +0 -132
  1350. package/esm/hooks/features/sorting/gridSortingSelector.d.ts +0 -42
  1351. package/esm/hooks/features/sorting/gridSortingSelector.js +0 -70
  1352. package/esm/hooks/features/sorting/gridSortingState.d.ts +0 -14
  1353. package/esm/hooks/features/sorting/gridSortingUtils.d.ts +0 -18
  1354. package/esm/hooks/features/sorting/gridSortingUtils.js +0 -140
  1355. package/esm/hooks/features/sorting/index.d.ts +0 -4
  1356. package/esm/hooks/features/sorting/index.js +0 -2
  1357. package/esm/hooks/features/sorting/useGridSorting.d.ts +0 -10
  1358. package/esm/hooks/features/sorting/useGridSorting.js +0 -252
  1359. package/esm/hooks/features/statePersistence/gridStatePersistenceInterface.d.ts +0 -40
  1360. package/esm/hooks/features/statePersistence/index.d.ts +0 -1
  1361. package/esm/hooks/features/statePersistence/useGridStatePersistence.d.ts +0 -3
  1362. package/esm/hooks/features/statePersistence/useGridStatePersistence.js +0 -23
  1363. package/esm/hooks/features/virtualization/gridFocusedVirtualCellSelector.d.ts +0 -8
  1364. package/esm/hooks/features/virtualization/gridFocusedVirtualCellSelector.js +0 -32
  1365. package/esm/hooks/features/virtualization/gridVirtualizationSelectors.d.ts +0 -46
  1366. package/esm/hooks/features/virtualization/gridVirtualizationSelectors.js +0 -45
  1367. package/esm/hooks/features/virtualization/index.d.ts +0 -3
  1368. package/esm/hooks/features/virtualization/index.js +0 -3
  1369. package/esm/hooks/features/virtualization/useGridVirtualization.d.ts +0 -10
  1370. package/esm/hooks/features/virtualization/useGridVirtualization.js +0 -101
  1371. package/esm/hooks/index.d.ts +0 -3
  1372. package/esm/hooks/index.js +0 -3
  1373. package/esm/hooks/utils/index.d.ts +0 -10
  1374. package/esm/hooks/utils/index.js +0 -9
  1375. package/esm/hooks/utils/useGridApiContext.d.ts +0 -4
  1376. package/esm/hooks/utils/useGridApiContext.js +0 -11
  1377. package/esm/hooks/utils/useGridApiMethod.d.ts +0 -7
  1378. package/esm/hooks/utils/useGridApiRef.d.ts +0 -6
  1379. package/esm/hooks/utils/useGridAriaAttributes.js +0 -28
  1380. package/esm/hooks/utils/useGridConfiguration.d.ts +0 -4
  1381. package/esm/hooks/utils/useGridConfiguration.js +0 -11
  1382. package/esm/hooks/utils/useGridEvent.d.ts +0 -12
  1383. package/esm/hooks/utils/useGridEvent.js +0 -94
  1384. package/esm/hooks/utils/useGridInitializeState.d.ts +0 -8
  1385. package/esm/hooks/utils/useGridLogger.d.ts +0 -4
  1386. package/esm/hooks/utils/useGridNativeEventListener.d.ts +0 -3
  1387. package/esm/hooks/utils/useGridNativeEventListener.js +0 -17
  1388. package/esm/hooks/utils/useGridPrivateApiContext.d.ts +0 -6
  1389. package/esm/hooks/utils/useGridPrivateApiContext.js +0 -12
  1390. package/esm/hooks/utils/useGridRootProps.d.ts +0 -2
  1391. package/esm/hooks/utils/useGridRootProps.js +0 -11
  1392. package/esm/hooks/utils/useGridSelector.d.ts +0 -6
  1393. package/esm/hooks/utils/useGridSelector.js +0 -84
  1394. package/esm/hooks/utils/useGridVisibleRows.d.ts +0 -26
  1395. package/esm/hooks/utils/useGridVisibleRows.js +0 -17
  1396. package/esm/index.d.ts +0 -39
  1397. package/esm/index.js +0 -39
  1398. package/esm/internals/demo/index.d.ts +0 -1
  1399. package/esm/internals/demo/index.js +0 -1
  1400. package/esm/internals/index.d.ts +0 -128
  1401. package/esm/internals/index.js +0 -99
  1402. package/esm/internals/utils/attachPinnedStyle.d.ts +0 -2
  1403. package/esm/internals/utils/attachPinnedStyle.js +0 -9
  1404. package/esm/internals/utils/cache.d.ts +0 -9
  1405. package/esm/internals/utils/cache.js +0 -18
  1406. package/esm/internals/utils/getPinnedCellOffset.d.ts +0 -3
  1407. package/esm/internals/utils/getPinnedCellOffset.js +0 -21
  1408. package/esm/internals/utils/gridRowGroupingUtils.js +0 -9
  1409. package/esm/internals/utils/index.d.ts +0 -5
  1410. package/esm/internals/utils/index.js +0 -5
  1411. package/esm/internals/utils/propValidation.d.ts +0 -4
  1412. package/esm/internals/utils/propValidation.js +0 -12
  1413. package/esm/locales/arSD.d.ts +0 -2
  1414. package/esm/locales/arSD.js +0 -309
  1415. package/esm/locales/beBY.d.ts +0 -2
  1416. package/esm/locales/beBY.js +0 -334
  1417. package/esm/locales/bgBG.d.ts +0 -2
  1418. package/esm/locales/bgBG.js +0 -311
  1419. package/esm/locales/bnBD.d.ts +0 -2
  1420. package/esm/locales/bnBD.js +0 -309
  1421. package/esm/locales/caES.d.ts +0 -2
  1422. package/esm/locales/caES.js +0 -297
  1423. package/esm/locales/csCZ.d.ts +0 -2
  1424. package/esm/locales/csCZ.js +0 -336
  1425. package/esm/locales/daDK.d.ts +0 -2
  1426. package/esm/locales/daDK.js +0 -310
  1427. package/esm/locales/deDE.d.ts +0 -2
  1428. package/esm/locales/deDE.js +0 -300
  1429. package/esm/locales/elGR.d.ts +0 -2
  1430. package/esm/locales/elGR.js +0 -312
  1431. package/esm/locales/enUS.d.ts +0 -2
  1432. package/esm/locales/enUS.js +0 -3
  1433. package/esm/locales/esES.d.ts +0 -2
  1434. package/esm/locales/esES.js +0 -297
  1435. package/esm/locales/faIR.d.ts +0 -2
  1436. package/esm/locales/faIR.js +0 -310
  1437. package/esm/locales/fiFI.d.ts +0 -2
  1438. package/esm/locales/fiFI.js +0 -311
  1439. package/esm/locales/frFR.d.ts +0 -2
  1440. package/esm/locales/frFR.js +0 -306
  1441. package/esm/locales/heIL.d.ts +0 -2
  1442. package/esm/locales/heIL.js +0 -308
  1443. package/esm/locales/hrHR.d.ts +0 -1
  1444. package/esm/locales/hrHR.js +0 -328
  1445. package/esm/locales/huHU.d.ts +0 -2
  1446. package/esm/locales/huHU.js +0 -309
  1447. package/esm/locales/hyAM.d.ts +0 -2
  1448. package/esm/locales/hyAM.js +0 -335
  1449. package/esm/locales/idID.d.ts +0 -4
  1450. package/esm/locales/idID.js +0 -300
  1451. package/esm/locales/index.d.ts +0 -40
  1452. package/esm/locales/index.js +0 -41
  1453. package/esm/locales/isIS.d.ts +0 -2
  1454. package/esm/locales/isIS.js +0 -311
  1455. package/esm/locales/itIT.d.ts +0 -2
  1456. package/esm/locales/itIT.js +0 -298
  1457. package/esm/locales/jaJP.d.ts +0 -2
  1458. package/esm/locales/jaJP.js +0 -305
  1459. package/esm/locales/koKR.d.ts +0 -2
  1460. package/esm/locales/koKR.js +0 -300
  1461. package/esm/locales/nbNO.d.ts +0 -2
  1462. package/esm/locales/nbNO.js +0 -308
  1463. package/esm/locales/nlNL.d.ts +0 -2
  1464. package/esm/locales/nlNL.js +0 -310
  1465. package/esm/locales/nnNO.d.ts +0 -2
  1466. package/esm/locales/nnNO.js +0 -300
  1467. package/esm/locales/plPL.d.ts +0 -2
  1468. package/esm/locales/plPL.js +0 -305
  1469. package/esm/locales/ptBR.d.ts +0 -2
  1470. package/esm/locales/ptBR.js +0 -297
  1471. package/esm/locales/ptPT.d.ts +0 -2
  1472. package/esm/locales/ptPT.js +0 -297
  1473. package/esm/locales/roRO.d.ts +0 -2
  1474. package/esm/locales/roRO.js +0 -309
  1475. package/esm/locales/ruRU.d.ts +0 -2
  1476. package/esm/locales/ruRU.js +0 -331
  1477. package/esm/locales/skSK.d.ts +0 -2
  1478. package/esm/locales/skSK.js +0 -336
  1479. package/esm/locales/svSE.d.ts +0 -2
  1480. package/esm/locales/svSE.js +0 -311
  1481. package/esm/locales/thTH.d.ts +0 -2
  1482. package/esm/locales/thTH.js +0 -297
  1483. package/esm/locales/trTR.d.ts +0 -2
  1484. package/esm/locales/trTR.js +0 -309
  1485. package/esm/locales/ukUA.d.ts +0 -2
  1486. package/esm/locales/ukUA.js +0 -331
  1487. package/esm/locales/urPK.d.ts +0 -2
  1488. package/esm/locales/urPK.js +0 -311
  1489. package/esm/locales/viVN.d.ts +0 -2
  1490. package/esm/locales/viVN.js +0 -311
  1491. package/esm/locales/zhCN.d.ts +0 -2
  1492. package/esm/locales/zhCN.js +0 -306
  1493. package/esm/locales/zhHK.d.ts +0 -1
  1494. package/esm/locales/zhHK.js +0 -306
  1495. package/esm/locales/zhTW.d.ts +0 -2
  1496. package/esm/locales/zhTW.js +0 -306
  1497. package/esm/material/icons/createSvgIcon.d.ts +0 -2
  1498. package/esm/material/icons/index.js +0 -103
  1499. package/esm/material/index.d.ts +0 -6
  1500. package/esm/material/index.js +0 -851
  1501. package/esm/material/variables.d.ts +0 -5
  1502. package/esm/material/variables.js +0 -131
  1503. package/esm/models/api/gridApiCommon.d.ts +0 -38
  1504. package/esm/models/api/gridApiCommunity.d.ts +0 -12
  1505. package/esm/models/api/gridCallbackDetails.d.ts +0 -15
  1506. package/esm/models/api/gridColumnApi.d.ts +0 -74
  1507. package/esm/models/api/gridColumnGroupingApi.d.ts +0 -19
  1508. package/esm/models/api/gridColumnSpanning.d.ts +0 -28
  1509. package/esm/models/api/gridCoreApi.d.ts +0 -96
  1510. package/esm/models/api/gridCsvExportApi.d.ts +0 -18
  1511. package/esm/models/api/gridDensityApi.d.ts +0 -17
  1512. package/esm/models/api/gridEditingApi.d.ts +0 -237
  1513. package/esm/models/api/gridFilterApi.d.ts +0 -67
  1514. package/esm/models/api/gridFocusApi.d.ts +0 -46
  1515. package/esm/models/api/gridHeaderFilteringApi.d.ts +0 -30
  1516. package/esm/models/api/gridLocaleTextApi.d.ts +0 -247
  1517. package/esm/models/api/gridLoggerApi.d.ts +0 -11
  1518. package/esm/models/api/gridParamsApi.d.ts +0 -111
  1519. package/esm/models/api/gridPreferencesPanelApi.d.ts +0 -17
  1520. package/esm/models/api/gridPrintExportApi.d.ts +0 -11
  1521. package/esm/models/api/gridRowApi.d.ts +0 -147
  1522. package/esm/models/api/gridRowSelectionApi.d.ts +0 -92
  1523. package/esm/models/api/gridRowsMetaApi.d.ts +0 -60
  1524. package/esm/models/api/gridScrollApi.d.ts +0 -24
  1525. package/esm/models/api/gridSortApi.d.ts +0 -46
  1526. package/esm/models/api/gridStateApi.d.ts +0 -33
  1527. package/esm/models/api/index.d.ts +0 -23
  1528. package/esm/models/api/index.js +0 -12
  1529. package/esm/models/colDef/gridColDef.d.ts +0 -333
  1530. package/esm/models/colDef/gridColumnTypesRecord.d.ts +0 -3
  1531. package/esm/models/colDef/index.d.ts +0 -3
  1532. package/esm/models/colDef/index.js +0 -6
  1533. package/esm/models/configuration/gridAggregationConfiguration.d.ts +0 -19
  1534. package/esm/models/configuration/gridCellEditableConfiguration.d.ts +0 -19
  1535. package/esm/models/configuration/gridConfiguration.d.ts +0 -21
  1536. package/esm/models/configuration/gridParamsConfiguration.d.ts +0 -12
  1537. package/esm/models/configuration/gridRowConfiguration.d.ts +0 -23
  1538. package/esm/models/controlStateItem.d.ts +0 -14
  1539. package/esm/models/events/gridEventListener.d.ts +0 -8
  1540. package/esm/models/events/gridEventLookup.d.ts +0 -683
  1541. package/esm/models/events/gridEventPublisher.d.ts +0 -29
  1542. package/esm/models/events/index.d.ts +0 -3
  1543. package/esm/models/events/index.js +0 -3
  1544. package/esm/models/gridApiCaches.d.ts +0 -12
  1545. package/esm/models/gridCell.d.ts +0 -30
  1546. package/esm/models/gridCellClass.d.ts +0 -12
  1547. package/esm/models/gridColumnGrouping.d.ts +0 -43
  1548. package/esm/models/gridColumnHeaderClass.d.ts +0 -11
  1549. package/esm/models/gridDataSource.d.ts +0 -83
  1550. package/esm/models/gridEditRowModel.d.ts +0 -28
  1551. package/esm/models/gridExport.d.ts +0 -157
  1552. package/esm/models/gridFilterInputComponent.d.ts +0 -32
  1553. package/esm/models/gridFilterItem.d.ts +0 -32
  1554. package/esm/models/gridFilterModel.d.ts +0 -34
  1555. package/esm/models/gridFilterOperator.d.ts +0 -58
  1556. package/esm/models/gridHeaderFilteringModel.d.ts +0 -6
  1557. package/esm/models/gridIconSlotsComponent.d.ts +0 -213
  1558. package/esm/models/gridRowSelectionManager.d.ts +0 -9
  1559. package/esm/models/gridRowSelectionModel.d.ts +0 -9
  1560. package/esm/models/gridRows.d.ts +0 -180
  1561. package/esm/models/gridSlotsComponent.d.ts +0 -235
  1562. package/esm/models/gridSlotsComponentsProps.d.ts +0 -133
  1563. package/esm/models/gridSortModel.d.ts +0 -35
  1564. package/esm/models/gridStateCommunity.d.ts +0 -61
  1565. package/esm/models/index.d.ts +0 -31
  1566. package/esm/models/index.js +0 -29
  1567. package/esm/models/params/gridCellParams.d.ts +0 -103
  1568. package/esm/models/params/gridColumnGroupHeaderParams.d.ts +0 -30
  1569. package/esm/models/params/gridColumnHeaderParams.d.ts +0 -15
  1570. package/esm/models/params/gridColumnOrderChangeParams.d.ts +0 -18
  1571. package/esm/models/params/gridColumnResizeParams.d.ts +0 -18
  1572. package/esm/models/params/gridEditCellParams.d.ts +0 -65
  1573. package/esm/models/params/gridPreferencePanelParams.d.ts +0 -2
  1574. package/esm/models/params/gridRowParams.d.ts +0 -109
  1575. package/esm/models/params/gridRowSelectionCheckboxParams.d.ts +0 -5
  1576. package/esm/models/params/gridValueOptionsParams.d.ts +0 -18
  1577. package/esm/models/params/index.d.ts +0 -13
  1578. package/esm/models/params/index.js +0 -13
  1579. package/esm/models/props/DataGridProps.d.ts +0 -906
  1580. package/esm/package.json +0 -1
  1581. package/esm/themeAugmentation/index.d.ts +0 -2
  1582. package/esm/themeAugmentation/index.js +0 -4
  1583. package/esm/themeAugmentation/overrides.d.ts +0 -18
  1584. package/esm/themeAugmentation/props.d.ts +0 -15
  1585. package/esm/utils/assert.js +0 -3
  1586. package/esm/utils/cellBorderUtils.d.ts +0 -4
  1587. package/esm/utils/cellBorderUtils.js +0 -24
  1588. package/esm/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.d.ts +0 -7
  1589. package/esm/utils/cleanupTracking/TimerBasedCleanupTracking.d.ts +0 -9
  1590. package/esm/utils/composeGridClasses.d.ts +0 -3
  1591. package/esm/utils/composeGridClasses.js +0 -5
  1592. package/esm/utils/css/context.js +0 -60
  1593. package/esm/utils/domUtils.d.ts +0 -30
  1594. package/esm/utils/domUtils.js +0 -208
  1595. package/esm/utils/exportAs.d.ts +0 -12
  1596. package/esm/utils/exportAs.js +0 -38
  1597. package/esm/utils/getGridLocalization.d.ts +0 -11
  1598. package/esm/utils/getGridLocalization.js +0 -9
  1599. package/esm/utils/getPublicApiRef.d.ts +0 -3
  1600. package/esm/utils/index.d.ts +0 -2
  1601. package/esm/utils/index.js +0 -1
  1602. package/esm/utils/rtlFlipSide.d.ts +0 -2
  1603. package/esm/utils/rtlFlipSide.js +0 -22
  1604. /package/{esm/components/GridApiContext.d.ts → components/GridApiContext.d.mts} +0 -0
  1605. /package/{esm/components/GridApiContext.js → components/GridApiContext.mjs} +0 -0
  1606. /package/{esm/components/GridConfigurationContext.d.ts → components/GridConfigurationContext.d.mts} +0 -0
  1607. /package/{esm/components/GridConfigurationContext.js → components/GridConfigurationContext.mjs} +0 -0
  1608. /package/{esm/components/GridDetailPanels.d.ts → components/GridDetailPanels.d.mts} +0 -0
  1609. /package/{esm/components/GridDetailPanels.js → components/GridDetailPanels.mjs} +0 -0
  1610. /package/{esm/components/GridHeader.d.ts → components/GridHeader.d.mts} +0 -0
  1611. /package/{esm/components/GridHeaders.d.ts → components/GridHeaders.d.mts} +0 -0
  1612. /package/{esm/components/GridPagination.d.ts → components/GridPagination.d.mts} +0 -0
  1613. /package/{esm/components/GridPinnedRows.d.ts → components/GridPinnedRows.d.mts} +0 -0
  1614. /package/{esm/components/GridPinnedRows.js → components/GridPinnedRows.mjs} +0 -0
  1615. /package/{esm/components/GridRowCount.d.ts → components/GridRowCount.d.mts} +0 -0
  1616. /package/{esm/components/GridScrollShadows.d.ts → components/GridScrollShadows.d.mts} +0 -0
  1617. /package/{esm/components/GridScrollbarFillerCell.d.ts → components/GridScrollbarFillerCell.d.mts} +0 -0
  1618. /package/{esm/components/GridSelectedRowCount.d.ts → components/GridSelectedRowCount.d.mts} +0 -0
  1619. /package/{esm/components/GridShadowScrollArea.d.ts → components/GridShadowScrollArea.d.mts} +0 -0
  1620. /package/{esm/components/GridShadowScrollArea.js → components/GridShadowScrollArea.mjs} +0 -0
  1621. /package/{esm/components/base/GridFooterPlaceholder.d.ts → components/base/GridFooterPlaceholder.d.mts} +0 -0
  1622. /package/{esm/components/columnHeaders/GridBaseColumnHeaders.d.ts → components/columnHeaders/GridBaseColumnHeaders.d.mts} +0 -0
  1623. /package/{esm/components/columnHeaders/GridColumnHeaderSeparator.d.ts → components/columnHeaders/GridColumnHeaderSeparator.d.mts} +0 -0
  1624. /package/{esm/components/columnHeaders/GridColumnHeaderTitle.d.ts → components/columnHeaders/GridColumnHeaderTitle.d.mts} +0 -0
  1625. /package/{esm/components/columnHeaders/GridIconButtonContainer.d.ts → components/columnHeaders/GridIconButtonContainer.d.mts} +0 -0
  1626. /package/{esm/components/columnsManagement/utils.js → components/columnsManagement/utils.mjs} +0 -0
  1627. /package/{esm/components/containers/GridFooterContainer.d.ts → components/containers/GridFooterContainer.d.mts} +0 -0
  1628. /package/{esm/components/containers/GridOverlay.d.ts → components/containers/GridOverlay.d.mts} +0 -0
  1629. /package/{esm/components/containers/GridRoot.d.ts → components/containers/GridRoot.d.mts} +0 -0
  1630. /package/{esm/components/containers/GridToolbarContainer.d.ts → components/containers/GridToolbarContainer.d.mts} +0 -0
  1631. /package/{esm/components/menu/columnMenu/GridColumnMenuItemProps.js → components/menu/columnMenu/GridColumnMenuItemProps.mjs} +0 -0
  1632. /package/{esm/components/menu/columnMenu/GridColumnMenuProps.js → components/menu/columnMenu/GridColumnMenuProps.mjs} +0 -0
  1633. /package/{esm/components/panel/GridPanelContent.d.ts → components/panel/GridPanelContent.d.mts} +0 -0
  1634. /package/{esm/components/panel/GridPanelContext.d.ts → components/panel/GridPanelContext.d.mts} +0 -0
  1635. /package/{esm/components/panel/GridPanelFooter.d.ts → components/panel/GridPanelFooter.d.mts} +0 -0
  1636. /package/{esm/components/panel/GridPanelHeader.d.ts → components/panel/GridPanelHeader.d.mts} +0 -0
  1637. /package/{esm/components/panel/GridPanelWrapper.d.ts → components/panel/GridPanelWrapper.d.mts} +0 -0
  1638. /package/{esm/components/panel/GridPreferencesPanel.d.ts → components/panel/GridPreferencesPanel.d.mts} +0 -0
  1639. /package/{esm/components/panel/filterPanel/filterPanelUtils.js → components/panel/filterPanel/filterPanelUtils.mjs} +0 -0
  1640. /package/{esm/components/quickFilter/QuickFilterContext.d.ts → components/quickFilter/QuickFilterContext.d.mts} +0 -0
  1641. /package/{esm/components/toolbarV8/Toolbar.d.ts → components/toolbarV8/Toolbar.d.mts} +0 -0
  1642. /package/{esm/components/toolbarV8/ToolbarContext.d.ts → components/toolbarV8/ToolbarContext.d.mts} +0 -0
  1643. /package/{esm/components/toolbarV8/utils.d.ts → components/toolbarV8/utils.d.mts} +0 -0
  1644. /package/{esm/components/toolbarV8/utils.js → components/toolbarV8/utils.mjs} +0 -0
  1645. /package/{esm/components/virtualization/GridBottomContainer.d.ts → components/virtualization/GridBottomContainer.d.mts} +0 -0
  1646. /package/{esm/components/virtualization/GridTopContainer.d.ts → components/virtualization/GridTopContainer.d.mts} +0 -0
  1647. /package/{esm/components/virtualization/GridVirtualScrollbar.d.ts → components/virtualization/GridVirtualScrollbar.d.mts} +0 -0
  1648. /package/{esm/components/virtualization/GridVirtualScroller.d.ts → components/virtualization/GridVirtualScroller.d.mts} +0 -0
  1649. /package/{esm/components/virtualization/GridVirtualScrollerContent.d.ts → components/virtualization/GridVirtualScrollerContent.d.mts} +0 -0
  1650. /package/{esm/components/virtualization/GridVirtualScrollerFiller.d.ts → components/virtualization/GridVirtualScrollerFiller.d.mts} +0 -0
  1651. /package/{esm/components/virtualization/GridVirtualScrollerRenderZone.d.ts → components/virtualization/GridVirtualScrollerRenderZone.d.mts} +0 -0
  1652. /package/{esm/constants/cssVariables.d.ts → constants/cssVariables.d.mts} +0 -0
  1653. /package/{esm/constants/cssVariables.js → constants/cssVariables.mjs} +0 -0
  1654. /package/{esm/constants/envConstants.d.ts → constants/envConstants.d.mts} +0 -0
  1655. /package/{esm/constants/envConstants.js → constants/envConstants.mjs} +0 -0
  1656. /package/{esm/constants/gridClasses.d.ts → constants/gridClasses.d.mts} +0 -0
  1657. /package/{esm/constants/gridClasses.js → constants/gridClasses.mjs} +0 -0
  1658. /package/{esm/constants/signature.d.ts → constants/signature.d.mts} +0 -0
  1659. /package/{esm/constants/signature.js → constants/signature.mjs} +0 -0
  1660. /package/{esm/context/GridRootPropsContext.d.ts → context/GridRootPropsContext.d.mts} +0 -0
  1661. /package/{esm/context/GridRootPropsContext.js → context/GridRootPropsContext.mjs} +0 -0
  1662. /package/{esm/hooks/core/pipeProcessing/gridPipeProcessingApi.js → hooks/core/pipeProcessing/gridPipeProcessingApi.mjs} +0 -0
  1663. /package/{esm/hooks/core/strategyProcessing/gridStrategyProcessingApi.js → hooks/core/strategyProcessing/gridStrategyProcessingApi.mjs} +0 -0
  1664. /package/{esm/hooks/core/useGridIsRtl.js → hooks/core/useGridIsRtl.mjs} +0 -0
  1665. /package/{esm/hooks/core/useGridProps.js → hooks/core/useGridProps.mjs} +0 -0
  1666. /package/{esm/hooks/core/useGridRefs.js → hooks/core/useGridRefs.mjs} +0 -0
  1667. /package/{esm/hooks/core/useGridVirtualizer.d.ts → hooks/core/useGridVirtualizer.d.mts} +0 -0
  1668. /package/{esm/hooks/features/columnGrouping/gridColumnGroupsInterfaces.js → hooks/features/columnGrouping/gridColumnGroupsInterfaces.mjs} +0 -0
  1669. /package/{esm/hooks/features/columnMenu/columnMenuInterfaces.d.ts → hooks/features/columnMenu/columnMenuInterfaces.d.mts} +0 -0
  1670. /package/{esm/hooks/features/columnMenu/columnMenuInterfaces.js → hooks/features/columnMenu/columnMenuInterfaces.mjs} +0 -0
  1671. /package/{esm/hooks/features/columnMenu/getColumnMenuItemKeys.js → hooks/features/columnMenu/getColumnMenuItemKeys.mjs} +0 -0
  1672. /package/{esm/hooks/features/columnResize/columnResizeState.d.ts → hooks/features/columnResize/columnResizeState.d.mts} +0 -0
  1673. /package/{esm/hooks/features/columnResize/columnResizeState.js → hooks/features/columnResize/columnResizeState.mjs} +0 -0
  1674. /package/{esm/hooks/features/columnResize/gridColumnResizeApi.js → hooks/features/columnResize/gridColumnResizeApi.mjs} +0 -0
  1675. /package/{esm/hooks/features/columns/gridColumnsInterfaces.js → hooks/features/columns/gridColumnsInterfaces.mjs} +0 -0
  1676. /package/{esm/hooks/features/dataSource/cache.js → hooks/features/dataSource/cache.mjs} +0 -0
  1677. /package/{esm/hooks/features/dataSource/gridDataSourceError.js → hooks/features/dataSource/gridDataSourceError.mjs} +0 -0
  1678. /package/{esm/hooks/features/dataSource/models.js → hooks/features/dataSource/models.mjs} +0 -0
  1679. /package/{esm/hooks/features/dataSource/utils.js → hooks/features/dataSource/utils.mjs} +0 -0
  1680. /package/{esm/hooks/features/density/densityState.js → hooks/features/density/densityState.mjs} +0 -0
  1681. /package/{esm/hooks/features/dimensions/gridDimensionsApi.d.ts → hooks/features/dimensions/gridDimensionsApi.d.mts} +0 -0
  1682. /package/{esm/hooks/features/dimensions/gridDimensionsApi.js → hooks/features/dimensions/gridDimensionsApi.mjs} +0 -0
  1683. /package/{esm/hooks/features/editing/utils.js → hooks/features/editing/utils.mjs} +0 -0
  1684. /package/{esm/hooks/features/focus/gridFocusState.js → hooks/features/focus/gridFocusState.mjs} +0 -0
  1685. /package/{esm/hooks/features/overlays/gridOverlaysInterfaces.js → hooks/features/overlays/gridOverlaysInterfaces.mjs} +0 -0
  1686. /package/{esm/hooks/features/overlays/index.js → hooks/features/overlays/index.mjs} +0 -0
  1687. /package/{esm/hooks/features/pagination/gridPaginationInterfaces.js → hooks/features/pagination/gridPaginationInterfaces.mjs} +0 -0
  1688. /package/{esm/hooks/features/pivoting/gridPivotingInterfaces.js → hooks/features/pivoting/gridPivotingInterfaces.mjs} +0 -0
  1689. /package/{esm/hooks/features/preferencesPanel/gridPreferencePanelState.js → hooks/features/preferencesPanel/gridPreferencePanelState.mjs} +0 -0
  1690. /package/{esm/hooks/features/preferencesPanel/gridPreferencePanelsValue.d.ts → hooks/features/preferencesPanel/gridPreferencePanelsValue.d.mts} +0 -0
  1691. /package/{esm/hooks/features/preferencesPanel/gridPreferencePanelsValue.js → hooks/features/preferencesPanel/gridPreferencePanelsValue.mjs} +0 -0
  1692. /package/{esm/hooks/features/rowReorder/gridRowReorderInterfaces.js → hooks/features/rowReorder/gridRowReorderInterfaces.mjs} +0 -0
  1693. /package/{esm/hooks/features/rows/gridRowsInterfaces.js → hooks/features/rows/gridRowsInterfaces.mjs} +0 -0
  1694. /package/{esm/hooks/features/rows/gridRowsMetaInterfaces.js → hooks/features/rows/gridRowsMetaInterfaces.mjs} +0 -0
  1695. /package/{esm/hooks/features/rows/gridRowsMetaState.d.ts → hooks/features/rows/gridRowsMetaState.d.mts} +0 -0
  1696. /package/{esm/hooks/features/rows/gridRowsMetaState.js → hooks/features/rows/gridRowsMetaState.mjs} +0 -0
  1697. /package/{esm/hooks/features/sorting/gridSortingState.js → hooks/features/sorting/gridSortingState.mjs} +0 -0
  1698. /package/{esm/hooks/features/statePersistence/gridStatePersistenceInterface.js → hooks/features/statePersistence/gridStatePersistenceInterface.mjs} +0 -0
  1699. /package/{esm/hooks/features/statePersistence/index.js → hooks/features/statePersistence/index.mjs} +0 -0
  1700. /package/{esm/hooks/utils/useFirstRender.d.ts → hooks/utils/useFirstRender.d.mts} +0 -0
  1701. /package/{esm/hooks/utils/useFirstRender.js → hooks/utils/useFirstRender.mjs} +0 -0
  1702. /package/{esm/hooks/utils/useGridApiMethod.js → hooks/utils/useGridApiMethod.mjs} +0 -0
  1703. /package/{esm/hooks/utils/useGridApiRef.js → hooks/utils/useGridApiRef.mjs} +0 -0
  1704. /package/{esm/hooks/utils/useGridAriaAttributes.d.ts → hooks/utils/useGridAriaAttributes.d.mts} +0 -0
  1705. /package/{esm/hooks/utils/useGridInitializeState.js → hooks/utils/useGridInitializeState.mjs} +0 -0
  1706. /package/{esm/hooks/utils/useGridLogger.js → hooks/utils/useGridLogger.mjs} +0 -0
  1707. /package/{esm/hooks/utils/useIsSSR.d.ts → hooks/utils/useIsSSR.d.mts} +0 -0
  1708. /package/{esm/hooks/utils/useIsSSR.js → hooks/utils/useIsSSR.mjs} +0 -0
  1709. /package/{esm/hooks/utils/useLazyRef.d.ts → hooks/utils/useLazyRef.d.mts} +0 -0
  1710. /package/{esm/hooks/utils/useLazyRef.js → hooks/utils/useLazyRef.mjs} +0 -0
  1711. /package/{esm/hooks/utils/useOnMount.d.ts → hooks/utils/useOnMount.d.mts} +0 -0
  1712. /package/{esm/hooks/utils/useOnMount.js → hooks/utils/useOnMount.mjs} +0 -0
  1713. /package/{esm/hooks/utils/useRunOncePerLoop.d.ts → hooks/utils/useRunOncePerLoop.d.mts} +0 -0
  1714. /package/{esm/hooks/utils/useRunOncePerLoop.js → hooks/utils/useRunOncePerLoop.mjs} +0 -0
  1715. /package/{esm/hooks/utils/useTimeout.d.ts → hooks/utils/useTimeout.d.mts} +0 -0
  1716. /package/{esm/hooks/utils/useTimeout.js → hooks/utils/useTimeout.mjs} +0 -0
  1717. /package/{esm/internals/constants.d.ts → internals/constants.d.mts} +0 -0
  1718. /package/{esm/internals/constants.js → internals/constants.mjs} +0 -0
  1719. /package/{esm/internals/demo/TailwindDemoContainer.d.ts → internals/demo/TailwindDemoContainer.d.mts} +0 -0
  1720. /package/{esm/internals/demo/TailwindDemoContainer.js → internals/demo/TailwindDemoContainer.mjs} +0 -0
  1721. /package/{esm/internals/utils/computeSlots.d.ts → internals/utils/computeSlots.d.mts} +0 -0
  1722. /package/{esm/internals/utils/computeSlots.js → internals/utils/computeSlots.mjs} +0 -0
  1723. /package/{esm/internals/utils/gridRowGroupingUtils.d.ts → internals/utils/gridRowGroupingUtils.d.mts} +0 -0
  1724. /package/{esm/material/augmentation.d.ts → material/augmentation.d.mts} +0 -0
  1725. /package/{esm/material/augmentation.js → material/augmentation.mjs} +0 -0
  1726. /package/{esm/material/icons/createSvgIcon.js → material/icons/createSvgIcon.mjs} +0 -0
  1727. /package/{esm/material/icons/index.d.ts → material/icons/index.d.mts} +0 -0
  1728. /package/{esm/models/api/gridApiCommon.js → models/api/gridApiCommon.mjs} +0 -0
  1729. /package/{esm/models/api/gridApiCommunity.js → models/api/gridApiCommunity.mjs} +0 -0
  1730. /package/{esm/models/api/gridCallbackDetails.js → models/api/gridCallbackDetails.mjs} +0 -0
  1731. /package/{esm/models/api/gridColumnApi.js → models/api/gridColumnApi.mjs} +0 -0
  1732. /package/{esm/models/api/gridColumnGroupingApi.js → models/api/gridColumnGroupingApi.mjs} +0 -0
  1733. /package/{esm/models/api/gridColumnMenuApi.d.ts → models/api/gridColumnMenuApi.d.mts} +0 -0
  1734. /package/{esm/models/api/gridColumnMenuApi.js → models/api/gridColumnMenuApi.mjs} +0 -0
  1735. /package/{esm/models/api/gridColumnSpanning.js → models/api/gridColumnSpanning.mjs} +0 -0
  1736. /package/{esm/models/api/gridCoreApi.js → models/api/gridCoreApi.mjs} +0 -0
  1737. /package/{esm/models/api/gridCsvExportApi.js → models/api/gridCsvExportApi.mjs} +0 -0
  1738. /package/{esm/models/api/gridDensityApi.js → models/api/gridDensityApi.mjs} +0 -0
  1739. /package/{esm/models/api/gridEditingApi.js → models/api/gridEditingApi.mjs} +0 -0
  1740. /package/{esm/models/api/gridFilterApi.js → models/api/gridFilterApi.mjs} +0 -0
  1741. /package/{esm/models/api/gridFocusApi.js → models/api/gridFocusApi.mjs} +0 -0
  1742. /package/{esm/models/api/gridHeaderFilteringApi.js → models/api/gridHeaderFilteringApi.mjs} +0 -0
  1743. /package/{esm/models/api/gridInfiniteLoaderApi.d.ts → models/api/gridInfiniteLoaderApi.d.mts} +0 -0
  1744. /package/{esm/models/api/gridInfiniteLoaderApi.js → models/api/gridInfiniteLoaderApi.mjs} +0 -0
  1745. /package/{esm/models/api/gridLocaleTextApi.js → models/api/gridLocaleTextApi.mjs} +0 -0
  1746. /package/{esm/models/api/gridLoggerApi.js → models/api/gridLoggerApi.mjs} +0 -0
  1747. /package/{esm/models/api/gridParamsApi.js → models/api/gridParamsApi.mjs} +0 -0
  1748. /package/{esm/models/api/gridPreferencesPanelApi.js → models/api/gridPreferencesPanelApi.mjs} +0 -0
  1749. /package/{esm/models/api/gridPrintExportApi.js → models/api/gridPrintExportApi.mjs} +0 -0
  1750. /package/{esm/models/api/gridRowApi.js → models/api/gridRowApi.mjs} +0 -0
  1751. /package/{esm/models/api/gridRowSelectionApi.js → models/api/gridRowSelectionApi.mjs} +0 -0
  1752. /package/{esm/models/api/gridRowsMetaApi.js → models/api/gridRowsMetaApi.mjs} +0 -0
  1753. /package/{esm/models/api/gridScrollApi.js → models/api/gridScrollApi.mjs} +0 -0
  1754. /package/{esm/models/api/gridSortApi.js → models/api/gridSortApi.mjs} +0 -0
  1755. /package/{esm/models/api/gridStateApi.js → models/api/gridStateApi.mjs} +0 -0
  1756. /package/{esm/models/api/gridVirtualizationApi.d.ts → models/api/gridVirtualizationApi.d.mts} +0 -0
  1757. /package/{esm/models/api/gridVirtualizationApi.js → models/api/gridVirtualizationApi.mjs} +0 -0
  1758. /package/{esm/models/colDef/gridColDef.js → models/colDef/gridColDef.mjs} +0 -0
  1759. /package/{esm/models/colDef/gridColType.d.ts → models/colDef/gridColType.d.mts} +0 -0
  1760. /package/{esm/models/colDef/gridColType.js → models/colDef/gridColType.mjs} +0 -0
  1761. /package/{esm/models/colDef/gridColumnTypesRecord.js → models/colDef/gridColumnTypesRecord.mjs} +0 -0
  1762. /package/{esm/models/configuration/gridAggregationConfiguration.js → models/configuration/gridAggregationConfiguration.mjs} +0 -0
  1763. /package/{esm/models/configuration/gridCellEditableConfiguration.js → models/configuration/gridCellEditableConfiguration.mjs} +0 -0
  1764. /package/{esm/models/configuration/gridConfiguration.js → models/configuration/gridConfiguration.mjs} +0 -0
  1765. /package/{esm/models/configuration/gridParamsConfiguration.js → models/configuration/gridParamsConfiguration.mjs} +0 -0
  1766. /package/{esm/models/configuration/gridRowConfiguration.js → models/configuration/gridRowConfiguration.mjs} +0 -0
  1767. /package/{esm/models/controlStateItem.js → models/controlStateItem.mjs} +0 -0
  1768. /package/{esm/models/cursorCoordinates.d.ts → models/cursorCoordinates.d.mts} +0 -0
  1769. /package/{esm/models/cursorCoordinates.js → models/cursorCoordinates.mjs} +0 -0
  1770. /package/{esm/models/elementSize.d.ts → models/elementSize.d.mts} +0 -0
  1771. /package/{esm/models/elementSize.js → models/elementSize.mjs} +0 -0
  1772. /package/{esm/models/events/gridEventListener.js → models/events/gridEventListener.mjs} +0 -0
  1773. /package/{esm/models/events/gridEventLookup.js → models/events/gridEventLookup.mjs} +0 -0
  1774. /package/{esm/models/events/gridEventPublisher.js → models/events/gridEventPublisher.mjs} +0 -0
  1775. /package/{esm/models/gridAggregation.d.ts → models/gridAggregation.d.mts} +0 -0
  1776. /package/{esm/models/gridAggregation.js → models/gridAggregation.mjs} +0 -0
  1777. /package/{esm/models/gridApiCaches.js → models/gridApiCaches.mjs} +0 -0
  1778. /package/{esm/models/gridBaseSlots.d.ts → models/gridBaseSlots.d.mts} +0 -0
  1779. /package/{esm/models/gridBaseSlots.js → models/gridBaseSlots.mjs} +0 -0
  1780. /package/{esm/models/gridCell.js → models/gridCell.mjs} +0 -0
  1781. /package/{esm/models/gridCellClass.js → models/gridCellClass.mjs} +0 -0
  1782. /package/{esm/models/gridColumnGrouping.js → models/gridColumnGrouping.mjs} +0 -0
  1783. /package/{esm/models/gridColumnHeaderClass.js → models/gridColumnHeaderClass.mjs} +0 -0
  1784. /package/{esm/models/gridColumnSpanning.d.ts → models/gridColumnSpanning.d.mts} +0 -0
  1785. /package/{esm/models/gridColumnSpanning.js → models/gridColumnSpanning.mjs} +0 -0
  1786. /package/{esm/models/gridDataSource.js → models/gridDataSource.mjs} +0 -0
  1787. /package/{esm/models/gridDensity.d.ts → models/gridDensity.d.mts} +0 -0
  1788. /package/{esm/models/gridDensity.js → models/gridDensity.mjs} +0 -0
  1789. /package/{esm/models/gridEditRowModel.js → models/gridEditRowModel.mjs} +0 -0
  1790. /package/{esm/models/gridExport.js → models/gridExport.mjs} +0 -0
  1791. /package/{esm/models/gridFeatureMode.d.ts → models/gridFeatureMode.d.mts} +0 -0
  1792. /package/{esm/models/gridFeatureMode.js → models/gridFeatureMode.mjs} +0 -0
  1793. /package/{esm/models/gridFilterInputComponent.js → models/gridFilterInputComponent.mjs} +0 -0
  1794. /package/{esm/models/gridFilterItem.js → models/gridFilterItem.mjs} +0 -0
  1795. /package/{esm/models/gridFilterModel.js → models/gridFilterModel.mjs} +0 -0
  1796. /package/{esm/models/gridFilterOperator.js → models/gridFilterOperator.mjs} +0 -0
  1797. /package/{esm/models/gridHeaderFilteringModel.js → models/gridHeaderFilteringModel.mjs} +0 -0
  1798. /package/{esm/models/gridIconSlotsComponent.js → models/gridIconSlotsComponent.mjs} +0 -0
  1799. /package/{esm/models/gridPaginationProps.d.ts → models/gridPaginationProps.d.mts} +0 -0
  1800. /package/{esm/models/gridPaginationProps.js → models/gridPaginationProps.mjs} +0 -0
  1801. /package/{esm/models/gridRenderContextProps.d.ts → models/gridRenderContextProps.d.mts} +0 -0
  1802. /package/{esm/models/gridRenderContextProps.js → models/gridRenderContextProps.mjs} +0 -0
  1803. /package/{esm/models/gridRowSelectionManager.js → models/gridRowSelectionManager.mjs} +0 -0
  1804. /package/{esm/models/gridRowSelectionModel.js → models/gridRowSelectionModel.mjs} +0 -0
  1805. /package/{esm/models/gridRows.js → models/gridRows.mjs} +0 -0
  1806. /package/{esm/models/gridSlotsComponent.js → models/gridSlotsComponent.mjs} +0 -0
  1807. /package/{esm/models/gridSlotsComponentsProps.js → models/gridSlotsComponentsProps.mjs} +0 -0
  1808. /package/{esm/models/gridSortModel.js → models/gridSortModel.mjs} +0 -0
  1809. /package/{esm/models/gridStateCommunity.js → models/gridStateCommunity.mjs} +0 -0
  1810. /package/{esm/models/logger.d.ts → models/logger.d.mts} +0 -0
  1811. /package/{esm/models/logger.js → models/logger.mjs} +0 -0
  1812. /package/{esm/models/params/gridCellParams.js → models/params/gridCellParams.mjs} +0 -0
  1813. /package/{esm/models/params/gridColumnGroupHeaderParams.js → models/params/gridColumnGroupHeaderParams.mjs} +0 -0
  1814. /package/{esm/models/params/gridColumnHeaderParams.js → models/params/gridColumnHeaderParams.mjs} +0 -0
  1815. /package/{esm/models/params/gridColumnOrderChangeParams.js → models/params/gridColumnOrderChangeParams.mjs} +0 -0
  1816. /package/{esm/models/params/gridColumnResizeParams.js → models/params/gridColumnResizeParams.mjs} +0 -0
  1817. /package/{esm/models/params/gridEditCellParams.js → models/params/gridEditCellParams.mjs} +0 -0
  1818. /package/{esm/models/params/gridHeaderSelectionCheckboxParams.d.ts → models/params/gridHeaderSelectionCheckboxParams.d.mts} +0 -0
  1819. /package/{esm/models/params/gridHeaderSelectionCheckboxParams.js → models/params/gridHeaderSelectionCheckboxParams.mjs} +0 -0
  1820. /package/{esm/models/params/gridMenuParams.d.ts → models/params/gridMenuParams.d.mts} +0 -0
  1821. /package/{esm/models/params/gridMenuParams.js → models/params/gridMenuParams.mjs} +0 -0
  1822. /package/{esm/models/params/gridPreferencePanelParams.js → models/params/gridPreferencePanelParams.mjs} +0 -0
  1823. /package/{esm/models/params/gridRowParams.js → models/params/gridRowParams.mjs} +0 -0
  1824. /package/{esm/models/params/gridRowSelectionCheckboxParams.js → models/params/gridRowSelectionCheckboxParams.mjs} +0 -0
  1825. /package/{esm/models/params/gridScrollParams.d.ts → models/params/gridScrollParams.d.mts} +0 -0
  1826. /package/{esm/models/params/gridScrollParams.js → models/params/gridScrollParams.mjs} +0 -0
  1827. /package/{esm/models/params/gridValueOptionsParams.js → models/params/gridValueOptionsParams.mjs} +0 -0
  1828. /package/{esm/models/props/DataGridProps.js → models/props/DataGridProps.mjs} +0 -0
  1829. /package/{esm/themeAugmentation/overrides.js → themeAugmentation/overrides.mjs} +0 -0
  1830. /package/{esm/themeAugmentation/props.js → themeAugmentation/props.mjs} +0 -0
  1831. /package/{esm/utils/ResizeObserver.d.ts → utils/ResizeObserver.d.mts} +0 -0
  1832. /package/{esm/utils/ResizeObserver.js → utils/ResizeObserver.mjs} +0 -0
  1833. /package/{esm/utils/assert.d.ts → utils/assert.d.mts} +0 -0
  1834. /package/{esm/utils/cleanupTracking/CleanupTracking.d.ts → utils/cleanupTracking/CleanupTracking.d.mts} +0 -0
  1835. /package/{esm/utils/cleanupTracking/CleanupTracking.js → utils/cleanupTracking/CleanupTracking.mjs} +0 -0
  1836. /package/{esm/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.js → utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.mjs} +0 -0
  1837. /package/{esm/utils/cleanupTracking/TimerBasedCleanupTracking.js → utils/cleanupTracking/TimerBasedCleanupTracking.mjs} +0 -0
  1838. /package/{esm/utils/createControllablePromise.d.ts → utils/createControllablePromise.d.mts} +0 -0
  1839. /package/{esm/utils/createControllablePromise.js → utils/createControllablePromise.mjs} +0 -0
  1840. /package/{esm/utils/createSelector.d.ts → utils/createSelector.d.mts} +0 -0
  1841. /package/{esm/utils/createSelector.js → utils/createSelector.mjs} +0 -0
  1842. /package/{esm/utils/css/context.d.ts → utils/css/context.d.mts} +0 -0
  1843. /package/{esm/utils/doesSupportPreventScroll.d.ts → utils/doesSupportPreventScroll.d.mts} +0 -0
  1844. /package/{esm/utils/doesSupportPreventScroll.js → utils/doesSupportPreventScroll.mjs} +0 -0
  1845. /package/{esm/utils/getPublicApiRef.js → utils/getPublicApiRef.mjs} +0 -0
  1846. /package/{esm/utils/isJSDOM.d.ts → utils/isJSDOM.d.mts} +0 -0
  1847. /package/{esm/utils/isJSDOM.js → utils/isJSDOM.mjs} +0 -0
  1848. /package/{esm/utils/keyboardUtils.d.ts → utils/keyboardUtils.d.mts} +0 -0
  1849. /package/{esm/utils/keyboardUtils.js → utils/keyboardUtils.mjs} +0 -0
  1850. /package/{esm/utils/roundToDecimalPlaces.d.ts → utils/roundToDecimalPlaces.d.mts} +0 -0
  1851. /package/{esm/utils/roundToDecimalPlaces.js → utils/roundToDecimalPlaces.mjs} +0 -0
  1852. /package/{esm/utils/utils.d.ts → utils/utils.d.mts} +0 -0
  1853. /package/{esm/utils/utils.js → utils/utils.mjs} +0 -0
@@ -0,0 +1,915 @@
1
+ import type * as React from 'react';
2
+ import type { RefObject } from '@mui/x-internals/types';
3
+ import type { SxProps } from '@mui/system';
4
+ import type { Theme } from '@mui/material/styles';
5
+ import type { GridDensity } from "../gridDensity.mjs";
6
+ import type { GridEditMode } from "../gridEditRowModel.mjs";
7
+ import type { GridFeatureMode } from "../gridFeatureMode.mjs";
8
+ import type { Logger } from "../logger.mjs";
9
+ import type { GridSortDirection, GridSortModel } from "../gridSortModel.mjs";
10
+ import type { GridSlotsComponent } from "../gridSlotsComponent.mjs";
11
+ import type { GridRowId, GridRowIdGetter, GridRowsProp, GridValidRowModel } from "../gridRows.mjs";
12
+ import type { GridEventListener } from "../events/index.mjs";
13
+ import type { GridCallbackDetails, GridLocaleText } from "../api/index.mjs";
14
+ import type { GridApiCommunity } from "../api/gridApiCommunity.mjs";
15
+ import type { GridColDef, GridListViewColDef, GridCheckboxSelectionColDef } from "../colDef/gridColDef.mjs";
16
+ import type { GridClasses } from "../../constants/gridClasses.mjs";
17
+ import type { GridRowHeightParams, GridRowHeightReturnValue, GridRowParams, GridRowSpacing, GridRowSpacingParams, GridRowClassNameParams } from "../params/index.mjs";
18
+ import type { GridCellParams } from "../params/gridCellParams.mjs";
19
+ import type { GridFilterModel } from "../gridFilterModel.mjs";
20
+ import type { GridRowSelectionModel, GridRowSelectionPropagation } from "../gridRowSelectionModel.mjs";
21
+ import type { GridInitialStateCommunity } from "../gridStateCommunity.mjs";
22
+ import type { GridSlotsComponentsProps } from "../gridSlotsComponentsProps.mjs";
23
+ import type { GridColumnVisibilityModel } from "../../hooks/features/columns/gridColumnsInterfaces.mjs";
24
+ import type { GridCellModesModel, GridRowModesModel } from "../api/gridEditingApi.mjs";
25
+ import type { GridColumnGroupingModel } from "../gridColumnGrouping.mjs";
26
+ import type { GridPaginationMeta, GridPaginationModel } from "../gridPaginationProps.mjs";
27
+ import type { GridAutosizeOptions } from "../../hooks/features/columnResize/index.mjs";
28
+ import type { GridDataSource, GridDataSourceCache } from "../gridDataSource.mjs";
29
+ import type { GridGetRowsError, GridUpdateRowError } from "../../hooks/features/dataSource/gridDataSourceError.mjs";
30
+ type CommonProps = {
31
+ className?: string;
32
+ style?: React.CSSProperties;
33
+ };
34
+ export interface GridExperimentalFeatures {
35
+ /**
36
+ * Emits a warning if the cell receives focus without also syncing the focus state.
37
+ * Only works if NODE_ENV=test.
38
+ */
39
+ warnIfFocusStateIsNotSynced: boolean;
40
+ }
41
+ /**
42
+ * The props users can give to the Data Grid component.
43
+ */
44
+ export type DataGridProps<R extends GridValidRowModel = any> = Omit<Partial<DataGridPropsWithDefaultValues<R>> & DataGridPropsWithComplexDefaultValueBeforeProcessing & DataGridPropsWithoutDefaultValue<R>, DataGridForcedPropsKey> & {
45
+ pagination?: true;
46
+ };
47
+ /**
48
+ * The props of the Data Grid component after the pre-processing phase that the user should not be able to override.
49
+ * Those are usually used in feature-hook for which the pro-plan has more advanced features (eg: multi-sorting, multi-filtering, ...).
50
+ */
51
+ export type DataGridForcedPropsKey = 'checkboxSelectionVisibleOnly' | 'disableMultipleColumnsFiltering' | 'disableMultipleColumnsSorting' | 'disableColumnReorder' | 'keepColumnPositionIfDraggedOutside' | 'throttleRowsMs' | 'hideFooterRowCount' | 'pagination' | 'signature' | 'listView';
52
+ /**
53
+ * The Data Grid options with a default value that must be merged with the value given through props.
54
+ */
55
+ export interface DataGridPropsWithComplexDefaultValueAfterProcessing {
56
+ slots: GridSlotsComponent;
57
+ localeText: GridLocaleText;
58
+ }
59
+ /**
60
+ * The Data Grid options with a default value that must be merged with the value given through props.
61
+ */
62
+ export interface DataGridPropsWithComplexDefaultValueBeforeProcessing {
63
+ /**
64
+ * Overridable components.
65
+ */
66
+ slots?: Partial<GridSlotsComponent>;
67
+ /**
68
+ * Set the locale text of the Data Grid.
69
+ * You can find all the translation keys supported in [the source](https://github.com/mui/mui-x/blob/HEAD/packages/x-data-grid/src/constants/localeTextConstants.ts) in the GitHub repository.
70
+ */
71
+ localeText?: Partial<GridLocaleText>;
72
+ }
73
+ /**
74
+ * The Data Grid options with a default value overridable through props
75
+ * None of the entry of this interface should be optional, they all have default values and `DataGridProps` already applies a `Partial<DataGridSimpleOptions>` for the public interface
76
+ * The controlled model do not have a default value at the prop processing level, so they must be defined in `DataGridOtherProps`
77
+ * TODO: add multiSortKey
78
+ */
79
+ export interface DataGridPropsWithDefaultValues<R extends GridValidRowModel = any> {
80
+ /**
81
+ * If `true`, the Data Grid height is dynamic and takes as much space as it needs to display all rows.
82
+ * Use it instead of a flex parent container approach, if:
83
+ * - you don't need to set a minimum or maximum height for the Data Grid
84
+ * - you want to avoid the scrollbar flickering when the content changes
85
+ * @default false
86
+ */
87
+ autoHeight: boolean;
88
+ /**
89
+ * If `true`, the pageSize is calculated according to the container size and the max number of rows to avoid rendering a vertical scroll bar.
90
+ * @default false
91
+ */
92
+ autoPageSize: boolean;
93
+ /**
94
+ * If `true`, the Data Grid will display an extra column with checkboxes for selecting rows.
95
+ * @default false
96
+ */
97
+ checkboxSelection: boolean;
98
+ /**
99
+ * If `true`, the "Select All" header checkbox selects only the rows on the current page. To be used in combination with `checkboxSelection`.
100
+ * It only works if the pagination is enabled.
101
+ * @default false
102
+ */
103
+ checkboxSelectionVisibleOnly: boolean;
104
+ /**
105
+ * Column region in pixels to render before/after the viewport
106
+ * @default 150
107
+ */
108
+ columnBufferPx: number;
109
+ /**
110
+ * Row region in pixels to render before/after the viewport
111
+ * @default 150
112
+ */
113
+ rowBufferPx: number;
114
+ /**
115
+ * If `false`, the row selection mode is disabled.
116
+ * @default true
117
+ */
118
+ rowSelection: boolean;
119
+ /**
120
+ * The milliseconds throttle delay for resizing the grid.
121
+ * @default 60
122
+ */
123
+ resizeThrottleMs: number;
124
+ /**
125
+ * If `true`, column filters are disabled.
126
+ * @default false
127
+ */
128
+ disableColumnFilter: boolean;
129
+ /**
130
+ * If `true`, the column menu is disabled.
131
+ * @default false
132
+ */
133
+ disableColumnMenu: boolean;
134
+ /**
135
+ * If `true`, hiding/showing columns is disabled.
136
+ * @default false
137
+ */
138
+ disableColumnSelector: boolean;
139
+ /**
140
+ * If `true`, the density selector is disabled.
141
+ * @default false
142
+ */
143
+ disableDensitySelector: boolean;
144
+ /**
145
+ * If `true`, `eval()` is not used for performance optimization.
146
+ * @default false
147
+ */
148
+ disableEval: boolean;
149
+ /**
150
+ * If `true`, filtering with multiple columns is disabled.
151
+ * @default false
152
+ */
153
+ disableMultipleColumnsFiltering: boolean;
154
+ /**
155
+ * If `true`, multiple selection using the Ctrl/CMD or Shift key is disabled.
156
+ * The MIT DataGrid will ignore this prop, unless `checkboxSelection` is enabled.
157
+ * @default false (`!props.checkboxSelection` for MIT Data Grid)
158
+ */
159
+ disableMultipleRowSelection: boolean;
160
+ /**
161
+ * If `true`, the column sorting feature will be disabled.
162
+ * @default false
163
+ */
164
+ disableColumnSorting: boolean;
165
+ /**
166
+ * If `true`, the sorting with multiple columns is disabled.
167
+ * @default false
168
+ */
169
+ disableMultipleColumnsSorting: boolean;
170
+ /**
171
+ * If `true`, the selection on click on a row or cell is disabled.
172
+ * @default false
173
+ */
174
+ disableRowSelectionOnClick: boolean;
175
+ /**
176
+ * If `true`, the Data Grid will not use the exclude model optimization when selecting all rows.
177
+ * @default false
178
+ */
179
+ disableRowSelectionExcludeModel: boolean;
180
+ /**
181
+ * If `true`, the virtualization is disabled.
182
+ * @default false
183
+ */
184
+ disableVirtualization: boolean;
185
+ /**
186
+ * Controls whether to use the cell or row editing.
187
+ * @default "cell"
188
+ */
189
+ editMode: GridEditMode;
190
+ /**
191
+ * Filtering can be processed on the server or client-side.
192
+ * Set it to 'server' if you would like to handle filtering on the server-side.
193
+ * @default "client"
194
+ */
195
+ filterMode: GridFeatureMode;
196
+ /**
197
+ * The milliseconds delay to wait after a keystroke before triggering filtering.
198
+ * @default 150
199
+ */
200
+ filterDebounceMs: number;
201
+ /**
202
+ * The milliseconds delay to wait after a keystroke before triggering filtering in the columns menu.
203
+ * @default 150
204
+ */
205
+ columnFilterDebounceMs: number;
206
+ /**
207
+ * Sets the height in pixel of the column headers in the Data Grid.
208
+ * @default 56
209
+ */
210
+ columnHeaderHeight: number;
211
+ /**
212
+ * If `true`, the footer component is hidden.
213
+ * @default false
214
+ */
215
+ hideFooter: boolean;
216
+ /**
217
+ * If `true`, the pagination component in the footer is hidden.
218
+ * @default false
219
+ */
220
+ hideFooterPagination: boolean;
221
+ /**
222
+ * If `true`, the row count in the footer is hidden.
223
+ * It has no effect if the pagination is enabled.
224
+ * @default false
225
+ */
226
+ hideFooterRowCount: boolean;
227
+ /**
228
+ * If `true`, the selected row count in the footer is hidden.
229
+ * @default false
230
+ */
231
+ hideFooterSelectedRowCount: boolean;
232
+ /**
233
+ * If `true`, the diacritics (accents) are ignored when filtering or quick filtering.
234
+ * E.g. when filter value is `cafe`, the rows with `café` will be visible.
235
+ * @default false
236
+ */
237
+ ignoreDiacritics: boolean;
238
+ /**
239
+ * If `true`, the selection model will retain selected rows that do not exist.
240
+ * Useful when using server side pagination and row selections need to be retained
241
+ * when changing pages.
242
+ * @default false
243
+ */
244
+ keepNonExistentRowsSelected: boolean;
245
+ /**
246
+ * Pass a custom logger in the components that implements the [[Logger]] interface.
247
+ * @default console
248
+ */
249
+ logger: Logger;
250
+ /**
251
+ * Allows to pass the logging level or false to turn off logging.
252
+ * @default "error" ("warn" in dev mode)
253
+ */
254
+ logLevel: keyof Logger | false;
255
+ /**
256
+ * If `true`, a loading overlay is displayed.
257
+ * @default false
258
+ */
259
+ loading: boolean;
260
+ /**
261
+ * If `true`, pagination is enabled.
262
+ * @default false
263
+ */
264
+ pagination: boolean;
265
+ /**
266
+ * Pagination can be processed on the server or client-side.
267
+ * Set it to 'client' if you would like to handle the pagination on the client-side.
268
+ * Set it to 'server' if you would like to handle the pagination on the server-side.
269
+ * @default "client"
270
+ */
271
+ paginationMode: GridFeatureMode;
272
+ /**
273
+ * Set of rows of type [[GridRowsProp]].
274
+ * @default []
275
+ */
276
+ rows: GridRowsProp<R>;
277
+ /**
278
+ * Sets the height in pixel of a row in the Data Grid.
279
+ * @default 52
280
+ */
281
+ rowHeight: number;
282
+ /**
283
+ * Select the pageSize dynamically using the component UI.
284
+ * @default [25, 50, 100]
285
+ */
286
+ pageSizeOptions: ReadonlyArray<number | {
287
+ value: number;
288
+ label: string;
289
+ }>;
290
+ /**
291
+ * Sets the type of space between rows added by `getRowSpacing`.
292
+ * @default "margin"
293
+ */
294
+ rowSpacingType: 'margin' | 'border';
295
+ /**
296
+ * If `true`, vertical borders will be displayed between cells.
297
+ * @default false
298
+ */
299
+ showCellVerticalBorder: boolean;
300
+ /**
301
+ * If `true`, vertical borders will be displayed between column header items.
302
+ * @default false
303
+ */
304
+ showColumnVerticalBorder: boolean;
305
+ /**
306
+ * If `true`, the toolbar is displayed.
307
+ * @default false
308
+ */
309
+ showToolbar: boolean;
310
+ /**
311
+ * The order of the sorting sequence.
312
+ * @default ['asc', 'desc', null]
313
+ */
314
+ sortingOrder: readonly GridSortDirection[];
315
+ /**
316
+ * Sorting can be processed on the server or client-side.
317
+ * Set it to 'client' if you would like to handle sorting on the client-side.
318
+ * Set it to 'server' if you would like to handle sorting on the server-side.
319
+ * @default "client"
320
+ */
321
+ sortingMode: GridFeatureMode;
322
+ /**
323
+ * If positive, the Data Grid will throttle updates coming from `apiRef.current.updateRows` and `apiRef.current.setRows`.
324
+ * It can be useful if you have a high update rate but do not want to do heavy work like filtering / sorting or rendering on each individual update.
325
+ * @default 0
326
+ */
327
+ throttleRowsMs: number;
328
+ /**
329
+ * If positive, the Data Grid will periodically revalidate data source rows by re-fetching them from the server when the cache entry has expired.
330
+ * If the refetched rows are different from the current rows, the grid will update the rows.
331
+ * Set to `0` to disable polling.
332
+ * @default 0
333
+ */
334
+ dataSourceRevalidateMs: number;
335
+ /**
336
+ * If `true`, reordering columns is disabled.
337
+ * @default false
338
+ */
339
+ disableColumnReorder: boolean;
340
+ /**
341
+ * If `true`, resizing columns is disabled.
342
+ * @default false
343
+ */
344
+ disableColumnResize: boolean;
345
+ /**
346
+ * If `true`, moving the mouse pointer outside the Data Grid before releasing the mouse button
347
+ * in a column re-order action will not cause the column to jump back to its original position.
348
+ * @default false
349
+ */
350
+ keepColumnPositionIfDraggedOutside: boolean;
351
+ /**
352
+ * If `true`, the Data Grid will not use `valueFormatter` when exporting to CSV or copying to clipboard.
353
+ * If an object is provided, you can choose to ignore the `valueFormatter` for CSV export or clipboard export.
354
+ * @default false
355
+ */
356
+ ignoreValueFormatterDuringExport: boolean | {
357
+ csvExport?: boolean;
358
+ clipboardExport?: boolean;
359
+ };
360
+ /**
361
+ * The character used to separate cell values when copying to the clipboard.
362
+ * @default '\t'
363
+ */
364
+ clipboardCopyCellDelimiter: string;
365
+ /**
366
+ * If `true`, columns are autosized after the datagrid is mounted.
367
+ * @default false
368
+ */
369
+ autosizeOnMount: boolean;
370
+ /**
371
+ * If `true`, column autosizing on header separator double-click is disabled.
372
+ * @default false
373
+ */
374
+ disableAutosize: boolean;
375
+ /**
376
+ * If `true`, the Data Grid will auto span the cells over the rows having the same value.
377
+ * @default false
378
+ */
379
+ rowSpanning: boolean;
380
+ /**
381
+ * If `true`, the Data Grid enables column virtualization when `getRowHeight` is set to `() => 'auto'`.
382
+ * By default, column virtualization is disabled when dynamic row height is enabled to measure the row height correctly.
383
+ * For datasets with a large number of columns, this can cause performance issues.
384
+ * The downside of enabling this prop is that the row height will be estimated based the cells that are currently rendered, which can cause row height change when scrolling horizontally.
385
+ * @default false
386
+ */
387
+ virtualizeColumnsWithAutoRowHeight: boolean;
388
+ /**
389
+ * Sets the tab navigation behavior for the Data Grid.
390
+ * - "none": No Data Grid specific tab navigation. Pressing the tab key will move the focus to the next element in the tab sequence.
391
+ * - "content": Pressing the tab key will move the focus to the next cell in the same row or the first cell in the next row. Shift+Tab will move the focus to the previous cell in the same row or the last cell in the previous row. Tab navigation is not enabled for the header.
392
+ * - "header": Pressing the tab key will move the focus to the next column group, column header or header filter. Shift+Tab will move the focus to the previous column group, column header or header filter. Tab navigation is not enabled for the content.
393
+ * - "all": Combines the "content" and "header" behavior.
394
+ * @default "none"
395
+ */
396
+ tabNavigation: 'none' | 'content' | 'header' | 'all';
397
+ }
398
+ /**
399
+ * The Data Grid props with no default value.
400
+ */
401
+ export interface DataGridPropsWithoutDefaultValue<R extends GridValidRowModel = any> extends CommonProps {
402
+ /**
403
+ * The ref object that allows Data Grid manipulation. Can be instantiated with `useGridApiRef()`.
404
+ */
405
+ apiRef?: RefObject<GridApiCommunity | null>;
406
+ /**
407
+ * Signal to the underlying logic what version of the public component API
408
+ * of the Data Grid is exposed [[GridSignature]].
409
+ * @ignore - do not document.
410
+ */
411
+ signature?: string;
412
+ /**
413
+ * Override or extend the styles applied to the component.
414
+ */
415
+ classes?: Partial<GridClasses>;
416
+ /**
417
+ * The data source object.
418
+ */
419
+ dataSource?: GridDataSource;
420
+ /**
421
+ * Data source cache object.
422
+ */
423
+ dataSourceCache?: GridDataSourceCache | null;
424
+ /**
425
+ * Set the density of the Data Grid.
426
+ * @default "standard"
427
+ */
428
+ density?: GridDensity;
429
+ /**
430
+ * Set the total number of rows, if it is different from the length of the value `rows` prop.
431
+ * If some rows have children (for instance in the tree data), this number represents the amount of top level rows.
432
+ * Only works with `paginationMode="server"`, ignored when `paginationMode="client"`.
433
+ */
434
+ rowCount?: number;
435
+ /**
436
+ * Use if the actual rowCount is not known upfront, but an estimation is available.
437
+ * If some rows have children (for instance in the tree data), this number represents the amount of top level rows.
438
+ * Applicable only with `paginationMode="server"` and when `rowCount="-1"`
439
+ */
440
+ estimatedRowCount?: number;
441
+ /**
442
+ * Override the height/width of the Data Grid inner scrollbar.
443
+ */
444
+ scrollbarSize?: number;
445
+ /**
446
+ * Function that applies CSS classes dynamically on cells.
447
+ * @param {GridCellParams} params With all properties from [[GridCellParams]].
448
+ * @returns {string} The CSS class to apply to the cell.
449
+ */
450
+ getCellClassName?: (params: GridCellParams<any, R>) => string;
451
+ /**
452
+ * Function that applies CSS classes dynamically on rows.
453
+ * @param {GridRowClassNameParams} params With all properties from [[GridRowClassNameParams]].
454
+ * @returns {string} The CSS class to apply to the row.
455
+ */
456
+ getRowClassName?: (params: GridRowClassNameParams<R>) => string;
457
+ /**
458
+ * Function that sets the row height per row.
459
+ * @param {GridRowHeightParams} params With all properties from [[GridRowHeightParams]].
460
+ * @returns {GridRowHeightReturnValue} The row height value. If `null` or `undefined` then the default row height is applied. If "auto" then the row height is calculated based on the content.
461
+ */
462
+ getRowHeight?: (params: GridRowHeightParams) => GridRowHeightReturnValue;
463
+ /**
464
+ * Function that returns the estimated height for a row.
465
+ * Only works if dynamic row height is used.
466
+ * Once the row height is measured this value is discarded.
467
+ * @param {GridRowHeightParams} params With all properties from [[GridRowHeightParams]].
468
+ * @returns {number | null} The estimated row height value. If `null` or `undefined` then the default row height, based on the density, is applied.
469
+ */
470
+ getEstimatedRowHeight?: (params: GridRowHeightParams) => number | null;
471
+ /**
472
+ * Function that allows to specify the spacing between rows.
473
+ * @param {GridRowSpacingParams} params With all properties from [[GridRowSpacingParams]].
474
+ * @returns {GridRowSpacing} The row spacing values.
475
+ */
476
+ getRowSpacing?: (params: GridRowSpacingParams) => GridRowSpacing;
477
+ /**
478
+ * Function that returns the element to render in row detail.
479
+ * @param {GridRowParams} params With all properties from [[GridRowParams]].
480
+ * @returns {React.JSX.Element} The row detail element.
481
+ */
482
+ getDetailPanelContent?: (params: GridRowParams<R>) => React.ReactNode;
483
+ /**
484
+ * Callback fired when a cell is rendered, returns true if the cell is editable.
485
+ * @param {GridCellParams} params With all properties from [[GridCellParams]].
486
+ * @returns {boolean} A boolean indicating if the cell is editable.
487
+ */
488
+ isCellEditable?: (params: GridCellParams<any, R>) => boolean;
489
+ /**
490
+ * Determines if a row can be selected.
491
+ * @param {GridRowParams} params With all properties from [[GridRowParams]].
492
+ * @returns {boolean} A boolean indicating if the row is selectable.
493
+ */
494
+ isRowSelectable?: (params: GridRowParams<R>) => boolean;
495
+ /**
496
+ * Callback fired when the cell turns to edit mode.
497
+ * @param {GridCellParams} params With all properties from [[GridCellParams]].
498
+ * @param {MuiEvent<React.KeyboardEvent | React.MouseEvent>} event The event that caused this prop to be called.
499
+ */
500
+ onCellEditStart?: GridEventListener<'cellEditStart'>;
501
+ /**
502
+ * Callback fired when the cell turns to view mode.
503
+ * @param {GridCellParams} params With all properties from [[GridCellParams]].
504
+ * @param {MuiEvent<MuiBaseEvent>} event The event that caused this prop to be called.
505
+ */
506
+ onCellEditStop?: GridEventListener<'cellEditStop'>;
507
+ /**
508
+ * Callback fired when a data source request fails.
509
+ * @param {GridGetRowsError | GridUpdateRowError} error The data source error object.
510
+ */
511
+ onDataSourceError?: (error: GridGetRowsError | GridUpdateRowError) => void;
512
+ /**
513
+ * Callback fired when the row turns to edit mode.
514
+ * @param {GridRowParams} params With all properties from [[GridRowParams]].
515
+ * @param {MuiEvent<React.KeyboardEvent | React.MouseEvent>} event The event that caused this prop to be called.
516
+ */
517
+ onRowEditStart?: GridEventListener<'rowEditStart'>;
518
+ /**
519
+ * Callback fired when the row turns to view mode.
520
+ * @param {GridRowParams} params With all properties from [[GridRowParams]].
521
+ * @param {MuiEvent<MuiBaseEvent>} event The event that caused this prop to be called.
522
+ */
523
+ onRowEditStop?: GridEventListener<'rowEditStop'>;
524
+ /**
525
+ * Callback fired when any cell is clicked.
526
+ * @param {GridCellParams} params With all properties from [[GridCellParams]].
527
+ * @param {MuiEvent<React.MouseEvent>} event The event object.
528
+ * @param {GridCallbackDetails} details Additional details for this callback.
529
+ */
530
+ onCellClick?: GridEventListener<'cellClick'>;
531
+ /**
532
+ * Callback fired when a double click event comes from a cell element.
533
+ * @param {GridCellParams} params With all properties from [[GridCellParams]].
534
+ * @param {MuiEvent<React.MouseEvent>} event The event object.
535
+ * @param {GridCallbackDetails} details Additional details for this callback.
536
+ */
537
+ onCellDoubleClick?: GridEventListener<'cellDoubleClick'>;
538
+ /**
539
+ * Callback fired when a keydown event comes from a cell element.
540
+ * @param {GridCellParams} params With all properties from [[GridCellParams]].
541
+ * @param {MuiEvent<React.KeyboardEvent>} event The event object.
542
+ * @param {GridCallbackDetails} details Additional details for this callback.
543
+ */
544
+ onCellKeyDown?: GridEventListener<'cellKeyDown'>;
545
+ /**
546
+ * Callback fired when a click event comes from a column header element.
547
+ * @param {GridColumnHeaderParams} params With all properties from [[GridColumnHeaderParams]].
548
+ * @param {MuiEvent<React.MouseEvent>} event The event object.
549
+ * @param {GridCallbackDetails} details Additional details for this callback.
550
+ */
551
+ onColumnHeaderClick?: GridEventListener<'columnHeaderClick'>;
552
+ /**
553
+ * Callback fired when a contextmenu event comes from a column header element.
554
+ * @param {GridColumnHeaderParams} params With all properties from [[GridColumnHeaderParams]].
555
+ * @param {MuiEvent<React.MouseEvent>} event The event object.
556
+ */
557
+ onColumnHeaderContextMenu?: GridEventListener<'columnHeaderContextMenu'>;
558
+ /**
559
+ * Callback fired when a double click event comes from a column header element.
560
+ * @param {GridColumnHeaderParams} params With all properties from [[GridColumnHeaderParams]].
561
+ * @param {MuiEvent<React.MouseEvent>} event The event object.
562
+ * @param {GridCallbackDetails} details Additional details for this callback.
563
+ */
564
+ onColumnHeaderDoubleClick?: GridEventListener<'columnHeaderDoubleClick'>;
565
+ /**
566
+ * Callback fired when a mouseover event comes from a column header element.
567
+ * @param {GridColumnHeaderParams} params With all properties from [[GridColumnHeaderParams]].
568
+ * @param {MuiEvent<React.MouseEvent>} event The event object.
569
+ * @param {GridCallbackDetails} details Additional details for this callback.
570
+ */
571
+ onColumnHeaderOver?: GridEventListener<'columnHeaderOver'>;
572
+ /**
573
+ * Callback fired when a mouseout event comes from a column header element.
574
+ * @param {GridColumnHeaderParams} params With all properties from [[GridColumnHeaderParams]].
575
+ * @param {MuiEvent<React.MouseEvent>} event The event object.
576
+ * @param {GridCallbackDetails} details Additional details for this callback.
577
+ */
578
+ onColumnHeaderOut?: GridEventListener<'columnHeaderOut'>;
579
+ /**
580
+ * Callback fired when a mouse enter event comes from a column header element.
581
+ * @param {GridColumnHeaderParams} params With all properties from [[GridColumnHeaderParams]].
582
+ * @param {MuiEvent<React.MouseEvent>} event The event object.
583
+ * @param {GridCallbackDetails} details Additional details for this callback.
584
+ */
585
+ onColumnHeaderEnter?: GridEventListener<'columnHeaderEnter'>;
586
+ /**
587
+ * Callback fired when a mouse leave event comes from a column header element.
588
+ * @param {GridColumnHeaderParams} params With all properties from [[GridColumnHeaderParams]].
589
+ * @param {MuiEvent<React.MouseEvent>} event The event object.
590
+ * @param {GridCallbackDetails} details Additional details for this callback.
591
+ */
592
+ onColumnHeaderLeave?: GridEventListener<'columnHeaderLeave'>;
593
+ /**
594
+ * Callback fired when a column is reordered.
595
+ * @param {GridColumnOrderChangeParams} params With all properties from [[GridColumnOrderChangeParams]].
596
+ * @param {MuiEvent<{}>} event The event object.
597
+ * @param {GridCallbackDetails} details Additional details for this callback.
598
+ */
599
+ onColumnOrderChange?: GridEventListener<'columnOrderChange'>;
600
+ /**
601
+ * Callback fired when the density changes.
602
+ * @param {GridDensity} density New density value.
603
+ */
604
+ onDensityChange?: (density: GridDensity) => void;
605
+ /**
606
+ * Callback fired when a row is clicked.
607
+ * Not called if the target clicked is an interactive element added by the built-in columns.
608
+ * @param {GridRowParams} params With all properties from [[GridRowParams]].
609
+ * @param {MuiEvent<React.MouseEvent>} event The event object.
610
+ * @param {GridCallbackDetails} details Additional details for this callback.
611
+ */
612
+ onRowClick?: GridEventListener<'rowClick'>;
613
+ /**
614
+ * Callback fired when a double click event comes from a row container element.
615
+ * @param {GridRowParams} params With all properties from [[RowParams]].
616
+ * @param {MuiEvent<React.MouseEvent>} event The event object.
617
+ * @param {GridCallbackDetails} details Additional details for this callback.
618
+ */
619
+ onRowDoubleClick?: GridEventListener<'rowDoubleClick'>;
620
+ /**
621
+ * Callback fired when the Data Grid is resized.
622
+ * @param {ElementSize} containerSize With all properties from [[ElementSize]].
623
+ * @param {MuiEvent<{}>} event The event object.
624
+ * @param {GridCallbackDetails} details Additional details for this callback.
625
+ */
626
+ onResize?: GridEventListener<'debouncedResize'>;
627
+ /**
628
+ * Callback fired when the state of the Data Grid is updated.
629
+ * @param {GridState} state The new state.
630
+ * @param {MuiEvent<{}>} event The event object.
631
+ * @param {GridCallbackDetails} details Additional details for this callback.
632
+ * @ignore - do not document.
633
+ */
634
+ onStateChange?: GridEventListener<'stateChange'>;
635
+ /**
636
+ * The pagination model of type [[GridPaginationModel]] which refers to current `page` and `pageSize`.
637
+ */
638
+ paginationModel?: GridPaginationModel;
639
+ /**
640
+ * The extra information about the pagination state of the Data Grid.
641
+ * Only applicable with `paginationMode="server"`.
642
+ */
643
+ paginationMeta?: GridPaginationMeta;
644
+ /**
645
+ * Callback fired when the pagination model has changed.
646
+ * @param {GridPaginationModel} model Updated pagination model.
647
+ * @param {GridCallbackDetails} details Additional details for this callback.
648
+ */
649
+ onPaginationModelChange?: (model: GridPaginationModel, details: GridCallbackDetails<'pagination'>) => void;
650
+ /**
651
+ * Callback fired when the row count has changed.
652
+ * @param {number} count Updated row count.
653
+ */
654
+ onRowCountChange?: (count: number) => void;
655
+ /**
656
+ * Callback fired when the pagination meta has changed.
657
+ * @param {GridPaginationMeta} paginationMeta Updated pagination meta.
658
+ */
659
+ onPaginationMetaChange?: (paginationMeta: GridPaginationMeta) => void;
660
+ /**
661
+ * Callback fired when the preferences panel is closed.
662
+ * @param {GridPreferencePanelParams} params With all properties from [[GridPreferencePanelParams]].
663
+ * @param {MuiEvent<{}>} event The event object.
664
+ * @param {GridCallbackDetails} details Additional details for this callback.
665
+ */
666
+ onPreferencePanelClose?: GridEventListener<'preferencePanelClose'>;
667
+ /**
668
+ * Callback fired when the preferences panel is opened.
669
+ * @param {GridPreferencePanelParams} params With all properties from [[GridPreferencePanelParams]].
670
+ * @param {MuiEvent<{}>} event The event object.
671
+ * @param {GridCallbackDetails} details Additional details for this callback.
672
+ */
673
+ onPreferencePanelOpen?: GridEventListener<'preferencePanelOpen'>;
674
+ /**
675
+ * Callback fired when the menu is opened.
676
+ * @param {GridMenuParams} params With all properties from [[GridMenuParams]].
677
+ * @param {MuiEvent<{}>} event The event object.
678
+ * @param {GridCallbackDetails} details Additional details for this callback.
679
+ */
680
+ onMenuOpen?: GridEventListener<'menuOpen'>;
681
+ /**
682
+ * Callback fired when the menu is closed.
683
+ * @param {GridMenuParams} params With all properties from [[GridMenuParams]].
684
+ * @param {MuiEvent<{}>} event The event object.
685
+ * @param {GridCallbackDetails} details Additional details for this callback.
686
+ */
687
+ onMenuClose?: GridEventListener<'menuClose'>;
688
+ /**
689
+ * Controls the modes of the cells.
690
+ */
691
+ cellModesModel?: GridCellModesModel;
692
+ /**
693
+ * Callback fired when the `cellModesModel` prop changes.
694
+ * @param {GridCellModesModel} cellModesModel Object containing which cells are in "edit" mode.
695
+ * @param {GridCallbackDetails} details Additional details for this callback.
696
+ */
697
+ onCellModesModelChange?: (cellModesModel: GridCellModesModel, details: GridCallbackDetails) => void;
698
+ /**
699
+ * Controls the modes of the rows.
700
+ */
701
+ rowModesModel?: GridRowModesModel;
702
+ /**
703
+ * Callback fired when the `rowModesModel` prop changes.
704
+ * @param {GridRowModesModel} rowModesModel Object containing which rows are in "edit" mode.
705
+ * @param {GridCallbackDetails} details Additional details for this callback.
706
+ */
707
+ onRowModesModelChange?: (rowModesModel: GridRowModesModel, details: GridCallbackDetails) => void;
708
+ /**
709
+ * Set the filter model of the Data Grid.
710
+ */
711
+ filterModel?: GridFilterModel;
712
+ /**
713
+ * Callback fired when the Filter model changes before the filters are applied.
714
+ * @param {GridFilterModel} model With all properties from [[GridFilterModel]].
715
+ * @param {GridCallbackDetails} details Additional details for this callback.
716
+ */
717
+ onFilterModelChange?: (model: GridFilterModel, details: GridCallbackDetails<'filter'>) => void;
718
+ /**
719
+ * Sets the row selection model of the Data Grid.
720
+ */
721
+ rowSelectionModel?: GridRowSelectionModel;
722
+ /**
723
+ * Callback fired when the selection state of one or multiple rows changes.
724
+ * @param {GridRowSelectionModel} rowSelectionModel With all the row ids [[GridSelectionModel]].
725
+ * @param {GridCallbackDetails} details Additional details for this callback.
726
+ */
727
+ onRowSelectionModelChange?: (rowSelectionModel: GridRowSelectionModel, details: GridCallbackDetails) => void;
728
+ /**
729
+ * Set the column visibility model of the Data Grid.
730
+ * If defined, the Data Grid will ignore the `hide` property in [[GridColDef]].
731
+ */
732
+ columnVisibilityModel?: GridColumnVisibilityModel;
733
+ /**
734
+ * Callback fired when the column visibility model changes.
735
+ * @param {GridColumnVisibilityModel} model The new model.
736
+ * @param {GridCallbackDetails} details Additional details for this callback.
737
+ */
738
+ onColumnVisibilityModelChange?: (model: GridColumnVisibilityModel, details: GridCallbackDetails) => void;
739
+ /**
740
+ * Set the sort model of the Data Grid.
741
+ */
742
+ sortModel?: GridSortModel;
743
+ /**
744
+ * Callback fired when the sort model changes before a column is sorted.
745
+ * @param {GridSortModel} model With all properties from [[GridSortModel]].
746
+ * @param {GridCallbackDetails} details Additional details for this callback.
747
+ */
748
+ onSortModelChange?: (model: GridSortModel, details: GridCallbackDetails) => void;
749
+ /**
750
+ * The `aria-label` of the Data Grid.
751
+ */
752
+ 'aria-label'?: string;
753
+ /**
754
+ * The `id` of the element containing a label for the Data Grid.
755
+ */
756
+ 'aria-labelledby'?: string;
757
+ /**
758
+ * The label of the Data Grid.
759
+ * If the `showToolbar` prop is `true`, the label will be displayed in the toolbar and applied to the `aria-label` attribute of the grid.
760
+ * If the `showToolbar` prop is `false`, the label will not be visible but will be applied to the `aria-label` attribute of the grid.
761
+ */
762
+ label?: string;
763
+ /**
764
+ * Set of columns of type [[GridColDef]][].
765
+ */
766
+ columns: readonly GridColDef<R>[];
767
+ /**
768
+ * Return the id of a given [[GridRowModel]].
769
+ * Ensure the reference of this prop is stable to avoid performance implications.
770
+ * It could be done by either defining the prop outside of the component or by memoizing it.
771
+ */
772
+ getRowId?: GridRowIdGetter<R>;
773
+ /**
774
+ * Nonce of the inline styles for [Content Security Policy](https://www.w3.org/TR/2016/REC-CSP2-20161215/#script-src-the-nonce-attribute).
775
+ */
776
+ nonce?: string;
777
+ /**
778
+ * The initial state of the DataGrid.
779
+ * The data in it will be set in the state on initialization but will not be controlled.
780
+ * If one of the data in `initialState` is also being controlled, then the control state wins.
781
+ */
782
+ initialState?: GridInitialStateCommunity;
783
+ /**
784
+ * Overridable components props dynamically passed to the component at rendering.
785
+ */
786
+ slotProps?: GridSlotsComponentsProps;
787
+ /**
788
+ * The system prop that allows defining system overrides as well as additional CSS styles.
789
+ */
790
+ sx?: SxProps<Theme>;
791
+ /**
792
+ * Unstable features, breaking changes might be introduced.
793
+ * For each feature, if the flag is not explicitly set to `true`, the feature will be fully disabled and any property / method call will not have any effect.
794
+ */
795
+ experimentalFeatures?: Partial<GridExperimentalFeatures>;
796
+ /**
797
+ * Callback called before updating a row with new values in the row and cell editing.
798
+ * @template R
799
+ * @param {R} newRow Row object with the new values.
800
+ * @param {R} oldRow Row object with the old values.
801
+ * @param {{ rowId: GridRowId }} params Additional parameters.
802
+ * @returns {Promise<R> | R} The final values to update the row.
803
+ */
804
+ processRowUpdate?: (newRow: R, oldRow: R, params: {
805
+ rowId: GridRowId;
806
+ }) => Promise<R> | R;
807
+ /**
808
+ * Callback called when `processRowUpdate()` throws an error or rejects.
809
+ * @param {any} error The error thrown.
810
+ */
811
+ onProcessRowUpdateError?: (error: any) => void;
812
+ columnGroupingModel?: GridColumnGroupingModel;
813
+ /**
814
+ * Sets the height in pixels of the column group headers in the Data Grid.
815
+ * Inherits the `columnHeaderHeight` value if not set.
816
+ */
817
+ columnGroupHeaderHeight?: number;
818
+ /**
819
+ * Callback called when the data is copied to the clipboard.
820
+ * @param {string} data The data copied to the clipboard.
821
+ */
822
+ onClipboardCopy?: GridEventListener<'clipboardCopy'>;
823
+ /**
824
+ * The options for autosize when user-initiated.
825
+ */
826
+ autosizeOptions?: GridAutosizeOptions;
827
+ /**
828
+ * Definition of the column rendered when the `checkboxSelection` prop is enabled.
829
+ *
830
+ * @warning
831
+ * Be careful when overriding `renderHeader` or `renderCell` in the `checkboxColDef` prop.
832
+ * The default implementation of these properties includes the logic for selecting all rows and selecting a single row, respectively.
833
+ * Overriding them without providing the same functionality will break the row selection.
834
+ */
835
+ checkboxColDef?: GridCheckboxSelectionColDef<R>;
836
+ /**
837
+ * Callback fired while a column is being resized.
838
+ * @param {GridColumnResizeParams} params With all properties from [[GridColumnResizeParams]].
839
+ * @param {MuiEvent<React.MouseEvent>} event The event object.
840
+ * @param {GridCallbackDetails} details Additional details for this callback.
841
+ */
842
+ onColumnResize?: GridEventListener<'columnResize'>;
843
+ /**
844
+ * Callback fired when the width of a column is changed.
845
+ * @param {GridColumnResizeParams} params With all properties from [[GridColumnResizeParams]].
846
+ * @param {MuiEvent<React.MouseEvent>} event The event object.
847
+ * @param {GridCallbackDetails} details Additional details for this callback.
848
+ */
849
+ onColumnWidthChange?: GridEventListener<'columnWidthChange'>;
850
+ }
851
+ export interface DataGridProSharedPropsWithDefaultValue {
852
+ /**
853
+ * If `true`, the header filters feature is enabled.
854
+ * @default false
855
+ */
856
+ headerFilters: boolean;
857
+ /**
858
+ * When `rowSelectionPropagation.descendants` is set to `true`.
859
+ * - Selecting a parent selects all its filtered descendants automatically.
860
+ * - Deselecting a parent row deselects all its filtered descendants automatically.
861
+ *
862
+ * When `rowSelectionPropagation.parents` is set to `true`
863
+ * - Selecting all the filtered descendants of a parent selects the parent automatically.
864
+ * - Deselecting a descendant of a selected parent deselects the parent automatically.
865
+ *
866
+ * Works with tree data and row grouping on the client-side only.
867
+ * @default { parents: true, descendants: true }
868
+ */
869
+ rowSelectionPropagation: GridRowSelectionPropagation;
870
+ /**
871
+ * If `true`, displays the data in a list view.
872
+ * Use in combination with `listViewColumn`.
873
+ * @default false
874
+ */
875
+ listView: boolean;
876
+ /**
877
+ * If set to "always", the multi-sorting is applied without modifier key.
878
+ * Otherwise, the modifier key is required for multi-sorting to be applied.
879
+ * @see See https://mui.com/x/react-data-grid/sorting/#multi-sorting
880
+ * @default "withModifierKey"
881
+ */
882
+ multipleColumnsSortingMode: 'withModifierKey' | 'always';
883
+ /**
884
+ * Sets the type of separator between pinned columns and non-pinned columns.
885
+ * @default 'border-and-shadow'
886
+ */
887
+ pinnedColumnsSectionSeparator: 'border' | 'shadow' | 'border-and-shadow';
888
+ /**
889
+ * Sets the type of separator between pinned rows and non-pinned rows.
890
+ * @default 'border-and-shadow'
891
+ */
892
+ pinnedRowsSectionSeparator: 'border' | 'border-and-shadow';
893
+ }
894
+ export interface DataGridProSharedPropsWithoutDefaultValue<R extends GridValidRowModel = any> {
895
+ /**
896
+ * Override the height of the header filters.
897
+ */
898
+ headerFilterHeight?: number;
899
+ /**
900
+ * Definition of the column rendered when the `listView` prop is enabled.
901
+ */
902
+ listViewColumn?: GridListViewColDef<R>;
903
+ }
904
+ export interface DataGridPremiumSharedPropsWithDefaultValue {
905
+ /**
906
+ * If `true`, the cell selection mode is enabled.
907
+ * @default false
908
+ */
909
+ cellSelection: boolean;
910
+ }
911
+ /**
912
+ * The props of the Data Grid component after the pre-processing phase.
913
+ */
914
+ export interface DataGridProcessedProps<R extends GridValidRowModel = any> extends DataGridPropsWithDefaultValues, DataGridPropsWithComplexDefaultValueAfterProcessing, DataGridPropsWithoutDefaultValue<R>, DataGridProSharedPropsWithoutDefaultValue, Partial<DataGridProSharedPropsWithDefaultValue>, Partial<DataGridPremiumSharedPropsWithDefaultValue> {}
915
+ export {};