@mui/x-data-grid 8.26.0 → 8.27.1

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 (816) hide show
  1. package/CHANGELOG.md +153 -0
  2. package/DataGrid/DataGrid.d.ts +2 -2
  3. package/DataGrid/index.js +0 -1
  4. package/DataGrid/useDataGridComponent.d.ts +4 -4
  5. package/DataGrid/useDataGridProps.d.ts +2 -2
  6. package/colDef/gridActionsColDef.d.ts +1 -1
  7. package/colDef/gridBooleanColDef.d.ts +1 -1
  8. package/colDef/gridBooleanOperators.d.ts +1 -1
  9. package/colDef/gridCheckboxSelectionColDef.d.ts +1 -1
  10. package/colDef/gridDateColDef.d.ts +1 -1
  11. package/colDef/gridDateOperators.d.ts +2 -2
  12. package/colDef/gridDefaultColumnTypes.js +3 -1
  13. package/colDef/gridLongTextColDef.d.ts +2 -0
  14. package/colDef/gridLongTextColDef.js +17 -0
  15. package/colDef/gridNumericColDef.d.ts +1 -1
  16. package/colDef/gridNumericOperators.d.ts +1 -1
  17. package/colDef/gridSingleSelectColDef.d.ts +1 -1
  18. package/colDef/gridSingleSelectOperators.d.ts +1 -1
  19. package/colDef/gridStringColDef.d.ts +1 -1
  20. package/colDef/gridStringOperators.d.ts +1 -1
  21. package/colDef/index.d.ts +1 -0
  22. package/colDef/index.js +11 -0
  23. package/components/GridColumnHeaders.d.ts +1 -1
  24. package/components/GridColumnSortButton.d.ts +2 -2
  25. package/components/GridColumnSortButton.js +2 -2
  26. package/components/GridColumnUnsortedIcon.d.ts +2 -2
  27. package/components/GridFooter.d.ts +1 -1
  28. package/components/GridLoadingOverlay.d.ts +1 -1
  29. package/components/GridNoColumnsOverlay.d.ts +1 -1
  30. package/components/GridNoResultsOverlay.d.ts +1 -1
  31. package/components/GridNoRowsOverlay.d.ts +1 -1
  32. package/components/GridRow.d.ts +2 -2
  33. package/components/GridRowCount.d.ts +1 -1
  34. package/components/GridScrollArea.d.ts +2 -2
  35. package/components/GridScrollArea.js +2 -2
  36. package/components/GridScrollShadows.js +2 -2
  37. package/components/GridSelectedRowCount.d.ts +1 -1
  38. package/components/GridSkeletonLoadingOverlay.d.ts +1 -1
  39. package/components/GridSkeletonLoadingOverlay.js +2 -2
  40. package/components/base/GridOverlays.js +3 -3
  41. package/components/cell/GridActionsCell.d.ts +4 -4
  42. package/components/cell/GridActionsCellItem.d.ts +1 -1
  43. package/components/cell/GridCell.d.ts +3 -3
  44. package/components/cell/GridEditBooleanCell.d.ts +1 -1
  45. package/components/cell/GridEditDateCell.d.ts +2 -2
  46. package/components/cell/GridEditInputCell.d.ts +2 -2
  47. package/components/cell/GridEditLongTextCell.d.ts +41 -0
  48. package/components/cell/GridEditLongTextCell.js +248 -0
  49. package/components/cell/GridEditSingleSelectCell.d.ts +1 -1
  50. package/components/cell/GridFooterCell.d.ts +1 -1
  51. package/components/cell/GridLongTextCell.d.ts +43 -0
  52. package/components/cell/GridLongTextCell.js +254 -0
  53. package/components/cell/GridSkeletonCell.d.ts +1 -1
  54. package/components/cell/index.d.ts +3 -1
  55. package/components/cell/index.js +24 -0
  56. package/components/columnHeaders/ColumnHeaderMenuIcon.d.ts +1 -1
  57. package/components/columnHeaders/GridBaseColumnHeaders.d.ts +1 -1
  58. package/components/columnHeaders/GridColumnHeaderFilterIconButton.d.ts +1 -1
  59. package/components/columnHeaders/GridColumnHeaderItem.d.ts +3 -3
  60. package/components/columnHeaders/GridColumnHeaderItem.js +31 -1
  61. package/components/columnHeaders/GridColumnHeaderSortIcon.d.ts +1 -1
  62. package/components/columnHeaders/GridColumnHeaderTitle.js +2 -2
  63. package/components/columnHeaders/GridGenericColumnHeaderItem.d.ts +4 -4
  64. package/components/columnHeaders/GridIconButtonContainer.js +2 -2
  65. package/components/columnsManagement/GridColumnsManagement.d.ts +1 -1
  66. package/components/columnsManagement/utils.d.ts +1 -1
  67. package/components/columnsPanel/ColumnsPanelTrigger.d.ts +1 -1
  68. package/components/containers/GridFooterContainer.d.ts +1 -1
  69. package/components/containers/GridOverlay.d.ts +1 -1
  70. package/components/containers/GridRoot.d.ts +2 -2
  71. package/components/containers/GridRootStyles.d.ts +1 -1
  72. package/components/containers/GridRootStyles.js +23 -217
  73. package/components/containers/GridToolbarContainer.d.ts +1 -1
  74. package/components/export/ExportCsv.d.ts +2 -2
  75. package/components/export/ExportPrint.d.ts +2 -2
  76. package/components/filterPanel/FilterPanelTrigger.d.ts +1 -1
  77. package/components/menu/GridMenu.d.ts +1 -1
  78. package/components/menu/columnMenu/GridColumnHeaderMenu.d.ts +1 -1
  79. package/components/menu/columnMenu/GridColumnMenu.d.ts +2 -2
  80. package/components/menu/columnMenu/GridColumnMenu.js +2 -0
  81. package/components/menu/columnMenu/GridColumnMenuContainer.d.ts +1 -1
  82. package/components/menu/columnMenu/GridColumnMenuItemProps.d.ts +2 -2
  83. package/components/menu/columnMenu/GridColumnMenuProps.d.ts +12 -4
  84. package/components/menu/columnMenu/index.d.ts +1 -1
  85. package/components/menu/columnMenu/index.js +0 -12
  86. package/components/menu/columnMenu/menuItems/GridColumnMenuColumnsItem.d.ts +1 -1
  87. package/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.d.ts +1 -1
  88. package/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.d.ts +1 -1
  89. package/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.d.ts +1 -1
  90. package/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.d.ts +1 -1
  91. package/components/panel/GridColumnsPanel.d.ts +1 -1
  92. package/components/panel/GridPanel.d.ts +1 -1
  93. package/components/panel/GridPanelContent.d.ts +1 -1
  94. package/components/panel/GridPanelFooter.d.ts +1 -1
  95. package/components/panel/GridPanelHeader.d.ts +1 -1
  96. package/components/panel/GridPanelWrapper.d.ts +2 -2
  97. package/components/panel/filterPanel/GridFilterForm.d.ts +2 -2
  98. package/components/panel/filterPanel/GridFilterInputBoolean.d.ts +2 -2
  99. package/components/panel/filterPanel/GridFilterInputDate.d.ts +2 -2
  100. package/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.d.ts +2 -2
  101. package/components/panel/filterPanel/GridFilterInputMultipleValue.d.ts +2 -2
  102. package/components/panel/filterPanel/GridFilterInputSingleSelect.d.ts +2 -2
  103. package/components/panel/filterPanel/GridFilterInputValue.d.ts +3 -3
  104. package/components/panel/filterPanel/GridFilterPanel.d.ts +4 -4
  105. package/components/quickFilter/QuickFilter.d.ts +2 -2
  106. package/components/quickFilter/QuickFilterClear.d.ts +2 -2
  107. package/components/quickFilter/QuickFilterControl.d.ts +2 -2
  108. package/components/quickFilter/QuickFilterTrigger.d.ts +2 -2
  109. package/components/toolbar/GridToolbar.d.ts +3 -3
  110. package/components/toolbar/GridToolbarExport.d.ts +1 -1
  111. package/components/toolbar/GridToolbarQuickFilter.d.ts +2 -2
  112. package/components/toolbar/GridToolbarQuickFilter.js +4 -4
  113. package/components/toolbarV8/GridToolbar.d.ts +1 -1
  114. package/components/toolbarV8/GridToolbar.js +3 -3
  115. package/components/toolbarV8/Toolbar.d.ts +2 -2
  116. package/components/toolbarV8/Toolbar.js +2 -2
  117. package/components/toolbarV8/ToolbarButton.d.ts +1 -1
  118. package/components/virtualization/GridBottomContainer.js +2 -2
  119. package/components/virtualization/GridMainContainer.d.ts +1 -1
  120. package/components/virtualization/GridMainContainer.js +3 -3
  121. package/components/virtualization/GridTopContainer.js +2 -2
  122. package/components/virtualization/GridVirtualScrollbar.d.ts +1 -1
  123. package/components/virtualization/GridVirtualScrollbar.js +5 -5
  124. package/components/virtualization/GridVirtualScroller.js +2 -2
  125. package/components/virtualization/GridVirtualScrollerContent.d.ts +1 -1
  126. package/components/virtualization/GridVirtualScrollerFiller.js +6 -6
  127. package/components/virtualization/GridVirtualScrollerRenderZone.d.ts +1 -1
  128. package/constants/defaultGridSlotsComponents.d.ts +1 -1
  129. package/constants/gridClasses.d.ts +44 -0
  130. package/constants/gridClasses.js +1 -1
  131. package/constants/localeTextConstants.d.ts +1 -1
  132. package/constants/localeTextConstants.js +3 -0
  133. package/context/GridContextProvider.d.ts +3 -3
  134. package/esm/DataGrid/DataGrid.d.ts +2 -2
  135. package/esm/DataGrid/index.js +0 -1
  136. package/esm/DataGrid/useDataGridComponent.d.ts +4 -4
  137. package/esm/DataGrid/useDataGridProps.d.ts +2 -2
  138. package/esm/colDef/gridActionsColDef.d.ts +1 -1
  139. package/esm/colDef/gridBooleanColDef.d.ts +1 -1
  140. package/esm/colDef/gridBooleanOperators.d.ts +1 -1
  141. package/esm/colDef/gridCheckboxSelectionColDef.d.ts +1 -1
  142. package/esm/colDef/gridDateColDef.d.ts +1 -1
  143. package/esm/colDef/gridDateOperators.d.ts +2 -2
  144. package/esm/colDef/gridDefaultColumnTypes.js +3 -1
  145. package/esm/colDef/gridLongTextColDef.d.ts +2 -0
  146. package/esm/colDef/gridLongTextColDef.js +10 -0
  147. package/esm/colDef/gridNumericColDef.d.ts +1 -1
  148. package/esm/colDef/gridNumericOperators.d.ts +1 -1
  149. package/esm/colDef/gridSingleSelectColDef.d.ts +1 -1
  150. package/esm/colDef/gridSingleSelectOperators.d.ts +1 -1
  151. package/esm/colDef/gridStringColDef.d.ts +1 -1
  152. package/esm/colDef/gridStringOperators.d.ts +1 -1
  153. package/esm/colDef/index.d.ts +1 -0
  154. package/esm/colDef/index.js +1 -0
  155. package/esm/components/GridColumnHeaders.d.ts +1 -1
  156. package/esm/components/GridColumnSortButton.d.ts +2 -2
  157. package/esm/components/GridColumnSortButton.js +1 -1
  158. package/esm/components/GridColumnUnsortedIcon.d.ts +2 -2
  159. package/esm/components/GridFooter.d.ts +1 -1
  160. package/esm/components/GridLoadingOverlay.d.ts +1 -1
  161. package/esm/components/GridNoColumnsOverlay.d.ts +1 -1
  162. package/esm/components/GridNoResultsOverlay.d.ts +1 -1
  163. package/esm/components/GridNoRowsOverlay.d.ts +1 -1
  164. package/esm/components/GridRow.d.ts +2 -2
  165. package/esm/components/GridRowCount.d.ts +1 -1
  166. package/esm/components/GridScrollArea.d.ts +2 -2
  167. package/esm/components/GridScrollArea.js +1 -1
  168. package/esm/components/GridScrollShadows.js +1 -1
  169. package/esm/components/GridSelectedRowCount.d.ts +1 -1
  170. package/esm/components/GridSkeletonLoadingOverlay.d.ts +1 -1
  171. package/esm/components/GridSkeletonLoadingOverlay.js +1 -1
  172. package/esm/components/base/GridOverlays.js +1 -1
  173. package/esm/components/cell/GridActionsCell.d.ts +4 -4
  174. package/esm/components/cell/GridActionsCellItem.d.ts +1 -1
  175. package/esm/components/cell/GridCell.d.ts +3 -3
  176. package/esm/components/cell/GridEditBooleanCell.d.ts +1 -1
  177. package/esm/components/cell/GridEditDateCell.d.ts +2 -2
  178. package/esm/components/cell/GridEditInputCell.d.ts +2 -2
  179. package/esm/components/cell/GridEditLongTextCell.d.ts +41 -0
  180. package/esm/components/cell/GridEditLongTextCell.js +240 -0
  181. package/esm/components/cell/GridEditSingleSelectCell.d.ts +1 -1
  182. package/esm/components/cell/GridFooterCell.d.ts +1 -1
  183. package/esm/components/cell/GridLongTextCell.d.ts +43 -0
  184. package/esm/components/cell/GridLongTextCell.js +246 -0
  185. package/esm/components/cell/GridSkeletonCell.d.ts +1 -1
  186. package/esm/components/cell/index.d.ts +3 -1
  187. package/esm/components/cell/index.js +3 -1
  188. package/esm/components/columnHeaders/ColumnHeaderMenuIcon.d.ts +1 -1
  189. package/esm/components/columnHeaders/GridBaseColumnHeaders.d.ts +1 -1
  190. package/esm/components/columnHeaders/GridColumnHeaderFilterIconButton.d.ts +1 -1
  191. package/esm/components/columnHeaders/GridColumnHeaderItem.d.ts +3 -3
  192. package/esm/components/columnHeaders/GridColumnHeaderItem.js +31 -1
  193. package/esm/components/columnHeaders/GridColumnHeaderSortIcon.d.ts +1 -1
  194. package/esm/components/columnHeaders/GridColumnHeaderTitle.js +1 -1
  195. package/esm/components/columnHeaders/GridGenericColumnHeaderItem.d.ts +4 -4
  196. package/esm/components/columnHeaders/GridIconButtonContainer.js +1 -1
  197. package/esm/components/columnsManagement/GridColumnsManagement.d.ts +1 -1
  198. package/esm/components/columnsManagement/utils.d.ts +1 -1
  199. package/esm/components/columnsPanel/ColumnsPanelTrigger.d.ts +1 -1
  200. package/esm/components/containers/GridFooterContainer.d.ts +1 -1
  201. package/esm/components/containers/GridOverlay.d.ts +1 -1
  202. package/esm/components/containers/GridRoot.d.ts +2 -2
  203. package/esm/components/containers/GridRootStyles.d.ts +1 -1
  204. package/esm/components/containers/GridRootStyles.js +23 -217
  205. package/esm/components/containers/GridToolbarContainer.d.ts +1 -1
  206. package/esm/components/export/ExportCsv.d.ts +2 -2
  207. package/esm/components/export/ExportPrint.d.ts +2 -2
  208. package/esm/components/filterPanel/FilterPanelTrigger.d.ts +1 -1
  209. package/esm/components/menu/GridMenu.d.ts +1 -1
  210. package/esm/components/menu/columnMenu/GridColumnHeaderMenu.d.ts +1 -1
  211. package/esm/components/menu/columnMenu/GridColumnMenu.d.ts +2 -2
  212. package/esm/components/menu/columnMenu/GridColumnMenu.js +2 -0
  213. package/esm/components/menu/columnMenu/GridColumnMenuContainer.d.ts +1 -1
  214. package/esm/components/menu/columnMenu/GridColumnMenuItemProps.d.ts +2 -2
  215. package/esm/components/menu/columnMenu/GridColumnMenuProps.d.ts +12 -4
  216. package/esm/components/menu/columnMenu/index.d.ts +1 -1
  217. package/esm/components/menu/columnMenu/index.js +0 -1
  218. package/esm/components/menu/columnMenu/menuItems/GridColumnMenuColumnsItem.d.ts +1 -1
  219. package/esm/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.d.ts +1 -1
  220. package/esm/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.d.ts +1 -1
  221. package/esm/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.d.ts +1 -1
  222. package/esm/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.d.ts +1 -1
  223. package/esm/components/panel/GridColumnsPanel.d.ts +1 -1
  224. package/esm/components/panel/GridPanel.d.ts +1 -1
  225. package/esm/components/panel/GridPanelContent.d.ts +1 -1
  226. package/esm/components/panel/GridPanelFooter.d.ts +1 -1
  227. package/esm/components/panel/GridPanelHeader.d.ts +1 -1
  228. package/esm/components/panel/GridPanelWrapper.d.ts +2 -2
  229. package/esm/components/panel/filterPanel/GridFilterForm.d.ts +2 -2
  230. package/esm/components/panel/filterPanel/GridFilterInputBoolean.d.ts +2 -2
  231. package/esm/components/panel/filterPanel/GridFilterInputDate.d.ts +2 -2
  232. package/esm/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.d.ts +2 -2
  233. package/esm/components/panel/filterPanel/GridFilterInputMultipleValue.d.ts +2 -2
  234. package/esm/components/panel/filterPanel/GridFilterInputSingleSelect.d.ts +2 -2
  235. package/esm/components/panel/filterPanel/GridFilterInputValue.d.ts +3 -3
  236. package/esm/components/panel/filterPanel/GridFilterPanel.d.ts +4 -4
  237. package/esm/components/quickFilter/QuickFilter.d.ts +2 -2
  238. package/esm/components/quickFilter/QuickFilterClear.d.ts +2 -2
  239. package/esm/components/quickFilter/QuickFilterControl.d.ts +2 -2
  240. package/esm/components/quickFilter/QuickFilterTrigger.d.ts +2 -2
  241. package/esm/components/toolbar/GridToolbar.d.ts +3 -3
  242. package/esm/components/toolbar/GridToolbarExport.d.ts +1 -1
  243. package/esm/components/toolbar/GridToolbarQuickFilter.d.ts +2 -2
  244. package/esm/components/toolbar/GridToolbarQuickFilter.js +1 -1
  245. package/esm/components/toolbarV8/GridToolbar.d.ts +1 -1
  246. package/esm/components/toolbarV8/GridToolbar.js +1 -1
  247. package/esm/components/toolbarV8/Toolbar.d.ts +2 -2
  248. package/esm/components/toolbarV8/Toolbar.js +1 -1
  249. package/esm/components/toolbarV8/ToolbarButton.d.ts +1 -1
  250. package/esm/components/virtualization/GridBottomContainer.js +1 -1
  251. package/esm/components/virtualization/GridMainContainer.d.ts +1 -1
  252. package/esm/components/virtualization/GridMainContainer.js +1 -1
  253. package/esm/components/virtualization/GridTopContainer.js +1 -1
  254. package/esm/components/virtualization/GridVirtualScrollbar.d.ts +1 -1
  255. package/esm/components/virtualization/GridVirtualScrollbar.js +1 -1
  256. package/esm/components/virtualization/GridVirtualScroller.js +1 -1
  257. package/esm/components/virtualization/GridVirtualScrollerContent.d.ts +1 -1
  258. package/esm/components/virtualization/GridVirtualScrollerFiller.js +1 -1
  259. package/esm/components/virtualization/GridVirtualScrollerRenderZone.d.ts +1 -1
  260. package/esm/constants/defaultGridSlotsComponents.d.ts +1 -1
  261. package/esm/constants/gridClasses.d.ts +44 -0
  262. package/esm/constants/gridClasses.js +1 -1
  263. package/esm/constants/localeTextConstants.d.ts +1 -1
  264. package/esm/constants/localeTextConstants.js +3 -0
  265. package/esm/context/GridContextProvider.d.ts +3 -3
  266. package/esm/hooks/core/gridCoreSelector.d.ts +1 -1
  267. package/esm/hooks/core/pipeProcessing/gridPipeProcessingApi.d.ts +10 -10
  268. package/esm/hooks/core/pipeProcessing/useGridPipeProcessing.d.ts +2 -2
  269. package/esm/hooks/core/pipeProcessing/useGridRegisterPipeApplier.d.ts +3 -3
  270. package/esm/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.d.ts +3 -3
  271. package/esm/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.d.ts +3 -3
  272. package/esm/hooks/core/strategyProcessing/useGridStrategyProcessing.d.ts +3 -3
  273. package/esm/hooks/core/useGridApiInitialization.d.ts +2 -2
  274. package/esm/hooks/core/useGridInitialization.d.ts +2 -2
  275. package/esm/hooks/core/useGridIsRtl.d.ts +2 -2
  276. package/esm/hooks/core/useGridLocaleText.d.ts +3 -3
  277. package/esm/hooks/core/useGridLoggerFactory.d.ts +3 -3
  278. package/esm/hooks/core/useGridRefs.d.ts +1 -1
  279. package/esm/hooks/core/useGridStateInitialization.d.ts +1 -1
  280. package/esm/hooks/features/clipboard/useGridClipboard.d.ts +2 -2
  281. package/esm/hooks/features/columnGrouping/gridColumnGroupsInterfaces.d.ts +1 -1
  282. package/esm/hooks/features/columnGrouping/gridColumnGroupsSelector.d.ts +1 -1
  283. package/esm/hooks/features/columnGrouping/gridColumnGroupsUtils.d.ts +3 -3
  284. package/esm/hooks/features/columnGrouping/useGridColumnGrouping.d.ts +4 -4
  285. package/esm/hooks/features/columnHeaders/useGridColumnHeaders.d.ts +8 -8
  286. package/esm/hooks/features/columnMenu/columnMenuInterfaces.d.ts +1 -1
  287. package/esm/hooks/features/columnMenu/columnMenuSelector.d.ts +1 -1
  288. package/esm/hooks/features/columnMenu/getColumnMenuItemKeys.d.ts +17 -0
  289. package/esm/hooks/features/columnMenu/getColumnMenuItemKeys.js +36 -0
  290. package/esm/hooks/features/columnMenu/useGridColumnMenu.d.ts +3 -3
  291. package/esm/hooks/features/columnMenu/useGridColumnMenuSlots.d.ts +2 -2
  292. package/esm/hooks/features/columnMenu/useGridColumnMenuSlots.js +11 -16
  293. package/esm/hooks/features/columnResize/columnResizeSelector.d.ts +1 -1
  294. package/esm/hooks/features/columnResize/useGridColumnResize.d.ts +2 -2
  295. package/esm/hooks/features/columns/gridColumnsSelector.d.ts +2 -2
  296. package/esm/hooks/features/columns/gridColumnsUtils.d.ts +7 -7
  297. package/esm/hooks/features/columns/useGridColumnSpanning.d.ts +2 -2
  298. package/esm/hooks/features/columns/useGridColumns.d.ts +4 -4
  299. package/esm/hooks/features/dataSource/useGridDataSource.d.ts +1 -1
  300. package/esm/hooks/features/dataSource/useGridDataSourceBase.d.ts +2 -2
  301. package/esm/hooks/features/density/densitySelector.d.ts +2 -2
  302. package/esm/hooks/features/density/densityState.d.ts +1 -1
  303. package/esm/hooks/features/density/useGridDensity.d.ts +4 -4
  304. package/esm/hooks/features/dimensions/gridDimensionsSelectors.d.ts +1 -1
  305. package/esm/hooks/features/dimensions/useGridDimensions.d.ts +5 -5
  306. package/esm/hooks/features/editing/gridEditingSelectors.d.ts +3 -3
  307. package/esm/hooks/features/editing/useGridCellEditable.d.ts +1 -1
  308. package/esm/hooks/features/editing/useGridCellEditing.d.ts +3 -3
  309. package/esm/hooks/features/editing/useGridEditing.d.ts +5 -5
  310. package/esm/hooks/features/editing/useGridRowEditing.d.ts +3 -3
  311. package/esm/hooks/features/editing/utils.d.ts +1 -1
  312. package/esm/hooks/features/events/useGridEvents.d.ts +3 -3
  313. package/esm/hooks/features/export/serializers/csvSerializer.d.ts +1 -1
  314. package/esm/hooks/features/export/useGridCsvExport.d.ts +2 -2
  315. package/esm/hooks/features/export/useGridPrintExport.d.ts +3 -3
  316. package/esm/hooks/features/export/utils.d.ts +5 -5
  317. package/esm/hooks/features/filter/gridFilterSelector.d.ts +3 -3
  318. package/esm/hooks/features/filter/gridFilterState.d.ts +4 -4
  319. package/esm/hooks/features/filter/gridFilterUtils.d.ts +4 -4
  320. package/esm/hooks/features/filter/useGridFilter.d.ts +4 -4
  321. package/esm/hooks/features/focus/gridFocusState.d.ts +1 -1
  322. package/esm/hooks/features/focus/gridFocusStateSelector.d.ts +2 -2
  323. package/esm/hooks/features/focus/useGridFocus.d.ts +4 -4
  324. package/esm/hooks/features/focus/useGridFocus.js +15 -1
  325. package/esm/hooks/features/headerFiltering/gridHeaderFilteringSelectors.d.ts +1 -1
  326. package/esm/hooks/features/headerFiltering/useGridHeaderFiltering.d.ts +4 -4
  327. package/esm/hooks/features/keyboardNavigation/useGridKeyboardNavigation.d.ts +3 -3
  328. package/esm/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +3 -0
  329. package/esm/hooks/features/keyboardNavigation/utils.d.ts +3 -3
  330. package/esm/hooks/features/listView/gridListViewSelectors.d.ts +1 -1
  331. package/esm/hooks/features/listView/useGridListView.d.ts +4 -4
  332. package/esm/hooks/features/overlays/gridOverlaysInterfaces.d.ts +1 -1
  333. package/esm/hooks/features/overlays/useGridOverlays.d.ts +3 -3
  334. package/esm/hooks/features/pagination/gridPaginationInterfaces.d.ts +2 -2
  335. package/esm/hooks/features/pagination/gridPaginationSelector.d.ts +2 -2
  336. package/esm/hooks/features/pagination/gridPaginationUtils.d.ts +1 -1
  337. package/esm/hooks/features/pagination/useGridPagination.d.ts +4 -4
  338. package/esm/hooks/features/pagination/useGridPaginationMeta.d.ts +3 -3
  339. package/esm/hooks/features/pagination/useGridPaginationModel.d.ts +5 -5
  340. package/esm/hooks/features/pagination/useGridRowCount.d.ts +3 -3
  341. package/esm/hooks/features/preferencesPanel/gridPreferencePanelSelector.d.ts +1 -1
  342. package/esm/hooks/features/preferencesPanel/gridPreferencePanelState.d.ts +1 -1
  343. package/esm/hooks/features/preferencesPanel/useGridPreferencesPanel.d.ts +4 -4
  344. package/esm/hooks/features/rowReorder/gridRowReorderSelector.d.ts +1 -1
  345. package/esm/hooks/features/rowSelection/gridRowSelectionSelector.d.ts +2 -2
  346. package/esm/hooks/features/rowSelection/useGridRowSelection.d.ts +4 -4
  347. package/esm/hooks/features/rowSelection/useGridRowSelectionPreProcessors.d.ts +3 -3
  348. package/esm/hooks/features/rowSelection/utils.d.ts +3 -3
  349. package/esm/hooks/features/rows/gridRowSpanningUtils.d.ts +1 -1
  350. package/esm/hooks/features/rows/gridRowsInterfaces.d.ts +1 -1
  351. package/esm/hooks/features/rows/gridRowsMetaInterfaces.d.ts +1 -1
  352. package/esm/hooks/features/rows/gridRowsMetaSelector.d.ts +1 -1
  353. package/esm/hooks/features/rows/gridRowsMetaState.d.ts +1 -1
  354. package/esm/hooks/features/rows/gridRowsSelector.d.ts +2 -2
  355. package/esm/hooks/features/rows/gridRowsUtils.d.ts +5 -5
  356. package/esm/hooks/features/rows/useGridParamsApi.d.ts +3 -3
  357. package/esm/hooks/features/rows/useGridParamsOverridableMethods.d.ts +2 -2
  358. package/esm/hooks/features/rows/useGridRowAriaAttributes.d.ts +1 -1
  359. package/esm/hooks/features/rows/useGridRowSpanning.d.ts +2 -2
  360. package/esm/hooks/features/rows/useGridRows.d.ts +4 -4
  361. package/esm/hooks/features/rows/useGridRowsMeta.d.ts +4 -4
  362. package/esm/hooks/features/rows/useGridRowsOverridableMethods.d.ts +3 -3
  363. package/esm/hooks/features/rows/useGridRowsPreProcessors.d.ts +2 -2
  364. package/esm/hooks/features/scroll/useGridScroll.d.ts +3 -3
  365. package/esm/hooks/features/sorting/gridSortingSelector.d.ts +2 -2
  366. package/esm/hooks/features/sorting/gridSortingState.d.ts +2 -2
  367. package/esm/hooks/features/sorting/gridSortingUtils.d.ts +5 -5
  368. package/esm/hooks/features/sorting/useGridSorting.d.ts +4 -4
  369. package/esm/hooks/features/statePersistence/gridStatePersistenceInterface.d.ts +1 -1
  370. package/esm/hooks/features/statePersistence/useGridStatePersistence.d.ts +2 -2
  371. package/esm/hooks/features/virtualization/gridVirtualizationSelectors.d.ts +1 -1
  372. package/esm/hooks/features/virtualization/useGridVirtualization.d.ts +5 -5
  373. package/esm/hooks/utils/useGridApiContext.d.ts +3 -3
  374. package/esm/hooks/utils/useGridApiMethod.d.ts +2 -2
  375. package/esm/hooks/utils/useGridApiRef.d.ts +2 -2
  376. package/esm/hooks/utils/useGridAriaAttributes.d.ts +1 -1
  377. package/esm/hooks/utils/useGridConfiguration.d.ts +1 -1
  378. package/esm/hooks/utils/useGridEvent.d.ts +3 -3
  379. package/esm/hooks/utils/useGridInitializeState.d.ts +4 -4
  380. package/esm/hooks/utils/useGridLogger.d.ts +3 -3
  381. package/esm/hooks/utils/useGridNativeEventListener.d.ts +2 -2
  382. package/esm/hooks/utils/useGridPrivateApiContext.d.ts +3 -3
  383. package/esm/hooks/utils/useGridSelector.d.ts +1 -1
  384. package/esm/hooks/utils/useGridVisibleRows.d.ts +2 -2
  385. package/esm/index.d.ts +2 -2
  386. package/esm/index.js +1 -1
  387. package/esm/internals/index.d.ts +1 -0
  388. package/esm/internals/utils/attachPinnedStyle.d.ts +1 -1
  389. package/esm/internals/utils/cache.d.ts +1 -1
  390. package/esm/internals/utils/getPinnedCellOffset.d.ts +1 -1
  391. package/esm/internals/utils/propValidation.d.ts +1 -1
  392. package/esm/locales/arSD.d.ts +1 -1
  393. package/esm/locales/arSD.js +3 -0
  394. package/esm/locales/beBY.d.ts +1 -1
  395. package/esm/locales/beBY.js +3 -0
  396. package/esm/locales/bgBG.d.ts +1 -1
  397. package/esm/locales/bgBG.js +3 -0
  398. package/esm/locales/bnBD.d.ts +1 -1
  399. package/esm/locales/bnBD.js +3 -0
  400. package/esm/locales/caES.d.ts +1 -1
  401. package/esm/locales/caES.js +3 -0
  402. package/esm/locales/csCZ.d.ts +1 -1
  403. package/esm/locales/csCZ.js +3 -0
  404. package/esm/locales/daDK.d.ts +1 -1
  405. package/esm/locales/daDK.js +3 -0
  406. package/esm/locales/deDE.d.ts +1 -1
  407. package/esm/locales/deDE.js +3 -0
  408. package/esm/locales/elGR.d.ts +1 -1
  409. package/esm/locales/elGR.js +3 -0
  410. package/esm/locales/enUS.d.ts +1 -1
  411. package/esm/locales/esES.d.ts +1 -1
  412. package/esm/locales/esES.js +3 -0
  413. package/esm/locales/faIR.d.ts +1 -1
  414. package/esm/locales/faIR.js +3 -0
  415. package/esm/locales/fiFI.d.ts +1 -1
  416. package/esm/locales/fiFI.js +3 -0
  417. package/esm/locales/frFR.d.ts +1 -1
  418. package/esm/locales/frFR.js +3 -0
  419. package/esm/locales/heIL.d.ts +1 -1
  420. package/esm/locales/heIL.js +3 -0
  421. package/esm/locales/hrHR.js +3 -0
  422. package/esm/locales/huHU.d.ts +1 -1
  423. package/esm/locales/huHU.js +3 -0
  424. package/esm/locales/hyAM.d.ts +1 -1
  425. package/esm/locales/hyAM.js +3 -0
  426. package/esm/locales/idID.d.ts +2 -2
  427. package/esm/locales/idID.js +3 -0
  428. package/esm/locales/isIS.d.ts +1 -1
  429. package/esm/locales/isIS.js +3 -0
  430. package/esm/locales/itIT.d.ts +1 -1
  431. package/esm/locales/itIT.js +3 -0
  432. package/esm/locales/jaJP.d.ts +1 -1
  433. package/esm/locales/jaJP.js +3 -0
  434. package/esm/locales/koKR.d.ts +1 -1
  435. package/esm/locales/koKR.js +3 -0
  436. package/esm/locales/nbNO.d.ts +1 -1
  437. package/esm/locales/nbNO.js +3 -0
  438. package/esm/locales/nlNL.d.ts +1 -1
  439. package/esm/locales/nlNL.js +3 -0
  440. package/esm/locales/nnNO.d.ts +1 -1
  441. package/esm/locales/nnNO.js +3 -0
  442. package/esm/locales/plPL.d.ts +1 -1
  443. package/esm/locales/plPL.js +3 -0
  444. package/esm/locales/ptBR.d.ts +1 -1
  445. package/esm/locales/ptBR.js +3 -0
  446. package/esm/locales/ptPT.d.ts +1 -1
  447. package/esm/locales/ptPT.js +3 -0
  448. package/esm/locales/roRO.d.ts +1 -1
  449. package/esm/locales/roRO.js +3 -0
  450. package/esm/locales/ruRU.d.ts +1 -1
  451. package/esm/locales/ruRU.js +3 -0
  452. package/esm/locales/skSK.d.ts +1 -1
  453. package/esm/locales/skSK.js +3 -0
  454. package/esm/locales/svSE.d.ts +1 -1
  455. package/esm/locales/svSE.js +3 -0
  456. package/esm/locales/trTR.d.ts +1 -1
  457. package/esm/locales/trTR.js +3 -0
  458. package/esm/locales/ukUA.d.ts +1 -1
  459. package/esm/locales/ukUA.js +3 -0
  460. package/esm/locales/urPK.d.ts +1 -1
  461. package/esm/locales/urPK.js +3 -0
  462. package/esm/locales/viVN.d.ts +1 -1
  463. package/esm/locales/viVN.js +3 -0
  464. package/esm/locales/zhCN.d.ts +1 -1
  465. package/esm/locales/zhCN.js +3 -0
  466. package/esm/locales/zhHK.js +3 -0
  467. package/esm/locales/zhTW.d.ts +1 -1
  468. package/esm/locales/zhTW.js +3 -0
  469. package/esm/material/augmentation.d.ts +4 -0
  470. package/esm/material/icons/createSvgIcon.d.ts +1 -1
  471. package/esm/material/icons/index.d.ts +3 -1
  472. package/esm/material/icons/index.js +7 -1
  473. package/esm/material/index.js +25 -10
  474. package/esm/models/api/gridColumnApi.d.ts +1 -1
  475. package/esm/models/api/gridColumnGroupingApi.d.ts +2 -2
  476. package/esm/models/api/gridColumnSpanning.d.ts +3 -3
  477. package/esm/models/api/gridCoreApi.d.ts +2 -2
  478. package/esm/models/api/gridCsvExportApi.d.ts +1 -1
  479. package/esm/models/api/gridDensityApi.d.ts +2 -2
  480. package/esm/models/api/gridEditingApi.d.ts +6 -6
  481. package/esm/models/api/gridFilterApi.d.ts +4 -4
  482. package/esm/models/api/gridFocusApi.d.ts +3 -3
  483. package/esm/models/api/gridHeaderFilteringApi.d.ts +2 -2
  484. package/esm/models/api/gridLocaleTextApi.d.ts +3 -1
  485. package/esm/models/api/gridLoggerApi.d.ts +1 -1
  486. package/esm/models/api/gridParamsApi.d.ts +7 -7
  487. package/esm/models/api/gridPreferencesPanelApi.d.ts +1 -1
  488. package/esm/models/api/gridPrintExportApi.d.ts +1 -1
  489. package/esm/models/api/gridRowApi.d.ts +1 -1
  490. package/esm/models/api/gridRowSelectionApi.d.ts +1 -1
  491. package/esm/models/api/gridRowsMetaApi.d.ts +2 -2
  492. package/esm/models/api/gridScrollApi.d.ts +2 -2
  493. package/esm/models/api/gridSortApi.d.ts +3 -3
  494. package/esm/models/api/gridStateApi.d.ts +3 -3
  495. package/esm/models/colDef/gridColDef.d.ts +13 -13
  496. package/esm/models/colDef/gridColType.d.ts +1 -0
  497. package/esm/models/colDef/gridColumnTypesRecord.d.ts +2 -2
  498. package/esm/models/configuration/gridAggregationConfiguration.d.ts +2 -2
  499. package/esm/models/configuration/gridCellEditableConfiguration.d.ts +4 -4
  500. package/esm/models/configuration/gridConfiguration.d.ts +1 -1
  501. package/esm/models/configuration/gridParamsConfiguration.d.ts +2 -2
  502. package/esm/models/configuration/gridRowConfiguration.d.ts +4 -4
  503. package/esm/models/controlStateItem.d.ts +1 -1
  504. package/esm/models/events/gridEventLookup.d.ts +7 -7
  505. package/esm/models/gridBaseSlots.d.ts +13 -0
  506. package/esm/models/gridCell.d.ts +1 -1
  507. package/esm/models/gridCellClass.d.ts +2 -2
  508. package/esm/models/gridColumnGrouping.d.ts +1 -1
  509. package/esm/models/gridColumnHeaderClass.d.ts +1 -1
  510. package/esm/models/gridExport.d.ts +2 -2
  511. package/esm/models/gridFilterInputComponent.d.ts +3 -3
  512. package/esm/models/gridFilterItem.d.ts +1 -1
  513. package/esm/models/gridFilterModel.d.ts +1 -1
  514. package/esm/models/gridFilterOperator.d.ts +3 -3
  515. package/esm/models/gridHeaderFilteringModel.d.ts +1 -1
  516. package/esm/models/gridIconSlotsComponent.d.ts +12 -2
  517. package/esm/models/gridRowSelectionModel.d.ts +1 -1
  518. package/esm/models/gridSlotsComponent.d.ts +6 -1
  519. package/esm/models/gridSlotsComponentsProps.d.ts +4 -2
  520. package/esm/models/gridSortModel.d.ts +1 -1
  521. package/esm/models/gridStateCommunity.d.ts +1 -1
  522. package/esm/models/params/gridCellParams.d.ts +4 -4
  523. package/esm/models/params/gridColumnGroupHeaderParams.d.ts +1 -1
  524. package/esm/models/params/gridColumnHeaderParams.d.ts +1 -1
  525. package/esm/models/params/gridEditCellParams.d.ts +2 -2
  526. package/esm/models/params/gridPreferencePanelParams.d.ts +1 -1
  527. package/esm/models/params/gridRowParams.d.ts +1 -1
  528. package/esm/models/params/gridRowSelectionCheckboxParams.d.ts +1 -1
  529. package/esm/models/params/gridValueOptionsParams.d.ts +1 -1
  530. package/esm/models/props/DataGridProps.d.ts +25 -26
  531. package/esm/themeAugmentation/overrides.d.ts +1 -1
  532. package/esm/themeAugmentation/props.d.ts +2 -2
  533. package/esm/utils/assert.d.ts +1 -1
  534. package/esm/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.d.ts +1 -1
  535. package/esm/utils/cleanupTracking/TimerBasedCleanupTracking.d.ts +1 -1
  536. package/esm/utils/createSelector.d.ts +2 -2
  537. package/esm/utils/exportAs.d.ts +1 -1
  538. package/esm/utils/getPublicApiRef.d.ts +1 -1
  539. package/esm/utils/keyboardUtils.d.ts +1 -1
  540. package/hooks/core/gridCoreSelector.d.ts +1 -1
  541. package/hooks/core/pipeProcessing/gridPipeProcessingApi.d.ts +10 -10
  542. package/hooks/core/pipeProcessing/useGridPipeProcessing.d.ts +2 -2
  543. package/hooks/core/pipeProcessing/useGridRegisterPipeApplier.d.ts +3 -3
  544. package/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.d.ts +3 -3
  545. package/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.d.ts +3 -3
  546. package/hooks/core/strategyProcessing/useGridStrategyProcessing.d.ts +3 -3
  547. package/hooks/core/useGridApiInitialization.d.ts +2 -2
  548. package/hooks/core/useGridInitialization.d.ts +2 -2
  549. package/hooks/core/useGridIsRtl.d.ts +2 -2
  550. package/hooks/core/useGridLocaleText.d.ts +3 -3
  551. package/hooks/core/useGridLoggerFactory.d.ts +3 -3
  552. package/hooks/core/useGridRefs.d.ts +1 -1
  553. package/hooks/core/useGridStateInitialization.d.ts +1 -1
  554. package/hooks/features/clipboard/useGridClipboard.d.ts +2 -2
  555. package/hooks/features/columnGrouping/gridColumnGroupsInterfaces.d.ts +1 -1
  556. package/hooks/features/columnGrouping/gridColumnGroupsSelector.d.ts +1 -1
  557. package/hooks/features/columnGrouping/gridColumnGroupsUtils.d.ts +3 -3
  558. package/hooks/features/columnGrouping/useGridColumnGrouping.d.ts +4 -4
  559. package/hooks/features/columnHeaders/useGridColumnHeaders.d.ts +8 -8
  560. package/hooks/features/columnMenu/columnMenuInterfaces.d.ts +1 -1
  561. package/hooks/features/columnMenu/columnMenuSelector.d.ts +1 -1
  562. package/hooks/features/columnMenu/getColumnMenuItemKeys.d.ts +17 -0
  563. package/hooks/features/columnMenu/getColumnMenuItemKeys.js +43 -0
  564. package/hooks/features/columnMenu/useGridColumnMenu.d.ts +3 -3
  565. package/hooks/features/columnMenu/useGridColumnMenuSlots.d.ts +2 -2
  566. package/hooks/features/columnMenu/useGridColumnMenuSlots.js +11 -16
  567. package/hooks/features/columnResize/columnResizeSelector.d.ts +1 -1
  568. package/hooks/features/columnResize/useGridColumnResize.d.ts +2 -2
  569. package/hooks/features/columns/gridColumnsSelector.d.ts +2 -2
  570. package/hooks/features/columns/gridColumnsUtils.d.ts +7 -7
  571. package/hooks/features/columns/useGridColumnSpanning.d.ts +2 -2
  572. package/hooks/features/columns/useGridColumns.d.ts +4 -4
  573. package/hooks/features/dataSource/useGridDataSource.d.ts +1 -1
  574. package/hooks/features/dataSource/useGridDataSourceBase.d.ts +2 -2
  575. package/hooks/features/density/densitySelector.d.ts +2 -2
  576. package/hooks/features/density/densityState.d.ts +1 -1
  577. package/hooks/features/density/useGridDensity.d.ts +4 -4
  578. package/hooks/features/dimensions/gridDimensionsSelectors.d.ts +1 -1
  579. package/hooks/features/dimensions/useGridDimensions.d.ts +5 -5
  580. package/hooks/features/editing/gridEditingSelectors.d.ts +3 -3
  581. package/hooks/features/editing/useGridCellEditable.d.ts +1 -1
  582. package/hooks/features/editing/useGridCellEditing.d.ts +3 -3
  583. package/hooks/features/editing/useGridEditing.d.ts +5 -5
  584. package/hooks/features/editing/useGridRowEditing.d.ts +3 -3
  585. package/hooks/features/editing/utils.d.ts +1 -1
  586. package/hooks/features/events/useGridEvents.d.ts +3 -3
  587. package/hooks/features/export/serializers/csvSerializer.d.ts +1 -1
  588. package/hooks/features/export/useGridCsvExport.d.ts +2 -2
  589. package/hooks/features/export/useGridPrintExport.d.ts +3 -3
  590. package/hooks/features/export/utils.d.ts +5 -5
  591. package/hooks/features/filter/gridFilterSelector.d.ts +3 -3
  592. package/hooks/features/filter/gridFilterState.d.ts +4 -4
  593. package/hooks/features/filter/gridFilterUtils.d.ts +4 -4
  594. package/hooks/features/filter/useGridFilter.d.ts +4 -4
  595. package/hooks/features/focus/gridFocusState.d.ts +1 -1
  596. package/hooks/features/focus/gridFocusStateSelector.d.ts +2 -2
  597. package/hooks/features/focus/useGridFocus.d.ts +4 -4
  598. package/hooks/features/focus/useGridFocus.js +15 -1
  599. package/hooks/features/headerFiltering/gridHeaderFilteringSelectors.d.ts +1 -1
  600. package/hooks/features/headerFiltering/useGridHeaderFiltering.d.ts +4 -4
  601. package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.d.ts +3 -3
  602. package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +3 -0
  603. package/hooks/features/keyboardNavigation/utils.d.ts +3 -3
  604. package/hooks/features/listView/gridListViewSelectors.d.ts +1 -1
  605. package/hooks/features/listView/useGridListView.d.ts +4 -4
  606. package/hooks/features/overlays/gridOverlaysInterfaces.d.ts +1 -1
  607. package/hooks/features/overlays/useGridOverlays.d.ts +3 -3
  608. package/hooks/features/pagination/gridPaginationInterfaces.d.ts +2 -2
  609. package/hooks/features/pagination/gridPaginationSelector.d.ts +2 -2
  610. package/hooks/features/pagination/gridPaginationUtils.d.ts +1 -1
  611. package/hooks/features/pagination/useGridPagination.d.ts +4 -4
  612. package/hooks/features/pagination/useGridPaginationMeta.d.ts +3 -3
  613. package/hooks/features/pagination/useGridPaginationModel.d.ts +5 -5
  614. package/hooks/features/pagination/useGridRowCount.d.ts +3 -3
  615. package/hooks/features/preferencesPanel/gridPreferencePanelSelector.d.ts +1 -1
  616. package/hooks/features/preferencesPanel/gridPreferencePanelState.d.ts +1 -1
  617. package/hooks/features/preferencesPanel/useGridPreferencesPanel.d.ts +4 -4
  618. package/hooks/features/rowReorder/gridRowReorderSelector.d.ts +1 -1
  619. package/hooks/features/rowSelection/gridRowSelectionSelector.d.ts +2 -2
  620. package/hooks/features/rowSelection/useGridRowSelection.d.ts +4 -4
  621. package/hooks/features/rowSelection/useGridRowSelectionPreProcessors.d.ts +3 -3
  622. package/hooks/features/rowSelection/utils.d.ts +3 -3
  623. package/hooks/features/rows/gridRowSpanningUtils.d.ts +1 -1
  624. package/hooks/features/rows/gridRowsInterfaces.d.ts +1 -1
  625. package/hooks/features/rows/gridRowsMetaInterfaces.d.ts +1 -1
  626. package/hooks/features/rows/gridRowsMetaSelector.d.ts +1 -1
  627. package/hooks/features/rows/gridRowsMetaState.d.ts +1 -1
  628. package/hooks/features/rows/gridRowsSelector.d.ts +2 -2
  629. package/hooks/features/rows/gridRowsUtils.d.ts +5 -5
  630. package/hooks/features/rows/useGridParamsApi.d.ts +3 -3
  631. package/hooks/features/rows/useGridParamsOverridableMethods.d.ts +2 -2
  632. package/hooks/features/rows/useGridRowAriaAttributes.d.ts +1 -1
  633. package/hooks/features/rows/useGridRowSpanning.d.ts +2 -2
  634. package/hooks/features/rows/useGridRows.d.ts +4 -4
  635. package/hooks/features/rows/useGridRowsMeta.d.ts +4 -4
  636. package/hooks/features/rows/useGridRowsOverridableMethods.d.ts +3 -3
  637. package/hooks/features/rows/useGridRowsPreProcessors.d.ts +2 -2
  638. package/hooks/features/scroll/useGridScroll.d.ts +3 -3
  639. package/hooks/features/sorting/gridSortingSelector.d.ts +2 -2
  640. package/hooks/features/sorting/gridSortingState.d.ts +2 -2
  641. package/hooks/features/sorting/gridSortingUtils.d.ts +5 -5
  642. package/hooks/features/sorting/useGridSorting.d.ts +4 -4
  643. package/hooks/features/statePersistence/gridStatePersistenceInterface.d.ts +1 -1
  644. package/hooks/features/statePersistence/useGridStatePersistence.d.ts +2 -2
  645. package/hooks/features/virtualization/gridVirtualizationSelectors.d.ts +1 -1
  646. package/hooks/features/virtualization/useGridVirtualization.d.ts +5 -5
  647. package/hooks/utils/useGridApiContext.d.ts +3 -3
  648. package/hooks/utils/useGridApiMethod.d.ts +2 -2
  649. package/hooks/utils/useGridApiRef.d.ts +2 -2
  650. package/hooks/utils/useGridAriaAttributes.d.ts +1 -1
  651. package/hooks/utils/useGridConfiguration.d.ts +1 -1
  652. package/hooks/utils/useGridEvent.d.ts +3 -3
  653. package/hooks/utils/useGridInitializeState.d.ts +4 -4
  654. package/hooks/utils/useGridLogger.d.ts +3 -3
  655. package/hooks/utils/useGridNativeEventListener.d.ts +2 -2
  656. package/hooks/utils/useGridPrivateApiContext.d.ts +3 -3
  657. package/hooks/utils/useGridSelector.d.ts +1 -1
  658. package/hooks/utils/useGridVisibleRows.d.ts +2 -2
  659. package/index.d.ts +2 -2
  660. package/index.js +1 -1
  661. package/internals/index.d.ts +1 -0
  662. package/internals/utils/attachPinnedStyle.d.ts +1 -1
  663. package/internals/utils/cache.d.ts +1 -1
  664. package/internals/utils/getPinnedCellOffset.d.ts +1 -1
  665. package/internals/utils/propValidation.d.ts +1 -1
  666. package/locales/arSD.d.ts +1 -1
  667. package/locales/arSD.js +3 -0
  668. package/locales/beBY.d.ts +1 -1
  669. package/locales/beBY.js +3 -0
  670. package/locales/bgBG.d.ts +1 -1
  671. package/locales/bgBG.js +3 -0
  672. package/locales/bnBD.d.ts +1 -1
  673. package/locales/bnBD.js +3 -0
  674. package/locales/caES.d.ts +1 -1
  675. package/locales/caES.js +3 -0
  676. package/locales/csCZ.d.ts +1 -1
  677. package/locales/csCZ.js +3 -0
  678. package/locales/daDK.d.ts +1 -1
  679. package/locales/daDK.js +3 -0
  680. package/locales/deDE.d.ts +1 -1
  681. package/locales/deDE.js +3 -0
  682. package/locales/elGR.d.ts +1 -1
  683. package/locales/elGR.js +3 -0
  684. package/locales/enUS.d.ts +1 -1
  685. package/locales/esES.d.ts +1 -1
  686. package/locales/esES.js +3 -0
  687. package/locales/faIR.d.ts +1 -1
  688. package/locales/faIR.js +3 -0
  689. package/locales/fiFI.d.ts +1 -1
  690. package/locales/fiFI.js +3 -0
  691. package/locales/frFR.d.ts +1 -1
  692. package/locales/frFR.js +3 -0
  693. package/locales/heIL.d.ts +1 -1
  694. package/locales/heIL.js +3 -0
  695. package/locales/hrHR.js +3 -0
  696. package/locales/huHU.d.ts +1 -1
  697. package/locales/huHU.js +3 -0
  698. package/locales/hyAM.d.ts +1 -1
  699. package/locales/hyAM.js +3 -0
  700. package/locales/idID.d.ts +2 -2
  701. package/locales/idID.js +3 -0
  702. package/locales/isIS.d.ts +1 -1
  703. package/locales/isIS.js +3 -0
  704. package/locales/itIT.d.ts +1 -1
  705. package/locales/itIT.js +3 -0
  706. package/locales/jaJP.d.ts +1 -1
  707. package/locales/jaJP.js +3 -0
  708. package/locales/koKR.d.ts +1 -1
  709. package/locales/koKR.js +3 -0
  710. package/locales/nbNO.d.ts +1 -1
  711. package/locales/nbNO.js +3 -0
  712. package/locales/nlNL.d.ts +1 -1
  713. package/locales/nlNL.js +3 -0
  714. package/locales/nnNO.d.ts +1 -1
  715. package/locales/nnNO.js +3 -0
  716. package/locales/plPL.d.ts +1 -1
  717. package/locales/plPL.js +3 -0
  718. package/locales/ptBR.d.ts +1 -1
  719. package/locales/ptBR.js +3 -0
  720. package/locales/ptPT.d.ts +1 -1
  721. package/locales/ptPT.js +3 -0
  722. package/locales/roRO.d.ts +1 -1
  723. package/locales/roRO.js +3 -0
  724. package/locales/ruRU.d.ts +1 -1
  725. package/locales/ruRU.js +3 -0
  726. package/locales/skSK.d.ts +1 -1
  727. package/locales/skSK.js +3 -0
  728. package/locales/svSE.d.ts +1 -1
  729. package/locales/svSE.js +3 -0
  730. package/locales/trTR.d.ts +1 -1
  731. package/locales/trTR.js +3 -0
  732. package/locales/ukUA.d.ts +1 -1
  733. package/locales/ukUA.js +3 -0
  734. package/locales/urPK.d.ts +1 -1
  735. package/locales/urPK.js +3 -0
  736. package/locales/viVN.d.ts +1 -1
  737. package/locales/viVN.js +3 -0
  738. package/locales/zhCN.d.ts +1 -1
  739. package/locales/zhCN.js +3 -0
  740. package/locales/zhHK.js +3 -0
  741. package/locales/zhTW.d.ts +1 -1
  742. package/locales/zhTW.js +3 -0
  743. package/material/augmentation.d.ts +4 -0
  744. package/material/icons/createSvgIcon.d.ts +1 -1
  745. package/material/icons/index.d.ts +3 -1
  746. package/material/icons/index.js +8 -2
  747. package/material/index.js +24 -9
  748. package/models/api/gridColumnApi.d.ts +1 -1
  749. package/models/api/gridColumnGroupingApi.d.ts +2 -2
  750. package/models/api/gridColumnSpanning.d.ts +3 -3
  751. package/models/api/gridCoreApi.d.ts +2 -2
  752. package/models/api/gridCsvExportApi.d.ts +1 -1
  753. package/models/api/gridDensityApi.d.ts +2 -2
  754. package/models/api/gridEditingApi.d.ts +6 -6
  755. package/models/api/gridFilterApi.d.ts +4 -4
  756. package/models/api/gridFocusApi.d.ts +3 -3
  757. package/models/api/gridHeaderFilteringApi.d.ts +2 -2
  758. package/models/api/gridLocaleTextApi.d.ts +3 -1
  759. package/models/api/gridLoggerApi.d.ts +1 -1
  760. package/models/api/gridParamsApi.d.ts +7 -7
  761. package/models/api/gridPreferencesPanelApi.d.ts +1 -1
  762. package/models/api/gridPrintExportApi.d.ts +1 -1
  763. package/models/api/gridRowApi.d.ts +1 -1
  764. package/models/api/gridRowSelectionApi.d.ts +1 -1
  765. package/models/api/gridRowsMetaApi.d.ts +2 -2
  766. package/models/api/gridScrollApi.d.ts +2 -2
  767. package/models/api/gridSortApi.d.ts +3 -3
  768. package/models/api/gridStateApi.d.ts +3 -3
  769. package/models/colDef/gridColDef.d.ts +13 -13
  770. package/models/colDef/gridColType.d.ts +1 -0
  771. package/models/colDef/gridColumnTypesRecord.d.ts +2 -2
  772. package/models/configuration/gridAggregationConfiguration.d.ts +2 -2
  773. package/models/configuration/gridCellEditableConfiguration.d.ts +4 -4
  774. package/models/configuration/gridConfiguration.d.ts +1 -1
  775. package/models/configuration/gridParamsConfiguration.d.ts +2 -2
  776. package/models/configuration/gridRowConfiguration.d.ts +4 -4
  777. package/models/controlStateItem.d.ts +1 -1
  778. package/models/events/gridEventLookup.d.ts +7 -7
  779. package/models/gridBaseSlots.d.ts +13 -0
  780. package/models/gridCell.d.ts +1 -1
  781. package/models/gridCellClass.d.ts +2 -2
  782. package/models/gridColumnGrouping.d.ts +1 -1
  783. package/models/gridColumnHeaderClass.d.ts +1 -1
  784. package/models/gridExport.d.ts +2 -2
  785. package/models/gridFilterInputComponent.d.ts +3 -3
  786. package/models/gridFilterItem.d.ts +1 -1
  787. package/models/gridFilterModel.d.ts +1 -1
  788. package/models/gridFilterOperator.d.ts +3 -3
  789. package/models/gridHeaderFilteringModel.d.ts +1 -1
  790. package/models/gridIconSlotsComponent.d.ts +12 -2
  791. package/models/gridRowSelectionModel.d.ts +1 -1
  792. package/models/gridSlotsComponent.d.ts +6 -1
  793. package/models/gridSlotsComponentsProps.d.ts +4 -2
  794. package/models/gridSortModel.d.ts +1 -1
  795. package/models/gridStateCommunity.d.ts +1 -1
  796. package/models/params/gridCellParams.d.ts +4 -4
  797. package/models/params/gridColumnGroupHeaderParams.d.ts +1 -1
  798. package/models/params/gridColumnHeaderParams.d.ts +1 -1
  799. package/models/params/gridEditCellParams.d.ts +2 -2
  800. package/models/params/gridPreferencePanelParams.d.ts +1 -1
  801. package/models/params/gridRowParams.d.ts +1 -1
  802. package/models/params/gridRowSelectionCheckboxParams.d.ts +1 -1
  803. package/models/params/gridValueOptionsParams.d.ts +1 -1
  804. package/models/props/DataGridProps.d.ts +25 -26
  805. package/package.json +3 -3
  806. package/themeAugmentation/overrides.d.ts +1 -1
  807. package/themeAugmentation/props.d.ts +2 -2
  808. package/utils/assert.d.ts +1 -1
  809. package/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.d.ts +1 -1
  810. package/utils/cleanupTracking/TimerBasedCleanupTracking.d.ts +1 -1
  811. package/utils/createSelector.d.ts +2 -2
  812. package/utils/exportAs.d.ts +1 -1
  813. package/utils/getPublicApiRef.d.ts +1 -1
  814. package/utils/keyboardUtils.d.ts +1 -1
  815. package/esm/index.css +0 -5
  816. package/index.css +0 -5
