@mui/x-data-grid 8.0.0-alpha.0 → 8.0.0-alpha.10

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 (762) hide show
  1. package/CHANGELOG.md +2215 -119
  2. package/DataGrid/DataGrid.js +20 -38
  3. package/DataGrid/useDataGridComponent.d.ts +2 -1
  4. package/DataGrid/useDataGridComponent.js +1 -1
  5. package/DataGrid/useDataGridProps.js +3 -3
  6. package/README.md +3 -3
  7. package/colDef/gridDateOperators.d.ts +2 -1
  8. package/colDef/gridNumericOperators.d.ts +4 -1
  9. package/components/GridApiContext.js +2 -0
  10. package/components/GridColumnHeaders.d.ts +1 -1
  11. package/components/GridColumnHeaders.js +4 -4
  12. package/components/GridConfigurationContext.js +2 -0
  13. package/components/GridFooter.d.ts +2 -1
  14. package/components/GridFooter.js +4 -4
  15. package/components/GridHeaders.js +2 -2
  16. package/components/GridLoadingOverlay.d.ts +3 -3
  17. package/components/GridLoadingOverlay.js +14 -12
  18. package/components/GridNoResultsOverlay.d.ts +2 -1
  19. package/components/GridNoResultsOverlay.js +4 -4
  20. package/components/GridNoRowsOverlay.d.ts +2 -1
  21. package/components/GridNoRowsOverlay.js +4 -4
  22. package/components/GridPagination.d.ts +1 -1
  23. package/components/GridPagination.js +7 -4
  24. package/components/GridRow.d.ts +6 -11
  25. package/components/GridRow.js +55 -87
  26. package/components/GridRowCount.d.ts +1 -1
  27. package/components/GridRowCount.js +3 -2
  28. package/components/GridScrollArea.js +2 -0
  29. package/components/GridSelectedRowCount.d.ts +4 -1
  30. package/components/GridSelectedRowCount.js +3 -2
  31. package/components/GridSkeletonLoadingOverlay.d.ts +1 -1
  32. package/components/GridSkeletonLoadingOverlay.js +22 -21
  33. package/components/base/GridOverlays.d.ts +4 -3
  34. package/components/base/GridOverlays.js +2 -24
  35. package/components/base/index.d.ts +0 -1
  36. package/components/base/index.js +1 -2
  37. package/components/cell/GridActionsCell.js +8 -1
  38. package/components/cell/GridActionsCellItem.d.ts +17 -10
  39. package/components/cell/GridActionsCellItem.js +9 -8
  40. package/components/cell/GridCell.d.ts +19 -23
  41. package/components/cell/GridCell.js +52 -92
  42. package/components/cell/GridEditDateCell.js +1 -1
  43. package/components/cell/GridEditInputCell.d.ts +1 -1
  44. package/components/cell/GridEditInputCell.js +73 -4
  45. package/components/cell/GridEditSingleSelectCell.js +2 -2
  46. package/components/cell/GridSkeletonCell.js +1 -2
  47. package/components/columnHeaders/ColumnHeaderMenuIcon.d.ts +1 -1
  48. package/components/columnHeaders/GridBaseColumnHeaders.d.ts +1 -1
  49. package/components/columnHeaders/GridBaseColumnHeaders.js +4 -3
  50. package/components/columnHeaders/GridColumnGroupHeader.d.ts +5 -5
  51. package/components/columnHeaders/GridColumnGroupHeader.js +7 -10
  52. package/components/columnHeaders/GridColumnHeaderFilterIconButton.d.ts +3 -3
  53. package/components/columnHeaders/GridColumnHeaderFilterIconButton.js +20 -7
  54. package/components/columnHeaders/GridColumnHeaderItem.d.ts +5 -5
  55. package/components/columnHeaders/GridColumnHeaderItem.js +13 -12
  56. package/components/columnHeaders/GridColumnHeaderTitle.js +5 -3
  57. package/components/columnHeaders/GridGenericColumnHeaderItem.d.ts +1 -1
  58. package/components/columnHeaders/GridGenericColumnHeaderItem.js +3 -2
  59. package/components/columnHeaders/GridIconButtonContainer.d.ts +1 -1
  60. package/components/columnHeaders/GridIconButtonContainer.js +5 -3
  61. package/components/columnSelection/GridCellCheckboxRenderer.d.ts +2 -2
  62. package/components/columnSelection/GridCellCheckboxRenderer.js +11 -9
  63. package/components/columnSelection/GridHeaderCheckbox.d.ts +1 -1
  64. package/components/columnSelection/GridHeaderCheckbox.js +17 -9
  65. package/components/columnsManagement/GridColumnsManagement.d.ts +2 -0
  66. package/components/columnsManagement/GridColumnsManagement.js +81 -11
  67. package/components/containers/GridFooterContainer.d.ts +1 -1
  68. package/components/containers/GridFooterContainer.js +5 -3
  69. package/components/containers/GridOverlay.d.ts +1 -1
  70. package/components/containers/GridOverlay.js +5 -3
  71. package/components/containers/GridRoot.d.ts +2 -2
  72. package/components/containers/GridRoot.js +18 -8
  73. package/components/containers/GridRootStyles.js +160 -50
  74. package/components/containers/GridToolbarContainer.d.ts +1 -1
  75. package/components/containers/GridToolbarContainer.js +3 -2
  76. package/components/menu/columnMenu/GridColumnMenu.d.ts +2 -2
  77. package/components/menu/columnMenu/GridColumnMenu.js +5 -5
  78. package/components/menu/columnMenu/GridColumnMenuContainer.d.ts +1 -1
  79. package/components/menu/columnMenu/GridColumnMenuContainer.js +3 -2
  80. package/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.js +6 -11
  81. package/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.js +6 -11
  82. package/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.js +6 -11
  83. package/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.js +13 -22
  84. package/components/panel/GridColumnsPanel.js +1 -2
  85. package/components/panel/GridPanel.d.ts +2 -2
  86. package/components/panel/GridPanel.js +5 -3
  87. package/components/panel/GridPanelContent.js +7 -3
  88. package/components/panel/GridPanelFooter.d.ts +1 -1
  89. package/components/panel/GridPanelFooter.js +4 -3
  90. package/components/panel/GridPanelWrapper.d.ts +1 -1
  91. package/components/panel/GridPanelWrapper.js +5 -3
  92. package/components/panel/filterPanel/GridFilterForm.d.ts +1 -1
  93. package/components/panel/filterPanel/GridFilterForm.js +22 -18
  94. package/components/panel/filterPanel/GridFilterInputBoolean.d.ts +4 -11
  95. package/components/panel/filterPanel/GridFilterInputBoolean.js +41 -31
  96. package/components/panel/filterPanel/GridFilterInputDate.d.ts +3 -9
  97. package/components/panel/filterPanel/GridFilterInputDate.js +50 -31
  98. package/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.d.ts +3 -3
  99. package/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +49 -24
  100. package/components/panel/filterPanel/GridFilterInputMultipleValue.d.ts +3 -3
  101. package/components/panel/filterPanel/GridFilterInputMultipleValue.js +55 -33
  102. package/components/panel/filterPanel/GridFilterInputSingleSelect.d.ts +3 -9
  103. package/components/panel/filterPanel/GridFilterInputSingleSelect.js +34 -25
  104. package/components/panel/filterPanel/GridFilterInputValue.d.ts +3 -9
  105. package/components/panel/filterPanel/GridFilterInputValue.js +63 -38
  106. package/components/panel/filterPanel/GridFilterPanel.d.ts +1 -1
  107. package/components/panel/filterPanel/GridFilterPanel.js +4 -4
  108. package/components/panel/filterPanel/index.d.ts +2 -2
  109. package/components/panel/filterPanel/index.js +1 -2
  110. package/components/toolbar/GridToolbar.d.ts +1 -1
  111. package/components/toolbar/GridToolbar.js +11 -5
  112. package/components/toolbar/GridToolbarColumnsButton.d.ts +1 -1
  113. package/components/toolbar/GridToolbarColumnsButton.js +12 -6
  114. package/components/toolbar/GridToolbarDensitySelector.d.ts +1 -1
  115. package/components/toolbar/GridToolbarDensitySelector.js +9 -11
  116. package/components/toolbar/GridToolbarExport.d.ts +1 -1
  117. package/components/toolbar/GridToolbarExport.js +2 -1
  118. package/components/toolbar/GridToolbarExportContainer.d.ts +1 -1
  119. package/components/toolbar/GridToolbarExportContainer.js +6 -6
  120. package/components/toolbar/GridToolbarFilterButton.d.ts +3 -1
  121. package/components/toolbar/GridToolbarFilterButton.js +20 -9
  122. package/components/toolbar/GridToolbarQuickFilter.d.ts +6 -2
  123. package/components/toolbar/GridToolbarQuickFilter.js +39 -31
  124. package/components/virtualization/GridMainContainer.d.ts +13 -1
  125. package/components/virtualization/GridMainContainer.js +14 -5
  126. package/components/virtualization/GridVirtualScrollbar.d.ts +5 -1
  127. package/components/virtualization/GridVirtualScrollbar.js +17 -17
  128. package/components/virtualization/GridVirtualScroller.js +27 -12
  129. package/components/virtualization/GridVirtualScrollerContent.d.ts +2 -0
  130. package/components/virtualization/GridVirtualScrollerContent.js +15 -6
  131. package/components/virtualization/GridVirtualScrollerRenderZone.d.ts +2 -0
  132. package/components/virtualization/GridVirtualScrollerRenderZone.js +5 -3
  133. package/constants/dataGridPropsDefaultValues.js +2 -4
  134. package/constants/gridClasses.d.ts +36 -12
  135. package/constants/gridClasses.js +1 -1
  136. package/constants/localeTextConstants.js +12 -0
  137. package/context/GridContextProvider.d.ts +2 -1
  138. package/context/GridRootPropsContext.js +2 -0
  139. package/hooks/core/pipeProcessing/gridPipeProcessingApi.d.ts +9 -2
  140. package/hooks/core/pipeProcessing/useGridPipeProcessing.d.ts +2 -2
  141. package/hooks/core/pipeProcessing/useGridRegisterPipeApplier.d.ts +2 -2
  142. package/hooks/core/pipeProcessing/useGridRegisterPipeApplier.js +1 -1
  143. package/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.d.ts +2 -2
  144. package/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.js +1 -1
  145. package/hooks/core/strategyProcessing/gridStrategyProcessingApi.d.ts +25 -9
  146. package/hooks/core/strategyProcessing/gridStrategyProcessingApi.js +5 -1
  147. package/hooks/core/strategyProcessing/useGridRegisterStrategyProcessor.d.ts +2 -2
  148. package/hooks/core/strategyProcessing/useGridStrategyProcessing.d.ts +5 -8
  149. package/hooks/core/strategyProcessing/useGridStrategyProcessing.js +7 -8
  150. package/hooks/core/useGridApiInitialization.d.ts +2 -2
  151. package/hooks/core/useGridApiInitialization.js +2 -2
  152. package/hooks/core/useGridInitialization.d.ts +2 -2
  153. package/hooks/core/useGridIsRtl.d.ts +2 -2
  154. package/hooks/core/useGridLocaleText.d.ts +2 -2
  155. package/hooks/core/useGridLoggerFactory.d.ts +2 -2
  156. package/hooks/core/useGridRefs.d.ts +2 -2
  157. package/hooks/core/useGridStateInitialization.d.ts +2 -2
  158. package/hooks/core/useGridStateInitialization.js +3 -3
  159. package/hooks/features/clipboard/useGridClipboard.d.ts +2 -2
  160. package/hooks/features/columnGrouping/gridColumnGroupsSelector.d.ts +4 -4
  161. package/hooks/features/columnGrouping/useGridColumnGrouping.d.ts +2 -2
  162. package/hooks/features/columnHeaders/useGridColumnHeaders.d.ts +5 -7
  163. package/hooks/features/columnHeaders/useGridColumnHeaders.js +34 -69
  164. package/hooks/features/columnMenu/useGridColumnMenu.d.ts +2 -2
  165. package/hooks/features/columnMenu/useGridColumnMenu.js +0 -2
  166. package/hooks/features/columnResize/columnResizeSelector.d.ts +1 -1
  167. package/hooks/features/columnResize/gridColumnResizeApi.d.ts +6 -0
  168. package/hooks/features/columnResize/gridColumnResizeApi.js +2 -1
  169. package/hooks/features/columnResize/useGridColumnResize.d.ts +2 -2
  170. package/hooks/features/columnResize/useGridColumnResize.js +17 -10
  171. package/hooks/features/columns/gridColumnsSelector.d.ts +12 -12
  172. package/hooks/features/columns/gridColumnsUtils.d.ts +4 -4
  173. package/hooks/features/columns/gridColumnsUtils.js +2 -1
  174. package/hooks/features/columns/useGridColumnSpanning.d.ts +2 -2
  175. package/hooks/features/columns/useGridColumns.d.ts +2 -2
  176. package/hooks/features/columns/useGridColumns.js +7 -3
  177. package/hooks/features/density/densitySelector.d.ts +1 -1
  178. package/hooks/features/density/useGridDensity.d.ts +2 -2
  179. package/hooks/features/dimensions/gridDimensionsApi.d.ts +0 -4
  180. package/hooks/features/dimensions/useGridDimensions.d.ts +2 -2
  181. package/hooks/features/dimensions/useGridDimensions.js +11 -32
  182. package/hooks/features/editing/gridEditingSelectors.d.ts +6 -0
  183. package/hooks/features/editing/gridEditingSelectors.js +7 -1
  184. package/hooks/features/editing/useGridCellEditing.d.ts +2 -2
  185. package/hooks/features/editing/useGridCellEditing.js +4 -4
  186. package/hooks/features/editing/useGridEditing.d.ts +2 -2
  187. package/hooks/features/editing/useGridRowEditing.d.ts +2 -2
  188. package/hooks/features/editing/useGridRowEditing.js +7 -8
  189. package/hooks/features/events/useGridEvents.d.ts +2 -2
  190. package/hooks/features/export/serializers/csvSerializer.d.ts +2 -1
  191. package/hooks/features/export/useGridCsvExport.d.ts +2 -2
  192. package/hooks/features/export/useGridPrintExport.d.ts +2 -2
  193. package/hooks/features/export/useGridPrintExport.js +1 -1
  194. package/hooks/features/export/utils.d.ts +2 -2
  195. package/hooks/features/filter/gridFilterSelector.d.ts +17 -17
  196. package/hooks/features/filter/gridFilterSelector.js +6 -1
  197. package/hooks/features/filter/gridFilterUtils.d.ts +7 -7
  198. package/hooks/features/filter/gridFilterUtils.js +3 -3
  199. package/hooks/features/filter/useGridFilter.d.ts +2 -2
  200. package/hooks/features/filter/useGridFilter.js +1 -1
  201. package/hooks/features/focus/gridFocusStateSelector.d.ts +8 -8
  202. package/hooks/features/focus/useGridFocus.d.ts +2 -2
  203. package/hooks/features/focus/useGridFocus.js +3 -2
  204. package/hooks/features/headerFiltering/gridHeaderFilteringSelectors.d.ts +3 -3
  205. package/hooks/features/headerFiltering/useGridHeaderFiltering.d.ts +2 -2
  206. package/hooks/features/index.d.ts +1 -0
  207. package/hooks/features/index.js +1 -0
  208. package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.d.ts +2 -2
  209. package/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +24 -16
  210. package/hooks/features/keyboardNavigation/utils.d.ts +3 -4
  211. package/hooks/features/keyboardNavigation/utils.js +0 -5
  212. package/hooks/features/listView/gridListViewSelectors.d.ts +3 -1
  213. package/hooks/features/listView/gridListViewSelectors.js +3 -1
  214. package/hooks/features/listView/index.d.ts +1 -0
  215. package/hooks/features/listView/index.js +1 -0
  216. package/hooks/features/listView/useGridListView.d.ts +2 -2
  217. package/hooks/features/listView/useGridListView.js +2 -1
  218. package/hooks/features/overlays/useGridOverlays.d.ts +7 -4
  219. package/hooks/features/overlays/useGridOverlays.js +22 -2
  220. package/hooks/features/pagination/gridPaginationInterfaces.d.ts +3 -0
  221. package/hooks/features/pagination/gridPaginationSelector.d.ts +34 -9
  222. package/hooks/features/pagination/gridPaginationSelector.js +39 -1
  223. package/hooks/features/pagination/useGridPagination.d.ts +3 -3
  224. package/hooks/features/pagination/useGridPagination.js +5 -3
  225. package/hooks/features/pagination/useGridPaginationMeta.d.ts +2 -2
  226. package/hooks/features/pagination/useGridPaginationModel.d.ts +2 -2
  227. package/hooks/features/pagination/useGridPaginationModel.js +23 -1
  228. package/hooks/features/pagination/useGridRowCount.d.ts +2 -2
  229. package/hooks/features/preferencesPanel/gridPreferencePanelSelector.d.ts +1 -0
  230. package/hooks/features/preferencesPanel/gridPreferencePanelSelector.js +8 -1
  231. package/hooks/features/preferencesPanel/index.d.ts +1 -1
  232. package/hooks/features/preferencesPanel/index.js +1 -1
  233. package/hooks/features/preferencesPanel/useGridPreferencesPanel.d.ts +2 -2
  234. package/hooks/features/preferencesPanel/useGridPreferencesPanel.js +14 -38
  235. package/hooks/features/rowSelection/gridRowSelectionSelector.d.ts +3 -3
  236. package/hooks/features/rowSelection/useGridRowSelection.d.ts +2 -2
  237. package/hooks/features/rowSelection/useGridRowSelection.js +8 -16
  238. package/hooks/features/rowSelection/useGridRowSelectionPreProcessors.d.ts +2 -2
  239. package/hooks/features/rowSelection/utils.d.ts +4 -3
  240. package/hooks/features/rowSelection/utils.js +2 -2
  241. package/hooks/features/rows/gridRowSpanningSelectors.d.ts +3 -3
  242. package/hooks/features/rows/gridRowSpanningUtils.d.ts +2 -2
  243. package/hooks/features/rows/gridRowsInterfaces.d.ts +1 -8
  244. package/hooks/features/rows/gridRowsSelector.d.ts +23 -13
  245. package/hooks/features/rows/gridRowsSelector.js +1 -2
  246. package/hooks/features/rows/gridRowsUtils.d.ts +4 -4
  247. package/hooks/features/rows/gridRowsUtils.js +0 -9
  248. package/hooks/features/rows/index.d.ts +1 -1
  249. package/hooks/features/rows/index.js +1 -1
  250. package/hooks/features/rows/useGridParamsApi.d.ts +2 -2
  251. package/hooks/features/rows/useGridParamsApi.js +33 -14
  252. package/hooks/features/rows/useGridRowSpanning.d.ts +2 -2
  253. package/hooks/features/rows/useGridRowSpanning.js +97 -86
  254. package/hooks/features/rows/useGridRows.d.ts +2 -2
  255. package/hooks/features/rows/useGridRows.js +23 -27
  256. package/hooks/features/rows/useGridRowsMeta.d.ts +2 -2
  257. package/hooks/features/rows/useGridRowsMeta.js +3 -2
  258. package/hooks/features/rows/useGridRowsPreProcessors.d.ts +2 -2
  259. package/hooks/features/scroll/useGridScroll.d.ts +2 -2
  260. package/hooks/features/sorting/gridSortingSelector.d.ts +10 -5
  261. package/hooks/features/sorting/gridSortingSelector.js +11 -0
  262. package/hooks/features/sorting/gridSortingUtils.d.ts +3 -3
  263. package/hooks/features/sorting/gridSortingUtils.js +2 -2
  264. package/hooks/features/sorting/index.d.ts +2 -1
  265. package/hooks/features/sorting/index.js +1 -1
  266. package/hooks/features/sorting/useGridSorting.d.ts +2 -2
  267. package/hooks/features/sorting/useGridSorting.js +1 -1
  268. package/hooks/features/statePersistence/useGridStatePersistence.d.ts +2 -2
  269. package/hooks/features/virtualization/gridFocusedVirtualCellSelector.d.ts +6 -0
  270. package/hooks/features/virtualization/gridFocusedVirtualCellSelector.js +33 -0
  271. package/hooks/features/virtualization/gridVirtualizationSelectors.d.ts +5 -5
  272. package/hooks/features/virtualization/useGridVirtualScroller.d.ts +15 -6
  273. package/hooks/features/virtualization/useGridVirtualScroller.js +169 -94
  274. package/hooks/features/virtualization/useGridVirtualization.d.ts +2 -2
  275. package/hooks/utils/useGridApiContext.d.ts +2 -2
  276. package/hooks/utils/useGridApiEventHandler.d.ts +4 -4
  277. package/hooks/utils/useGridApiEventHandler.js +1 -1
  278. package/hooks/utils/useGridApiMethod.d.ts +2 -2
  279. package/hooks/utils/useGridApiRef.d.ts +2 -2
  280. package/hooks/utils/useGridApiRef.js +1 -1
  281. package/hooks/utils/useGridInitializeState.d.ts +3 -3
  282. package/hooks/utils/useGridLogger.d.ts +2 -2
  283. package/hooks/utils/useGridNativeEventListener.d.ts +2 -1
  284. package/hooks/utils/useGridPrivateApiContext.d.ts +2 -1
  285. package/hooks/utils/useGridSelector.d.ts +5 -7
  286. package/hooks/utils/useGridSelector.js +6 -44
  287. package/hooks/utils/useGridVisibleRows.d.ts +8 -6
  288. package/hooks/utils/useGridVisibleRows.js +5 -28
  289. package/index.js +1 -1
  290. package/internals/constants.d.ts +6 -0
  291. package/internals/constants.js +8 -1
  292. package/internals/index.d.ts +7 -4
  293. package/internals/index.js +5 -3
  294. package/internals/utils/attachPinnedStyle.d.ts +2 -0
  295. package/internals/utils/attachPinnedStyle.js +9 -0
  296. package/internals/utils/getPinnedCellOffset.d.ts +3 -3
  297. package/internals/utils/getPinnedCellOffset.js +6 -7
  298. package/internals/utils/index.d.ts +1 -1
  299. package/internals/utils/index.js +2 -2
  300. package/locales/arSD.js +14 -0
  301. package/locales/beBY.js +13 -0
  302. package/locales/bgBG.js +15 -0
  303. package/locales/csCZ.js +15 -0
  304. package/locales/daDK.js +15 -0
  305. package/locales/deDE.js +13 -0
  306. package/locales/elGR.js +14 -0
  307. package/locales/esES.js +17 -4
  308. package/locales/faIR.js +18 -4
  309. package/locales/fiFI.js +15 -0
  310. package/locales/frFR.js +15 -0
  311. package/locales/heIL.js +17 -4
  312. package/locales/hrHR.js +15 -0
  313. package/locales/huHU.js +15 -0
  314. package/locales/isIS.js +14 -0
  315. package/locales/itIT.js +15 -0
  316. package/locales/jaJP.js +15 -0
  317. package/locales/koKR.js +47 -37
  318. package/locales/nbNO.js +15 -0
  319. package/locales/nlNL.js +18 -4
  320. package/locales/nnNO.js +15 -0
  321. package/locales/plPL.js +15 -0
  322. package/locales/ptBR.js +13 -0
  323. package/locales/ptPT.js +13 -0
  324. package/locales/roRO.js +21 -9
  325. package/locales/ruRU.js +15 -0
  326. package/locales/skSK.js +14 -0
  327. package/locales/svSE.js +19 -5
  328. package/locales/trTR.js +15 -2
  329. package/locales/ukUA.js +14 -0
  330. package/locales/urPK.js +22 -9
  331. package/locales/viVN.js +15 -0
  332. package/locales/zhCN.js +17 -4
  333. package/locales/zhHK.js +14 -0
  334. package/locales/zhTW.js +14 -0
  335. package/material/index.js +58 -7
  336. package/models/api/gridApiCommon.d.ts +2 -2
  337. package/models/api/gridCoreApi.d.ts +7 -7
  338. package/models/api/gridDensityApi.d.ts +1 -1
  339. package/models/api/gridLocaleTextApi.d.ts +11 -0
  340. package/models/api/gridParamsApi.d.ts +29 -2
  341. package/models/api/gridStateApi.d.ts +1 -1
  342. package/models/api/index.d.ts +1 -1
  343. package/models/api/index.js +0 -1
  344. package/models/colDef/gridColDef.d.ts +38 -33
  345. package/models/controlStateItem.d.ts +2 -2
  346. package/models/events/gridEventLookup.d.ts +7 -1
  347. package/models/gridBaseSlots.d.ts +95 -0
  348. package/models/gridDataSource.d.ts +13 -13
  349. package/models/gridExport.d.ts +2 -2
  350. package/models/gridFilterInputComponent.d.ts +32 -0
  351. package/models/gridFilterOperator.d.ts +6 -4
  352. package/models/gridIconSlotsComponent.d.ts +5 -0
  353. package/models/gridSlotsComponent.d.ts +16 -1
  354. package/models/gridSlotsComponentsProps.d.ts +45 -9
  355. package/models/gridStateCommunity.d.ts +4 -0
  356. package/models/index.d.ts +1 -0
  357. package/models/props/DataGridProps.d.ts +12 -24
  358. package/modern/DataGrid/DataGrid.js +20 -38
  359. package/modern/DataGrid/useDataGridComponent.js +1 -1
  360. package/modern/DataGrid/useDataGridProps.js +3 -3
  361. package/modern/components/GridApiContext.js +2 -0
  362. package/modern/components/GridColumnHeaders.js +4 -4
  363. package/modern/components/GridConfigurationContext.js +2 -0
  364. package/modern/components/GridFooter.js +4 -4
  365. package/modern/components/GridHeaders.js +2 -2
  366. package/modern/components/GridLoadingOverlay.js +14 -12
  367. package/modern/components/GridNoResultsOverlay.js +4 -4
  368. package/modern/components/GridNoRowsOverlay.js +4 -4
  369. package/modern/components/GridPagination.js +7 -4
  370. package/modern/components/GridRow.js +55 -87
  371. package/modern/components/GridRowCount.js +3 -2
  372. package/modern/components/GridScrollArea.js +2 -0
  373. package/modern/components/GridSelectedRowCount.js +3 -2
  374. package/modern/components/GridSkeletonLoadingOverlay.js +22 -21
  375. package/modern/components/base/GridOverlays.js +2 -24
  376. package/modern/components/base/index.js +1 -2
  377. package/modern/components/cell/GridActionsCell.js +8 -1
  378. package/modern/components/cell/GridActionsCellItem.js +9 -8
  379. package/modern/components/cell/GridCell.js +52 -92
  380. package/modern/components/cell/GridEditDateCell.js +1 -1
  381. package/modern/components/cell/GridEditInputCell.js +73 -4
  382. package/modern/components/cell/GridEditSingleSelectCell.js +2 -2
  383. package/modern/components/cell/GridSkeletonCell.js +1 -2
  384. package/modern/components/columnHeaders/GridBaseColumnHeaders.js +4 -3
  385. package/modern/components/columnHeaders/GridColumnGroupHeader.js +7 -10
  386. package/modern/components/columnHeaders/GridColumnHeaderFilterIconButton.js +20 -7
  387. package/modern/components/columnHeaders/GridColumnHeaderItem.js +13 -12
  388. package/modern/components/columnHeaders/GridColumnHeaderTitle.js +5 -3
  389. package/modern/components/columnHeaders/GridGenericColumnHeaderItem.js +3 -2
  390. package/modern/components/columnHeaders/GridIconButtonContainer.js +5 -3
  391. package/modern/components/columnSelection/GridCellCheckboxRenderer.js +11 -9
  392. package/modern/components/columnSelection/GridHeaderCheckbox.js +17 -9
  393. package/modern/components/columnsManagement/GridColumnsManagement.js +81 -11
  394. package/modern/components/containers/GridFooterContainer.js +5 -3
  395. package/modern/components/containers/GridOverlay.js +5 -3
  396. package/modern/components/containers/GridRoot.js +18 -8
  397. package/modern/components/containers/GridRootStyles.js +160 -50
  398. package/modern/components/containers/GridToolbarContainer.js +3 -2
  399. package/modern/components/menu/columnMenu/GridColumnMenu.js +5 -5
  400. package/modern/components/menu/columnMenu/GridColumnMenuContainer.js +3 -2
  401. package/modern/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.js +6 -11
  402. package/modern/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.js +6 -11
  403. package/modern/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.js +6 -11
  404. package/modern/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.js +13 -22
  405. package/modern/components/panel/GridColumnsPanel.js +1 -2
  406. package/modern/components/panel/GridPanel.js +5 -3
  407. package/modern/components/panel/GridPanelContent.js +7 -3
  408. package/modern/components/panel/GridPanelFooter.js +4 -3
  409. package/modern/components/panel/GridPanelWrapper.js +5 -3
  410. package/modern/components/panel/filterPanel/GridFilterForm.js +22 -18
  411. package/modern/components/panel/filterPanel/GridFilterInputBoolean.js +41 -31
  412. package/modern/components/panel/filterPanel/GridFilterInputDate.js +50 -31
  413. package/modern/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +49 -24
  414. package/modern/components/panel/filterPanel/GridFilterInputMultipleValue.js +55 -33
  415. package/modern/components/panel/filterPanel/GridFilterInputSingleSelect.js +34 -25
  416. package/modern/components/panel/filterPanel/GridFilterInputValue.js +63 -38
  417. package/modern/components/panel/filterPanel/GridFilterPanel.js +4 -4
  418. package/modern/components/panel/filterPanel/index.js +1 -2
  419. package/modern/components/toolbar/GridToolbar.js +11 -5
  420. package/modern/components/toolbar/GridToolbarColumnsButton.js +12 -6
  421. package/modern/components/toolbar/GridToolbarDensitySelector.js +9 -11
  422. package/modern/components/toolbar/GridToolbarExport.js +2 -1
  423. package/modern/components/toolbar/GridToolbarExportContainer.js +6 -6
  424. package/modern/components/toolbar/GridToolbarFilterButton.js +20 -9
  425. package/modern/components/toolbar/GridToolbarQuickFilter.js +39 -31
  426. package/modern/components/virtualization/GridMainContainer.js +14 -5
  427. package/modern/components/virtualization/GridVirtualScrollbar.js +17 -17
  428. package/modern/components/virtualization/GridVirtualScroller.js +27 -12
  429. package/modern/components/virtualization/GridVirtualScrollerContent.js +15 -6
  430. package/modern/components/virtualization/GridVirtualScrollerRenderZone.js +5 -3
  431. package/modern/constants/dataGridPropsDefaultValues.js +2 -4
  432. package/modern/constants/gridClasses.js +1 -1
  433. package/modern/constants/localeTextConstants.js +12 -0
  434. package/modern/context/GridRootPropsContext.js +2 -0
  435. package/modern/hooks/core/pipeProcessing/useGridRegisterPipeApplier.js +1 -1
  436. package/modern/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.js +1 -1
  437. package/modern/hooks/core/strategyProcessing/gridStrategyProcessingApi.js +5 -1
  438. package/modern/hooks/core/strategyProcessing/useGridStrategyProcessing.js +7 -8
  439. package/modern/hooks/core/useGridApiInitialization.js +2 -2
  440. package/modern/hooks/core/useGridStateInitialization.js +3 -3
  441. package/modern/hooks/features/columnHeaders/useGridColumnHeaders.js +34 -69
  442. package/modern/hooks/features/columnMenu/useGridColumnMenu.js +0 -2
  443. package/modern/hooks/features/columnResize/gridColumnResizeApi.js +2 -1
  444. package/modern/hooks/features/columnResize/useGridColumnResize.js +17 -10
  445. package/modern/hooks/features/columns/gridColumnsUtils.js +2 -1
  446. package/modern/hooks/features/columns/useGridColumns.js +7 -3
  447. package/modern/hooks/features/dimensions/useGridDimensions.js +11 -32
  448. package/modern/hooks/features/editing/gridEditingSelectors.js +7 -1
  449. package/modern/hooks/features/editing/useGridCellEditing.js +4 -4
  450. package/modern/hooks/features/editing/useGridRowEditing.js +7 -8
  451. package/modern/hooks/features/export/useGridPrintExport.js +1 -1
  452. package/modern/hooks/features/filter/gridFilterSelector.js +6 -1
  453. package/modern/hooks/features/filter/gridFilterUtils.js +3 -3
  454. package/modern/hooks/features/filter/useGridFilter.js +1 -1
  455. package/modern/hooks/features/focus/useGridFocus.js +3 -2
  456. package/modern/hooks/features/index.js +1 -0
  457. package/modern/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +24 -16
  458. package/modern/hooks/features/keyboardNavigation/utils.js +0 -5
  459. package/modern/hooks/features/listView/gridListViewSelectors.js +3 -1
  460. package/modern/hooks/features/listView/index.js +1 -0
  461. package/modern/hooks/features/listView/useGridListView.js +2 -1
  462. package/modern/hooks/features/overlays/useGridOverlays.js +22 -2
  463. package/modern/hooks/features/pagination/gridPaginationSelector.js +39 -1
  464. package/modern/hooks/features/pagination/useGridPagination.js +5 -3
  465. package/modern/hooks/features/pagination/useGridPaginationModel.js +23 -1
  466. package/modern/hooks/features/preferencesPanel/gridPreferencePanelSelector.js +8 -1
  467. package/modern/hooks/features/preferencesPanel/index.js +1 -1
  468. package/modern/hooks/features/preferencesPanel/useGridPreferencesPanel.js +14 -38
  469. package/modern/hooks/features/rowSelection/useGridRowSelection.js +8 -16
  470. package/modern/hooks/features/rowSelection/utils.js +2 -2
  471. package/modern/hooks/features/rows/gridRowsSelector.js +1 -2
  472. package/modern/hooks/features/rows/gridRowsUtils.js +0 -9
  473. package/modern/hooks/features/rows/index.js +1 -1
  474. package/modern/hooks/features/rows/useGridParamsApi.js +33 -14
  475. package/modern/hooks/features/rows/useGridRowSpanning.js +97 -86
  476. package/modern/hooks/features/rows/useGridRows.js +23 -27
  477. package/modern/hooks/features/rows/useGridRowsMeta.js +3 -2
  478. package/modern/hooks/features/sorting/gridSortingSelector.js +11 -0
  479. package/modern/hooks/features/sorting/gridSortingUtils.js +2 -2
  480. package/modern/hooks/features/sorting/index.js +1 -1
  481. package/modern/hooks/features/sorting/useGridSorting.js +1 -1
  482. package/modern/hooks/features/virtualization/gridFocusedVirtualCellSelector.js +33 -0
  483. package/modern/hooks/features/virtualization/useGridVirtualScroller.js +169 -94
  484. package/modern/hooks/utils/useGridApiEventHandler.js +1 -1
  485. package/modern/hooks/utils/useGridApiRef.js +1 -1
  486. package/modern/hooks/utils/useGridSelector.js +6 -44
  487. package/modern/hooks/utils/useGridVisibleRows.js +5 -28
  488. package/modern/index.js +1 -1
  489. package/modern/internals/constants.js +8 -1
  490. package/modern/internals/index.js +5 -3
  491. package/modern/internals/utils/attachPinnedStyle.js +9 -0
  492. package/modern/internals/utils/getPinnedCellOffset.js +6 -7
  493. package/modern/internals/utils/index.js +2 -2
  494. package/modern/locales/arSD.js +14 -0
  495. package/modern/locales/beBY.js +13 -0
  496. package/modern/locales/bgBG.js +15 -0
  497. package/modern/locales/csCZ.js +15 -0
  498. package/modern/locales/daDK.js +15 -0
  499. package/modern/locales/deDE.js +13 -0
  500. package/modern/locales/elGR.js +14 -0
  501. package/modern/locales/esES.js +17 -4
  502. package/modern/locales/faIR.js +18 -4
  503. package/modern/locales/fiFI.js +15 -0
  504. package/modern/locales/frFR.js +15 -0
  505. package/modern/locales/heIL.js +17 -4
  506. package/modern/locales/hrHR.js +15 -0
  507. package/modern/locales/huHU.js +15 -0
  508. package/modern/locales/isIS.js +14 -0
  509. package/modern/locales/itIT.js +15 -0
  510. package/modern/locales/jaJP.js +15 -0
  511. package/modern/locales/koKR.js +47 -37
  512. package/modern/locales/nbNO.js +15 -0
  513. package/modern/locales/nlNL.js +18 -4
  514. package/modern/locales/nnNO.js +15 -0
  515. package/modern/locales/plPL.js +15 -0
  516. package/modern/locales/ptBR.js +13 -0
  517. package/modern/locales/ptPT.js +13 -0
  518. package/modern/locales/roRO.js +21 -9
  519. package/modern/locales/ruRU.js +15 -0
  520. package/modern/locales/skSK.js +14 -0
  521. package/modern/locales/svSE.js +19 -5
  522. package/modern/locales/trTR.js +15 -2
  523. package/modern/locales/ukUA.js +14 -0
  524. package/modern/locales/urPK.js +22 -9
  525. package/modern/locales/viVN.js +15 -0
  526. package/modern/locales/zhCN.js +17 -4
  527. package/modern/locales/zhHK.js +14 -0
  528. package/modern/locales/zhTW.js +14 -0
  529. package/modern/material/index.js +58 -7
  530. package/modern/models/api/index.js +0 -1
  531. package/modern/models/gridBaseSlots.js +1 -0
  532. package/modern/models/gridFilterInputComponent.js +1 -0
  533. package/modern/utils/assert.js +3 -0
  534. package/modern/utils/cellBorderUtils.js +5 -5
  535. package/modern/utils/createSelector.js +1 -120
  536. package/modern/utils/domUtils.js +7 -2
  537. package/modern/utils/isJSDOM.js +1 -0
  538. package/modern/utils/roundToDecimalPlaces.js +3 -0
  539. package/modern/utils/rtlFlipSide.js +22 -0
  540. package/modern/utils/utils.js +6 -1
  541. package/node/DataGrid/DataGrid.js +18 -36
  542. package/node/DataGrid/useDataGridComponent.js +1 -1
  543. package/node/DataGrid/useDataGridProps.js +2 -2
  544. package/node/components/GridApiContext.js +1 -0
  545. package/node/components/GridColumnHeaders.js +4 -4
  546. package/node/components/GridConfigurationContext.js +1 -0
  547. package/node/components/GridFooter.js +4 -4
  548. package/node/components/GridHeaders.js +2 -2
  549. package/node/components/GridLoadingOverlay.js +14 -12
  550. package/node/components/GridNoResultsOverlay.js +4 -4
  551. package/node/components/GridNoRowsOverlay.js +4 -4
  552. package/node/components/GridPagination.js +7 -4
  553. package/node/components/GridRow.js +51 -84
  554. package/node/components/GridRowCount.js +3 -2
  555. package/node/components/GridScrollArea.js +1 -0
  556. package/node/components/GridSelectedRowCount.js +3 -2
  557. package/node/components/GridSkeletonLoadingOverlay.js +21 -20
  558. package/node/components/base/GridOverlays.js +2 -24
  559. package/node/components/base/index.js +0 -11
  560. package/node/components/cell/GridActionsCell.js +8 -1
  561. package/node/components/cell/GridActionsCellItem.js +7 -8
  562. package/node/components/cell/GridCell.js +51 -91
  563. package/node/components/cell/GridEditDateCell.js +1 -1
  564. package/node/components/cell/GridEditInputCell.js +73 -4
  565. package/node/components/cell/GridEditSingleSelectCell.js +2 -2
  566. package/node/components/cell/GridSkeletonCell.js +1 -2
  567. package/node/components/columnHeaders/GridBaseColumnHeaders.js +4 -3
  568. package/node/components/columnHeaders/GridColumnGroupHeader.js +7 -10
  569. package/node/components/columnHeaders/GridColumnHeaderFilterIconButton.js +19 -6
  570. package/node/components/columnHeaders/GridColumnHeaderItem.js +13 -12
  571. package/node/components/columnHeaders/GridColumnHeaderTitle.js +5 -3
  572. package/node/components/columnHeaders/GridGenericColumnHeaderItem.js +3 -2
  573. package/node/components/columnHeaders/GridIconButtonContainer.js +5 -3
  574. package/node/components/columnSelection/GridCellCheckboxRenderer.js +10 -8
  575. package/node/components/columnSelection/GridHeaderCheckbox.js +17 -9
  576. package/node/components/columnsManagement/GridColumnsManagement.js +81 -11
  577. package/node/components/containers/GridFooterContainer.js +5 -3
  578. package/node/components/containers/GridOverlay.js +5 -3
  579. package/node/components/containers/GridRoot.js +17 -7
  580. package/node/components/containers/GridRootStyles.js +160 -50
  581. package/node/components/containers/GridToolbarContainer.js +3 -2
  582. package/node/components/menu/columnMenu/GridColumnMenu.js +5 -5
  583. package/node/components/menu/columnMenu/GridColumnMenuContainer.js +3 -2
  584. package/node/components/menu/columnMenu/menuItems/GridColumnMenuFilterItem.js +5 -10
  585. package/node/components/menu/columnMenu/menuItems/GridColumnMenuHideItem.js +5 -10
  586. package/node/components/menu/columnMenu/menuItems/GridColumnMenuManageItem.js +5 -10
  587. package/node/components/menu/columnMenu/menuItems/GridColumnMenuSortItem.js +13 -22
  588. package/node/components/panel/GridColumnsPanel.js +1 -2
  589. package/node/components/panel/GridPanel.js +5 -3
  590. package/node/components/panel/GridPanelContent.js +7 -3
  591. package/node/components/panel/GridPanelFooter.js +5 -4
  592. package/node/components/panel/GridPanelWrapper.js +5 -3
  593. package/node/components/panel/filterPanel/GridFilterForm.js +22 -18
  594. package/node/components/panel/filterPanel/GridFilterInputBoolean.js +42 -33
  595. package/node/components/panel/filterPanel/GridFilterInputDate.js +49 -30
  596. package/node/components/panel/filterPanel/GridFilterInputMultipleSingleSelect.js +49 -24
  597. package/node/components/panel/filterPanel/GridFilterInputMultipleValue.js +55 -33
  598. package/node/components/panel/filterPanel/GridFilterInputSingleSelect.js +34 -25
  599. package/node/components/panel/filterPanel/GridFilterInputValue.js +62 -37
  600. package/node/components/panel/filterPanel/GridFilterPanel.js +4 -4
  601. package/node/components/panel/filterPanel/index.js +7 -23
  602. package/node/components/toolbar/GridToolbar.js +11 -5
  603. package/node/components/toolbar/GridToolbarColumnsButton.js +12 -6
  604. package/node/components/toolbar/GridToolbarDensitySelector.js +9 -11
  605. package/node/components/toolbar/GridToolbarExport.js +2 -1
  606. package/node/components/toolbar/GridToolbarExportContainer.js +6 -6
  607. package/node/components/toolbar/GridToolbarFilterButton.js +20 -9
  608. package/node/components/toolbar/GridToolbarQuickFilter.js +39 -31
  609. package/node/components/virtualization/GridMainContainer.js +14 -5
  610. package/node/components/virtualization/GridVirtualScrollbar.js +17 -17
  611. package/node/components/virtualization/GridVirtualScroller.js +27 -12
  612. package/node/components/virtualization/GridVirtualScrollerContent.js +15 -6
  613. package/node/components/virtualization/GridVirtualScrollerRenderZone.js +5 -3
  614. package/node/constants/dataGridPropsDefaultValues.js +2 -4
  615. package/node/constants/gridClasses.js +1 -1
  616. package/node/constants/localeTextConstants.js +12 -0
  617. package/node/context/GridRootPropsContext.js +1 -0
  618. package/node/hooks/core/pipeProcessing/useGridRegisterPipeApplier.js +1 -1
  619. package/node/hooks/core/pipeProcessing/useGridRegisterPipeProcessor.js +1 -1
  620. package/node/hooks/core/strategyProcessing/gridStrategyProcessingApi.js +7 -1
  621. package/node/hooks/core/strategyProcessing/useGridStrategyProcessing.js +7 -8
  622. package/node/hooks/core/useGridApiInitialization.js +2 -2
  623. package/node/hooks/core/useGridStateInitialization.js +3 -3
  624. package/node/hooks/features/columnHeaders/useGridColumnHeaders.js +32 -67
  625. package/node/hooks/features/columnMenu/useGridColumnMenu.js +0 -2
  626. package/node/hooks/features/columnResize/gridColumnResizeApi.js +2 -1
  627. package/node/hooks/features/columnResize/useGridColumnResize.js +17 -10
  628. package/node/hooks/features/columns/gridColumnsUtils.js +2 -1
  629. package/node/hooks/features/columns/useGridColumns.js +7 -3
  630. package/node/hooks/features/dimensions/useGridDimensions.js +12 -33
  631. package/node/hooks/features/editing/gridEditingSelectors.js +8 -2
  632. package/node/hooks/features/editing/useGridCellEditing.js +3 -3
  633. package/node/hooks/features/editing/useGridRowEditing.js +5 -6
  634. package/node/hooks/features/export/useGridPrintExport.js +1 -1
  635. package/node/hooks/features/filter/gridFilterSelector.js +6 -1
  636. package/node/hooks/features/filter/gridFilterUtils.js +3 -3
  637. package/node/hooks/features/filter/useGridFilter.js +1 -1
  638. package/node/hooks/features/focus/useGridFocus.js +3 -2
  639. package/node/hooks/features/index.js +11 -0
  640. package/node/hooks/features/keyboardNavigation/useGridKeyboardNavigation.js +24 -15
  641. package/node/hooks/features/keyboardNavigation/utils.js +0 -6
  642. package/node/hooks/features/listView/gridListViewSelectors.js +3 -1
  643. package/node/hooks/features/listView/index.js +16 -0
  644. package/node/hooks/features/listView/useGridListView.js +2 -1
  645. package/node/hooks/features/overlays/useGridOverlays.js +24 -2
  646. package/node/hooks/features/pagination/gridPaginationSelector.js +41 -3
  647. package/node/hooks/features/pagination/useGridPagination.js +5 -3
  648. package/node/hooks/features/pagination/useGridPaginationModel.js +23 -1
  649. package/node/hooks/features/preferencesPanel/gridPreferencePanelSelector.js +9 -2
  650. package/node/hooks/features/preferencesPanel/index.js +11 -10
  651. package/node/hooks/features/preferencesPanel/useGridPreferencesPanel.js +14 -38
  652. package/node/hooks/features/rowSelection/useGridRowSelection.js +7 -15
  653. package/node/hooks/features/rowSelection/utils.js +2 -2
  654. package/node/hooks/features/rows/gridRowsSelector.js +2 -3
  655. package/node/hooks/features/rows/gridRowsUtils.js +0 -9
  656. package/node/hooks/features/rows/index.js +0 -7
  657. package/node/hooks/features/rows/useGridParamsApi.js +33 -14
  658. package/node/hooks/features/rows/useGridRowSpanning.js +95 -84
  659. package/node/hooks/features/rows/useGridRows.js +21 -25
  660. package/node/hooks/features/rows/useGridRowsMeta.js +5 -4
  661. package/node/hooks/features/sorting/gridSortingSelector.js +12 -1
  662. package/node/hooks/features/sorting/gridSortingUtils.js +2 -2
  663. package/node/hooks/features/sorting/index.js +24 -16
  664. package/node/hooks/features/sorting/useGridSorting.js +1 -1
  665. package/node/hooks/features/virtualization/gridFocusedVirtualCellSelector.js +40 -0
  666. package/node/hooks/features/virtualization/useGridVirtualScroller.js +171 -96
  667. package/node/hooks/utils/useGridApiEventHandler.js +1 -1
  668. package/node/hooks/utils/useGridApiRef.js +1 -1
  669. package/node/hooks/utils/useGridSelector.js +8 -47
  670. package/node/hooks/utils/useGridVisibleRows.js +3 -28
  671. package/node/index.js +1 -1
  672. package/node/internals/constants.js +9 -2
  673. package/node/internals/index.js +36 -24
  674. package/node/internals/utils/attachPinnedStyle.js +15 -0
  675. package/node/internals/utils/getPinnedCellOffset.js +6 -7
  676. package/node/internals/utils/index.js +11 -11
  677. package/node/locales/arSD.js +14 -0
  678. package/node/locales/beBY.js +13 -0
  679. package/node/locales/bgBG.js +15 -0
  680. package/node/locales/csCZ.js +15 -0
  681. package/node/locales/daDK.js +15 -0
  682. package/node/locales/deDE.js +13 -0
  683. package/node/locales/elGR.js +14 -0
  684. package/node/locales/esES.js +17 -4
  685. package/node/locales/faIR.js +18 -4
  686. package/node/locales/fiFI.js +15 -0
  687. package/node/locales/frFR.js +15 -0
  688. package/node/locales/heIL.js +17 -4
  689. package/node/locales/hrHR.js +15 -0
  690. package/node/locales/huHU.js +15 -0
  691. package/node/locales/isIS.js +14 -0
  692. package/node/locales/itIT.js +15 -0
  693. package/node/locales/jaJP.js +15 -0
  694. package/node/locales/koKR.js +47 -37
  695. package/node/locales/nbNO.js +15 -0
  696. package/node/locales/nlNL.js +18 -4
  697. package/node/locales/nnNO.js +15 -0
  698. package/node/locales/plPL.js +15 -0
  699. package/node/locales/ptBR.js +13 -0
  700. package/node/locales/ptPT.js +13 -0
  701. package/node/locales/roRO.js +21 -9
  702. package/node/locales/ruRU.js +15 -0
  703. package/node/locales/skSK.js +14 -0
  704. package/node/locales/svSE.js +19 -5
  705. package/node/locales/trTR.js +15 -2
  706. package/node/locales/ukUA.js +14 -0
  707. package/node/locales/urPK.js +22 -9
  708. package/node/locales/viVN.js +15 -0
  709. package/node/locales/zhCN.js +17 -4
  710. package/node/locales/zhHK.js +14 -0
  711. package/node/locales/zhTW.js +14 -0
  712. package/node/material/index.js +59 -7
  713. package/node/models/api/index.js +0 -11
  714. package/node/models/gridFilterInputComponent.js +5 -0
  715. package/node/utils/assert.js +9 -0
  716. package/node/utils/cellBorderUtils.js +5 -5
  717. package/node/utils/createSelector.js +4 -125
  718. package/node/utils/domUtils.js +7 -2
  719. package/node/utils/isJSDOM.js +7 -0
  720. package/node/utils/roundToDecimalPlaces.js +9 -0
  721. package/node/utils/rtlFlipSide.js +29 -0
  722. package/node/utils/utils.js +8 -1
  723. package/package.json +5 -5
  724. package/themeAugmentation/overrides.d.ts +10 -5
  725. package/utils/assert.d.ts +2 -0
  726. package/utils/assert.js +3 -0
  727. package/utils/cellBorderUtils.d.ts +3 -3
  728. package/utils/cellBorderUtils.js +5 -5
  729. package/utils/createSelector.d.ts +7 -19
  730. package/utils/createSelector.js +1 -120
  731. package/utils/domUtils.js +7 -2
  732. package/utils/getPublicApiRef.d.ts +2 -1
  733. package/utils/isJSDOM.d.ts +1 -0
  734. package/utils/isJSDOM.js +1 -0
  735. package/utils/keyboardUtils.d.ts +1 -1
  736. package/utils/roundToDecimalPlaces.d.ts +1 -0
  737. package/utils/roundToDecimalPlaces.js +3 -0
  738. package/utils/rtlFlipSide.d.ts +2 -0
  739. package/utils/rtlFlipSide.js +22 -0
  740. package/utils/utils.d.ts +1 -0
  741. package/utils/utils.js +6 -1
  742. package/components/panel/filterPanel/GridFilterInputValueProps.d.ts +0 -11
  743. package/internals/utils/useProps.d.ts +0 -1
  744. package/internals/utils/useProps.js +0 -24
  745. package/joy/icons.d.ts +0 -32
  746. package/joy/icons.js +0 -431
  747. package/joy/index.d.ts +0 -2
  748. package/joy/index.js +0 -2
  749. package/joy/joySlots.d.ts +0 -3
  750. package/joy/joySlots.js +0 -384
  751. package/joy/package.json +0 -6
  752. package/modern/internals/utils/useProps.js +0 -24
  753. package/modern/joy/icons.js +0 -431
  754. package/modern/joy/index.js +0 -2
  755. package/modern/joy/joySlots.js +0 -384
  756. package/node/internals/utils/useProps.js +0 -30
  757. package/node/joy/icons.js +0 -439
  758. package/node/joy/index.js +0 -13
  759. package/node/joy/joySlots.js +0 -392
  760. /package/{components/panel/filterPanel/GridFilterInputValueProps.js → models/gridBaseSlots.js} +0 -0
  761. /package/{modern/components/panel/filterPanel/GridFilterInputValueProps.js → models/gridFilterInputComponent.js} +0 -0
  762. /package/node/{components/panel/filterPanel/GridFilterInputValueProps.js → models/gridBaseSlots.js} +0 -0