@@ -1,2 +1,2 @@
1
- import { Localization } from "../utils/getGridLocalization.js";
1
+ import { type Localization } from "../utils/getGridLocalization.js";
2
2
  export declare const zhCN: Localization;
@@ -142,6 +142,9 @@ const zhCNGrid = {
142
142
  // Boolean cell text
143
143
  booleanCellTrueLabel: '真',
144
144
  booleanCellFalseLabel: '假',
145
+ // Long text cell
146
+ longTextCellExpandLabel: '显示',
147
+ longTextCellCollapseLabel: '折叠',
145
148
  // Actions cell more text
146
149
  actionsCellMore: '更多',
147
150
  // Column pinning text
@@ -142,6 +142,9 @@ const zhHKGrid = {
142
142
  // Boolean cell text
143
143
  booleanCellTrueLabel: '是的',
144
144
  booleanCellFalseLabel: '不',
145
+ // Long text cell
146
+ longTextCellExpandLabel: '擴張',
147
+ longTextCellCollapseLabel: '坍塌',
145
148
  // Actions cell more text
146
149
  actionsCellMore: '更多的',
147
150
  // Column pinning text
@@ -1,2 +1,2 @@
1
- import { Localization } from "../utils/getGridLocalization.js";
1
+ import { type Localization } from "../utils/getGridLocalization.js";
2
2
  export declare const zhTW: Localization;
@@ -142,6 +142,9 @@ const zhTWGrid = {
142
142
  // Boolean cell text
143
143
  booleanCellTrueLabel: '真',
144
144
  booleanCellFalseLabel: '假',
145
+ // Long text cell
146
+ longTextCellExpandLabel: '展開',
147
+ longTextCellCollapseLabel: '摺疊',
145
148
  // Actions cell more text
146
149
  actionsCellMore: '查看更多',
147
150
  // Column pinning text
@@ -15,6 +15,7 @@ import type { TablePaginationProps } from '@mui/material/TablePagination';
15
15
  import type { PopperProps } from '@mui/material/Popper';
16
16
  import type { TooltipProps } from '@mui/material/Tooltip';
17
17
  import type { InputProps } from '@mui/material/Input';
18
+ import type { TextareaAutosizeProps } from '@mui/material/TextareaAutosize';
18
19
  import type { SelectProps } from '@mui/material/Select';
19
20
  import type { SkeletonProps } from '@mui/material/Skeleton';
20
21
  import type { ToggleButtonProps } from '@mui/material/ToggleButton';
@@ -77,6 +78,9 @@ declare module '@mui/x-data-grid' {
77
78
  interface BaseInputPropsOverrides {
78
79
  material?: Partial<InputProps>;
79
80
  }
81
+ interface BaseTextareaPropsOverrides {
82
+ material?: Partial<TextareaAutosizeProps>;
83
+ }
80
84
  interface BaseSelectPropsOverrides {
81
85
  material?: Partial<SelectProps>;
82
86
  }
@@ -1,2 +1,2 @@
1
- import { GridBaseIconProps } from "../../models/gridSlotsComponentsProps.js";
1
+ import type { GridBaseIconProps } from "../../models/gridSlotsComponentsProps.js";
2
2
  export declare const createSvgIcon: (path: React.ReactNode, displayName?: string) => (props: GridBaseIconProps) => React.ReactNode;
@@ -27,4 +27,6 @@ export declare const GridViewColumnIcon: (props: import("@mui/x-data-grid").Grid
27
27
  export declare const GridClearIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
28
28
  export declare const GridDeleteIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
29
29
  export declare const GridDeleteForeverIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
30
- export declare const GridDownloadIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
30
+ export declare const GridDownloadIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
31
+ export declare const GridLongTextCellExpandIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
32
+ export declare const GridLongTextCellCollapseIcon: (props: import("@mui/x-data-grid").GridBaseIconProps) => React.ReactNode;
@@ -94,4 +94,10 @@ export const GridDeleteForeverIcon = createSvgIcon(/*#__PURE__*/_jsx("path", {
94
94
  }), 'Delete');
95
95
  export const GridDownloadIcon = createSvgIcon(/*#__PURE__*/_jsx("path", {
96
96
  d: "M5 20h14v-2H5zM19 9h-4V3H9v6H5l7 7z"
97
- }), 'Download');
97
+ }), 'Download');
98
+ export const GridLongTextCellExpandIcon = createSvgIcon(/*#__PURE__*/_jsx("path", {
99
+ d: "M21 11V3h-8l3.29 3.29-10 10L3 13v8h8l-3.29-3.29 10-10z"
100
+ }), 'OpenInFull');
101
+ export const GridLongTextCellCollapseIcon = createSvgIcon(/*#__PURE__*/_jsx("path", {
102
+ d: "M5 15h2V8.41L18.59 20 20 18.59 8.41 7H15V5H5z"
103
+ }), 'NorthWest');
@@ -21,10 +21,11 @@ const _excluded = ["id", "label", "labelId", "material", "disabled", "slotProps"
21
21
  _excluded17 = ["key"],
22
22
  _excluded18 = ["inputProps", "InputProps", "InputLabelProps"],
23
23
  _excluded19 = ["slotProps", "material"],
24
- _excluded20 = ["ref", "open", "children", "className", "clickAwayTouchEvent", "clickAwayMouseEvent", "flip", "focusTrap", "onExited", "onClickAway", "onDidShow", "onDidHide", "id", "target", "transition", "placement", "material"],
25
- _excluded21 = ["native"],
26
- _excluded22 = ["children", "value", "active"],
27
- _excluded23 = ["items", "value", "material"];
24
+ _excluded20 = ["material"],
25
+ _excluded21 = ["ref", "open", "children", "className", "clickAwayTouchEvent", "clickAwayMouseEvent", "flip", "focusTrap", "onExited", "onClickAway", "onDidShow", "onDidHide", "id", "target", "transition", "placement", "material"],
26
+ _excluded22 = ["native"],
27
+ _excluded23 = ["children", "value", "active"],
28
+ _excluded24 = ["items", "value", "material"];
28
29
  import * as React from 'react';
29
30
  import clsx from 'clsx';
30
31
  import useForkRef from '@mui/utils/useForkRef';
@@ -44,6 +45,7 @@ import MUIListItemText, { listItemTextClasses } from '@mui/material/ListItemText
44
45
  import MUIMenuList from '@mui/material/MenuList';
45
46
  import MUIMenuItem from '@mui/material/MenuItem';
46
47
  import MUITextField from '@mui/material/TextField';
48
+ import MUITextareaAutosize from '@mui/material/TextareaAutosize';
47
49
  import MUIFormControl from '@mui/material/FormControl';
48
50
  import MUIFormControlLabel, { formControlLabelClasses } from '@mui/material/FormControlLabel';
49
51
  import MUISelect from '@mui/material/Select';
@@ -64,7 +66,7 @@ import MUITab from '@mui/material/Tab';
64
66
  import MUIToggleButton from '@mui/material/ToggleButton';
65
67
  import { forwardRef } from '@mui/x-internals/forwardRef';
66
68
  import useId from '@mui/utils/useId';
67
- import { GridAddIcon, GridArrowDownwardIcon, GridArrowUpwardIcon, GridCheckIcon, GridCloseIcon, GridUndoIcon, GridRedoIcon, GridColumnIcon, GridDragIcon, GridExpandMoreIcon, GridFilterAltIcon, GridFilterListIcon, GridKeyboardArrowRight, GridMoreVertIcon, GridRemoveIcon, GridSearchIcon, GridSeparatorIcon, GridTableRowsIcon, GridTripleDotsVerticalIcon, GridViewHeadlineIcon, GridViewStreamIcon, GridVisibilityOffIcon, GridViewColumnIcon, GridClearIcon, GridLoadIcon, GridDeleteForeverIcon, GridDownloadIcon } from "./icons/index.js";
69
+ import { GridAddIcon, GridArrowDownwardIcon, GridArrowUpwardIcon, GridCheckIcon, GridCloseIcon, GridUndoIcon, GridRedoIcon, GridColumnIcon, GridDragIcon, GridExpandMoreIcon, GridFilterAltIcon, GridFilterListIcon, GridKeyboardArrowRight, GridMoreVertIcon, GridRemoveIcon, GridSearchIcon, GridSeparatorIcon, GridTableRowsIcon, GridTripleDotsVerticalIcon, GridViewHeadlineIcon, GridViewStreamIcon, GridVisibilityOffIcon, GridViewColumnIcon, GridClearIcon, GridLoadIcon, GridDeleteForeverIcon, GridDownloadIcon, GridLongTextCellExpandIcon, GridLongTextCellCollapseIcon } from "./icons/index.js";
68
70
  import { GridColumnUnsortedIcon } from "../components/GridColumnUnsortedIcon.js";
69
71
  import { useGridApiContext } from "../hooks/utils/useGridApiContext.js";
70
72
  import { useGridRootProps } from "../hooks/utils/useGridRootProps.js";
@@ -577,6 +579,16 @@ function transformInputProps(props, wrapAdornments = true) {
577
579
  }
578
580
  return result;
579
581
  }
582
+ const BaseTextarea = forwardRef(function BaseTextarea(props, ref) {
583
+ const {
584
+ material
585
+ } = props,
586
+ other = _objectWithoutPropertiesLoose(props, _excluded20);
587
+ return /*#__PURE__*/_jsx(MUITextareaAutosize, _extends({}, other, material, {
588
+ ref: ref
589
+ }));
590
+ });
591
+ if (process.env.NODE_ENV !== "production") BaseTextarea.displayName = "BaseTextarea";
580
592
  const transformOrigin = {
581
593
  'bottom-start': 'top left',
582
594
  'bottom-end': 'top right'
@@ -596,7 +608,7 @@ function BasePopper(props) {
596
608
  placement,
597
609
  material
598
610
  } = props,
599
- other = _objectWithoutPropertiesLoose(props, _excluded20);
611
+ other = _objectWithoutPropertiesLoose(props, _excluded21);
600
612
  const modifiers = React.useMemo(() => {
601
613
  const result = [{
602
614
  name: 'preventOverflow',
@@ -691,7 +703,7 @@ function BaseSelectOption(_ref) {
691
703
  let {
692
704
  native
693
705
  } = _ref,
694
- props = _objectWithoutPropertiesLoose(_ref, _excluded21);
706
+ props = _objectWithoutPropertiesLoose(_ref, _excluded22);
695
707
  if (native) {
696
708
  return /*#__PURE__*/_jsx("option", _extends({}, props));
697
709
  }
@@ -726,7 +738,7 @@ function TabPanel(props) {
726
738
  children,
727
739
  active
728
740
  } = props,
729
- other = _objectWithoutPropertiesLoose(props, _excluded22);
741
+ other = _objectWithoutPropertiesLoose(props, _excluded23);
730
742
  return /*#__PURE__*/_jsx(StyledTabPanel, _extends({
731
743
  role: "tabpanel",
732
744
  style: {
@@ -742,7 +754,7 @@ function BaseTabs(_ref2) {
742
754
  value,
743
755
  material
744
756
  } = _ref2,
745
- props = _objectWithoutPropertiesLoose(_ref2, _excluded23);
757
+ props = _objectWithoutPropertiesLoose(_ref2, _excluded24);
746
758
  const id = useId();
747
759
  const labelId = `${id}-tab-${value}`;
748
760
  const panelId = `${id}-tabpanel-${value}`;
@@ -806,7 +818,9 @@ const iconSlots = {
806
818
  filterPanelAddIcon: GridAddIcon,
807
819
  filterPanelRemoveAllIcon: GridDeleteForeverIcon,
808
820
  columnReorderIcon: GridDragIcon,
809
- menuItemCheckIcon: GridCheckIcon
821
+ menuItemCheckIcon: GridCheckIcon,
822
+ longTextCellExpandIcon: GridLongTextCellExpandIcon,
823
+ longTextCellCollapseIcon: GridLongTextCellCollapseIcon
810
824
  };
811
825
  const baseSlots = {
812
826
  baseAutocomplete: BaseAutocomplete,
@@ -816,6 +830,7 @@ const baseSlots = {
816
830
  baseCircularProgress: BaseCircularProgress,
817
831
  baseDivider: BaseDivider,
818
832
  baseInput: BaseInput,
833
+ baseTextarea: BaseTextarea,
819
834
  baseLinearProgress: BaseLinearProgress,
820
835
  baseMenuList: BaseMenuList,
821
836
  baseMenuItem: BaseMenuItem,
@@ -1,4 +1,4 @@
1
- import { GridColDef, GridStateColDef } from "../colDef/gridColDef.js";
1
+ import type { GridColDef, GridStateColDef } from "../colDef/gridColDef.js";
2
2
  import type { GridColumnVisibilityModel } from "../../hooks/features/columns/gridColumnsInterfaces.js";
3
3
  /**
4
4
  * The column API interface that is available in the grid [[apiRef]].
@@ -1,5 +1,5 @@
1
- import { GridColumnGroupLookup } from "../../hooks/features/columnGrouping/gridColumnGroupsInterfaces.js";
2
- import { GridColumnGroup } from "../gridColumnGrouping.js";
1
+ import type { GridColumnGroupLookup } from "../../hooks/features/columnGrouping/gridColumnGroupsInterfaces.js";
2
+ import type { GridColumnGroup } from "../gridColumnGrouping.js";
3
3
  /**
4
4
  * The column grouping API interface that is available in the grid [[apiRef]].
5
5
  */
@@ -1,6 +1,6 @@
1
- import { GridStateColDef } from "../colDef/gridColDef.js";
2
- import { GridColumnIndex, GridCellColSpanInfo } from "../gridColumnSpanning.js";
3
- import { GridRowId } from "../gridRows.js";
1
+ import type { GridStateColDef } from "../colDef/gridColDef.js";
2
+ import type { GridColumnIndex, GridCellColSpanInfo } from "../gridColumnSpanning.js";
3
+ import type { GridRowId } from "../gridRows.js";
4
4
  /**
5
5
  * The Column Spanning API interface that is available in the grid `apiRef`.
6
6
  */
@@ -1,5 +1,5 @@
1
- import * as React from 'react';
2
- import { EventManager, EventListenerOptions } from '@mui/x-internals/EventManager';
1
+ import type * as React from 'react';
2
+ import type { EventManager, EventListenerOptions } from '@mui/x-internals/EventManager';
3
3
  import type { Store } from '@mui/x-internals/store';
4
4
  import type { GridEventPublisher, GridEventListener, GridEvents } from "../events/index.js";
5
5
  import type { GridApiCaches } from "../gridApiCaches.js";
@@ -1,4 +1,4 @@
1
- import { GridCsvExportOptions } from "../gridExport.js";
1
+ import type { GridCsvExportOptions } from "../gridExport.js";
2
2
  /**
3
3
  * The CSV export API interface that is available in the grid [[apiRef]].
4
4
  */
@@ -1,5 +1,5 @@
1
- import * as React from 'react';
2
- import { GridDensity } from "../gridDensity.js";
1
+ import type * as React from 'react';
2
+ import type { GridDensity } from "../gridDensity.js";
3
3
  export interface GridDensityOption {
4
4
  icon: React.ReactElement<any>;
5
5
  label: string;
@@ -1,9 +1,9 @@
1
- import { MuiBaseEvent } from '@mui/x-internals/types';
2
- import { GridCellMode, GridRowMode } from "../gridCell.js";
3
- import { GridCellModes, GridRowModes } from "../gridEditRowModel.js";
4
- import { GridRowId, GridRowModel } from "../gridRows.js";
5
- import { GridCellParams } from "../params/gridCellParams.js";
6
- import { GridEditCellValueParams } from "../params/gridEditCellParams.js";
1
+ import type { MuiBaseEvent } from '@mui/x-internals/types';
2
+ import type { GridCellMode, GridRowMode } from "../gridCell.js";
3
+ import type { GridCellModes, GridRowModes } from "../gridEditRowModel.js";
4
+ import type { GridRowId, GridRowModel } from "../gridRows.js";
5
+ import type { GridCellParams } from "../params/gridCellParams.js";
6
+ import type { GridEditCellValueParams } from "../params/gridEditCellParams.js";
7
7
  export type GridCellModesModelProps = ({
8
8
  mode: GridCellModes.View;
9
9
  } & Omit<GridStopCellEditModeParams, 'id' | 'field'>) | ({
@@ -1,8 +1,8 @@
1
- import { GridFilterModel } from "../gridFilterModel.js";
2
- import { GridFilterItem, GridLogicOperator } from "../gridFilterItem.js";
3
- import { GridControlledStateReasonLookup } from "../events/index.js";
1
+ import type { GridFilterModel } from "../gridFilterModel.js";
2
+ import type { GridFilterItem, GridLogicOperator } from "../gridFilterItem.js";
3
+ import type { GridControlledStateReasonLookup } from "../events/index.js";
4
4
  import type { DataGridProcessedProps } from "../props/DataGridProps.js";
5
- import { GridStateCommunity } from "../gridStateCommunity.js";
5
+ import type { GridStateCommunity } from "../gridStateCommunity.js";
6
6
  /**
7
7
  * The filter API interface that is available in the grid [[apiRef]].
8
8
  */
@@ -1,6 +1,6 @@
1
- import { MuiBaseEvent } from '@mui/x-internals/types';
2
- import { GridRowId } from "../gridRows.js";
3
- import { GridColumnGroupIdentifier } from "../../hooks/features/focus/index.js";
1
+ import type { MuiBaseEvent } from '@mui/x-internals/types';
2
+ import type { GridRowId } from "../gridRows.js";
3
+ import type { GridColumnGroupIdentifier } from "../../hooks/features/focus/index.js";
4
4
  export interface GridFocusApi {
5
5
  /**
6
6
  * Sets the focus to the cell at the given `id` and `field`.
@@ -1,5 +1,5 @@
1
- import { GridColDef } from "../colDef/index.js";
2
- import { GridHeaderFilteringState } from "../gridHeaderFilteringModel.js";
1
+ import type { GridColDef } from "../colDef/index.js";
2
+ import type { GridHeaderFilteringState } from "../gridHeaderFilteringModel.js";
3
3
  export interface GridHeaderFilteringPrivateApi {
4
4
  /**
5
5
  * Internal function to set the header filter state.
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import type * as React from 'react';
2
2
  import type { GridColDef } from "../colDef/index.js";
3
3
  /**
4
4
  * Set the types of the texts in the grid.
@@ -119,6 +119,8 @@ export interface GridLocaleText {
119
119
  checkboxSelectionUnselectRow: string;
120
120
  booleanCellTrueLabel: string;
121
121
  booleanCellFalseLabel: string;
122
+ longTextCellExpandLabel: string;
123
+ longTextCellCollapseLabel: string;
122
124
  actionsCellMore: string;
123
125
  pinToLeft: string;
124
126
  pinToRight: string;
@@ -1,4 +1,4 @@
1
- import { Logger } from "../logger.js";
1
+ import type { Logger } from "../logger.js";
2
2
  /**
3
3
  * The logger API interface that is available in the grid `apiRef`.
4
4
  */
@@ -1,10 +1,10 @@
1
- import { GridColDef } from "../colDef/index.js";
2
- import { GridStateColDef } from "../colDef/gridColDef.js";
3
- import { GridCellMode } from "../gridCell.js";
4
- import { GridValidRowModel, GridRowId, GridTreeNode, GridRowModel } from "../gridRows.js";
5
- import { GridCellParams } from "../params/gridCellParams.js";
6
- import { GridColumnHeaderParams } from "../params/gridColumnHeaderParams.js";
7
- import { GridRowParams } from "../params/gridRowParams.js";
1
+ import type { GridColDef } from "../colDef/index.js";
2
+ import type { GridStateColDef } from "../colDef/gridColDef.js";
3
+ import type { GridCellMode } from "../gridCell.js";
4
+ import type { GridValidRowModel, GridRowId, GridTreeNode, GridRowModel } from "../gridRows.js";
5
+ import type { GridCellParams } from "../params/gridCellParams.js";
6
+ import type { GridColumnHeaderParams } from "../params/gridColumnHeaderParams.js";
7
+ import type { GridRowParams } from "../params/gridRowParams.js";
8
8
  export interface GridParamsApi {
9
9
  /**
10
10
  * Gets the value of a cell at the given `id` and `field`.
@@ -1,4 +1,4 @@
1
- import { GridPreferencePanelsValue } from "../../hooks/features/preferencesPanel/gridPreferencePanelsValue.js";
1
+ import type { GridPreferencePanelsValue } from "../../hooks/features/preferencesPanel/gridPreferencePanelsValue.js";
2
2
  /**
3
3
  * The preferences panel API interface that is available in the grid [[apiRef]].
4
4
  */
@@ -1,4 +1,4 @@
1
- import { GridPrintExportOptions } from "../gridExport.js";
1
+ import type { GridPrintExportOptions } from "../gridExport.js";
2
2
  /**
3
3
  * The Print export API interface that is available in the grid [[apiRef]].
4
4
  */
@@ -1,4 +1,4 @@
1
- import { GridRowModel, GridRowId, GridRowModelUpdate, GridValidRowModel, GridTreeNode } from "../gridRows.js";
1
+ import type { GridRowModel, GridRowId, GridRowModelUpdate, GridValidRowModel, GridTreeNode } from "../gridRows.js";
2
2
  export type RowReorderDropPosition = 'above' | 'below' | 'inside';
3
3
  export type RowReorderDragDirection = 'up' | 'down';
4
4
  export interface GridRowGroupChildrenGetterParams {
@@ -1,6 +1,6 @@
1
1
  import type { GridRowId, GridRowModel } from "../gridRows.js";
2
2
  import type { GridRowSelectionModel } from "../gridRowSelectionModel.js";
3
- import { GridControlledStateReasonLookup } from "../events/index.js";
3
+ import type { GridControlledStateReasonLookup } from "../events/index.js";
4
4
  /**
5
5
  * The selection API interface that is available in the grid [[apiRef]].
6
6
  */
@@ -1,5 +1,5 @@
1
- import { GridRowId } from "../gridRows.js";
2
- import { HeightEntry } from "../../hooks/features/rows/gridRowsMetaInterfaces.js";
1
+ import type { GridRowId } from "../gridRows.js";
2
+ import type { HeightEntry } from "../../hooks/features/rows/gridRowsMetaInterfaces.js";
3
3
  /**
4
4
  * The Row Meta API interface that is available in the grid `apiRef`.
5
5
  */
@@ -1,5 +1,5 @@
1
- import { GridCellIndexCoordinates } from "../gridCell.js";
2
- import { GridScrollParams } from "../params/gridScrollParams.js";
1
+ import type { GridCellIndexCoordinates } from "../gridCell.js";
2
+ import type { GridScrollParams } from "../params/gridScrollParams.js";
3
3
  /**
4
4
  * The scroll API interface that is available in the grid [[apiRef]].
5
5
  */
@@ -1,6 +1,6 @@
1
- import { GridColDef } from "../colDef/gridColDef.js";
2
- import { GridRowId, GridRowModel } from "../gridRows.js";
3
- import { GridSortDirection, GridSortModel } from "../gridSortModel.js";
1
+ import type { GridColDef } from "../colDef/gridColDef.js";
2
+ import type { GridRowId, GridRowModel } from "../gridRows.js";
3
+ import type { GridSortDirection, GridSortModel } from "../gridSortModel.js";
4
4
  /**
5
5
  * The sort API interface that is available in the grid [[apiRef]].
6
6
  */
@@ -1,6 +1,6 @@
1
- import { GridStateCommunity } from "../gridStateCommunity.js";
2
- import { GridControlledStateEventLookup, GridControlledStateReasonLookup } from "../events/index.js";
3
- import { GridControlStateItem } from "../controlStateItem.js";
1
+ import type { GridStateCommunity } from "../gridStateCommunity.js";
2
+ import type { GridControlledStateEventLookup, GridControlledStateReasonLookup } from "../events/index.js";
3
+ import type { GridControlStateItem } from "../controlStateItem.js";
4
4
  export interface GridStateApi<State extends GridStateCommunity> {
5
5
  /**
6
6
  * Property that contains the whole state of the grid.
@@ -1,18 +1,18 @@
1
- import * as React from 'react';
2
- import { RefObject } from '@mui/x-internals/types';
3
- import { GridCellClassNamePropType } from "../gridCellClass.js";
4
- import { GridColumnHeaderClassNamePropType } from "../gridColumnHeaderClass.js";
1
+ import type * as React from 'react';
2
+ import type { RefObject } from '@mui/x-internals/types';
3
+ import type { GridCellClassNamePropType } from "../gridCellClass.js";
4
+ import type { GridColumnHeaderClassNamePropType } from "../gridColumnHeaderClass.js";
5
5
  import type { GridFilterOperator } from "../gridFilterOperator.js";
6
- import { GridRenderCellParams, GridRenderEditCellParams, GridPreProcessEditCellProps } from "../params/gridCellParams.js";
7
- import { GridColumnHeaderParams } from "../params/gridColumnHeaderParams.js";
8
- import { GridComparatorFn, GridSortDirection } from "../gridSortModel.js";
9
- import { GridColType } from "./gridColType.js";
10
- import { GridRowParams } from "../params/gridRowParams.js";
11
- import { GridValueOptionsParams } from "../params/gridValueOptionsParams.js";
12
- import { GridActionsCellItemProps } from "../../components/cell/GridActionsCellItem.js";
13
- import { GridEditCellProps } from "../gridEditRowModel.js";
6
+ import type { GridRenderCellParams, GridRenderEditCellParams, GridPreProcessEditCellProps } from "../params/gridCellParams.js";
7
+ import type { GridColumnHeaderParams } from "../params/gridColumnHeaderParams.js";
8
+ import type { GridComparatorFn, GridSortDirection } from "../gridSortModel.js";
9
+ import type { GridColType } from "./gridColType.js";
10
+ import type { GridRowParams } from "../params/gridRowParams.js";
11
+ import type { GridValueOptionsParams } from "../params/gridValueOptionsParams.js";
12
+ import type { GridActionsCellItemProps } from "../../components/cell/GridActionsCellItem.js";
13
+ import type { GridEditCellProps } from "../gridEditRowModel.js";
14
14
  import type { GridValidRowModel } from "../gridRows.js";
15
- import { GridApiCommunity } from "../api/gridApiCommunity.js";
15
+ import type { GridApiCommunity } from "../api/gridApiCommunity.js";
16
16
  /**
17
17
  * Alignment used in position elements in Cells.
18
18
  */
@@ -7,5 +7,6 @@ export interface GridColumnTypes {
7
7
  singleSelect: 'singleSelect';
8
8
  actions: 'actions';
9
9
  custom: 'custom';
10
+ longText: 'longText';
10
11
  }
11
12
  export type GridColType = GridColumnTypes[keyof GridColumnTypes];
@@ -1,3 +1,3 @@
1
- import { GridColTypeDef } from "./gridColDef.js";
2
- import { GridColType } from "./gridColType.js";
1
+ import type { GridColTypeDef } from "./gridColDef.js";
2
+ import type { GridColType } from "./gridColType.js";
3
3
  export type GridColumnTypesRecord = Record<GridColType, GridColTypeDef>;
@@ -1,6 +1,6 @@
1
- import { RefObject } from '@mui/x-internals/types';
1
+ import type { RefObject } from '@mui/x-internals/types';
2
2
  import type { GridRowId, GridRowModel } from "../gridRows.js";
3
- import { GridColDef } from "../colDef/index.js";
3
+ import type { GridColDef } from "../colDef/index.js";
4
4
  /**
5
5
  * Get the cell aggregation result
6
6
  * @param {GridRowId} id The row id
@@ -1,7 +1,7 @@
1
- import { RefObject } from '@mui/x-internals/types';
2
- import { GridPrivateApiCommunity } from "../api/gridApiCommunity.js";
3
- import { DataGridProcessedProps } from "../props/DataGridProps.js";
4
- import { GridEditingApi } from "../api/gridEditingApi.js";
1
+ import type { RefObject } from '@mui/x-internals/types';
2
+ import type { GridPrivateApiCommunity } from "../api/gridApiCommunity.js";
3
+ import type { DataGridProcessedProps } from "../props/DataGridProps.js";
4
+ import type { GridEditingApi } from "../api/gridEditingApi.js";
5
5
  /**
6
6
  * Get the cell editable condition function
7
7
  * @param {Object} params The cell parameters
@@ -1,4 +1,4 @@
1
- import * as React from 'react';
1
+ import type * as React from 'react';
2
2
  import type { GridRowAriaAttributesInternalHook, GridRowsOverridableMethodsInternalHook } from "./gridRowConfiguration.js";
3
3
  import type { GridAggregationInternalHooks } from "./gridAggregationConfiguration.js";
4
4
  import type { GridCellEditableInternalHook } from "./gridCellEditableConfiguration.js";
@@ -1,5 +1,5 @@
1
- import { RefObject } from '@mui/x-internals/types';
2
- import { GridParamsApi } from "../api/gridParamsApi.js";
1
+ import type { RefObject } from '@mui/x-internals/types';
2
+ import type { GridParamsApi } from "../api/gridParamsApi.js";
3
3
  /**
4
4
  * Overridable params methods interface, these methods could be overriden in a higher plan package.
5
5
  */
@@ -1,7 +1,7 @@
1
- import * as React from 'react';
2
- import { RefObject } from '@mui/x-internals/types';
3
- import { GridTreeNode } from "../gridRows.js";
4
- import { GridRowProApi } from "../api/index.js";
1
+ import type * as React from 'react';
2
+ import type { RefObject } from '@mui/x-internals/types';
3
+ import type { GridTreeNode } from "../gridRows.js";
4
+ import type { GridRowProApi } from "../api/index.js";
5
5
  /**
6
6
  * Get the ARIA attributes for a row
7
7
  * @param {GridTreeNode} rowNode The row node
@@ -1,4 +1,4 @@
1
- import { RefObject } from '@mui/x-internals/types';
1
+ import type { RefObject } from '@mui/x-internals/types';
2
2
  import type { GridCallbackDetails } from "./api/gridCallbackDetails.js";
3
3
  import type { GridEventLookup, GridControlledStateEventLookup } from "./events/index.js";
4
4
  import type { OutputSelector } from "../utils/createSelector.js";
@@ -1,8 +1,8 @@
1
- import * as React from 'react';
1
+ import type * as React from 'react';
2
2
  import type { MuiBaseEvent } from '@mui/x-internals/types';
3
3
  import type { GridColumnHeaderParams, GridColumnOrderChangeParams, GridColumnResizeParams, GridHeaderSelectionCheckboxParams, GridMenuParams, GridPreferencePanelParams, GridRowParams, GridRowSelectionCheckboxParams, GridScrollParams, GridColumnGroupHeaderParams, GridRenderContext } from "../params/index.js";
4
- import { GridCellEditStartParams, GridCellEditStopParams } from "../params/gridEditCellParams.js";
5
- import { GridCellParams } from "../params/gridCellParams.js";
4
+ import type { GridCellEditStartParams, GridCellEditStopParams } from "../params/gridEditCellParams.js";
5
+ import type { GridCellParams } from "../params/gridCellParams.js";
6
6
  import type { GridFilterModel } from "../gridFilterModel.js";
7
7
  import type { GridSortModel } from "../gridSortModel.js";
8
8
  import type { GridRowSelectionModel } from "../gridRowSelectionModel.js";
@@ -10,10 +10,10 @@ import type { ElementSize } from "../elementSize.js";
10
10
  import type { GridGroupNode } from "../gridRows.js";
11
11
  import type { GridColumnVisibilityModel } from "../../hooks/features/columns/index.js";
12
12
  import type { GridStrategyProcessorName } from "../../hooks/core/strategyProcessing/index.js";
13
- import { GridRowEditStartParams, GridRowEditStopParams } from "../params/gridRowParams.js";
14
- import { GridCellModesModel, GridRowModesModel } from "../api/gridEditingApi.js";
15
- import { GridPaginationMeta, GridPaginationModel } from "../gridPaginationProps.js";
16
- import { GridDensity } from "../gridDensity.js";
13
+ import type { GridRowEditStartParams, GridRowEditStopParams } from "../params/gridRowParams.js";
14
+ import type { GridCellModesModel, GridRowModesModel } from "../api/gridEditingApi.js";
15
+ import type { GridPaginationMeta, GridPaginationModel } from "../gridPaginationProps.js";
16
+ import type { GridDensity } from "../gridDensity.js";
17
17
  export interface GridRowEventLookup {
18
18
  /**
19
19
  * Fired when a row is clicked.
@@ -162,6 +162,7 @@ export type PaginationProps = CommonProps & {
162
162
  disabled?: boolean;
163
163
  };
164
164
  export type PopperProps = CommonProps & {
165
+ role?: string;
165
166
  ref?: Ref<HTMLDivElement>;
166
167
  open: boolean;
167
168
  children?: React.ReactNode;
@@ -203,6 +204,18 @@ export type InputProps = CommonProps & {
203
204
  htmlInput?: React.InputHTMLAttributes<HTMLInputElement>;
204
205
  };
205
206
  };
207
+ export type TextareaProps = CommonProps & {
208
+ ref?: React.Ref<HTMLTextAreaElement>;
209
+ inputRef?: React.Ref<HTMLTextAreaElement>;
210
+ fullWidth?: boolean;
211
+ value?: string;
212
+ onChange: React.ChangeEventHandler<HTMLTextAreaElement>;
213
+ onKeyDown?: React.KeyboardEventHandler<HTMLTextAreaElement>;
214
+ disabled?: boolean;
215
+ autoFocus?: boolean;
216
+ minRows?: number;
217
+ maxRows?: number;
218
+ };
206
219
  export type SelectProps = CommonProps & {
207
220
  ref?: Ref;
208
221
  id?: string;
@@ -1,5 +1,5 @@
1
1
  import type { GridColDef } from "./colDef/index.js";
2
- import { GridRowId } from "./gridRows.js";
2
+ import type { GridRowId } from "./gridRows.js";
3
3
  /**
4
4
  * The mode of the cell.
5
5
  */
@@ -1,5 +1,5 @@
1
- import { GridValidRowModel } from "./gridRows.js";
2
- import { GridCellParams } from "./params/gridCellParams.js";
1
+ import type { GridValidRowModel } from "./gridRows.js";
2
+ import type { GridCellParams } from "./params/gridCellParams.js";
3
3
  /**
4
4
  * A function used to process cellClassName params.
5
5
  * @param {GridCellParams<R, V>} params The parameters of the cell.
@@ -1,4 +1,4 @@
1
- import { GridColDef } from "./colDef/index.js";
1
+ import type { GridColDef } from "./colDef/index.js";
2
2
  import type { GridColumnGroupHeaderParams } from "./params/gridColumnGroupHeaderParams.js";
3
3
  export interface GridLeafColumn {
4
4
  field: GridColDef['field'];
@@ -1,4 +1,4 @@
1
- import { GridColumnHeaderParams } from "./params/gridColumnHeaderParams.js";
1
+ import type { GridColumnHeaderParams } from "./params/gridColumnHeaderParams.js";
2
2
  /**
3
3
  * A function used to process headerClassName params.
4
4
  * @param {GridColumnHeaderParams} params The parameters of the column header.