package/CHANGELOG.md CHANGED
@@ -5,185 +5,1340 @@
5
5
  All notable changes to this project will be documented in this file.
6
6
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
7
7
 
8
- ## 8.0.0-alpha.0
9
-
10
- <img width="100%" alt="MUI X v8 Alpha is live" src="https://github.com/user-attachments/assets/114cf615-b617-435f-8499-76ac3c26c57b">
8
+ ## 8.0.0-alpha.10
11
9
 
12
- _Nov 14, 2024_
10
+ _Jan 30, 2025_
13
11
 
14
- We'd like to offer a big thanks to the 22 contributors who made this release possible. Here are some highlights ✨:
12
+ We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
15
13
 
16
- - 🔁 Support [automatic parents and children selection](https://next.mui.com/x/react-tree-view/rich-tree-view/selection/#automatic-parents-and-children-selection) for the Rich Tree View components.
17
- - 🌍 Improve Greek (el-GR) locale on the Date and Time Pickers components
18
- - 🌍 Improve Polish (pl-PL) locale on the Data Grid component
19
- - 🐞 Bugfixes
14
+ - 🎨 Data Grid theming improvements and default background color
20
15
  - 📚 Documentation improvements
16
+ - 🐞 Bugfixes
21
17
 
22
- Special thanks go out to the community contributors who have helped make this release possible:
23
- @belkocik, @GeorgiosDrivas, @k-rajat19, @kalyan90, @DungTiger, @fxnoob, @GuillaumeMeheut
24
- Following are all team members who have contributed to this release:
25
- @alexfauquette, @arminmeh, @arthurbalduini, @cherniavskii, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @michelengelen, @noraleonte, @oliviertassinari, @romgrk, @samuelsycamore, @joserodolfofreitas.
18
+ Special thanks go out to the community contributors who have helped make this release possible:
19
+ @k-rajat19, @lauri865, @mateuseap.
20
+ Following are all team members who have contributed to this release:
21
+ @alexfauquette, @flaviendelangle, @JCQuintas, @KenanYusuf, @MBilalShafi, @romgrk, @arminmeh.
26
22
 
27
23
  <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
28
24
 
29
25
  ### Data Grid
30
26
 
31
- #### `@mui/x-data-grid@8.0.0-alpha.0`
27
+ ### Breaking changes
32
28
 
33
- - [DataGrid] Fix grid overlay aligment with scroll for rtl (#15072) @kalyan90
34
- - [DataGrid] Fix resizing right pinned column (#15107) @KenanYusuf
35
- - [DataGrid] Pass the reason to the `onPaginationModelChange` callback (#13959) @DungTiger
36
- - [DataGrid] Set default overlay height in flex parent layout (#15202) @cherniavskii
37
- - [DataGrid] Refactor `baseMenuList` and `baseMenuItem` (#15049) @romgrk
38
- - [DataGrid] Remove more material imports (#15063) @romgrk
39
- - [l10n] Improve Polish (pl-PL) locale (#15227) @belkocik
29
+ - `viewportInnerSize.width` now includes pinned columns' widths (fixes recursive loops in updating dimensions <-> columns)
30
+ - The Data Grid now has a default background color, and its customization has moved from `theme.mixins.MuiDataGrid` to `theme.palette.DataGrid` with the following properties:
40
31
 
41
- #### `@mui/x-data-grid-pro@8.0.0-alpha.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
32
+ - `bg`: Sets the background color of the entire grid (new property)
33
+ - `headerBg`: Sets the background color of the header (previously named `containerBackground`)
34
+ - `pinnedBg`: Sets the background color of pinned rows and columns (previously named `pinnedBackground`)
42
35
 
43
- Same changes as in `@mui/x-data-grid@8.0.0-alpha.0`, plus:
36
+ ```diff
37
+ const theme = createTheme({
38
+ - mixins: {
39
+ - MuiDataGrid: {
40
+ - containerBackground: '#f8fafc',
41
+ - pinnedBackground: '#f1f5f9',
42
+ - },
43
+ - },
44
+ + palette: {
45
+ + DataGrid: {
46
+ + bg: '#f8fafc',
47
+ + headerBg: '#e2e8f0',
48
+ + pinnedBg: '#f1f5f9',
49
+ + },
50
+ + },
51
+ });
52
+ ```
53
+ - The `detailPanels`, `pinnedColumns`, and `pinnedRowsRenderZone` classes have been removed.
54
+ - Return type of the `useGridApiRef()` hook and the type of `apiRef` prop are updated to explicitly include the possibilty of `null`. In addition to this, `useGridApiRef()` returns a reference that is initialized with `null` instead of `{}`.
44
55
 
45
- - [DataGridPro] Fix column pinning layout (#14966) @cherniavskii
56
+ Only the initial value and the type are updated. Logic that initializes the API and its availability remained the same, which means that if you could access API in a particular line of your code before, you are able to access it as well after this change.
46
57
 
47
- #### `@mui/x-data-grid-premium@8.0.0-alpha.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
58
+ Depending on the context in which the API is being used, you can decide what is the best way to deal with `null` value. Some options are:
48
59
 
49
- Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.0`, plus:
60
+ - Use optional chaining
61
+ - Use non-null assertion operator if you are sure your code is always executed when the `apiRef` is not `null`
62
+ - Return early if `apiRef` is `null`
63
+ - Throw an error if `apiRef` is `null`
50
64
 
51
- - [DataGridPremium] Server-side data source with row grouping (#13826) @MBilalShafi
65
+ #### `@mui/x-data-grid@8.0.0-alpha.10`
66
+
67
+ - [DataGrid] Fix `renderContext` calculation with scroll bounce / over-scroll (#16297) @lauri865
68
+ - [DataGrid] Remove unused classes from `gridClasses` (#16256) @mateuseap
69
+ - [DataGrid] Add default background color to grid (#16066) @KenanYusuf
70
+ - [DataGrid] Add missing style overrides (#16272) @KenanYusuf
71
+ - [DataGrid] Add possibility of `null` in the return type of the `useGridApiRef()` hook (#16353) @arminmeh
72
+ - [DataGrid] Fix header filters keyboard navigation when there are no rows (#16126) @k-rajat19
73
+ - [DataGrid] Fix order of `onClick` prop on toolbar buttons (#16356) @KenanYusuf
74
+ - [DataGrid] Refactor row state propagation (#15627) @lauri865
75
+ - [DataGrid] Refactor: create TextField props (#16174) @romgrk
76
+ - [DataGrid] Remove outdated warning (#16360) @MBilalShafi
77
+ - [DataGrid] Respect width of `iconContainer` during autosizing (#16399) @michelengelen
78
+
79
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.10` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
80
+
81
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.10`, plus:
82
+
83
+ - [DataGridPro] Fetch new rows only once when multiple models are changed in one cycle (#16101) @arminmeh
84
+ - [DataGridPro] Fix the return type of `useGridApiRef` for Pro and Premium packages on React < 19 (#16328) @arminmeh
85
+
86
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.10` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
87
+
88
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.10`.
52
89
 
53
90
  ### Date and Time Pickers
54
91
 
55
92
  #### Breaking changes
56
93
 
57
- - The default DOM structure of the field has changed [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#new-dom-structure-for-the-field).
94
+ - The component passed to the `field` slot no longer receives the `ref`, `disabled`, `className`, `sx`, `label`, `name`, `formatDensity`, `enableAccessibleFieldDOMStructure`, `selectedSections`, `onSelectedSectionsChange` and `inputRef` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-field)
95
+ - The `MuiPickersPopper` theme entry have been renamed `MuiPickerPopper` and some of its props have been removed — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#muipickerspopper)
58
96
 
59
- - Before version `v8.x`, the fields' DOM structure consisted of an `<input />`, which held the whole value for the component, but unfortunately presents a few limitations in terms of accessibility when managing multiple section values.
60
- - Starting with version `v8.x`, all the field and picker components come with a new DOM structure that allows the field component to set aria attributes on individual sections, providing a far better experience with screen readers.
97
+ #### `@mui/x-date-pickers@8.0.0-alpha.10`
61
98
 
62
- - Some translation keys no longer require `utils` and the date object as parameters, but only the formatted value as a string. The keys affected by this changes are: `clockLabelText`, `openDatePickerDialogue` and `openTimePickerDialogue` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#stop-passing-utils-and-the-date-object-to-some-translation-keys).
99
+ - [pickers] Clean the internals and the public API of `<PickersPopper />` (#16319) @flaviendelangle
100
+ - [pickers] Improve the JSDoc of the `PickerContextValue` properties (#16327) @flaviendelangle
101
+ - [pickers] Move more field props to the context (#16278) @flaviendelangle
102
+ - [pickers] Do not close the picker when doing keyboard editing (#16402) @flaviendelangle
63
103
 
64
- - The following types are no longer exported by `@mui/x-date-pickers` and `@mui/x-date-pickers-pro` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#removed-types).
104
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.10` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
65
105
 
66
- - `UseDateFieldComponentProps`
67
- - `UseTimeFieldComponentProps`
68
- - `UseDateTimeFieldComponentProps`
69
- - `BaseSingleInputFieldProps`
70
- - `BaseMultiInputFieldProps`
71
- - `BasePickersTextFieldProps`
106
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.10`.
72
107
 
73
- - The `TDate` generic has been removed from all the types, interfaces, and variables of the `@mui/x-date-pickers` and `@mui/x-date-pickers-pro` packages — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#remove-tdate-generic).
108
+ ### Charts
74
109
 
75
- - Renamed `usePickersTranslations` and `usePickersContext` hooks to have a coherent `Picker` prefix instead of `Pickers` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#renamed-variables).
110
+ #### Breaking changes
76
111
 
77
- - The `LicenseInfo` object is no longer exported from the `@mui/x-date-pickers-pro` package [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#stop-using-licenseinfo-from-mui-x-date-pickers-pro).
112
+ - Replace `legend.position.horizontal` from `"left" | "middle" | "right"` to `"start" | "center" | "end"`.
113
+ This is to align with the CSS values and reflect the RTL ability of the legend component.
114
+ - The default colors have changed. To keep using the old palette. It is possible to import `blueberryTwilightPalette` from `@mui/x-charts/colorPalettes` and set it on the `colors` property of charts.
115
+ - The `id` property is now optional on the `Pie` and `Scatter` data types.
78
116
 
79
- #### `@mui/x-date-pickers@8.0.0-alpha.0`
117
+ #### `@mui/x-charts@8.0.0-alpha.10`
80
118
 
81
- - [fields] Enable the new field DOM structure by default (#14651) @flaviendelangle
82
- - [fields] Remove `UseDateFieldComponentProps` and equivalent interfaces (#15053) @flaviendelangle
83
- - [fields] Remove clear button from the tab sequence (#14616) @k-rajat19
84
- - [l10n] Improve Greek (el-GR) locale (#15250) @GeorgiosDrivas
85
- - [pickers] Clean definition of validation props (#15198) @flaviendelangle
86
- - [pickers] Clean the new `ownerState` object (#15056) @flaviendelangle
87
- - [pickers] Correctly type the `ownerState` of the `field` and `actionBar` slots when resolved in a picker component (#15162) @flaviendelangle
88
- - [pickers] Fix `DateCalendar` timezone management (#12321) @LukasTy
89
- - [pickers] Fix `DateTimeRangePicker` error when using format without time (#14917) @fxnoob
90
- - [pickers] Fix `DigitalClock` time options on a `DST` switch day (#10793) @LukasTy
91
- - [pickers] Remove `TDate` generics in favor of `PickerValidDate` direct usage (#15001) @flaviendelangle
92
- - [pickers] Remove `utils` and `value` params from translations (#14986) @arthurbalduini
93
- - [pickers] Remove plural in "Pickers" on recently introduced APIs (#15297) @flaviendelangle
94
- - [pickers] Remove the re-export from `@mui/x-license` (#14487) @k-rajat19
95
- - [pickers] Strictly type the props a picker passes to its field, and migrate all the custom field demos accordingly (#15197) @flaviendelangle
96
- - [pickers] Unify JSDoc for all the `disabled` and `readOnly` props (#15304) @flaviendelangle
97
- - [pickers] Use the new `ownerState` in `DateCalendar`, `DateRangeCalendar`, `MonthCalendar` and `YearCalendar` (#15171) @flaviendelangle
98
- - [pickers] Use the new `ownerState` in `usePickersLayout` and `useXXXPicker` (#14994) @flaviendelangle
119
+ - [charts] Add new `bumpX` and `bumpY` curve options (#16318) @JCQuintas
120
+ - [charts] Move `tooltipGetter` to `seriesConfig` (#16331) @JCQuintas
121
+ - [charts] Move item highligh feature to plugin system (#16211) @alexfauquette
122
+ - [charts] Replace `legend.position.horizontal` from `"left" | "middle" | "right"` to `"start" | "center" | "end"` (#16315) @JCQuintas
123
+ - [charts] New default colors (#16373) @JCQuintas
124
+ - [charts] Make `id` optional on `PieValueType` and `ScatterValueType` (#16389) @JCQuintas
99
125
 
100
- #### `@mui/x-date-pickers-pro@8.0.0-alpha.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
126
+ #### `@mui/x-charts-pro@8.0.0-alpha.10` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
101
127
 
102
- Same changes as in `@mui/x-date-pickers@8.0.0-alpha.0`.
128
+ Same changes as in `@mui/x-charts@8.0.0-alpha.10`.
129
+
130
+ ### Tree View
131
+
132
+ #### `@mui/x-tree-view@8.0.0-alpha.10`
133
+
134
+ Internal changes.
135
+
136
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.10` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
137
+
138
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.10`.
139
+
140
+ ### Docs
141
+
142
+ - [docs] Improve release documentation (#16321) @MBilalShafi
143
+
144
+ ### Core
145
+
146
+ - [core] Reduce chart perf benchmark weight (#16374) @alexfauquette
147
+ - [test] Fix console warnings while executing tests with React 18 (#16386) @arminmeh
148
+ - [test] Fix flaky data source tests in DataGrid (#16395) @lauri865
149
+
150
+ ## 8.0.0-alpha.9
151
+
152
+ _Jan 24, 2025_
153
+
154
+ We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
155
+
156
+ - 🌍 Improve Persian (fa-IR) and Urdu (ur-PK) locales on the Data Grid
157
+ - 📚 Documentation improvements
158
+ - 🐞 Bugfixes
159
+
160
+ Special thanks go out to the community contributors who have helped make this release possible:
161
+ @AxharKhan, @lauri865, @mapache-salvaje, @mostafaRoosta74.
162
+
163
+ Following are all team members who have contributed to this release:
164
+ @alexfauquette, @cherniavskii, @Janpot, @JCQuintas, @LukasTy, @arminmeh.
165
+
166
+ ### Data Grid
167
+
168
+ #### `@mui/x-data-grid@v8.0.0-alpha.9`
169
+
170
+ - [DataGrid] Fix toggling preference panel from toolbar (#16274) @lauri865
171
+ - [DataGrid] Only try to mount filter button if there are filters present (#16267) @lauri865
172
+ - [DataGrid] Revert `apiRef` to be `MutableRefObject` for React versions < 19 (#16279) @arminmeh
173
+ - [l10n] Improve Persian (fa-IR) locale (#16312) @mostafaRoosta74
174
+ - [l10n] Improve Urdu (ur-PK) locale (#16295) @AxharKhan
175
+
176
+ #### `@mui/x-data-grid-pro@v8.0.0-alpha.9` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
177
+
178
+ Same changes as in `@mui/x-data-grid@v8.0.0-alpha.9`.
179
+
180
+ #### `@mui/x-data-grid-premium@v8.0.0-alpha.9` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
181
+
182
+ Same changes as in `@mui/x-data-grid-pro@v8.0.0-alpha.9`.
183
+
184
+ ### Date and Time Pickers
185
+
186
+ #### `@mui/x-date-pickers@v8.0.0-alpha.9`
187
+
188
+ - [fields] Reset `all` selected state on section edit (#16223) @LukasTy
189
+
190
+ #### `@mui/x-date-pickers-pro@v8.0.0-alpha.9` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
191
+
192
+ Same changes as in `@mui/x-date-pickers@v8.0.0-alpha.9`.
103
193
 
104
194
  ### Charts
105
195
 
196
+ #### Breaking Changes
197
+
198
+ The `experimentalMarkRendering` prop has been removed from the `LineChart` component.
199
+ The line mark are now `<circle />` element by default.
200
+ And you can chose another shape by adding a `shape` property to your line series.
201
+
202
+ The codemod only removes the `experimentalMarkRendering` prop.
203
+ If you relied on the fact that marks were `path` elements, you need to update your logic.
204
+
205
+ #### `@mui/x-charts@v8.0.0-alpha.9`
206
+
207
+ - [charts] Expand line with step interpolation (#16229) @alexfauquette
208
+ - [charts] Fix hydration mismatch (#16261) @alexfauquette
209
+ - [charts] Fix zoom option reactivity (#16262) @alexfauquette
210
+ - [charts] Move legend getter to series config (#16307) @alexfauquette
211
+ - [charts] Use `<circle />` instead of `<path />` for line marks by default (#15220) @alexfauquette
212
+
213
+ #### `@mui/x-charts-pro@v8.0.0-alpha.9` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
214
+
215
+ Same changes as in `@mui/x-charts@v8.0.0-alpha.9`, plus:
216
+
217
+ - [charts-pro] Fix `pro` components watermark (#16222) @JCQuintas
218
+
219
+ ### Tree View
220
+
221
+ #### `@mui/x-tree-view@v8.0.0-alpha.9`
222
+
223
+ Internal changes.
224
+
225
+ #### `@mui/x-tree-view-pro@v8.0.0-alpha.9` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
226
+
227
+ Same changes as in `@mui/x-tree-view@v8.0.0-alpha.9`.
228
+
229
+ ### Docs
230
+
231
+ - [docs] Fix `domainLimit` definition (#16270) @alexfauquette
232
+ - [docs] Fix tiny line chart breaking change (#16268) @alexfauquette
233
+ - [docs] Revise planned feature callouts and descriptions (#16290) @mapache-salvaje
234
+ - [docs] Copyedit the Aggregation doc (#16200) @mapache-salvaje
235
+ - [docs] Revise the Data Grid getting started docs (#15757) @mapache-salvaje
236
+ - [code-infra] Add 'use client' directive (#16273) @Janpot
237
+ - [code-infra] Allow dispatch of manual cherry-pick workflow (#16299) @JCQuintas
238
+ - [code-infra] Update changelog script (#16218) @cherniavskii
239
+ - [test] Fix flaky column pinning tests (#16219) @cherniavskii
240
+ - [test] Fix flaky tests (#16257) @lauri865
241
+
242
+ ## 8.0.0-alpha.8
243
+
244
+ _Jan 16, 2025_
245
+
246
+ We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
247
+
248
+ - 🍬 Improved design for Data Grid [Header filters](https://next.mui.com/x/react-data-grid/filtering/header-filters/)
249
+
250
+ <img width="100%" alt="Data Grid Header filters" src="https://github.com/user-attachments/assets/74a50cd9-7a55-41fc-a2b8-f8a0d5b9120e" />
251
+
252
+ - 🔄 Data Grid [Scroll restoration](https://next.mui.com/x/react-data-grid/scrolling/#scroll-restoration)
253
+ - 📊 Charts support server-side rendering under [some conditions](https://next.mui.com/x/react-charts/getting-started/#server-side-rendering)
254
+ - 🐞 Bugfixes
255
+
256
+ Special thanks go out to the community contributors who have helped make this release possible:
257
+ @lauri865.
258
+ Following are all team members who have contributed to this release:
259
+ @arminmeh, @romgrk, @samuelsycamore, @alexfauquette, @cherniavskii, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @michelengelen.
260
+
261
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
262
+
263
+ ### Data Grid
264
+
106
265
  #### Breaking changes
107
266
 
108
- - The `legend` prop got removed. To pass props to the legend, use `slotProps={{ legend: { ... } }}` instead. This can be automatically done with the codemod as long as the `legend` prop does not come from a destructured object — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#legend-props-propagation-✅).
267
+ - The clear button in header filter cells has been moved to the header filter menu. Use `slotProps={{ headerFilterCell: { showClearIcon: true } }}` to restore the clear button in the cell.
109
268
 
110
- - The `slots.legend` does not receive the `drawingArea` prop. You can still access your custom legend with the `useDrawingArea()` hook if your custom legend needs it.
269
+ #### `@mui/x-data-grid@8.0.0-alpha.8`
111
270
 
112
- - Removed or renamed multiple props from Series — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#series-properties-renaming).
271
+ - [DataGrid] Improve scrollbar deadzone with overlay scrollbars (#15961) @lauri865
272
+ - [DataGrid] Header filter design improvements (#15991) @KenanYusuf
273
+ - [DataGrid] Scroll restoration (#15623) @lauri865
274
+ - [DataGrid] Fix row, cell and header memoizations (#15666) @lauri865
113
275
 
114
- - The `highlighted` and `faded` properties of highlightScope were deprecated in favor of `highlight` and `fade`.
115
- The deprecated ones are now removed.
116
- - The `xAxisKey`, `yAxisKey`, and `zAxisKey` properties got deprecated in favor of `xAxisId`, `yAxisId`, and `zAxisId`.
276
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.8` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
117
277
 
118
- - The Pie Chart lost all props and renderer linked to axes because pie chart does not need cartesian axes. If you used it, you can still add them back with composition. Please consider opening an issue to share your use case with us — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#remove-pie-chart-axes).
278
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.8`, plus:
119
279
 
120
- #### `@mui/x-charts@8.0.0-alpha.0`
280
+ - [DataGridPro] Add test for column pinning with disabled column virtualization (#16176) @cherniavskii
281
+ - [DataGridPro] Fix width of right-pinned column group during resize (#16199) @cherniavskii
121
282
 
122
- - [charts] Introduce `hideLegend` prop (#15277) @alexfauquette
123
- - [charts] Filter items outside the drawing area for performance (#14281) @alexfauquette
124
- - [charts] Fix log scale with `null` data (#15337) @alexfauquette
125
- - [charts] Fix tooltip follow mouse (#15189) @alexfauquette
126
- - [charts] Remove `xAxisKey`, `yAxisKey`, and `zAxisKey` series keys (#15192) @alexfauquette
127
- - [charts] Remove axis from the pie chart (#15187) @alexfauquette
128
- - [charts] Remove deprecated `legend` props (#15081) @alexfauquette
129
- - [charts] Remove deprecated highlight properties (#15191) @alexfauquette
130
- - [charts] Update Popper position outside of React (#15003) @alexfauquette
131
- - [charts] Improve the performance of the `getSymbol` method (#15233) @romgrk
283
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.8` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
132
284
 
133
- #### `@mui/x-charts-pro@8.0.0-alpha.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
285
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.8`.
134
286
 
135
- Same changes as in `@mui/x-charts@8.0.0-alpha.0`.
287
+ ### Date and Time Pickers
288
+
289
+ #### Breaking changes
290
+
291
+ - The field is now editable if rendered inside a mobile Picker — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#field-editing-on-mobile-pickers)
292
+ - The `useMultiInputDateRangeField`, `useMultiInputTimeRangeField`, and `useMultiInputDateTimeRangeField` hooks have been removed in favor of the new `useMultiInputRangeField` hook — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#usemultiinputdaterangefield)
293
+ - The component passed to the `field` slot no longer receives the `value`, `onChange`, `timezone`, `format`, `disabled`, `formatDensity`, `enableAccessibleFieldDOMStructure`, `selectedSections` and `onSelectedSectionsChange` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-field)
294
+
295
+ #### `@mui/x-date-pickers@8.0.0-alpha.8`
296
+
297
+ - [pickers] Let the field components handle their opening UI, and allow field editing on mobile pickers (#15671) @flaviendelangle
298
+ - [pickers] Remove code duplication for the multi input range fields (#15505) @flaviendelangle
299
+ - [pickers] Rename `onRangePositionChange` into `setRangePosition` in `usePickerRangePositionContext` (#16189) @flaviendelangle
300
+ - [pickers] Use context to pass props from the picker to the field (#16042) @flaviendelangle
301
+
302
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.8` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
303
+
304
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.8`.
305
+
306
+ ### Charts
307
+
308
+ #### Breaking changes
309
+
310
+ - Charts tooltip markers now have different styles for each chart type. The tooltip and legend marks are now the same.
311
+ - Duplicate axis id's across `x` and `y` axis now log a warning in dev mode. Axis ids should be unique to prevent internal issues.
312
+
313
+ #### `@mui/x-charts@8.0.0-alpha.8`
314
+
315
+ - [charts] Fix flaky charts tests (#16180) @JCQuintas
316
+ - [charts] Handle case where gradient stop `offset` could be `Infinite` (#16131) @JCQuintas
317
+ - [charts] Make `useChartGradientId` public (#16106) @JCQuintas
318
+ - [charts] Move z-axis to plugin (#16130) @alexfauquette
319
+ - [charts] Plot data at first render if `skipAnimation` is set to `true` (#16166) @alexfauquette
320
+ - [charts] Replace tooltip mark with style (#16117) @JCQuintas
321
+ - [charts] Support `rtl` for gradient legend (#16115) @JCQuintas
322
+ - [charts] Use plugin system for series and axes (#15865) @alexfauquette
323
+
324
+ #### `@mui/x-charts-pro@8.0.0-alpha.8` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
325
+
326
+ Same changes as in `@mui/x-charts@8.0.0-alpha.8`.
136
327
 
137
328
  ### Tree View
138
329
 
330
+ #### `@mui/x-tree-view@8.0.0-alpha.8`
331
+
332
+ No changes since `@mui/x-tree-view-pro@v8.0.0-alpha.7`.
333
+
334
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.8` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
335
+
336
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.8`.
337
+
338
+ ### Docs
339
+
340
+ - [docs] Add example for custom legend (#16169) @alexfauquette
341
+ - [docs] Add full custom field creation example (#15194) @flaviendelangle
342
+ - [docs] Copyedit the Data Grid cell selection page (#16099) @samuelsycamore
343
+ - [docs] Fix demo rendering issue on Codesandbox (#16118) @arminmeh
344
+ - [docs] Remove broken links (#16167) @alexfauquette
345
+ - [docs] Split the Data Grid editing page (#14931) @MBilalShafi
346
+ - [docs] Fix wrong props warnings (#16119) @JCQuintas
347
+
348
+ ### Core
349
+
350
+ - [core] Type all references as `RefObject` (#16124) @arminmeh
351
+ - [code-infra] Refactor `react` and `react-dom` definitions to simplify dep resolving (#16160) @LukasTy
352
+ - [code-infra] Stop renovate from updating `date-fns-v2` (#16158) @LukasTy
353
+ - [infra] Improve cherry-pick action target list (#16184) @michelengelen
354
+ - [test] Fix flaky column pinning unit test (#16202) @cherniavskii
355
+ - [test] Fix flaky screenshot (#16182) @cherniavskii
356
+
357
+ ## 8.0.0-alpha.7
358
+
359
+ _Jan 9, 2025_
360
+
361
+ We'd like to offer a big thanks to the 13 contributors who made this release possible. Here are some highlights ✨:
362
+
363
+ - 📊 Charts legend is now an HTML element which can be styled more easily
364
+ - 💫 Support [aggregation with server-side data](/x/react-data-grid/server-side-data/aggregation/)
365
+ - 🏎️ Improve Data Grid aggregation performance
366
+ - 🌍 Add Chinese (Taiwan) (zh-TW) locale on the Date and Time Pickers
367
+ - 🌍 Improve Norwegian (nb-NO) locale on the Date and Time Pickers
368
+ - 🐞 Bugfixes
369
+
370
+ Special thanks go out to the community contributors who have helped make this release possible:
371
+ @derek-0000, @josteinjhauge, @k-rajat19, @nusr, @tomashauser.
372
+ Following are all team members who have contributed to this release:
373
+ @cherniavskii, @flaviendelangle, @JCQuintas, @LukasTy, @MBilalShafi, @arminmeh, @romgrk, @oliviertassinari.
374
+
375
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
376
+
377
+ ### Data Grid
378
+
379
+ #### `@mui/x-data-grid@8.0.0-alpha.7`
380
+
381
+ - [DataGrid] Improve React 19 support (#15769) @LukasTy
382
+ - [DataGrid] Add `name` attribute to the checkbox selection column (#15178) @derek-0000
383
+ - [DataGrid] Fix number filter field formatting values while typing (#16062) @arminmeh
384
+ - [DataGrid] Fix select all checkbox state reset with server side data (#16034) @MBilalShafi
385
+ - [DataGrid] Refactor: create base button props (#15930) @romgrk
386
+ - [DataGrid] Refactor: create tooltip props (#16086) @romgrk
387
+ - [DataGrid] Fix TS error (#16046) @cherniavskii
388
+
389
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.7` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
390
+
391
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.7`.
392
+
393
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.7` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
394
+
395
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.7`, plus:
396
+
397
+ - [DataGridPremium] Improve aggregation performance for multiple columns (#16097) @cherniavskii
398
+ - [DataGridPremium] Make Aggregation keyboard accessible in the column menu (#15934) @k-rajat19
399
+ - [DataGridPremium] Server-side aggregation with data source (#15741) @MBilalShafi
400
+
401
+ ### Date and Time Pickers
402
+
139
403
  #### Breaking changes
140
404
 
141
- - The `ContentComponent` or `ContentProps` props of the `<TreeItem />` component have been removed in favor of the new `slots`, `slotProps` props and of the `useTreeItem` hook — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#new-api-to-customize-the-tree-item).
405
+ - The `date-fns` and `date-fns-jalali` date library adapters have been renamed to better align with the current stable major versions — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#✅-rename-date-fns-adapter-imports)
406
+ - Update default `closeOnSelect` and Action Bar `actions` values - [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#update-default-closeonselect-and-action-bar-actions-values)
407
+ - The component passed to the `layout` slot no longer receives the `value`, `onChange` and `onSelectShortcut` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-layout).
408
+ - The component passed to the `toolbar` slot no longer receives the `value`, `onChange` and `isLandscape` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-toolbar).
409
+ - The component passed to the `shortcuts` slot no longer receives the `onChange`, `isValid` and `isLandscape` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-shortcuts).
410
+ - The `PickerShortcutChangeImportance` type has been renamed `PickerChangeImportance` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#renamed-variables-and-types).
411
+ - The component passed to the `layout` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-layout).
412
+ - The component passed to the `toolbar` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-toolbar).
413
+ - The component passed to the `tabs` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-tabs).
414
+
415
+ #### `@mui/x-date-pickers@8.0.0-alpha.7`
416
+
417
+ - [fields] Handle focusing container with `inputRef.current.focus` on `accessibleFieldDOMStructure` (#15985) @LukasTy
418
+ - [pickers] Always use `setValue` internally to update the picker value (#16056) @flaviendelangle
419
+ - [pickers] Create a new context to pass the range position props to the layout components and to the views (#15846) @flaviendelangle
420
+ - [pickers] Introduce a new concept of `manager` (#15339) @flaviendelangle
421
+ - [pickers] Improve React 19 support (#15769) @LukasTy
422
+ - [pickers] Memoize `<PickersActionBar />` (#16071) @LukasTy
423
+ - [pickers] Remove `NonEmptyDateRange` type (#16035) @flaviendelangle
424
+ - [pickers] Rename `AdapterDateFns` into `AdapterDateFnsV2` and `AdapterDateFnsV3` into `AdapterDateFns` (#16082) @LukasTy
425
+ - [pickers] Rename `ctx.onViewChange` to `ctx.setView` and add it to the actions context (#16044) @flaviendelangle
426
+ - [pickers] Support `date-fns-jalali` v4 (#16011) @LukasTy
427
+ - [pickers] Update `closeOnSelect` and `actionBar.actions` default values (#15944) @LukasTy
428
+ - [pickers] Use `usePickerContext()` and `usePickerActionsContext()` instead of passing props to the `shortcuts` and `toolbar` slots (#15948) @flaviendelangle
429
+ - [l10n] Add Chinese (Taiwan) (zh-TW) locale (#16033) @nusr
430
+ - [l10n] Improve Norwegian (nb-NO) locale (#16089) @josteinjhauge
431
+
432
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.7` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
433
+
434
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.7`.
142
435
 
143
- - The `onClick` and `onMouseDown` callbacks of the Tree Item component are now passed to the root element instead of the content — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#behavior-change-on-the-onclick-and-onmousedown-props-of-treeitem).
436
+ ### Charts
144
437
 
145
- - Rename the `<TreeItem2 />` component (and related utils) — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#✅-rename-the-treeitem2-and-related-utils).
438
+ #### Breaking changes
146
439
 
147
- - The `<TreeView />` component has been renamed `<SimpleTreeView />` which has exactly the same API — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#✅-use-simple-tree-view-instead-of-tree-view).
440
+ - Removed `DefaultChartsLegend` component, since it is now easier to create custom legends — [Learn more](https://next.mui.com/x/react-charts/components/#html-components).
441
+ - The default legend is now an HTML element and can be styled more easily.
442
+ - The `width` and `height` properties of the charts now only apply to the `svg` element, and not their wrappers, this might cause some layout shifts.
443
+ - `slotProps.legend.direction` now accepts `'horizontal' | 'vertical'` instead of `'row' | 'column'` — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#legend-direction-value-change-✅).
444
+ - The `getSeriesToDisplay` function was removed in favor of the `useLegend` hook. — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#the-getseriestodisplay-function-was-removed).
148
445
 
149
- - The indentation of nested Tree Items is now applied on the content of the element — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#apply-the-indentation-on-the-item-content-instead-of-its-parents-group).
446
+ #### `@mui/x-charts@8.0.0-alpha.7`
150
447
 
151
- #### `@mui/x-tree-view@8.0.0-alpha.0`
448
+ - [charts] New HTML legend & styles (#15733) @JCQuintas
449
+ - [charts] Improve React 19 support (#15769) @LukasTy
450
+ - [charts] Fix 301 redirection in the API documentation @oliviertassinari
152
451
 
153
- - [TreeView] Always apply the indentation on the item content instead of its parent's group (#15089) @flaviendelangle
154
- - [TreeView] Automatic parents and children selection (#14899) @flaviendelangle
155
- - [TreeView] Remove deprecated `TreeView` component (#15093) @flaviendelangle
156
- - [TreeView] Replace `<TreeItem />` with `<TreeItem2 />` and migrate all the components and utils (#14913) @flaviendelangle
452
+ #### `@mui/x-charts-pro@8.0.0-alpha.7` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
453
+
454
+ Same changes as in `@mui/x-charts@8.0.0-alpha.7`.
455
+
456
+ ### Tree View
457
+
458
+ #### `@mui/x-tree-view@8.0.0-alpha.7`
459
+
460
+ - [TreeView] Improve React 19 support (#15769) @LukasTy
461
+
462
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.7` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
463
+
464
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.7`.
157
465
 
158
466
  ### Docs
159
467
 
160
- - [docs] Add docs for rounded symbol (#15324) @GuillaumeMeheut
161
- - [docs] Add migration guide for the removal of `LicenseInfo` from `@mui/x-date-pickers-pro` (#15321) @flaviendelangle
162
- - [docs] Add migration guide for the first breaking changes of charts (#15276) @alexfauquette
163
- - [docs] Add `PickersPopper` component to the Date Picker customization playground (#15305) @LukasTy
164
- - [docs] Add v8 to supported releases table (#15384) @joserodolfofreitas
165
- - [docs] Apply the new DX to the Button Field demos (#14860) @flaviendelangle
166
- - [docs] Apply the new DX to the `Autocomplete` Field demo (#15165) @flaviendelangle
167
- - [docs] Cleanup the pickers migration guide (#15310) @flaviendelangle
168
- - [docs] Copyedit the Charts Getting Started sequence (#14962) @samuelsycamore
169
- - [docs] Create Pickers masked field recipe (#13515) @flaviendelangle
170
- - [docs] Fix `applyDomain` docs for the charts (#15332) @JCQuintas
171
- - [docs] Fix link to private notion page (#15396) @michelengelen
172
- - [docs] Fix missing punctuation on descriptions (#15229) @oliviertassinari
173
- - [docs] Fix peer dependency range (#15281) @oliviertassinari
174
- - [docs] Fix small Tree View typo (#15390) @oliviertassinari
175
- - [docs] Fix the `AdapterMomentHijri` doc section (#15312) @flaviendelangle
176
- - [docs] Replace the Tree Item anatomy images (#15066) @noraleonte
177
- - [docs] Start v8 migration guides (#15096) @MBilalShafi
178
- - [docs] Subdivide and reorganize navigation bar (#15014) @samuelsycamore
179
- - [docs] Use `PickersTextField` in the customization playground (#15288) @LukasTy
180
- - [docs] Use `next` instead of `^8.0.0` in the migration guides (#15091) @flaviendelangle
468
+ - [docs] Fix `EditingWithDatePickers` demo (#15967) @k-rajat19
469
+ - [docs] Fix inconsistent multi input range field separators (#16043) @flaviendelangle
470
+ - [docs] Fix non-existing "adapter" property of `LocalizationProvider` (#16084) @tomashauser
471
+ - [docs] Refactor Data Grid with Date Pickers example (#15992) @LukasTy
472
+ - [docs] Unify the wording of the pickers slots breaking changes (#16036) @flaviendelangle
181
473
 
182
474
  ### Core
183
475
 
184
- - [core] Adjust the `cherry-pick` GitHub actions (#15099) @LukasTy
185
- - [core] Add `()` at the name of function name in the doc (#15075) @oliviertassinari
186
- - [core] Clarify release version bump strategy (#15219) @cherniavskii
476
+ - [core] Clarify the release strategy (#16014) @MBilalShafi
477
+ - [core] Small fixes on docs @oliviertassinari
478
+ - [core] Sync with other repos @oliviertassinari
479
+ - [core] Update the `release:version` docs (#16038) @cherniavskii
480
+ - [code-infra] Add `testSkipIf` and `describeSkipIf` (#16049) @JCQuintas
481
+ - [test] Stabilize flaky Data Grid tests (#16053) @LukasTy
482
+
483
+ ## 8.0.0-alpha.6
484
+
485
+ _Dec 26, 2024_
486
+
487
+ We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
488
+
489
+ - 🏎️ Improve Data Grid scrolling performance
490
+ - 🌍 Improve Dutch (nl-NL) locale on the Data Grid
491
+ - 🐞 Bugfixes
492
+
493
+ Special thanks go out to the community contributors who have helped make this release possible:
494
+ @JoepVerkoelen, @k-rajat19, @lauri865.
495
+ Following are all team members who have contributed to this release:
496
+ @flaviendelangle, @JCQuintas, @LukasTy, @MBilalShafi, @romgrk.
497
+
498
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
499
+
500
+ ### Data Grid
501
+
502
+ #### Breaking changes
503
+
504
+ - The `sanitizeFilterItemValue()` utility is not exported anymore.
505
+
506
+ #### `@mui/x-data-grid@8.0.0-alpha.6`
507
+
508
+ - [DataGrid] Avoid subscribing to `renderContext` state in grid root for better scroll performance (#15986) @lauri865
509
+ - [DataGrid] Fix header filters showing clear button while empty (#15829) @k-rajat19
510
+ - [DataGrid] Improve test coverage of server side data source (#15942) @MBilalShafi
511
+ - [DataGrid] Move progress components to leaf import (#15914) @romgrk
512
+ - [DataGrid] Move skeleton to leaf import (#15931) @romgrk
513
+ - [DataGrid] Replace `forwardRef` with a shim for forward compatibility (#15955) @lauri865
514
+ - [l10n] Improve Dutch (nl-NL) locale (#15994) @JoepVerkoelen
515
+
516
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
517
+
518
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.6`.
519
+
520
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.6` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
521
+
522
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.6`, plus:
523
+
524
+ - [DataGridPremium] Fix column unpinning with row grouping (#15908) @k-rajat19
525
+
526
+ ### Date and Time Pickers
527
+
528
+ #### `@mui/x-date-pickers@8.0.0-alpha.6`
529
+
530
+ - [pickers] Use `usePickerContext()` and `usePickerActionsContext()` to get the actions in the `actionBar` slot and in internal components (#15843) @flaviendelangle
531
+ - [pickers] Use `usePickerContext()` to get the view-related props in the layout, toolbar and tabs slots (#15606) @flaviendelangle
532
+
533
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
534
+
535
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.6`.
536
+
537
+ ### Charts
538
+
539
+ #### `@mui/x-charts@8.0.0-alpha.6`
540
+
541
+ No changes since `@mui/x-charts@v8.0.0-alpha.5`.
542
+
543
+ #### `@mui/x-charts-pro@8.0.0-alpha.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
544
+
545
+ Same changes as in `@mui/x-charts@8.0.0-alpha.6`.
546
+
547
+ ### Tree View
548
+
549
+ #### `@mui/x-tree-view@8.0.0-alpha.6`
550
+
551
+ No changes since `@mui/x-tree-view-pro@v8.0.0-alpha.5`.
552
+
553
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
554
+
555
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.6`.
556
+
557
+ ### Docs
558
+
559
+ - [docs] Remove production profiler from docs build (#15959) @lauri865
560
+ - [code-infra] Add new `next-env.d.ts` changes (#15947) @JCQuintas
561
+
562
+ ## 8.0.0-alpha.5
563
+
564
+ _Dec 19, 2024_
565
+
566
+ We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
567
+
568
+ - 🌍 Improve Korean (ko-KR) locale on the Data Grid
569
+ - 🐞 Bugfixes
570
+
571
+ Special thanks go out to the community contributors who have helped make this release possible:
572
+ @good-jinu, @k-rajat19.
573
+ Following are all team members who have contributed to this release:
574
+ @alexfauquette, @cherniavskii, @flaviendelangle, @KenanYusuf, @LukasTy, @MBilalShafi, @romgrk.
575
+
576
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
577
+
578
+ ### Data Grid
579
+
580
+ #### Breaking changes
581
+
582
+ - Passing additional props (like `data-*`, `aria-*`) directly on the Data Grid component is no longer supported. To pass the props, use `slotProps`:
583
+
584
+ - For `.root` element, use `slotProps.root`.
585
+ - For `.main` element (the one with `role="grid"`), use `slotProps.main`.
586
+
587
+ - `detailPanelExpandedRowIds` and `onDetailPanelExpandedRowIdsChange` props use a [`Set`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set) instead of an array:
588
+
589
+ ```diff
590
+ -detailPanelExpandedRowIds?: GridRowId[];
591
+ +detailPanelExpandedRowIds?: Set<GridRowId>;
592
+
593
+ -onDetailPanelExpandedRowIdsChange?: (ids: GridRowId[], details: GridCallbackDetails) => void;
594
+ +onDetailPanelExpandedRowIdsChange?: (ids: Set<GridRowId>, details: GridCallbackDetails) => void;
595
+ ```
596
+
597
+ - `apiRef.current.getExpandedDetailPanels` and `apiRef.current.setExpandedDetailPanels` methods receive and return a [`Set`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set) instead of an array.
598
+ - `gridDetailPanelExpandedRowIdsSelector` returns a [`Set`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set) instead of an array.
599
+ - `gridDetailPanelExpandedRowsHeightCacheSelector` was removed.
600
+
601
+ #### `@mui/x-data-grid@8.0.0-alpha.5`
602
+
603
+ - [DataGrid] Consider `columnGroupHeaderHeight` prop in `getTotalHeaderHeight` method (#15915) @k-rajat19
604
+ - [DataGrid] Fix autosizing with virtualized columns (#15116) @k-rajat19
605
+ - [DataGrid] Move `<Badge />` to leaf import (#15879) @romgrk
606
+ - [DataGrid] Move `<ListItemText />` and `<ListItemIcon />` to leaf import (#15869) @romgrk
607
+ - [DataGrid] Remove the Joy UI demo (#15913) @romgrk
608
+ - [DataGrid] Update quick filter input variant (#15909) @KenanYusuf
609
+ - [DataGrid] Use `slotProps` to forward props to `.main` and `.root` elements (#15870) @MBilalShafi
610
+ - [l10n] Improve Korean(ko-KR) locale (#15878) @good-jinu
611
+
612
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.5` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
613
+
614
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.5`, plus:
615
+
616
+ - [DataGridPro] Use `Set` for `detailPanelExpandedRowIds` (#15835) @cherniavskii
617
+
618
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.5` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
619
+
620
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.5`.
621
+
622
+ ### Date and Time Pickers
623
+
624
+ #### Breaking changes
625
+
626
+ - The `<PickersMonth />` component has been moved inside the Month Calendar component — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#month-calendar).
627
+
628
+ - The `<PickersYear />` component has been moved inside the Year Calendar component — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#year-calendar).
629
+
630
+ #### `@mui/x-date-pickers@8.0.0-alpha.5`
631
+
632
+ - [pickers] Add verification to disable skipped hours in spring forward DST (#15849) @flaviendelangle
633
+ - [pickers] Remove `PickersMonth` and `PickersYear` from the theme and remove the `div` wrapping each button (#15806) @flaviendelangle
634
+ - [pickers] Use the new `ownerState` object on the `<PickersTextField />` component (#15863) @flaviendelangle
635
+
636
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.5` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
637
+
638
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.5`.
639
+
640
+ ### Charts
641
+
642
+ #### `@mui/x-charts@8.0.0-alpha.5`
643
+
644
+ - [charts] Fix `<ScatterChart />` value type if `null` (#15917) @alexfauquette
645
+
646
+ #### `@mui/x-charts-pro@8.0.0-alpha.5` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
647
+
648
+ Same changes as in `@mui/x-charts@8.0.0-alpha.5`.
649
+
650
+ ### Tree View
651
+
652
+ #### `@mui/x-tree-view@8.0.0-alpha.5`
653
+
654
+ No changes since `@mui/x-tree-view-pro@v8.0.0-alpha.4`.
655
+
656
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.5` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
657
+
658
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.5`.
659
+
660
+ ### Core
661
+
662
+ - [code-infra] Remove `@mui/material-nextjs` dependency (#15925) @LukasTy
663
+
664
+ ## 8.0.0-alpha.4
665
+
666
+ _Dec 13, 2024_
667
+
668
+ We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
669
+
670
+ - 🌍 Improve Romanian locale on the Data Grid and Pickers
671
+ - 📚 Documentation improvements
672
+ - 🐞 Bugfixes
673
+
674
+ Special thanks go out to the community contributors who have helped make this release possible:
675
+ @k-rajat19, @nusr, @rares985, @zivl.
676
+ Following are all team members who have contributed to this release:
677
+ @alexfauquette, @arminmeh, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi.
678
+
679
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
680
+
681
+ ### Data Grid
682
+
683
+ #### Breaking changes
684
+
685
+ - The selectors signature has been updated due to the support of arguments in the selectors. Pass `undefined` as `arguments` if the selector doesn't use any arguments.
686
+
687
+ ```diff
688
+ -mySelector(state, instanceId)
689
+ +mySelector(state, arguments, instanceId)
690
+ ```
691
+
692
+ - The `useGridSelector` signature has been updated due to the introduction of arguments parameter in the selectors. Pass `undefined` as `arguments` if the selector doesn't use any arguments.
693
+
694
+ ```diff
695
+ -const output = useGridSelector(apiRef, selector, equals)
696
+ +const output = useGridSelector(apiRef, selector, arguments, equals)
697
+ ```
698
+
699
+ - The default variant for text fields and selects in the filter panel has been changed to `outlined`.
700
+ - The "row spanning" feature is now stable.
701
+ ```diff
702
+ <DataGrid
703
+ - unstable_rowSpanning
704
+ + rowSpanning
705
+ />
706
+ ```
707
+ - Selected row is now deselected when clicked again.
708
+
709
+ #### `@mui/x-data-grid@8.0.0-alpha.4`
710
+
711
+ - [DataGrid] Deselect selected row on click (#15509) @k-rajat19
712
+ - [DataGrid] Fix "No rows" displaying when all rows are pinned (#15335) @nusr
713
+ - [DataGrid] Make row spanning feature stable (#15742) @MBilalShafi
714
+ - [DataGrid] Round dimensions to avoid subpixel rendering error (#15850) @KenanYusuf
715
+ - [DataGrid] Toggle menu on click in `<GridActionsCell />` (#15867) @k-rajat19
716
+ - [DataGrid] Trigger row spanning computation on rows update (#15858) @MBilalShafi
717
+ - [DataGrid] Update filter panel input variant (#15807) @KenanYusuf
718
+ - [DataGrid] Use `columnsManagement` slot (#15817) @k-rajat19
719
+ - [DataGrid] Use new selector signature (#15200) @MBilalShafi
720
+ - [l10n] Improve Romanian (ro-RO) locale (#15745) @rares985
721
+
722
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
723
+
724
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.4`, plus:
725
+
726
+ - [DataGridPro] Make row reordering work with pagination (#15355) @k-rajat19
727
+
728
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.4` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
729
+
730
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.4`, plus:
731
+
732
+ - [DataGridPremium] Fix group column ignoring `valueOptions` for `singleSelect` column type (#15739) @arminmeh
733
+
734
+ ### Date and Time Pickers
735
+
736
+ #### `@mui/x-date-pickers@8.0.0-alpha.4`
737
+
738
+ - [l10n] Improve Romanian (ro-RO) locale (#15745) @rares985
739
+ - [pickers] Clean `usePicker` logic (#15763) @flaviendelangle
740
+ - [pickers] Rename layout `ownerState` property from `isRtl` to `layoutDirection` (#15803) @flaviendelangle
741
+ - [pickers] Use the new `ownerState` in `useClearableField` (#15776) @flaviendelangle
742
+ - [pickers] Use the new `ownerState` in the toolbar components (#15777) @flaviendelangle
743
+ - [pickers] Use the new `ownerState` object for the clock components and the desktop / mobile wrappers (#15669) @flaviendelangle
744
+
745
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
746
+
747
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.4`.
748
+
749
+ ### Charts
750
+
751
+ #### Breaking changes
752
+
753
+ - The default styling of the charts tooltip has been updated.
754
+
755
+ #### `@mui/x-charts@8.0.0-alpha.4`
756
+
757
+ - [charts] Fix hydration missmatch (#15647) @alexfauquette
758
+ - [charts] Fix internal spelling typo (#15805) @zivl
759
+ - [charts] Fix scatter dataset with missing data (#15802) @alexfauquette
760
+ - [charts] HTML Labels (#15813) @JCQuintas
761
+ - [charts] Only access store values by using hooks (#15764) @alexfauquette
762
+ - [charts] Update Tooltip style (#15630) @alexfauquette
763
+
764
+ #### `@mui/x-charts-pro@8.0.0-alpha.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
765
+
766
+ Same changes as in `@mui/x-charts@8.0.0-alpha.4`.
767
+
768
+ ### Tree View
769
+
770
+ #### `@mui/x-tree-view@8.0.0-alpha.4`
771
+
772
+ No changes, releasing to keep the versions in sync.
773
+
774
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
775
+
776
+ Releasing to benefit from license package fix (#15814).
777
+
778
+ ### Docs
779
+
780
+ - [docs] Clean Joy and Browser custom field demos (#15707) @flaviendelangle
781
+ - [docs] Fix outdated link to handbook (#15855) @oliviertassinari
782
+ - [docs] Improve Pickers accessible DOM migration section description (#15596) @LukasTy
783
+ - [docs] Use `updateRows` method for list view demos (#15732) @KenanYusuf
784
+ - [docs] Use date library version from package dev dependencies for sandboxes (#15762) @LukasTy
785
+
786
+ ### Core
787
+
788
+ - [code-infra] Add Charts sandbox generation (#15830) @JCQuintas
789
+ - [code-infra] Remove redundant `@type/react-test-renderer` dep (#15766) @LukasTy
790
+ - [license] Use `console.log` for the error message on Codesandbox to avoid rendering error (#15814) @arminmeh
791
+
792
+ ## 8.0.0-alpha.3
793
+
794
+ _Dec 5, 2024_
795
+
796
+ We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
797
+
798
+ - 💫 Support [Server-side lazy loading](https://mui.com/x/react-data-grid/server-side-data/lazy-loading/) on the Data Grid. Use [data source](https://mui.com/x/react-data-grid/server-side-data/#data-source) to fetch a range of rows on demand and update the rows in the same way as described in [Infinite loading](https://mui.com/x/react-data-grid/row-updates/#infinite-loading) and [Lazy loading](https://mui.com/x/react-data-grid/row-updates/#lazy-loading) without the need to use any additional event listeners and callbacks.
799
+ - 🎯 Improved [data caching](https://mui.com/x/react-data-grid/server-side-data/#data-caching). Check out our [recommendations](https://mui.com/x/react-data-grid/server-side-data/#improving-the-cache-hit-rate) for improving the cache hit rate.
800
+
801
+ Special thanks go out to the community contributors who have helped make this release possible:
802
+ @ihsanberkozcan, @k-rajat19, @perezShaked.
803
+ Following are all team members who have contributed to this release:
804
+ @arminmeh, @cherniavskii, @flaviendelangle, @JCQuintas, @MBilalShafi, @noraleonte.
805
+
806
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
807
+
808
+ ### Data Grid
809
+
810
+ #### Breaking changes
811
+
812
+ - The "Select all" checkbox is now checked when all the selectable rows are selected, ignoring rows that are not selectable because of the `isRowSelectable` prop.
813
+ - The `rowPositionsDebounceMs` prop was removed.
814
+ - The `gridRowsDataRowIdToIdLookupSelector` selector was removed. Use the `gridRowsLookupSelector` selector in combination with the `getRowId()` API method instead.
815
+ ```diff
816
+ -const idToIdLookup = gridRowsDataRowIdToIdLookupSelector(apiRef);
817
+ -const rowId = idToIdLookup[id]
818
+ +const rowsLookup = gridRowsLookupSelector(apiRef);
819
+ +const rowId = apiRef.current.getRowId(rowsLookup[id])
820
+ ```
821
+ - The Grid is now more aligned with the WAI-ARIA authoring practices and sets the `role` attribute to `treegrid` if the Data Grid is used with row grouping feature.
822
+
823
+ #### `@mui/x-data-grid@8.0.0-alpha.3`
824
+
825
+ - [DataGrid] Fix deselection not working with `isRowSelectable` (#15692) @MBilalShafi
826
+ - [DataGrid] Make column autosizing work with flex columns (#15465) @cherniavskii
827
+ - [DataGrid] Remove `gridRowsDataRowIdToIdLookupSelector` selector (#15698) @arminmeh
828
+ - [DataGrid] Remove `rowPositionsDebounceMs` prop (#15482) @k-rajat19
829
+ - [l10n] Improve Hebrew (he-IL) locale (#15699) @perezShaked
830
+ - [l10n] Improve Turkish (tr-TR) locale (#15734) @ihsanberkozcan
831
+
832
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
833
+
834
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.3`, plus:
835
+
836
+ - [DataGridPro] Cleanup pinned rows on removal (#15697) @cherniavskii
837
+ - [DataGridPro] Server-side lazy loading (#13878) @arminmeh
838
+
839
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.3` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
840
+
841
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.3`, plus:
842
+
843
+ - [DataGridPremium] Remove the `ariaV8` experimental flag (#15694) @arminmeh
844
+
845
+ ### Date and Time Pickers
846
+
847
+ #### Breaking changes
848
+
849
+ - The `onOpen()` and `onClose()` methods of the `usePickerContext()` hook have been replaced with a single `setOpen` method — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#usepickercontext).
850
+
851
+ #### `@mui/x-date-pickers@8.0.0-alpha.3`
852
+
853
+ - [pickers] Replace the `onOpen()` and `onClose()` methods of `usePickerContext()` with a single `setOpen()` method. (#15701) @flaviendelangle
854
+
855
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
856
+
857
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.3`.
858
+
859
+ ### Charts
860
+
861
+ #### `@mui/x-charts@8.0.0-alpha.3`
862
+
863
+ - [charts] Improve SVG `pattern` and `gradient` support (#15720) @JCQuintas
864
+
865
+ #### `@mui/x-charts-pro@8.0.0-alpha.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
866
+
867
+ Same changes as in `@mui/x-charts@8.0.0-alpha.3`.
868
+
869
+ ### Tree View
870
+
871
+ #### `@mui/x-tree-view@8.0.0-alpha.3`
872
+
873
+ No changes since `@mui/x-tree-view-pro@v8.0.0-alpha.2`.
874
+
875
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
876
+
877
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.3`.
878
+
879
+ ### Docs
880
+
881
+ - [docs] Add a customization demo for the Date and Time Pickers overview page (#15118) @noraleonte
882
+ - [docs] Fix typo in charts axis documentation (#15743) @JCQuintas
883
+ - [docs] Improve SEO titles for the Data Grid (#15695) @MBilalShafi
884
+
885
+ ### Core
886
+
887
+ - [core] Add `@mui/x-tree-view-pro` to `releaseChangelog` (#15316) @flaviendelangle
888
+ - [code-infra] Lock file maintenance (#11894)
889
+ - [code-infra] Check if `preset-safe` folder exists in codemod test (#15703) @JCQuintas
890
+ - [code-infra] Import Pickers `preset-safe` into global codemod config (#15659) @JCQuintas
891
+ - [code-infra] Playwright 1.49 (#15493) @JCQuintas
892
+ - [test] Force hover in headless Chrome (#15710) @cherniavskii
893
+
894
+ ## 8.0.0-alpha.2
895
+
896
+ _Nov 29, 2024_
897
+
898
+ We'd like to offer a big thanks to the 17 contributors who made this release possible. Here are some highlights ✨:
899
+
900
+ - 👨🏽‍💻 Improve resize performance on the Data Gird.
901
+ - `<ChartDataProvider />` and `<ChartsSurface />` components are now fully divided — [Learn more](https://next.mui.com/x/react-charts/composition/#overview).
902
+ - Users can create their own HTML components using chart data — [Learn more](https://next.mui.com/x/react-charts/components/#html-components).
903
+ - 🌍 Improve Spanish, Portuguese, Chinese locales on the Data Grid component.
904
+ - 🌍 Improve Dutch locale on the Date and Time Pickers components.
905
+ - 🐞 Bugfixes
906
+ - 📚 Documentation improvements
907
+
908
+ Special thanks go out to the community contributors who have helped make this release possible:
909
+ @dloeda, @headironc, @jedesroches, @k-rajat19, @lauri865, @mathzdev, @nphmuller, @zinoroman.
910
+ Following are all team members who have contributed to this release:
911
+ @arminmeh, @alexfauquette, @cherniavskii, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @oliviertassinari.
912
+
913
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
914
+
915
+ ### Data Grid
916
+
917
+ #### Breaking changes
918
+
919
+ - The `<GridOverlays />` component is not exported anymore.
920
+ - The `indeterminateCheckboxAction` prop has been removed. Clicking on an indeterminate checkbox "selects" the unselected descendants.
921
+ - The `apiRef.current.resize()` method was removed.
922
+ - The default value of the `rowSelectionPropagation` prop has been changed to `{ parents: true, descendants: true }` which means that the selection will be propagated to the parents and descendants by default.
923
+ To revert to the previous behavior, pass `rowSelectionPropagation` as `{ parents: false, descendants: false }`.
924
+ - If `estimatedRowCount` is used, the text provided to the [Table Pagination](/material-ui/api/table-pagination/) component from the Material UI library is updated and requires additional translations. Check the example at the end of [Index-based pagination section](/x/react-data-grid/pagination/#index-based-pagination).
925
+
926
+ #### `@mui/x-data-grid@v8.0.0-alpha.2`
927
+
928
+ - [DataGrid] Change test dom check from `/jsdom/` to `/jsdom|HappyDOM/`. (#15634) @jedesroches
929
+ - [DataGrid] Clear timers on unmount (#15620) @cherniavskii
930
+ - [DataGrid] Fix order of spread props on toolbar items (#15556) @KenanYusuf
931
+ - [DataGrid] Improve resize performance (#15549) @lauri865
932
+ - [DataGrid] Make estimation label more accurate (#15632) @arminmeh
933
+ - [DataGrid] Remove `<GridOverlays />` export (#15573) @k-rajat19
934
+ - [DataGrid] Remove `indeterminateCheckboxAction` prop (#15522) @MBilalShafi
935
+ - [DataGrid] Remove try/catch from `<GridCell />` due to performance issues (#15616) @lauri865
936
+ - [DataGrid] Remove unused `resize` method (#15599) @cherniavskii
937
+ - [DataGrid] Support column virtualization with dynamic row height (#15541) @cherniavskii
938
+ - [DataGrid] Update the default value for `rowSelectionPropagation` (#15523) @MBilalShafi
939
+ - [l10n] Improve Chinese (zh-CN) locale (#15570) @headironc
940
+ - [l10n] Improve Portuguese (pt-PT) locale (#15561) @mathzdev
941
+
942
+ #### `@mui/x-data-grid-pro@v8.0.0-alpha.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
943
+
944
+ Same changes as in `@mui/x-data-grid@v8.0.0-alpha.2`, plus:
945
+
946
+ - [DataGridPro] Fix header filtering with `boolean` column type (#15528) @k-rajat19
947
+ - [DataGridPro] Fix pagination state not updating if the data source response has no rows (#15622) @zinoroman
948
+ - [DataGridPro] Fix selection propagation issue on initialization (#15461) @MBilalShafi
949
+
950
+ #### `@mui/x-data-grid-premium@v8.0.0-alpha.2` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
951
+
952
+ Same changes as in `@mui/x-data-grid-pro@v8.0.0-alpha.2`.
953
+
954
+ ### Date and Time Pickers
955
+
956
+ #### Breaking changes
957
+
958
+ - The props received by the `layout` and the `toolbar` slots have been reworked — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#do-not-pass-the-section-type-as-a-generic).
959
+
960
+ - The `TSection` generic of the `FieldRef` type has been replaced with the `TValue` generic — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slots-breaking-changes).
961
+
962
+ #### `@mui/x-date-pickers@v8.0.0-alpha.2`
963
+
964
+ - [l10n] Improve Dutch (nl-NL) locale (#15564) @nphmuller
965
+ - [pickers] Fix DST issue with `America/Asuncion` timezone and `AdapterMoment` (#15552) @flaviendelangle
966
+ - [pickers] Improve validation internals (#15419) @flaviendelangle
967
+ - [pickers] Remove `TSection` and strictly type `TValue` (#15434) @flaviendelangle
968
+ - [pickers] Remove `orientation`, `isLandscape`, `isRtl`, `wrapperVariant` and `disabled` props from `PickersLayout` (#15494) @flaviendelangle
969
+ - [pickers] Use the new `ownerState` in `<PickersCalendarHeader />`, `<PickersArrowSwitcher />` and `<DayCalendarSkeleton />` (#15499) @flaviendelangle
970
+ - [pickers] Use the new `ownerState` object in all the field components (#15510) @flaviendelangle
971
+
972
+ #### `@mui/x-date-pickers-pro@v8.0.0-alpha.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
973
+
974
+ Same changes as in `@mui/x-date-pickers@v8.0.0-alpha.2`.
975
+
976
+ ### Charts
977
+
978
+ #### Breaking changes
979
+
980
+ - Charts Container don't have a `<div />` wrapping them anymore. All props are now passed to the root `<svg />` instead of the `<div />`.
981
+
982
+ #### `@mui/x-charts@v8.0.0-alpha.2`
983
+
984
+ - [charts] Allow the creation of custom HTML components using charts data (#15511) @JCQuintas
985
+ - [charts] Flatten imports from `@mui/utils` and `@mui/system` (#15603) @alexfauquette
986
+ - [charts] Introduce the plugin system (#15513) @alexfauquette
987
+ - [charts] Prevent invalid `releasePointerCapture` (#15602) @alexfauquette
988
+ - [charts] Fix custom Tooltip demos (#15631) @alexfauquette
989
+
990
+ #### `@mui/x-charts-pro@v8.0.0-alpha.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
991
+
992
+ Same changes as in `@mui/x-charts@v8.0.0-alpha.2`.
993
+
994
+ ### Tree View
995
+
996
+ #### `@mui/x-tree-view@v8.0.0-alpha.2`
997
+
998
+ - [TreeView] Flatten import from `@mui/utils` and `@mui/system` (#15604) @alexfauquette
999
+
1000
+ #### `@mui/x-tree-view-pro@v8.0.0-alpha.2`
1001
+
1002
+ Same changes as in `@mui/x-tree-view@v8.0.0-alpha.2`.
1003
+
1004
+ ### Docs
1005
+
1006
+ - [docs] Fix 404 links (#15575) @oliviertassinari
1007
+ - [docs] Fix bash comments (#15571) @oliviertassinari
1008
+ - [docs] Fix Pickers theme augmentation example (#15672) @LukasTy
1009
+ - [docs] Replace use of "e.g." with "for example" (#15572) @oliviertassinari
1010
+ - [docs] Update stale `new` and `preview` tags in v8 docs (#15547) @JCQuintas
1011
+ - [docs] Fix layout shift image on Tree View docs (#15626) @oliviertassinari
1012
+ - [docs] Fix `anchorEl` API page for charts (#15625) @oliviertassinari
1013
+ - [docs] Add documentation for the list view feature (#15344) @KenanYusuf
1014
+
1015
+ ### Core
1016
+
1017
+ - [core] Follow `()` function convention for docs @oliviertassinari
1018
+ - [core] Remove dead translation key (#15566) @oliviertassinari
1019
+ - [code-infra] Auto-merge `@types/node` bumps (#15591) @LukasTy
1020
+
1021
+ ## 8.0.0-alpha.1
1022
+
1023
+ _Nov 22, 2024_
1024
+
1025
+ We'd like to offer a big thanks to the 16 contributors who made this release possible. Here are some highlights ✨:
1026
+
1027
+ - 🔧 Refactor Tooltip customisation for charts — [Learn more](https://next.mui.com/x/react-charts/tooltip/#overriding-content).
1028
+ - ⚛️ React 19 support
1029
+ - 🌍 Improve Chinese, Spanish, and Swedish locale on the Data Grid component
1030
+ - 🐞 Bugfixes
1031
+ - 📚 Documentation improvements
1032
+
1033
+ Special thanks go out to the community contributors who have helped make this release possible:
1034
+ @CarlosLopezLg, @headironc, @hendrikpeilke, @k-rajat19, @lhilgert9, @viktormelin.
1035
+ Following are all team members who have contributed to this release:
1036
+ @alexfauquette, @arthurbalduini, @cherniavskii, @flaviendelangle, @JCQuintas, @LukasTy, @MBilalShafi, @oliviertassinari, @KenanYusuf, @arminmeh.
1037
+
1038
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1039
+
1040
+ ### Data Grid
1041
+
1042
+ #### `@mui/x-data-grid@v8.0.0-alpha.1`
1043
+
1044
+ - [DataGrid] React 19 support (#15342) @arminmeh
1045
+ - [DataGrid] Add prop to override search input props in `GridColumnsManagement` (#15347) @k-rajat19
1046
+ - [DataGrid] Add test coverage for issues fixed in #15184 (#15282) @MBilalShafi
1047
+ - [DataGrid] Change default loading overlay variants (#15504) @KenanYusuf
1048
+ - [DataGrid] Fix last separator not being hidden when grid is scrollable (#15543) @KenanYusuf
1049
+ - [DataGrid] Fix right column group header border with virtualization (#15470) @hendrikpeilke
1050
+ - [DataGrid] Fix row-spanning in combination with column-pinning (#15368) @lhilgert9
1051
+ - [l10n] Improve Chinese (zh-CN) locale (#15365) @headironc
1052
+ - [l10n] Improve Spanish (es-ES) locale (#15369) @CarlosLopezLg
1053
+ - [l10n] Improve Swedish (sv-SE) locale (#15371) @viktormelin
1054
+
1055
+ #### `@mui/x-data-grid-pro@v8.0.0-alpha.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1056
+
1057
+ Same changes as in `@mui/x-data-grid@v8.0.0-alpha.1`.
1058
+
1059
+ #### `@mui/x-data-grid-premium@v8.0.0-alpha.1` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1060
+
1061
+ Same changes as in `@mui/x-data-grid-pro@v8.0.0-alpha.1`, plus:
1062
+
1063
+ - [DataGridPremium] Prompt input control (#15401) @arminmeh
1064
+
1065
+ ### Date and Time Pickers
1066
+
1067
+ #### Breaking change
1068
+
1069
+ - The `FieldValueType` type has been renamed to `PickerValueType` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#renamed-variables).
1070
+ - The `toolbar` and `layout` slots no longer receive the `disabled` and `readOnly` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slots-breaking-changes).
1071
+
1072
+ #### `@mui/x-date-pickers@v8.0.0-alpha.1`
1073
+
1074
+ - [fields] Fix focus management with new DOM structure (#15475) @flaviendelangle
1075
+ - [pickers] React 19 support (#15342) @arminmeh
1076
+ - [pickers] Add new properties to `PickerOwnerState` and `PickerContextValue` (#15415) @flaviendelangle
1077
+ - [pickers] Always use `props.value` when it changes (#15490) @flaviendelangle
1078
+ - [pickers] Ensure internal value timezone is updated (#15435) @LukasTy
1079
+ - [pickers] Fix unused code in `<PickersToolbar />` component (#15515) @LukasTy
1080
+ - [pickers] Remove `FieldValueType` in favor of `PickerValueType` (#15259) @arthurbalduini
1081
+ - [pickers] Remove the form props from the layout and the toolbar slots (#15492) @flaviendelangle
1082
+ - [pickers] Use `props.referenceDate` timezone when `props.value` and `props.defaultValue` are not defined (#15532) @flaviendelangle
1083
+ - [TimePicker] Prevent mouse events after `touchend` event (#15346) @arthurbalduini
1084
+
1085
+ #### `@mui/x-date-pickers-pro@v8.0.0-alpha.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1086
+
1087
+ Same changes as in `@mui/x-date-pickers@v8.0.0-alpha.1`, plus:
1088
+
1089
+ - [DateTimeRangePicker] Use time in `referenceDate` when selecting date (#15429) @LukasTy
1090
+
1091
+ ### Charts
1092
+
1093
+ #### Breaking change
1094
+
1095
+ - The DX of the Tooltip customization has been refactored
1096
+
1097
+ - The `tooltip` prop has been removed in favor of `slotProps.tooltip` for consistency.
1098
+ - The `popper`, `axisContent`, and `itemContent` slots have been removed in favor of the `tooltip` slot which overrides the entire tooltip.
1099
+ - To override the tooltip content, use the `useItemTooltip` or `useAxisTooltip` hook to get the data, and wrap your component in `ChartsTooltipContainer` to follow the pointer position.
1100
+ - To override the tooltip placement, use the `ChartsItemTooltipContent` or `ChartsItemTooltipContent` to get default data and place them in your custom tooltip.
1101
+
1102
+ - The library now uses the SVG `filter` attribute instead of `d3-color` for color manipulation.
1103
+
1104
+ - This modification impacts the `LinePlot`, `AreaPlot`, and `BarPlot` components.
1105
+ If you've customized the `fill` of those elements, you might need to override it by using the CSS `filter`.
1106
+ - The `theme.styleOverride` is removed for `MuiLineElement`, `MuiAreaElement`, and `MuiBarElement` to improve performance.
1107
+ You can still target those elements by using the `MuiLinePlot`, `MuiAreaPlot`, and `MuiBarPlot` and target the appropriate classes `lineElementClasses.root`, `areaElementClasses.root`, `barElementClasses.root`
1108
+
1109
+ - Removed the `resolveSizeBeforeRender` prop from all chart components — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#remove-resolvesizebeforerender-prop).
1110
+ - Removed `width` and `height` props from the `ChartsSurface` component.
1111
+ - Removed the `viewport` prop from all charts.
1112
+
1113
+ #### `@mui/x-charts@v8.0.0-alpha.1`
1114
+
1115
+ - [charts] React 19 support (#15342) @arminmeh
1116
+ - [charts] Decouple `<ChartDataProvider />` and `<ChartsSurface />` (#15375) @JCQuintas
1117
+ - [charts] Fix Scatter Chart tooltip wrong defaults (#15537) @JCQuintas
1118
+ - [charts] Fix key generation for the `<ChartsGrid />` component (#15463) @alexfauquette
1119
+ - [charts] Improve `<SvgRefProvider />` to split the received ref (#15424) @JCQuintas
1120
+ - [charts] Move interaction state in store (#15426) @alexfauquette
1121
+ - [charts] Refactor Tooltip customisation (#15154) @alexfauquette
1122
+ - [charts] Remove intrinsic size requirement (#15471) @JCQuintas
1123
+ - [charts] Replace `d3-color` with CSS filter for highlight (#15084) @alexfauquette
1124
+ - [charts] Split `<DrawingProvider />` into `<DrawingAreaProvider />` and `<SvgRefProvider />` (#15417) @JCQuintas
1125
+
1126
+ #### `@mui/x-charts-pro@v8.0.0-alpha.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1127
+
1128
+ Same changes as in `@mui/x-charts@v8.0.0-alpha.1`.
1129
+
1130
+ ### Tree View
1131
+
1132
+ #### Breaking changes
1133
+
1134
+ - The Tree Item component can no longer use `publicAPI` methods in the `render` because they are now memoized — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#stop-using-publicapi-methods-in-the-render).
1135
+
1136
+ #### `@mui/x-tree-view@v8.0.0-alpha.1`
1137
+
1138
+ - [TreeView] React 19 support (#15342) @arminmeh
1139
+ - [TreeView] Do not re-render every Tree Item when the Rich Tree View re-renders (introduce selectors) (#14210) @flaviendelangle
1140
+ - [TreeView] Remove `treeId` from the item context (#15542) @flaviendelangle
1141
+ - [TreeView] Remove state mutation in `moveItemInTree()` (#15539) @flaviendelangle
1142
+ - [TreeItem] Correct the typing of `slotProps.groupTransition` (#15534) @flaviendelangle
1143
+
1144
+ ### Docs
1145
+
1146
+ - [docs] Fix some migration typos (#15422) @LukasTy
1147
+ - [docs] Fix typo in migration guide (#15508) @flaviendelangle
1148
+ - [docs] Fix 301 redirection in docs @oliviertassinari
1149
+ - [docs] Polish Server-side data section (#15330) @oliviertassinari
1150
+ - [docs] Use loading state in the demos (#15512) @cherniavskii
1151
+
1152
+ ### Core
1153
+
1154
+ - [core] Keep OpenSSF badge up-to-date @oliviertassinari
1155
+ - [code-infra] Add `'DensitySelectorGrid'` to time-sensitive argos tests (#15425) @JCQuintas
1156
+ - [code-infra] Add documentation to internal types (#15540) @JCQuintas
1157
+ - [code-infra] Prevent relative imports across packages (#15437) @JCQuintas
1158
+ - [code-infra] Update renovate config to merge `action` pins (#15462) @LukasTy
1159
+ - [docs-infra] Fix version tooltip (#15468) @alexfauquette
1160
+ - [docs-infra] Transpile `.ts` demo files (#15345) @KenanYusuf
1161
+ - [infra] Remove cherry-pick issue write permission (#15456) @oliviertassinari
1162
+
1163
+ ## 8.0.0-alpha.0
1164
+
1165
+ <img width="100%" alt="MUI X v8 Alpha is live" src="https://github.com/user-attachments/assets/114cf615-b617-435f-8499-76ac3c26c57b">
1166
+
1167
+ _Nov 14, 2024_
1168
+
1169
+ We'd like to offer a big thanks to the 22 contributors who made this release possible. Here are some highlights ✨:
1170
+
1171
+ - 🔁 Support [automatic parents and children selection](https://next.mui.com/x/react-tree-view/rich-tree-view/selection/#automatic-parents-and-children-selection) for the Rich Tree View components.
1172
+ - 🌍 Improve Greek (el-GR) locale on the Date and Time Pickers components
1173
+ - 🌍 Improve Polish (pl-PL) locale on the Data Grid component
1174
+ - 🐞 Bugfixes
1175
+ - 📚 Documentation improvements
1176
+
1177
+ Special thanks go out to the community contributors who have helped make this release possible:
1178
+ @belkocik, @GeorgiosDrivas, @k-rajat19, @kalyan90, @DungTiger, @fxnoob, @GuillaumeMeheut
1179
+ Following are all team members who have contributed to this release:
1180
+ @alexfauquette, @arminmeh, @arthurbalduini, @cherniavskii, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @michelengelen, @noraleonte, @oliviertassinari, @romgrk, @samuelsycamore, @joserodolfofreitas.
1181
+
1182
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1183
+
1184
+ ### Data Grid
1185
+
1186
+ #### `@mui/x-data-grid@8.0.0-alpha.0`
1187
+
1188
+ - [DataGrid] Fix grid overlay aligment with scroll for rtl (#15072) @kalyan90
1189
+ - [DataGrid] Fix resizing right pinned column (#15107) @KenanYusuf
1190
+ - [DataGrid] Pass the reason to the `onPaginationModelChange` callback (#13959) @DungTiger
1191
+ - [DataGrid] Set default overlay height in flex parent layout (#15202) @cherniavskii
1192
+ - [DataGrid] Refactor `baseMenuList` and `baseMenuItem` (#15049) @romgrk
1193
+ - [DataGrid] Remove more material imports (#15063) @romgrk
1194
+ - [l10n] Improve Polish (pl-PL) locale (#15227) @belkocik
1195
+
1196
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1197
+
1198
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.0`, plus:
1199
+
1200
+ - [DataGridPro] Fix column pinning layout (#14966) @cherniavskii
1201
+
1202
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1203
+
1204
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.0`, plus:
1205
+
1206
+ - [DataGridPremium] Server-side data source with row grouping (#13826) @MBilalShafi
1207
+
1208
+ ### Date and Time Pickers
1209
+
1210
+ #### Breaking changes
1211
+
1212
+ - The default DOM structure of the field has changed [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#new-dom-structure-for-the-field).
1213
+
1214
+ - Before version `v8.x`, the fields' DOM structure consisted of an `<input />`, which held the whole value for the component, but unfortunately presents a few limitations in terms of accessibility when managing multiple section values.
1215
+ - Starting with version `v8.x`, all the field and picker components come with a new DOM structure that allows the field component to set aria attributes on individual sections, providing a far better experience with screen readers.
1216
+
1217
+ - Some translation keys no longer require `utils` and the date object as parameters, but only the formatted value as a string. The keys affected by this changes are: `clockLabelText`, `openDatePickerDialogue` and `openTimePickerDialogue` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#stop-passing-utils-and-the-date-object-to-some-translation-keys).
1218
+
1219
+ - The following types are no longer exported by `@mui/x-date-pickers` and `@mui/x-date-pickers-pro` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#removed-types).
1220
+
1221
+ - `UseDateFieldComponentProps`
1222
+ - `UseTimeFieldComponentProps`
1223
+ - `UseDateTimeFieldComponentProps`
1224
+ - `BaseSingleInputFieldProps`
1225
+ - `BaseMultiInputFieldProps`
1226
+ - `BasePickersTextFieldProps`
1227
+
1228
+ - The `TDate` generic has been removed from all the types, interfaces, and variables of the `@mui/x-date-pickers` and `@mui/x-date-pickers-pro` packages — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#remove-tdate-generic).
1229
+
1230
+ - Renamed `usePickersTranslations` and `usePickersContext` hooks to have a coherent `Picker` prefix instead of `Pickers` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#renamed-variables).
1231
+
1232
+ - The `LicenseInfo` object is no longer exported from the `@mui/x-date-pickers-pro` package — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#stop-using-licenseinfo-from-mui-x-date-pickers-pro).
1233
+
1234
+ #### `@mui/x-date-pickers@8.0.0-alpha.0`
1235
+
1236
+ - [fields] Enable the new field DOM structure by default (#14651) @flaviendelangle
1237
+ - [fields] Remove `UseDateFieldComponentProps` and equivalent interfaces (#15053) @flaviendelangle
1238
+ - [fields] Remove clear button from the tab sequence (#14616) @k-rajat19
1239
+ - [l10n] Improve Greek (el-GR) locale (#15250) @GeorgiosDrivas
1240
+ - [pickers] Clean definition of validation props (#15198) @flaviendelangle
1241
+ - [pickers] Clean the new `ownerState` object (#15056) @flaviendelangle
1242
+ - [pickers] Correctly type the `ownerState` of the `field` and `actionBar` slots when resolved in a picker component (#15162) @flaviendelangle
1243
+ - [pickers] Fix `DateCalendar` timezone management (#12321) @LukasTy
1244
+ - [pickers] Fix `DateTimeRangePicker` error when using format without time (#14917) @fxnoob
1245
+ - [pickers] Fix `DigitalClock` time options on a `DST` switch day (#10793) @LukasTy
1246
+ - [pickers] Remove `TDate` generics in favor of `PickerValidDate` direct usage (#15001) @flaviendelangle
1247
+ - [pickers] Remove `utils` and `value` params from translations (#14986) @arthurbalduini
1248
+ - [pickers] Remove plural in "Pickers" on recently introduced APIs (#15297) @flaviendelangle
1249
+ - [pickers] Remove the re-export from `@mui/x-license` (#14487) @k-rajat19
1250
+ - [pickers] Strictly type the props a picker passes to its field, and migrate all the custom field demos accordingly (#15197) @flaviendelangle
1251
+ - [pickers] Unify JSDoc for all the `disabled` and `readOnly` props (#15304) @flaviendelangle
1252
+ - [pickers] Use the new `ownerState` in `DateCalendar`, `DateRangeCalendar`, `MonthCalendar` and `YearCalendar` (#15171) @flaviendelangle
1253
+ - [pickers] Use the new `ownerState` in `usePickersLayout` and `useXXXPicker` (#14994) @flaviendelangle
1254
+
1255
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1256
+
1257
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.0`.
1258
+
1259
+ ### Charts
1260
+
1261
+ #### Breaking changes
1262
+
1263
+ - The `legend` prop has been removed. To pass props to the legend, use `slotProps={{ legend: { ... } }}` instead. This can be automatically done with the codemod as long as the `legend` prop does not come from a destructured object — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#legend-props-propagation-✅).
1264
+
1265
+ - The `slots.legend` does not receive the `drawingArea` prop. You can still access your custom legend with the `useDrawingArea()` hook if your custom legend needs it.
1266
+
1267
+ - Removed or renamed multiple props from Series — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#series-properties-renaming).
1268
+
1269
+ - The `highlighted` and `faded` properties of highlightScope have been deprecated in favor of `highlight` and `fade`.
1270
+ The deprecated ones are now removed.
1271
+ - The `xAxisKey`, `yAxisKey`, and `zAxisKey` properties have been deprecated in favor of `xAxisId`, `yAxisId`, and `zAxisId`.
1272
+
1273
+ - The Pie Chart lost all props and renderer linked to axes because pie chart does not need cartesian axes. If you used it, you can still add them back with composition. Please consider opening an issue to share your use case with us — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#remove-pie-chart-axes).
1274
+
1275
+ #### `@mui/x-charts@8.0.0-alpha.0`
1276
+
1277
+ - [charts] Introduce `hideLegend` prop (#15277) @alexfauquette
1278
+ - [charts] Filter items outside the drawing area for performance (#14281) @alexfauquette
1279
+ - [charts] Fix log scale with `null` data (#15337) @alexfauquette
1280
+ - [charts] Fix tooltip follow mouse (#15189) @alexfauquette
1281
+ - [charts] Remove `xAxisKey`, `yAxisKey`, and `zAxisKey` series keys (#15192) @alexfauquette
1282
+ - [charts] Remove axis from the pie chart (#15187) @alexfauquette
1283
+ - [charts] Remove deprecated `legend` props (#15081) @alexfauquette
1284
+ - [charts] Remove deprecated highlight properties (#15191) @alexfauquette
1285
+ - [charts] Update Popper position outside of React (#15003) @alexfauquette
1286
+ - [charts] Improve the performance of the `getSymbol` method (#15233) @romgrk
1287
+
1288
+ #### `@mui/x-charts-pro@8.0.0-alpha.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1289
+
1290
+ Same changes as in `@mui/x-charts@8.0.0-alpha.0`.
1291
+
1292
+ ### Tree View
1293
+
1294
+ #### Breaking changes
1295
+
1296
+ - The `ContentComponent` or `ContentProps` props of the `<TreeItem />` component have been removed in favor of the new `slots`, `slotProps` props and of the `useTreeItem` hook — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#new-api-to-customize-the-tree-item).
1297
+
1298
+ - The `onClick` and `onMouseDown` callbacks of the Tree Item component are now passed to the root element instead of the content — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#behavior-change-on-the-onclick-and-onmousedown-props-of-treeitem).
1299
+
1300
+ - Rename the `<TreeItem2 />` component (and related utils) — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#✅-rename-the-treeitem2-and-related-utils).
1301
+
1302
+ - The `<TreeView />` component has been renamed `<SimpleTreeView />` which has exactly the same API — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#✅-use-simple-tree-view-instead-of-tree-view).
1303
+
1304
+ - The indentation of nested Tree Items is now applied on the content of the element — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#apply-the-indentation-on-the-item-content-instead-of-its-parents-group).
1305
+
1306
+ #### `@mui/x-tree-view@8.0.0-alpha.0`
1307
+
1308
+ - [TreeView] Always apply the indentation on the item content instead of its parent's group (#15089) @flaviendelangle
1309
+ - [TreeView] Automatic parents and children selection (#14899) @flaviendelangle
1310
+ - [TreeView] Remove deprecated `TreeView` component (#15093) @flaviendelangle
1311
+ - [TreeView] Replace `<TreeItem />` with `<TreeItem2 />` and migrate all the components and utils (#14913) @flaviendelangle
1312
+
1313
+ ### Docs
1314
+
1315
+ - [docs] Add docs for rounded symbol (#15324) @GuillaumeMeheut
1316
+ - [docs] Add migration guide for the removal of `LicenseInfo` from `@mui/x-date-pickers-pro` (#15321) @flaviendelangle
1317
+ - [docs] Add migration guide for the first breaking changes of charts (#15276) @alexfauquette
1318
+ - [docs] Add `PickersPopper` component to the Date Picker customization playground (#15305) @LukasTy
1319
+ - [docs] Add v8 to supported releases table (#15384) @joserodolfofreitas
1320
+ - [docs] Apply the new DX to the Button Field demos (#14860) @flaviendelangle
1321
+ - [docs] Apply the new DX to the `Autocomplete` Field demo (#15165) @flaviendelangle
1322
+ - [docs] Cleanup the pickers migration guide (#15310) @flaviendelangle
1323
+ - [docs] Copyedit the Charts Getting Started sequence (#14962) @samuelsycamore
1324
+ - [docs] Create Pickers masked field recipe (#13515) @flaviendelangle
1325
+ - [docs] Fix `applyDomain` docs for the charts (#15332) @JCQuintas
1326
+ - [docs] Fix link to private notion page (#15396) @michelengelen
1327
+ - [docs] Fix missing punctuation on descriptions (#15229) @oliviertassinari
1328
+ - [docs] Fix peer dependency range (#15281) @oliviertassinari
1329
+ - [docs] Fix small Tree View typo (#15390) @oliviertassinari
1330
+ - [docs] Fix the `AdapterMomentHijri` doc section (#15312) @flaviendelangle
1331
+ - [docs] Replace the Tree Item anatomy images (#15066) @noraleonte
1332
+ - [docs] Start v8 migration guides (#15096) @MBilalShafi
1333
+ - [docs] Subdivide and reorganize navigation bar (#15014) @samuelsycamore
1334
+ - [docs] Use `PickersTextField` in the customization playground (#15288) @LukasTy
1335
+ - [docs] Use `next` instead of `^8.0.0` in the migration guides (#15091) @flaviendelangle
1336
+
1337
+ ### Core
1338
+
1339
+ - [core] Adjust the `cherry-pick` GitHub actions (#15099) @LukasTy
1340
+ - [core] Add `()` at the name of function name in the doc (#15075) @oliviertassinari
1341
+ - [core] Clarify release version bump strategy (#15219) @cherniavskii
187
1342
  - [core] Fix CodeSandbox and StackBlitz for next doc-infra sync @oliviertassinari
188
1343
  - [core] Fix Vale error on `master` @oliviertassinari
189
1344
  - [core] Fix changelog reference to VoiceOver @oliviertassinari
@@ -196,6 +1351,947 @@ Same changes as in `@mui/x-charts@8.0.0-alpha.0`.
196
1351
  - [release] v8 preparation (#15054) @michelengelen
197
1352
  - [test] Fix advanced list view regression test snapshot (#15260) @KenanYusuf
198
1353
 
1354
+ ## 7.25.0
1355
+
1356
+ _Jan 31, 2025_
1357
+
1358
+ We'd like to offer a big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
1359
+
1360
+ - 🐞 Bugfixes
1361
+
1362
+ Special thanks go out to the community contributors who have helped make this release possible:
1363
+ @k-rajat19, @lauri865.
1364
+ Following are all team members who have contributed to this release:
1365
+ @KenanYusuf, @MBilalShafi, @arminmeh.
1366
+
1367
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1368
+
1369
+ ### Data Grid
1370
+
1371
+ #### `@mui/x-data-grid@7.25.0`
1372
+
1373
+ - [DataGrid] Fix `renderContext` calculation with scroll bounce / over-scroll (#16368) @lauri865
1374
+ - [DataGrid] Refactor row state propagation (#16351) @lauri865
1375
+ - [DataGrid] Add missing style overrides (#16272) (#16358) @KenanYusuf
1376
+ - [DataGrid] Fix header filters keyboard navigation when there are no rows (#16369) @k-rajat19
1377
+ - [DataGrid] Fix order of `onClick` prop on toolbar buttons (#16364) @KenanYusuf
1378
+ - [DataGrid] Improve test coverage of server side data source (#15988) @MBilalShafi
1379
+ - [DataGrid] Remove outdated warning (#16370) @MBilalShafi
1380
+ - [DataGrid] Respect width of `iconContainer` during autosizing (#16409) @michelengelen
1381
+
1382
+ #### `@mui/x-data-grid-pro@7.25.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1383
+
1384
+ Same changes as in `@mui/x-data-grid@7.25.0`, plus:
1385
+
1386
+ - [DataGridPro] Fix the return type of `useGridApiRef` for Pro and Premium packages on React < 19 (#16348) @arminmeh
1387
+ - [DataGridPro] Fetch new rows only once when multiple models are changed in one cycle (#16382) @arminmeh
1388
+
1389
+ #### `@mui/x-data-grid-premium@7.25.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1390
+
1391
+ Same changes as in `@mui/x-data-grid-pro@7.25.0`.
1392
+
1393
+ ### Date and Time Pickers
1394
+
1395
+ #### `@mui/x-date-pickers@7.25.0`
1396
+
1397
+ Internal changes.
1398
+
1399
+ #### `@mui/x-date-pickers-pro@7.25.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1400
+
1401
+ Same changes as in `@mui/x-date-pickers@7.25.0`.
1402
+
1403
+ ### Charts
1404
+
1405
+ #### `@mui/x-charts@7.25.0`
1406
+
1407
+ Internal changes.
1408
+
1409
+ #### `@mui/x-charts-pro@7.25.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1410
+
1411
+ Same changes as in `@mui/x-charts@7.25.0`.
1412
+
1413
+ ### Tree View
1414
+
1415
+ #### `@mui/x-tree-view@7.25.0`
1416
+
1417
+ Internal changes.
1418
+
1419
+ #### `@mui/x-tree-view-pro@7.25.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1420
+
1421
+ Same changes as in `@mui/x-tree-view@7.25.0`.
1422
+
1423
+ ### Docs
1424
+
1425
+ - [docs] Improve release documentation (#16322) @MBilalShafi
1426
+
1427
+ ### Core
1428
+
1429
+ - [test] Fix flaky data source tests in DataGrid (#16382) @lauri865
1430
+
1431
+ ## 7.24.1
1432
+
1433
+ _Jan 24, 2025_
1434
+
1435
+ We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
1436
+
1437
+ - 🐞 Bugfixes
1438
+ - 🌍 Improve Persian (fa-IR) locale on the Data Grid
1439
+
1440
+ Special thanks go out to the community contributors who have helped make this release possible:
1441
+ @mostafaRoosta74, @lauri865.
1442
+
1443
+ Following are all team members who have contributed to this release:
1444
+ @alexfauquette, @JCQuintas, @cherniavskii, @LukasTy, @arminmeh.
1445
+
1446
+ ### Data Grid
1447
+
1448
+ #### `@mui/x-data-grid@7.24.1`
1449
+
1450
+ - [DataGrid] Fix toggling preference panel from toolbar (#16276) @lauri865
1451
+ - [DataGrid] Only try to mount filter button if there are filters present (#16269) @lauri865
1452
+ - [DataGrid] Revert `apiRef` to be `MutableRefObject` for React versions < 19 (#16320) @arminmeh
1453
+ - [l10n] Improve Persian (fa-IR) locale (#15964) @mostafaRoosta74
1454
+
1455
+ #### `@mui/x-data-grid-pro@7.24.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1456
+
1457
+ Same changes as in `@mui/x-data-grid@7.24.1`.
1458
+
1459
+ #### `@mui/x-data-grid-premium@7.24.1` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1460
+
1461
+ Same changes as in `@mui/x-data-grid-pro@7.24.1`.
1462
+
1463
+ ### Date and Time Pickers
1464
+
1465
+ #### `@mui/x-date-pickers@7.24.1`
1466
+
1467
+ - [fields] Reset `all` selected state on section edit (#16232) @LukasTy
1468
+
1469
+ #### `@mui/x-date-pickers-pro@7.24.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1470
+
1471
+ Same changes as in `@mui/x-date-pickers@7.24.1`.
1472
+
1473
+ ### Charts
1474
+
1475
+ #### `@mui/x-charts@7.24.1`
1476
+
1477
+ - [charts] Handle case where gradient stop `offset` could be `Infinite` (@JCQuintas) (#16309) @JCQuintas
1478
+
1479
+ #### `@mui/x-charts-pro@7.24.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1480
+
1481
+ Same changes as in `@mui/x-charts@7.24.1`.
1482
+
1483
+ ### Tree View
1484
+
1485
+ #### `@mui/x-tree-view@7.24.1`
1486
+
1487
+ Internal changes.
1488
+
1489
+ #### `@mui/x-tree-view-pro@7.24.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1490
+
1491
+ Same changes as in `@mui/x-tree-view@7.24.1`.
1492
+
1493
+ ### Docs
1494
+
1495
+ - [docs] Fix `domainLimit` definition (#16271) @alexfauquette
1496
+
1497
+ ### Core
1498
+
1499
+ - [core] Make `@mui/x-internals` a dependency of `@mui/x-license` (#16265) @alexfauquette
1500
+ - [test] Fix flaky column pinning tests (#16228) @cherniavskii
1501
+ - [test] Fix flaky tests (#16264) @lauri865
1502
+
1503
+ ## 7.24.0
1504
+
1505
+ _Jan 17, 2025_
1506
+
1507
+ We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
1508
+
1509
+ - 🔄 Data Grid [Scroll restoration](https://next.mui.com/x/react-data-grid/scrolling/#scroll-restoration)
1510
+ - 🐞 Bugfixes
1511
+
1512
+ Special thanks go out to the community contributors who have helped make this release possible:
1513
+ @lauri865, @AxharKhan.
1514
+ Following are all team members who have contributed to this release:
1515
+ @KenanYusuf, @arminmeh, @cherniavskii, @michelengelen, @samuelsycamore, @LukasTy.
1516
+
1517
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1518
+
1519
+ ### Data Grid
1520
+
1521
+ #### `@mui/x-data-grid@7.24.0`
1522
+
1523
+ - [DataGrid] Fix resizing right pinned column (#16193) @KenanYusuf
1524
+ - [DataGrid] Improve scrollbar deadzone with overlay scrollbars (#16212) @lauri865
1525
+ - [DataGrid] Scroll restoration (#16208) @lauri865
1526
+ - [DataGrid] Fix row, cell and header memoizations (#16195) @lauri865
1527
+ - [l10n] Improve Urdu (ur-PK) locale (#16081) @AxharKhan
1528
+
1529
+ #### `@mui/x-data-grid-pro@7.24.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1530
+
1531
+ Same changes as in `@mui/x-data-grid@7.24.0`, plus:
1532
+
1533
+ - [DataGridPro] Add test for column pinning with disabled column virtualization (#16196) @cherniavskii
1534
+ - [DataGridPro] Fix width of right-pinned column group during resize (#16207) @cherniavskii
1535
+
1536
+ #### `@mui/x-data-grid-premium@7.24.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1537
+
1538
+ Same changes as in `@mui/x-data-grid-pro@7.24.0`.
1539
+
1540
+ ### Date and Time Pickers
1541
+
1542
+ #### `@mui/x-date-pickers@7.24.0`
1543
+
1544
+ Internal changes.
1545
+
1546
+ #### `@mui/x-date-pickers-pro@7.24.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1547
+
1548
+ Same changes as in `@mui/x-date-pickers@7.24.0`.
1549
+
1550
+ ### Charts
1551
+
1552
+ #### `@mui/x-charts@7.24.0`
1553
+
1554
+ Internal changes.
1555
+
1556
+ #### `@mui/x-charts-pro@7.24.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1557
+
1558
+ Same changes as in `@mui/x-charts@7.24.0`.
1559
+
1560
+ ### Tree View
1561
+
1562
+ #### `@mui/x-tree-view@7.24.0`
1563
+
1564
+ Internal changes.
1565
+
1566
+ #### `@mui/x-tree-view-pro@7.24.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1567
+
1568
+ Same changes as in `@mui/x-tree-view@7.24.0`.
1569
+
1570
+ ### Docs
1571
+
1572
+ - [docs] Copyedit the Data Grid cell selection page (#16213) @samuelsycamore
1573
+ - [docs] Fix demo rendering issue on Codesandbox (#16129) @arminmeh
1574
+
1575
+ ### Core
1576
+
1577
+ - [core] Type all references as `RefObject` (#16125) @arminmeh
1578
+ - [code-infra] Refactor `react` and `react-dom` definitions to simplify dep resolving (#16214) @LukasTy
1579
+ - [infra] Improve cherry-pick action target list (#16188) @michelengelen
1580
+ - [test] Fix flaky column pinning unit test (#16209) @cherniavskii
1581
+
1582
+ ## 7.23.6
1583
+
1584
+ _Jan 9, 2025_
1585
+
1586
+ We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
1587
+
1588
+ - 🌍 Add Chinese (Taiwan) (zh-TW) locale on the Date and Time Pickers
1589
+ - 🌍 Improve Norwegian (nb-NO) locale on the Date and Time Pickers
1590
+ - 🌍 Improve Dutch (nl-NL) locale on the Data Grid
1591
+ - 🐞 Bugfixes
1592
+
1593
+ Special thanks go out to the community contributors who have helped make this release possible:
1594
+ @josteinjhauge, @derek-0000, @nusr, @k-rajat19, @tomashauser.
1595
+ Following are all team members who have contributed to this release:
1596
+ @flaviendelangle, @LukasTy, @MBilalShafi, @arminmeh, @oliviertassinari, @cherniavskii.
1597
+
1598
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1599
+
1600
+ ### Data Grid
1601
+
1602
+ #### `@mui/x-data-grid@7.23.6`
1603
+
1604
+ - [DataGrid] Improve React 19 support (#16048) @LukasTy
1605
+ - [DataGrid] Add `name` attribute to selection checkboxes (#16041) @derek-0000
1606
+ - [DataGrid] Fix number filter field formatting values while typing (#16068) @arminmeh
1607
+ - [DataGrid] Fix select all checkbox state reset with server side data (#16039) @MBilalShafi
1608
+
1609
+ #### `@mui/x-data-grid-pro@7.23.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1610
+
1611
+ Same changes as in `@mui/x-data-grid@7.23.6`.
1612
+
1613
+ #### `@mui/x-data-grid-premium@7.23.6` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1614
+
1615
+ Same changes as in `@mui/x-data-grid-pro@7.23.6`.
1616
+
1617
+ ### Date and Time Pickers
1618
+
1619
+ #### `@mui/x-date-pickers@7.23.6`
1620
+
1621
+ - [pickers] Improve React 19 support (#16048) @LukasTy
1622
+ - [l10n] Add Chinese (Taiwan) (zh-TW) locale (#16057) @nusr
1623
+ - [l10n] Improve Norwegian (nb-NO) locale (#16083) @josteinjhauge
1624
+ - [pickers] Support `date-fns-jalali` v4 (#16013) @LukasTy
1625
+
1626
+ #### `@mui/x-date-pickers-pro@7.23.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1627
+
1628
+ Same changes as in `@mui/x-date-pickers@7.23.6`.
1629
+
1630
+ ### Charts
1631
+
1632
+ #### `@mui/x-charts@7.23.6`
1633
+
1634
+ - [charts] Improve React 19 support (#16048) @LukasTy
1635
+ - [charts] Fix 301 redirection in the API documentation @oliviertassinari
1636
+
1637
+ #### `@mui/x-charts-pro@7.23.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1638
+
1639
+ Same changes as in `@mui/x-charts@7.23.6`.
1640
+
1641
+ ### Tree View
1642
+
1643
+ #### `@mui/x-tree-view@7.23.6`
1644
+
1645
+ - [TreeView] Improve React 19 support (#16048) @LukasTy
1646
+
1647
+ #### `@mui/x-tree-view-pro@7.23.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1648
+
1649
+ Same changes as in `@mui/x-tree-view@7.23.6`.
1650
+
1651
+ ### Docs
1652
+
1653
+ - [docs] Fix `EditingWithDatePickers` demo (#16047) @k-rajat19
1654
+ - [docs] Fix doc warning for automatic children selection on tree view (#16037) @flaviendelangle
1655
+ - [docs] Fix non-existing "adapter" property of `LocalizationProvider` (#16088) @tomashauser
1656
+
1657
+ ### Core
1658
+
1659
+ - [core] Clarify the release strategy (#16012) @MBilalShafi
1660
+ - [core] Update the `release:version` docs (#16040) @cherniavskii
1661
+
1662
+ ## 7.23.5
1663
+
1664
+ _Dec 27, 2024_
1665
+
1666
+ Here are some highlights ✨:
1667
+
1668
+ - 🐞 Fix version mismatch issue in Data Grid codesandbox/stackblitz demos
1669
+
1670
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1671
+
1672
+ ### Data Grid
1673
+
1674
+ #### `@mui/x-data-grid@7.23.5`
1675
+
1676
+ No changes since `@mui/x-data-grid@v7.23.4`.
1677
+
1678
+ #### `@mui/x-data-grid-pro@7.23.5` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1679
+
1680
+ Same changes as in `@mui/x-data-grid@7.23.5`.
1681
+
1682
+ #### `@mui/x-data-grid-premium@7.23.5` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1683
+
1684
+ Same changes as in `@mui/x-data-grid-pro@7.23.5`.
1685
+
1686
+ ## 7.23.4
1687
+
1688
+ _Dec 27, 2024_
1689
+
1690
+ We'd like to offer a big thanks to the 4 contributors who made this release possible. Here are some highlights ✨:
1691
+
1692
+ - 🌍 Improve Dutch (nl-NL) locale on the Data Grid
1693
+ - 🐞 Bugfixes
1694
+
1695
+ Special thanks go out to the community contributor who has helped make this release possible:
1696
+ @JoepVerkoelen.
1697
+ Following are all team members who have contributed to this release:
1698
+ @arminmeh, @oliviertassinari.
1699
+
1700
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1701
+
1702
+ ### Data Grid
1703
+
1704
+ #### `@mui/x-data-grid@7.23.4`
1705
+
1706
+ - [DataGrid] Fix header filters showing clear button while empty (#15990) @k-rajat19
1707
+ - [DataGrid] Replace `forwardRef` with a shim for forward compatibility (#15984) @lauri865
1708
+ - [l10n] Improve Dutch (nl-NL) locale (#15920) @JoepVerkoelen
1709
+
1710
+ #### `@mui/x-data-grid-pro@7.23.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1711
+
1712
+ Same changes as in `@mui/x-data-grid@7.23.4`.
1713
+
1714
+ #### `@mui/x-data-grid-premium@7.23.4` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1715
+
1716
+ Same changes as in `@mui/x-data-grid-pro@7.23.4`, plus:
1717
+
1718
+ - [DataGridPremium] Fix column pinning with checkbox selection and row grouping (#15949) @k-rajat19
1719
+
1720
+ ### Docs
1721
+
1722
+ - [docs] Fix outdated link to handbook (#15855) @oliviertassinari
1723
+
1724
+ ## 7.23.3
1725
+
1726
+ _Dec 19, 2024_
1727
+
1728
+ We'd like to offer a big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:
1729
+
1730
+ - 🌍 Improve Korean (ko-KR) locale on the Data Grid
1731
+ - 🐞 Bugfixes
1732
+
1733
+ Special thanks go out to the community contributors who have helped make this release possible:
1734
+ @k-rajat19, @good-jinu.
1735
+ Following are all team members who have contributed to this release:
1736
+ @KenanYusuf, @MBilalShafi, @arminmeh, @flaviendelangle.
1737
+
1738
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1739
+
1740
+ ### Data Grid
1741
+
1742
+ #### `@mui/x-data-grid@7.23.3`
1743
+
1744
+ - [DataGrid] Allow passing custom props to `.main` element (#15919) @MBilalShafi
1745
+ - [DataGrid] Consider `columnGroupHeaderHeight` prop in `getTotalHeaderHeight` method (#15927) @k-rajat19
1746
+ - [DataGrid] Deprecate `indeterminateCheckboxAction` prop (#15862) @MBilalShafi
1747
+ - [DataGrid] Fix `aria-label` value for group checkboxes (#15861) @MBilalShafi
1748
+ - [DataGrid] Fix autosizing with virtualized columns (#15929) @k-rajat19
1749
+ - [DataGrid] Round dimensions to avoid subpixel rendering error (#15873) @KenanYusuf
1750
+ - [DataGrid] Toggle menu on click in `<GridActionsCell />` (#15871) @k-rajat19
1751
+ - [DataGrid] Trigger row spanning computation on rows update (#15872) @MBilalShafi
1752
+ - [l10n] Improve Korean (ko-KR) locale (#15906) @good-jinu
1753
+
1754
+ #### `@mui/x-data-grid-pro@7.23.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1755
+
1756
+ Same changes as in `@mui/x-data-grid@7.23.3`.
1757
+
1758
+ #### `@mui/x-data-grid-premium@7.23.3` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1759
+
1760
+ Same changes as in `@mui/x-data-grid-pro@7.23.3`.
1761
+
1762
+ ### Date and Time Pickers
1763
+
1764
+ #### `@mui/x-date-pickers@7.23.3`
1765
+
1766
+ - [pickers] Add verification to disable skipped hours in spring forward DST (#15918) @flaviendelangle
1767
+
1768
+ #### `@mui/x-date-pickers-pro@7.23.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1769
+
1770
+ Same changes as in `@mui/x-date-pickers@7.23.3`.
1771
+
1772
+ ## 7.23.2
1773
+
1774
+ _Dec 12, 2024_
1775
+
1776
+ We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
1777
+
1778
+ - 🌍 Improve Romanian and Turkish locales on the Data Grid
1779
+ - 🌍 Improve Romanian locale on the Pickers
1780
+ - 📚 Documentation improvements
1781
+ - 🐞 Bugfixes
1782
+
1783
+ Special thanks go out to the community contributors who have helped make this release possible:
1784
+ @ihsanberkozcan, @k-rajat19, @lhilgert9, @nusr, @rares985.
1785
+
1786
+ Following are all team members who have contributed to this release:
1787
+ @alexfauquette, @arminmeh, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy.
1788
+
1789
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1790
+
1791
+ ### Data Grid
1792
+
1793
+ #### `@mui/x-data-grid@7.23.2`
1794
+
1795
+ - [DataGrid] Fix "No rows" displaying when all rows are pinned (#15851) @nusr
1796
+ - [DataGrid] Use `columnsManagement` slot (#15821) @k-rajat19
1797
+ - [l10n] Improve Romanian (ro-RO) locale (#15751) @rares985
1798
+ - [l10n] Improve Turkish (tr-TR) locale (#15748) @ihsanberkozcan
1799
+
1800
+ #### `@mui/x-data-grid-pro@7.23.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1801
+
1802
+ Same changes as in `@mui/x-data-grid@7.23.2`, plus:
1803
+
1804
+ - [DataGridPro] Make Row reordering work with pagination (#15782) @k-rajat19
1805
+
1806
+ #### `@mui/x-data-grid-premium@7.23.2` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1807
+
1808
+ Same changes as in `@mui/x-data-grid-pro@7.23.2`, plus:
1809
+
1810
+ - [DataGridPremium] Fix group column ignoring `valueOptions` for `singleSelect` column type (#15754) @arminmeh
1811
+
1812
+ ### Date and Time Pickers
1813
+
1814
+ #### `@mui/x-date-pickers@7.23.2`
1815
+
1816
+ - [l10n] Improve Romanian (ro-RO) locale (#15751) @rares985
1817
+
1818
+ #### `@mui/x-date-pickers-pro@7.23.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1819
+
1820
+ Same changes as in `@mui/x-date-pickers@7.23.2`.
1821
+
1822
+ ### Charts
1823
+
1824
+ #### `@mui/x-charts@7.23.2`
1825
+
1826
+ - [charts] Fix key generation for the ChartsGrid (#15864) @alexfauquette
1827
+ - [charts] Fix scatter dataset with missing data (#15804) @alexfauquette
1828
+
1829
+ #### `@mui/x-charts-pro@7.23.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1830
+
1831
+ Same changes as in `@mui/x-charts@7.23.2`.
1832
+
1833
+ #### `@mui/x-tree-view@v7.23.2`
1834
+
1835
+ No changes, releasing to keep the versions in sync.
1836
+
1837
+ #### `@mui/x-tree-view-pro@7.23.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1838
+
1839
+ Releasing to benefit from license package fix (#15818).
1840
+
1841
+ ### Docs
1842
+
1843
+ - [docs] Fix typo in charts axis documentation (#15746) @JCQuintas
1844
+ - [docs] Improve Pickers accessible DOM structure description (#15752) @LukasTy
1845
+ - [docs] Use `updateRows` method for list view demos (#15824) @KenanYusuf
1846
+ - [docs] Use date library version from package dev dependencies for sandboxes (#15767) @LukasTy
1847
+
1848
+ ### Core
1849
+
1850
+ - [core] Add `@mui/x-tree-view-pro` to `releaseChangelog` (#15747) @flaviendelangle
1851
+ - [license] Use `console.log` for the error message on Codesandbox to avoid rendering error (#15818) @arminmeh
1852
+
1853
+ ## 7.23.1
1854
+
1855
+ _Dec 5, 2024_
1856
+
1857
+ We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
1858
+
1859
+ - 🌍 Improve German locale on the Data Grid component
1860
+ - 🐞 Bugfixes
1861
+
1862
+ Special thanks go out to the community contributors who have helped make this release possible:
1863
+ @lhilgert9.
1864
+
1865
+ Following are all team members who have contributed to this release:
1866
+ @arthurbalduini, @cherniavskii, @flaviendelangle, @JCQuintas, @LukasTy and @MBilalShafi.
1867
+
1868
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1869
+
1870
+ ### Data Grid
1871
+
1872
+ #### `@mui/x-data-grid@7.23.1`
1873
+
1874
+ - [DataGrid] Make column autosizing work with flex columns (#15712) @cherniavskii
1875
+ - [l10n] Improve German (de-DE) locale (#15641) @lhilgert9
1876
+
1877
+ #### `@mui/x-data-grid-pro@7.23.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1878
+
1879
+ Same changes as in `@mui/x-data-grid@7.23.1`, plus:
1880
+
1881
+ - [DataGridPro] Cleanup pinned rows on removal (#15702) @cherniavskii
1882
+
1883
+ #### `@mui/x-data-grid-premium@7.23.1` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1884
+
1885
+ Same changes as in `@mui/x-data-grid-pro@7.23.1`.
1886
+
1887
+ ### Date and Time Pickers
1888
+
1889
+ #### `@mui/x-date-pickers@7.23.1`
1890
+
1891
+ - [TimePicker] Prevent mouse events after `touchend` event (#15430) @arthurbalduini
1892
+
1893
+ #### `@mui/x-date-pickers-pro@7.23.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1894
+
1895
+ Same changes as in `@mui/x-date-pickers@7.23.1`.
1896
+
1897
+ ### Charts
1898
+
1899
+ #### `@mui/x-charts@7.23.1`
1900
+
1901
+ - [charts] Improve SVG `pattern` and `gradient` support (#15724) @JCQuintas
1902
+
1903
+ #### `@mui/x-charts-pro@7.23.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1904
+
1905
+ Same changes as in `@mui/x-charts@7.23.1`.
1906
+
1907
+ ### Docs
1908
+
1909
+ - [docs] Fix Pickers theme augmentation example (#15675) @LukasTy
1910
+ - [docs] Remove duplicated warning (#15715) @cherniavskii
1911
+ - [test] Force hover in headless Chrome (#15711) @cherniavskii
1912
+ - [docs-infra] Bump `@mui/internal-markdown` to support nested demo imports (#15738) @alexfauquette
1913
+ - [docs] Improve SEO titles for the Data Grid (#15695) @MBilalShafi
1914
+
1915
+ ### Core
1916
+
1917
+ - [core] Add `@mui/x-tree-view-pro` to `releaseChangelog` (#15747) @flaviendelangle
1918
+
1919
+ ## 7.23.0
1920
+
1921
+ _Nov 29, 2024_
1922
+
1923
+ We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
1924
+
1925
+ - ✨ Support for a new display mode on the Data Grid with the [List View feature](https://mui.com/x/react-data-grid/list-view/), offering an extremely flexible way to render datasets and enabling developers to adapt how data is displayed across different screen sizes.
1926
+
1927
+ https://github.com/user-attachments/assets/61286adc-03fc-4323-9739-8ca726fcc16c
1928
+
1929
+ - ⚛️ React 19 support
1930
+ - 📚 Documentation improvements
1931
+ - 🌍 Improve Spanish, Portuguese, Chinese locales on the Data Grid component.
1932
+ - 🌍 Improve Dutch locale on the Date and Time Picker components.
1933
+ - 🐞 Bugfixes
1934
+
1935
+ Special thanks go out to the community contributors who have helped make this release possible:
1936
+ @dloeda, @headironc, @mathzdev, @nphmuller, @lhilgert9, @lauri865.
1937
+ Following are all team members who have contributed to this release:
1938
+ @oliviertassinari, @arminmeh, @KenanYusuf, @flaviendelangle, @MBilalShafi.
1939
+
1940
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1941
+
1942
+ ### Data Grid
1943
+
1944
+ #### `@mui/x-data-grid@v7.23.0`
1945
+
1946
+ - [DataGrid] React 19 support (#15557) @arminmeh
1947
+ - [DataGrid] Change test dom check from `/jsdom/` to `/jsdom|HappyDOM/`. (#15642) @jedesroches
1948
+ - [DataGrid] Fix last separator not being hidden when grid is scrollable (#15551) @KenanYusuf
1949
+ - [DataGrid] Fix order of spread props on toolbar items (#15556) @KenanYusuf
1950
+ - [DataGrid] Fix row-spanning in combination with column-pinning (#15460) @lhilgert9
1951
+ - [DataGrid] Improve resize performance (#15592) @lauri865
1952
+ - [DataGrid] Support column virtualization with dynamic row height (#15567) @cherniavskii
1953
+ - [DataGrid] Improve `GridCell` performance (#15621) @lauri865
1954
+ - [l10n] Improve Chinese (zh-CN) locale (#15570) @headironc
1955
+ - [l10n] Improve Portuguese (pt-PT) locale (#15561) @mathzdev
1956
+
1957
+ #### `@mui/x-data-grid-pro@v7.23.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1958
+
1959
+ Same changes as in `@mui/x-data-grid@v7.23.0`, plus:
1960
+
1961
+ - [DataGridPro] Fix header filtering with `boolean` column type (#15640) @k-rajat19
1962
+ - [DataGridPro] Fix pagination state not updating if the data source response has no rows (#15643) @zinoroman
1963
+ - [DataGridPro] Fix selection propagation issue on initialization (#15593) @MBilalShafi
1964
+
1965
+ #### `@mui/x-data-grid-premium@v7.23.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1966
+
1967
+ Same changes as in `@mui/x-data-grid-pro@v7.23.0`.
1968
+
1969
+ ### Date and Time Pickers
1970
+
1971
+ #### `@mui/x-date-pickers@v7.23.0`
1972
+
1973
+ - [pickers] React 19 support (#15557) @arminmeh
1974
+ - [pickers] Fix DST issue with `America/Asuncion` timezone and `AdapterMoment` (#15653) @flaviendelangle
1975
+ - [pickers] Use `props.referenceDate` timezone when `props.value` and `props.defaultValue` are not defined (#15544) @flaviendelangle
1976
+ - [l10n] Improve Dutch (nl-NL) locale (#15564) @nphmuller
1977
+
1978
+ #### `@mui/x-date-pickers-pro@v7.23.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1979
+
1980
+ Same changes as in `@mui/x-date-pickers@v7.23.0`.
1981
+
1982
+ ### Charts
1983
+
1984
+ #### `@mui/x-charts@v7.23.0`
1985
+
1986
+ - [charts] React 19 support (#15557) @arminmeh
1987
+ - [charts] Prevent invalid `releasePointerCapture` (#15609) @alexfauquette
1988
+
1989
+ #### `@mui/x-charts-pro@v7.23.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1990
+
1991
+ Same changes as in `@mui/x-charts@v7.23.0`.
1992
+
1993
+ ### Tree View
1994
+
1995
+ #### `@mui/x-tree-view@v7.23.0`
1996
+
1997
+ - [TreeView] React 19 support (#15557) @arminmeh
1998
+
1999
+ #### `@mui/x-tree-view-pro@7.23.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2000
+
2001
+ Same changes as in `@mui/x-tree-view@7.23.0`.
2002
+
2003
+ ### Docs
2004
+
2005
+ - [docs] Add data caching to lazy loaded detail panel demo (#15555) @cherniavskii
2006
+ - [docs] Remove selectors section from list view docs (#15639) @KenanYusuf
2007
+ - [docs] Add documentation for the list view feature (#15344) @KenanYusuf
2008
+
2009
+ ### Core
2010
+
2011
+ - [core] Update @mui/monorepo (#15574) @oliviertassinari
2012
+
2013
+ ## 7.22.3
2014
+
2015
+ _Nov 21, 2024_
2016
+
2017
+ We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
2018
+
2019
+ - 📊 Charts Pro get stable. The [zoom](https://mui.com/x/react-charts/zoom-and-pan/) and [Heatmap](https://mui.com/x/react-charts/heatmap/) are now stable.
2020
+ - 🌍 Improve Chinese, Spanish, Swedish, and Turkish locales on the Data Grid
2021
+ - 🐞 Bugfixes
2022
+
2023
+ Special thanks go out to the community contributors who have helped make this release possible:
2024
+ @CarlosLopezLg, @headironc, @viktormelin, @qerkules, @DungTiger, @hendrikpeilke, @k-rajat19.
2025
+ Following are all team members who have contributed to this release:
2026
+ @alexfauquette, @LukasTy, @MBilalShafi, @flaviendelangle.
2027
+
2028
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
2029
+
2030
+ ### Data Grid
2031
+
2032
+ #### `@mui/x-data-grid@7.22.3`
2033
+
2034
+ - [DataGrid] Add prop to override search input props in `GridColumnsManagement` (#15476) @k-rajat19
2035
+ - [DataGrid] Add test coverage for issues fixed in #15184 @MBilalShafi
2036
+ - [DataGrid] Fix memoized selectors with arguments (#15336) @MBilalShafi
2037
+ - [DataGrid] Fix right column group header border with virtualization (#15503) @hendrikpeilke
2038
+ - [DataGrid] Pass reason to `onPaginationModelChange` (#15402) @DungTiger
2039
+ - [DataGrid] Set default overlay height in flex parent layout (#15535) @cherniavskii
2040
+ - [l10n] Improve Chinese (zh-CN) locale (#15365) @headironc
2041
+ - [l10n] Improve Spanish (es-ES) locale (#15369) @CarlosLopezLg
2042
+ - [l10n] Improve Swedish (sv-SE) locale (#15371) @viktormelin
2043
+ - [l10n] Improve Turkish (tr-TR) locale (#15414) @qerkules
2044
+
2045
+ #### `@mui/x-data-grid-pro@7.22.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2046
+
2047
+ Same changes as in `@mui/x-data-grid@7.22.3`.
2048
+
2049
+ #### `@mui/x-data-grid-premium@7.22.3` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
2050
+
2051
+ Same changes as in `@mui/x-data-grid-pro@7.22.3`.
2052
+
2053
+ ### Date and Time Pickers
2054
+
2055
+ #### `@mui/x-date-pickers@7.22.3`
2056
+
2057
+ - [pickers] Always use `props.value` when it changes (#15500) @flaviendelangle
2058
+ - [pickers] Ensure internal value timezone is updated (#15491) @LukasTy
2059
+ - [pickers] Fix `DateTimeRangePicker` error when using format without time (#15341) @fxnoob
2060
+ - [pickers] Fix unused code in `PickersToolbar` component (#15525) @LukasTy
2061
+
2062
+ #### `@mui/x-date-pickers-pro@7.22.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2063
+
2064
+ Same changes as in `@mui/x-date-pickers@7.22.3`, plus:
2065
+
2066
+ - [DateTimeRangePicker] Use time in `referenceDate` when selecting date (#15431) @LukasTy
2067
+
2068
+ ### Charts
2069
+
2070
+ #### `@mui/x-charts@7.22.3`
2071
+
2072
+ No changes since `@mui/x-charts@7.22.2`.
2073
+
2074
+ #### `@mui/x-charts-pro@7.22.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2075
+
2076
+ - [charts-pro] Fix missing typeOverload (#15400) @alexfauquette
2077
+
2078
+ ### Docs
2079
+
2080
+ - [docs] Add `PickersPopper` component to customization playground (#15397) @LukasTy
2081
+ - [docs] Add `next` version links (#15423) @LukasTy
2082
+ - [docs] Use the `loading` state in the demos (#15538) @cherniavskii
2083
+ - [docs] Add data caching to lazy loaded detail panel demo (#15506) @cherniavskii
2084
+
2085
+ - [code-infra] Tentative fix for Argos flaky screenshot tests (#15399) @JCQuintas
2086
+ - [docs-infra] Transpile `.ts` demo files (#15421) @KenanYusuf
2087
+ - [core] Clarify release version bump strategy (#15536) @cherniavskii
2088
+
2089
+ ## 7.22.2
2090
+
2091
+ _Nov 8, 2024_
2092
+
2093
+ We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
2094
+
2095
+ - 👨🏽‍💻 API enhancements
2096
+ - 🐞 Bugfixes
2097
+
2098
+ Special thanks go out to the community contributors who have helped make this release possible:
2099
+ @clins1994, @GuillaumeMeheut, @k-rajat19.
2100
+ Following are all team members who have contributed to this release:
2101
+ @LukasTy, @MBilalShafi, @KenanYusuf, @arminmeh.
2102
+
2103
+ ### Upcoming alpha
2104
+
2105
+ Keep an eye out for the MUI⠀X `v8.0.0-aplha.0` release soon. It will follow a weekly release schedule as always until it is stable.
2106
+
2107
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
2108
+
2109
+ ### Data Grid
2110
+
2111
+ #### `@mui/x-data-grid@7.22.2`
2112
+
2113
+ - [DataGrid] Fix `null` reference error in `GridVirtualScrollbar` (#15289) @MBilalShafi
2114
+ - [DataGrid] Fix filtering with `boolean` column type (#15257) @k-rajat19
2115
+ - [DataGrid] Improve row selection propagation trigger (#15274) @MBilalShafi
2116
+ - [DataGrid] Preprocess edit cell props on backspace/delete (#15223) @KenanYusuf
2117
+ - [DataGrid] Add a recipe to persist column width and order (#15309) @MBilalShafi
2118
+
2119
+ #### `@mui/x-data-grid-pro@7.22.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2120
+
2121
+ Same changes as in `@mui/x-data-grid@7.22.2`, plus:
2122
+
2123
+ - [DataGridPro] Apply default properties if they are not passed in a reorder column (#15320) @k-rajat19
2124
+ - [DataGridPro] Toggle row expansion with `Enter` key in Tree data (#15313) @k-rajat19
2125
+
2126
+ #### `@mui/x-data-grid-premium@7.22.2` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
2127
+
2128
+ Same changes as in `@mui/x-data-grid-pro@7.22.2`, plus:
2129
+
2130
+ - [DataGridPremium] Fix incorrect rows selection count when selection propagation is enabled with row grouping (#15222) @arminmeh
2131
+
2132
+ ### Date and Time Pickers
2133
+
2134
+ #### `@mui/x-date-pickers@7.22.2`
2135
+
2136
+ - [pickers] Add support for `moment-hijri@3.0.0` (#15248) @LukasTy
2137
+
2138
+ #### `@mui/x-date-pickers-pro@7.22.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2139
+
2140
+ Same changes as in `@mui/x-date-pickers@7.22.2`.
2141
+
2142
+ ### Charts
2143
+
2144
+ #### `@mui/x-charts@7.22.2`
2145
+
2146
+ - [charts] Allow `SeriesValueFormatter` to return `null` value (#15295) @clins1994
2147
+ - [charts] Allow configuring the `domainLimit` for each axis. (#15325) @GuillaumeMeheut
2148
+
2149
+ #### `@mui/x-charts-pro@7.0.0-beta.7` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2150
+
2151
+ Same changes as in `@mui/x-charts@7.22.2`.
2152
+
2153
+ ## 7.22.1
2154
+
2155
+ _Nov 1, 2024_
2156
+
2157
+ We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
2158
+
2159
+ - 🐞 Bugfixes
2160
+ - 📚 Documentation improvements
2161
+ - 🌍 Improve Polish (pl-PL) locale on the Date Pickers
2162
+
2163
+ Special thanks go out to the community contributors who have helped make this release possible:
2164
+ @wojtkolos, @dpak-maurya, @k-rajat19.
2165
+ Following are all team members who have contributed to this release:
2166
+ @LukasTy, @arminmeh, @MBilalShafi, @KenanYusuf, @flaviendelangle.
2167
+
2168
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
2169
+
2170
+ ### Data Grid
2171
+
2172
+ #### `@mui/x-data-grid@7.22.1`
2173
+
2174
+ - [DataGrid] Fix right column group header border (#15152) @KenanYusuf
2175
+ - [DataGrid] Fix scroll jump when holding down arrow keys (#15167) @arminmeh
2176
+ - [DataGrid] Move `rowGroupingModelChange` handler to respective hook (#15127) @MBilalShafi
2177
+ - [DataGrid] Prevent error when deleting the last row (#15153) @dpak-maurya
2178
+ - [DataGrid] Fix overlay height in autoHeight mode (#15205) @cherniavskii
2179
+
2180
+ #### `@mui/x-data-grid-pro@7.22.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2181
+
2182
+ Same changes as in `@mui/x-data-grid@7.22.1`, plus:
2183
+
2184
+ - [DataGridPro] Add list view tests (#15166) @KenanYusuf
2185
+
2186
+ #### `@mui/x-data-grid-premium@7.22.1` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
2187
+
2188
+ - [DataGridPremium] Keep focus on the grouping cell on space bar press #15155 @k-rajat19
2189
+
2190
+ ### Date and Time Pickers
2191
+
2192
+ #### `@mui/x-date-pickers@7.22.1`
2193
+
2194
+ - [l10n] Improve Polish (pl-PL) locale (#15177) @wojtkolos
2195
+
2196
+ #### `@mui/x-date-pickers-pro@7.22.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2197
+
2198
+ Same changes as in `@mui/x-date-pickers@7.22.1`.
2199
+
2200
+ ### Tree View
2201
+
2202
+ #### `@mui/x-tree-view@7.22.1`
2203
+
2204
+ - [TreeView] Export `TreeItem2DragAndDropOverlay` and `TreeItem2LabelInput` from the root of each package (#15208) @flaviendelangle
2205
+ - [TreeView] Fix drag and drop color usage (#15149) @LukasTy
2206
+
2207
+ #### `@mui/x-tree-view-pro@7.22.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2208
+
2209
+ Same changes as in `@mui/x-tree-view@7.22.1`.
2210
+
2211
+ ### Docs
2212
+
2213
+ - [docs] Add section explaining how to keep the selection while filtering in Data grid docs (#15199) @arminmeh
2214
+
2215
+ ## 7.22.0
2216
+
2217
+ _Oct 25, 2024_
2218
+
2219
+ We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
2220
+
2221
+ - 🛰 Introduce [server-side support for Data Grid row grouping](https://mui.com/x/react-data-grid/server-side-data/row-grouping/)
2222
+ - 🐞 Bugfixes
2223
+ - 📚 Documentation improvements
2224
+ - 🌍 Improve Portuguese (pt-BR) locale on the Data Grid component
2225
+
2226
+ Special thanks go out to the community contributors who have helped make this release possible:
2227
+ @clins1994, @GITPHLAP, @k-rajat19, @kalyan90, @merotosc, @yash49.
2228
+ Following are all team members who have contributed to this release:
2229
+ @cherniavskii, @flaviendelangle, @LukasTy, @MBilalShafi, @romgrk.
2230
+
2231
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
2232
+
2233
+ ### Data Grid
2234
+
2235
+ #### `@mui/x-data-grid@7.22.0`
2236
+
2237
+ - [DataGrid] Fix `GridPanelAnchor` positioning (#15022) @k-rajat19
2238
+ - [DataGrid] Fix ugly prop-types for the `pageStyle` prop of the `GridPrintExportMenuItem` component (#15015) @flaviendelangle
2239
+ - [DataGrid] Fix value type in filter model for number and boolean column type (#14733) @k-rajat19
2240
+ - [DataGrid] Focus next row when the focused row is deleted (#15067) @cherniavskii
2241
+ - [DataGrid] Remove some usages of `<Box />` and `<Badge />` (#15013) @romgrk
2242
+ - [DataGrid] Fix number of rows to display for page size options with negative value (#14890) @kalyan90
2243
+ - [l10n] Improve Portuguese (pt-BR) locale (#15021) @k-rajat19
2244
+
2245
+ #### `@mui/x-data-grid-pro@7.22.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2246
+
2247
+ Same changes as in `@mui/x-data-grid@7.22.0`, plus:
2248
+
2249
+ - [DataGridPro] Fix column pinning layout (#15073) @cherniavskii
2250
+
2251
+ #### `@mui/x-data-grid-premium@7.22.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
2252
+
2253
+ Same changes as in `@mui/x-data-grid-pro@7.22.0`, plus:
2254
+
2255
+ - [DataGridPremium] Server-side data source with row grouping (#15109) @MBilalShafi
2256
+
2257
+ ### Date and Time Pickers
2258
+
2259
+ #### `@mui/x-date-pickers@7.22.0`
2260
+
2261
+ - [pickers] Fix `DateCalendar` timezone management (#15119) @LukasTy
2262
+ - [pickers] Fix `DigitalClock` time options on a `DST` switch day (#15092) @LukasTy
2263
+
2264
+ #### `@mui/x-date-pickers-pro@7.22.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2265
+
2266
+ Same changes as in `@mui/x-date-pickers@7.22.0`.
2267
+
2268
+ ### Charts
2269
+
2270
+ #### `@mui/x-charts@7.22.0`
2271
+
2272
+ - [charts] Export data type in `onAxisClick(_, data)` callback (#15038) @clins1994
2273
+
2274
+ #### `@mui/x-charts-pro@7.0.0-beta.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2275
+
2276
+ Same changes as in `@mui/x-charts@7.22.0`.
2277
+
2278
+ ### Tree View
2279
+
2280
+ #### `@mui/x-tree-view@7.22.0`
2281
+
2282
+ - [TreeView] Make the cancellable event types public (#14992) @flaviendelangle
2283
+
2284
+ ### Docs
2285
+
2286
+ - [docs] Fix typo in Tree View docs (#15047) @yash49
2287
+
2288
+ ### Core
2289
+
2290
+ - [core] Adjust cherry-pick GH actions (#15101) @LukasTy
2291
+ - [core] Update prettier target branch (#15100) @MBilalShafi
2292
+ - [core] Update some `default-branch-switch` instances for `v7.x` (#15085) @MBilalShafi
2293
+ - [test] Revert to using `fireEvent` instead of `userEvent` (#14927) @LukasTy
2294
+
199
2295
  ## 7.21.0
200
2296
 
201
2297
  _Oct 17, 2024_
@@ -4310,7 +6406,7 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.5`.
4310
6406
 
4311
6407
  #### Breaking changes
4312
6408
 
4313
- - The slot interfaces got renamed to match with `@mui/base` naming.
6409
+ - The slot interfaces have been renamed to match with `@mui/base` naming.
4314
6410
  The `SlotsComponent` suffix has been replaced with `Slots` and `SlotsComponentsProps` with `SlotProps`.
4315
6411
 
4316
6412
  ```diff
@@ -4379,7 +6475,7 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.5`.
4379
6475
 
4380
6476
  The `useClearableField` hook API has been simplified to now take a `props` parameter instead of a `fieldProps`, `InputProps`, `clearable`, `onClear`, `slots` and `slotProps` parameters.
4381
6477
 
4382
- You should now be able to directly pass the returned value from your field hook (e.g: `useDateField`) to `useClearableField`
6478
+ You should now be able to directly pass the returned value from your field hook (for example `useDateField`) to `useClearableField`
4383
6479
 
4384
6480
  ```diff
4385
6481
  const fieldResponse = useDateField(props);
@@ -5352,7 +7448,7 @@ Same changes as in `@mui/x-date-pickers@7.0.0-alpha.0`.
5352
7448
 
5353
7449
  #### Breaking changes
5354
7450
 
5355
- Types for `slots` and `slotProps` got renamed by removing the "Component" which is meaningless for charts.
7451
+ Types for `slots` and `slotProps` have been renamed by removing the "Component" which is meaningless for charts.
5356
7452
  Unless you imported those types, to create a wrapper, you should not be impacted by this breaking change.
5357
7453
 
5358
7454
  Here is an example of the renaming for the `<ChartsTooltip />` component.