@mui/x-data-grid-premium 8.0.0-alpha.9 → 8.0.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (419) hide show
  1. package/CHANGELOG.md +1446 -0
  2. package/DataGridPremium/DataGrid.d.ts +1 -1
  3. package/DataGridPremium/DataGridPremium.d.ts +6 -6
  4. package/DataGridPremium/DataGridPremium.js +61 -35
  5. package/DataGridPremium/index.d.ts +3 -3
  6. package/DataGridPremium/useDataGridPremiumComponent.d.ts +3 -3
  7. package/DataGridPremium/useDataGridPremiumComponent.js +5 -4
  8. package/DataGridPremium/useDataGridPremiumProps.d.ts +2 -2
  9. package/DataGridPremium/useDataGridPremiumProps.js +2 -2
  10. package/README.md +1 -1
  11. package/components/GridAggregationHeader.d.ts +3 -3
  12. package/components/GridAggregationHeader.js +13 -12
  13. package/components/GridAggregationRowOverlay.d.ts +3 -0
  14. package/components/GridAggregationRowOverlay.js +44 -0
  15. package/components/GridBottomContainer.d.ts +3 -0
  16. package/components/GridBottomContainer.js +51 -0
  17. package/components/GridColumnMenuAggregationItem.d.ts +2 -2
  18. package/components/GridColumnMenuAggregationItem.js +36 -46
  19. package/components/GridColumnMenuRowGroupItem.d.ts +1 -1
  20. package/components/GridColumnMenuRowUngroupItem.d.ts +1 -1
  21. package/components/GridDataSourceGroupingCriteriaCell.d.ts +2 -2
  22. package/components/GridDataSourceGroupingCriteriaCell.js +8 -12
  23. package/components/GridExcelExportMenuItem.d.ts +3 -3
  24. package/components/GridFooterCell.d.ts +2 -2
  25. package/components/GridFooterCell.js +5 -6
  26. package/components/GridGroupingColumnFooterCell.d.ts +1 -1
  27. package/components/GridGroupingColumnFooterCell.js +2 -1
  28. package/components/GridGroupingColumnLeafCell.d.ts +1 -1
  29. package/components/GridGroupingColumnLeafCell.js +3 -9
  30. package/components/GridGroupingCriteriaCell.d.ts +2 -2
  31. package/components/GridGroupingCriteriaCell.js +3 -8
  32. package/components/GridPremiumColumnMenu.d.ts +26 -26
  33. package/components/GridPremiumToolbar.d.ts +3 -0
  34. package/components/GridPremiumToolbar.js +31 -0
  35. package/components/export/ExportExcel.d.ts +29 -0
  36. package/components/export/ExportExcel.js +216 -0
  37. package/components/export/index.d.ts +1 -0
  38. package/components/export/index.js +16 -0
  39. package/components/index.d.ts +6 -5
  40. package/components/index.js +13 -1
  41. package/components/promptControl/GridToolbarPromptControl.d.ts +22 -22
  42. package/components/promptControl/GridToolbarPromptControl.js +33 -20
  43. package/components/promptControl/RecordButton.d.ts +9 -9
  44. package/components/promptControl/index.d.ts +1 -1
  45. package/components/reexports.d.ts +1 -1
  46. package/constants/dataGridPremiumDefaultSlotsComponents.d.ts +1 -1
  47. package/constants/dataGridPremiumDefaultSlotsComponents.js +5 -1
  48. package/esm/DataGridPremium/DataGrid.d.ts +8 -0
  49. package/esm/DataGridPremium/DataGridPremium.d.ts +16 -0
  50. package/esm/DataGridPremium/DataGridPremium.js +61 -35
  51. package/esm/DataGridPremium/index.d.ts +3 -0
  52. package/esm/DataGridPremium/useDataGridPremiumComponent.d.ts +4 -0
  53. package/esm/DataGridPremium/useDataGridPremiumComponent.js +6 -5
  54. package/esm/DataGridPremium/useDataGridPremiumProps.d.ts +6 -0
  55. package/esm/DataGridPremium/useDataGridPremiumProps.js +2 -2
  56. package/esm/components/GridAggregationHeader.d.ts +7 -0
  57. package/esm/components/GridAggregationHeader.js +13 -12
  58. package/esm/components/GridAggregationRowOverlay.d.ts +3 -0
  59. package/esm/components/GridAggregationRowOverlay.js +37 -0
  60. package/esm/components/GridBottomContainer.d.ts +3 -0
  61. package/esm/components/GridBottomContainer.js +43 -0
  62. package/esm/components/GridColumnMenuAggregationItem.d.ts +7 -0
  63. package/esm/components/GridColumnMenuAggregationItem.js +36 -46
  64. package/esm/components/GridColumnMenuRowGroupItem.d.ts +3 -0
  65. package/esm/components/GridColumnMenuRowUngroupItem.d.ts +3 -0
  66. package/esm/components/GridDataSourceGroupingCriteriaCell.d.ts +7 -0
  67. package/esm/components/GridDataSourceGroupingCriteriaCell.js +9 -13
  68. package/esm/components/GridExcelExportMenuItem.d.ts +9 -0
  69. package/esm/components/GridFooterCell.d.ts +9 -0
  70. package/esm/components/GridFooterCell.js +5 -6
  71. package/esm/components/GridGroupingColumnFooterCell.d.ts +4 -0
  72. package/esm/components/GridGroupingColumnFooterCell.js +2 -1
  73. package/esm/components/GridGroupingColumnLeafCell.d.ts +4 -0
  74. package/esm/components/GridGroupingColumnLeafCell.js +3 -8
  75. package/esm/components/GridGroupingCriteriaCell.d.ts +7 -0
  76. package/esm/components/GridGroupingCriteriaCell.js +3 -8
  77. package/esm/components/GridPremiumColumnMenu.d.ts +33 -0
  78. package/esm/components/GridPremiumToolbar.d.ts +3 -0
  79. package/esm/components/GridPremiumToolbar.js +23 -0
  80. package/esm/components/export/ExportExcel.d.ts +29 -0
  81. package/esm/components/export/ExportExcel.js +209 -0
  82. package/esm/components/export/index.d.ts +1 -0
  83. package/esm/components/export/index.js +1 -0
  84. package/esm/components/index.d.ts +6 -0
  85. package/esm/components/index.js +2 -1
  86. package/esm/components/promptControl/GridToolbarPromptControl.d.ts +26 -0
  87. package/esm/components/promptControl/GridToolbarPromptControl.js +33 -20
  88. package/esm/components/promptControl/RecordButton.d.ts +16 -0
  89. package/esm/components/promptControl/index.d.ts +1 -0
  90. package/esm/components/reexports.d.ts +1 -0
  91. package/esm/constants/dataGridPremiumDefaultSlotsComponents.d.ts +2 -0
  92. package/esm/constants/dataGridPremiumDefaultSlotsComponents.js +5 -1
  93. package/esm/hooks/features/aggregation/createAggregationLookup.d.ts +17 -0
  94. package/esm/hooks/features/aggregation/createAggregationLookup.js +3 -3
  95. package/esm/hooks/features/aggregation/gridAggregationFunctions.d.ts +8 -0
  96. package/esm/hooks/features/aggregation/gridAggregationInterfaces.d.ts +129 -0
  97. package/esm/hooks/features/aggregation/gridAggregationSelectors.d.ts +13 -0
  98. package/esm/hooks/features/aggregation/gridAggregationSelectors.js +2 -2
  99. package/esm/hooks/features/aggregation/gridAggregationUtils.d.ts +62 -0
  100. package/esm/hooks/features/aggregation/gridAggregationUtils.js +1 -1
  101. package/esm/hooks/features/aggregation/index.d.ts +4 -0
  102. package/esm/hooks/features/aggregation/useGridAggregation.d.ts +6 -0
  103. package/esm/hooks/features/aggregation/useGridAggregation.js +6 -8
  104. package/esm/hooks/features/aggregation/useGridAggregationPreProcessors.d.ts +4 -0
  105. package/esm/hooks/features/aggregation/useGridAggregationPreProcessors.js +7 -6
  106. package/esm/hooks/features/aggregation/wrapColumnWithAggregation.d.ts +81 -0
  107. package/esm/hooks/features/aggregation/wrapColumnWithAggregation.js +6 -5
  108. package/esm/hooks/features/cellSelection/gridCellSelectionInterfaces.d.ts +40 -0
  109. package/esm/hooks/features/cellSelection/gridCellSelectionSelector.d.ts +2 -0
  110. package/esm/hooks/features/cellSelection/gridCellSelectionSelector.js +2 -1
  111. package/esm/hooks/features/cellSelection/index.d.ts +1 -0
  112. package/esm/hooks/features/cellSelection/useGridCellSelection.d.ts +6 -0
  113. package/esm/hooks/features/cellSelection/useGridCellSelection.js +15 -13
  114. package/esm/hooks/features/clipboard/useGridClipboardImport.d.ts +4 -0
  115. package/esm/hooks/features/clipboard/useGridClipboardImport.js +5 -5
  116. package/esm/hooks/features/dataSource/models.d.ts +54 -0
  117. package/esm/hooks/features/dataSource/useGridDataSourcePremium.d.ts +4 -0
  118. package/esm/hooks/features/dataSource/useGridDataSourcePremium.js +13 -7
  119. package/esm/hooks/features/export/gridExcelExportInterface.d.ts +71 -0
  120. package/esm/hooks/features/export/index.d.ts +2 -0
  121. package/esm/hooks/features/export/index.js +1 -1
  122. package/esm/hooks/features/export/serializer/excelSerializer.d.ts +40 -0
  123. package/esm/hooks/features/export/serializer/excelSerializer.js +69 -180
  124. package/esm/hooks/features/export/serializer/setupExcelExportWebWorker.d.ts +2 -0
  125. package/esm/hooks/features/export/serializer/setupExcelExportWebWorker.js +53 -0
  126. package/esm/hooks/features/export/serializer/utils.d.ts +36 -0
  127. package/esm/hooks/features/export/serializer/utils.js +93 -0
  128. package/esm/hooks/features/export/useGridExcelExport.d.ts +11 -0
  129. package/esm/hooks/features/export/useGridExcelExport.js +11 -5
  130. package/esm/hooks/features/index.d.ts +5 -0
  131. package/esm/hooks/features/promptControl/api.d.ts +2 -0
  132. package/esm/hooks/features/promptControl/index.d.ts +2 -0
  133. package/esm/hooks/features/promptControl/types.d.ts +25 -0
  134. package/esm/hooks/features/rowGrouping/createGroupingColDef.d.ts +57 -0
  135. package/esm/hooks/features/rowGrouping/createGroupingColDef.js +5 -5
  136. package/esm/hooks/features/rowGrouping/gridRowGroupingInterfaces.d.ts +44 -0
  137. package/esm/hooks/features/rowGrouping/gridRowGroupingSelector.d.ts +3 -0
  138. package/esm/hooks/features/rowGrouping/gridRowGroupingSelector.js +2 -2
  139. package/esm/hooks/features/rowGrouping/gridRowGroupingUtils.d.ts +54 -0
  140. package/esm/hooks/features/rowGrouping/gridRowGroupingUtils.js +5 -3
  141. package/esm/hooks/features/rowGrouping/index.d.ts +3 -0
  142. package/esm/hooks/features/rowGrouping/useGridDataSourceRowGroupingPreProcessors.d.ts +4 -0
  143. package/esm/hooks/features/rowGrouping/useGridDataSourceRowGroupingPreProcessors.js +3 -3
  144. package/esm/hooks/features/rowGrouping/useGridRowGrouping.d.ts +11 -0
  145. package/esm/hooks/features/rowGrouping/useGridRowGrouping.js +4 -5
  146. package/esm/hooks/features/rowGrouping/useGridRowGroupingPreProcessors.d.ts +4 -0
  147. package/esm/hooks/features/rowGrouping/useGridRowGroupingPreProcessors.js +5 -5
  148. package/esm/hooks/features/rows/index.d.ts +1 -0
  149. package/esm/hooks/features/rows/useGridRowAriaAttributes.d.ts +1 -0
  150. package/esm/hooks/index.d.ts +2 -0
  151. package/esm/hooks/utils/index.d.ts +1 -0
  152. package/esm/hooks/utils/useGridApiContext.d.ts +4 -0
  153. package/esm/hooks/utils/useGridApiRef.d.ts +4 -0
  154. package/esm/hooks/utils/useGridAriaAttributes.d.ts +2 -0
  155. package/esm/hooks/utils/useGridPrivateApiContext.d.ts +2 -0
  156. package/esm/hooks/utils/useGridRootProps.d.ts +2 -0
  157. package/esm/hooks/utils/useKeepGroupedColumnsHidden.d.ts +12 -0
  158. package/esm/hooks/utils/useKeepGroupedColumnsHidden.js +2 -2
  159. package/esm/index.d.ts +23 -0
  160. package/esm/index.js +6 -5
  161. package/esm/locales.d.ts +1 -0
  162. package/esm/material/icons.d.ts +15 -0
  163. package/esm/material/index.d.ts +8 -0
  164. package/esm/models/dataGridPremiumProps.d.ts +162 -0
  165. package/esm/models/gridApiPremium.d.ts +14 -0
  166. package/esm/models/gridGroupingValueGetter.d.ts +4 -0
  167. package/esm/models/gridPastedValueParser.d.ts +4 -0
  168. package/esm/models/gridPremiumIconSlotsComponent.d.ts +28 -0
  169. package/esm/models/gridPremiumSlotsComponent.d.ts +7 -0
  170. package/esm/models/gridStatePremium.d.ts +18 -0
  171. package/esm/models/index.d.ts +4 -0
  172. package/esm/package.json +1 -0
  173. package/esm/setupExcelExportWebWorker.d.ts +1 -0
  174. package/esm/setupExcelExportWebWorker.js +1 -0
  175. package/esm/themeAugmentation/index.d.ts +2 -0
  176. package/esm/themeAugmentation/overrides.d.ts +7 -0
  177. package/esm/themeAugmentation/props.d.ts +15 -0
  178. package/esm/typeOverloads/index.d.ts +2 -0
  179. package/esm/typeOverloads/modules.d.ts +97 -0
  180. package/esm/typeOverloads/reexports.d.ts +17 -0
  181. package/esm/utils/releaseInfo.d.ts +1 -0
  182. package/esm/utils/releaseInfo.js +1 -1
  183. package/hooks/features/aggregation/createAggregationLookup.d.ts +16 -10
  184. package/hooks/features/aggregation/createAggregationLookup.js +2 -2
  185. package/hooks/features/aggregation/gridAggregationFunctions.d.ts +7 -7
  186. package/hooks/features/aggregation/gridAggregationInterfaces.d.ts +81 -82
  187. package/hooks/features/aggregation/gridAggregationSelectors.d.ts +3 -3
  188. package/hooks/features/aggregation/gridAggregationSelectors.js +1 -2
  189. package/hooks/features/aggregation/gridAggregationUtils.d.ts +42 -25
  190. package/hooks/features/aggregation/gridAggregationUtils.js +1 -1
  191. package/hooks/features/aggregation/index.d.ts +4 -4
  192. package/hooks/features/aggregation/useGridAggregation.d.ts +3 -3
  193. package/hooks/features/aggregation/useGridAggregation.js +6 -8
  194. package/hooks/features/aggregation/useGridAggregationPreProcessors.d.ts +3 -3
  195. package/hooks/features/aggregation/useGridAggregationPreProcessors.js +7 -6
  196. package/hooks/features/aggregation/wrapColumnWithAggregation.d.ts +67 -62
  197. package/hooks/features/aggregation/wrapColumnWithAggregation.js +6 -5
  198. package/hooks/features/cellSelection/gridCellSelectionInterfaces.d.ts +34 -34
  199. package/hooks/features/cellSelection/gridCellSelectionSelector.d.ts +2 -2
  200. package/hooks/features/cellSelection/gridCellSelectionSelector.js +2 -2
  201. package/hooks/features/cellSelection/index.d.ts +1 -1
  202. package/hooks/features/cellSelection/useGridCellSelection.d.ts +3 -3
  203. package/hooks/features/cellSelection/useGridCellSelection.js +13 -11
  204. package/hooks/features/clipboard/useGridClipboardImport.d.ts +2 -2
  205. package/hooks/features/clipboard/useGridClipboardImport.js +4 -4
  206. package/hooks/features/dataSource/models.d.ts +41 -34
  207. package/hooks/features/dataSource/useGridDataSourcePremium.d.ts +3 -3
  208. package/hooks/features/dataSource/useGridDataSourcePremium.js +13 -7
  209. package/hooks/features/export/gridExcelExportInterface.d.ts +52 -52
  210. package/hooks/features/export/index.d.ts +2 -2
  211. package/hooks/features/export/index.js +2 -2
  212. package/hooks/features/export/serializer/excelSerializer.d.ts +23 -51
  213. package/hooks/features/export/serializer/excelSerializer.js +74 -187
  214. package/hooks/features/export/serializer/setupExcelExportWebWorker.d.ts +2 -0
  215. package/hooks/features/export/serializer/setupExcelExportWebWorker.js +59 -0
  216. package/hooks/features/export/serializer/utils.d.ts +36 -0
  217. package/hooks/features/export/serializer/utils.js +106 -0
  218. package/hooks/features/export/useGridExcelExport.d.ts +3 -3
  219. package/hooks/features/export/useGridExcelExport.js +10 -3
  220. package/hooks/features/index.d.ts +5 -5
  221. package/hooks/features/promptControl/api.d.ts +2 -2
  222. package/hooks/features/promptControl/index.d.ts +2 -2
  223. package/hooks/features/promptControl/types.d.ts +15 -15
  224. package/hooks/features/rowGrouping/createGroupingColDef.d.ts +44 -32
  225. package/hooks/features/rowGrouping/createGroupingColDef.js +4 -4
  226. package/hooks/features/rowGrouping/gridRowGroupingInterfaces.d.ts +32 -32
  227. package/hooks/features/rowGrouping/gridRowGroupingSelector.d.ts +2 -2
  228. package/hooks/features/rowGrouping/gridRowGroupingSelector.js +2 -2
  229. package/hooks/features/rowGrouping/gridRowGroupingUtils.d.ts +30 -22
  230. package/hooks/features/rowGrouping/gridRowGroupingUtils.js +4 -2
  231. package/hooks/features/rowGrouping/index.d.ts +3 -3
  232. package/hooks/features/rowGrouping/useGridDataSourceRowGroupingPreProcessors.d.ts +3 -3
  233. package/hooks/features/rowGrouping/useGridDataSourceRowGroupingPreProcessors.js +3 -3
  234. package/hooks/features/rowGrouping/useGridRowGrouping.d.ts +3 -3
  235. package/hooks/features/rowGrouping/useGridRowGrouping.js +4 -5
  236. package/hooks/features/rowGrouping/useGridRowGroupingPreProcessors.d.ts +3 -3
  237. package/hooks/features/rowGrouping/useGridRowGroupingPreProcessors.js +5 -5
  238. package/hooks/features/rows/index.d.ts +1 -1
  239. package/hooks/features/rows/useGridRowAriaAttributes.d.ts +1 -1
  240. package/hooks/index.d.ts +2 -2
  241. package/hooks/utils/index.d.ts +1 -1
  242. package/hooks/utils/useGridApiContext.d.ts +4 -2
  243. package/hooks/utils/useGridApiRef.d.ts +4 -2
  244. package/hooks/utils/useGridAriaAttributes.d.ts +1 -1
  245. package/hooks/utils/useGridPrivateApiContext.d.ts +2 -2
  246. package/hooks/utils/useGridRootProps.d.ts +2 -2
  247. package/hooks/utils/useKeepGroupedColumnsHidden.d.ts +4 -4
  248. package/hooks/utils/useKeepGroupedColumnsHidden.js +2 -2
  249. package/index.d.ts +9 -17
  250. package/index.js +2 -11
  251. package/locales.d.ts +1 -1
  252. package/material/icons.d.ts +6 -6
  253. package/material/index.d.ts +6 -6
  254. package/models/dataGridPremiumProps.d.ts +140 -135
  255. package/models/gridApiPremium.d.ts +4 -6
  256. package/models/gridGroupingValueGetter.d.ts +2 -2
  257. package/models/gridPastedValueParser.d.ts +2 -2
  258. package/models/gridPremiumIconSlotsComponent.d.ts +26 -26
  259. package/models/gridPremiumSlotsComponent.d.ts +2 -3
  260. package/models/gridStatePremium.d.ts +7 -7
  261. package/models/index.d.ts +4 -4
  262. package/modern/DataGridPremium/DataGrid.d.ts +8 -0
  263. package/modern/DataGridPremium/DataGridPremium.d.ts +16 -0
  264. package/modern/DataGridPremium/DataGridPremium.js +61 -35
  265. package/modern/DataGridPremium/index.d.ts +3 -0
  266. package/modern/DataGridPremium/useDataGridPremiumComponent.d.ts +4 -0
  267. package/modern/DataGridPremium/useDataGridPremiumComponent.js +6 -5
  268. package/modern/DataGridPremium/useDataGridPremiumProps.d.ts +6 -0
  269. package/modern/DataGridPremium/useDataGridPremiumProps.js +2 -2
  270. package/modern/components/GridAggregationHeader.d.ts +7 -0
  271. package/modern/components/GridAggregationHeader.js +13 -12
  272. package/modern/components/GridAggregationRowOverlay.d.ts +3 -0
  273. package/modern/components/GridAggregationRowOverlay.js +37 -0
  274. package/modern/components/GridBottomContainer.d.ts +3 -0
  275. package/modern/components/GridBottomContainer.js +43 -0
  276. package/modern/components/GridColumnMenuAggregationItem.d.ts +7 -0
  277. package/modern/components/GridColumnMenuAggregationItem.js +36 -46
  278. package/modern/components/GridColumnMenuRowGroupItem.d.ts +3 -0
  279. package/modern/components/GridColumnMenuRowUngroupItem.d.ts +3 -0
  280. package/modern/components/GridDataSourceGroupingCriteriaCell.d.ts +7 -0
  281. package/modern/components/GridDataSourceGroupingCriteriaCell.js +9 -13
  282. package/modern/components/GridExcelExportMenuItem.d.ts +9 -0
  283. package/modern/components/GridFooterCell.d.ts +9 -0
  284. package/modern/components/GridFooterCell.js +5 -6
  285. package/modern/components/GridGroupingColumnFooterCell.d.ts +4 -0
  286. package/modern/components/GridGroupingColumnFooterCell.js +2 -1
  287. package/modern/components/GridGroupingColumnLeafCell.d.ts +4 -0
  288. package/modern/components/GridGroupingColumnLeafCell.js +3 -8
  289. package/modern/components/GridGroupingCriteriaCell.d.ts +7 -0
  290. package/modern/components/GridGroupingCriteriaCell.js +3 -8
  291. package/modern/components/GridPremiumColumnMenu.d.ts +33 -0
  292. package/modern/components/GridPremiumToolbar.d.ts +3 -0
  293. package/modern/components/GridPremiumToolbar.js +23 -0
  294. package/modern/components/export/ExportExcel.d.ts +29 -0
  295. package/modern/components/export/ExportExcel.js +209 -0
  296. package/modern/components/export/index.d.ts +1 -0
  297. package/modern/components/export/index.js +1 -0
  298. package/modern/components/index.d.ts +6 -0
  299. package/modern/components/index.js +2 -1
  300. package/modern/components/promptControl/GridToolbarPromptControl.d.ts +26 -0
  301. package/modern/components/promptControl/GridToolbarPromptControl.js +33 -20
  302. package/modern/components/promptControl/RecordButton.d.ts +16 -0
  303. package/modern/components/promptControl/index.d.ts +1 -0
  304. package/modern/components/reexports.d.ts +1 -0
  305. package/modern/constants/dataGridPremiumDefaultSlotsComponents.d.ts +2 -0
  306. package/modern/constants/dataGridPremiumDefaultSlotsComponents.js +5 -1
  307. package/modern/hooks/features/aggregation/createAggregationLookup.d.ts +17 -0
  308. package/modern/hooks/features/aggregation/createAggregationLookup.js +3 -3
  309. package/modern/hooks/features/aggregation/gridAggregationFunctions.d.ts +8 -0
  310. package/modern/hooks/features/aggregation/gridAggregationInterfaces.d.ts +129 -0
  311. package/modern/hooks/features/aggregation/gridAggregationSelectors.d.ts +13 -0
  312. package/modern/hooks/features/aggregation/gridAggregationSelectors.js +2 -2
  313. package/modern/hooks/features/aggregation/gridAggregationUtils.d.ts +62 -0
  314. package/modern/hooks/features/aggregation/gridAggregationUtils.js +1 -1
  315. package/modern/hooks/features/aggregation/index.d.ts +4 -0
  316. package/modern/hooks/features/aggregation/useGridAggregation.d.ts +6 -0
  317. package/modern/hooks/features/aggregation/useGridAggregation.js +6 -8
  318. package/modern/hooks/features/aggregation/useGridAggregationPreProcessors.d.ts +4 -0
  319. package/modern/hooks/features/aggregation/useGridAggregationPreProcessors.js +7 -6
  320. package/modern/hooks/features/aggregation/wrapColumnWithAggregation.d.ts +81 -0
  321. package/modern/hooks/features/aggregation/wrapColumnWithAggregation.js +6 -5
  322. package/modern/hooks/features/cellSelection/gridCellSelectionInterfaces.d.ts +40 -0
  323. package/modern/hooks/features/cellSelection/gridCellSelectionSelector.d.ts +2 -0
  324. package/modern/hooks/features/cellSelection/gridCellSelectionSelector.js +2 -1
  325. package/modern/hooks/features/cellSelection/index.d.ts +1 -0
  326. package/modern/hooks/features/cellSelection/useGridCellSelection.d.ts +6 -0
  327. package/modern/hooks/features/cellSelection/useGridCellSelection.js +15 -13
  328. package/modern/hooks/features/clipboard/useGridClipboardImport.d.ts +4 -0
  329. package/modern/hooks/features/clipboard/useGridClipboardImport.js +5 -5
  330. package/modern/hooks/features/dataSource/models.d.ts +54 -0
  331. package/modern/hooks/features/dataSource/useGridDataSourcePremium.d.ts +4 -0
  332. package/modern/hooks/features/dataSource/useGridDataSourcePremium.js +13 -7
  333. package/modern/hooks/features/export/gridExcelExportInterface.d.ts +71 -0
  334. package/modern/hooks/features/export/index.d.ts +2 -0
  335. package/modern/hooks/features/export/index.js +1 -1
  336. package/modern/hooks/features/export/serializer/excelSerializer.d.ts +40 -0
  337. package/modern/hooks/features/export/serializer/excelSerializer.js +69 -180
  338. package/modern/hooks/features/export/serializer/setupExcelExportWebWorker.d.ts +2 -0
  339. package/modern/hooks/features/export/serializer/setupExcelExportWebWorker.js +53 -0
  340. package/modern/hooks/features/export/serializer/utils.d.ts +36 -0
  341. package/modern/hooks/features/export/serializer/utils.js +93 -0
  342. package/modern/hooks/features/export/useGridExcelExport.d.ts +11 -0
  343. package/modern/hooks/features/export/useGridExcelExport.js +11 -5
  344. package/modern/hooks/features/index.d.ts +5 -0
  345. package/modern/hooks/features/promptControl/api.d.ts +2 -0
  346. package/modern/hooks/features/promptControl/index.d.ts +2 -0
  347. package/modern/hooks/features/promptControl/types.d.ts +25 -0
  348. package/modern/hooks/features/rowGrouping/createGroupingColDef.d.ts +57 -0
  349. package/modern/hooks/features/rowGrouping/createGroupingColDef.js +5 -5
  350. package/modern/hooks/features/rowGrouping/gridRowGroupingInterfaces.d.ts +44 -0
  351. package/modern/hooks/features/rowGrouping/gridRowGroupingSelector.d.ts +3 -0
  352. package/modern/hooks/features/rowGrouping/gridRowGroupingSelector.js +2 -2
  353. package/modern/hooks/features/rowGrouping/gridRowGroupingUtils.d.ts +54 -0
  354. package/modern/hooks/features/rowGrouping/gridRowGroupingUtils.js +5 -3
  355. package/modern/hooks/features/rowGrouping/index.d.ts +3 -0
  356. package/modern/hooks/features/rowGrouping/useGridDataSourceRowGroupingPreProcessors.d.ts +4 -0
  357. package/modern/hooks/features/rowGrouping/useGridDataSourceRowGroupingPreProcessors.js +3 -3
  358. package/modern/hooks/features/rowGrouping/useGridRowGrouping.d.ts +11 -0
  359. package/modern/hooks/features/rowGrouping/useGridRowGrouping.js +4 -5
  360. package/modern/hooks/features/rowGrouping/useGridRowGroupingPreProcessors.d.ts +4 -0
  361. package/modern/hooks/features/rowGrouping/useGridRowGroupingPreProcessors.js +5 -5
  362. package/modern/hooks/features/rows/index.d.ts +1 -0
  363. package/modern/hooks/features/rows/useGridRowAriaAttributes.d.ts +1 -0
  364. package/modern/hooks/index.d.ts +2 -0
  365. package/modern/hooks/utils/index.d.ts +1 -0
  366. package/modern/hooks/utils/useGridApiContext.d.ts +4 -0
  367. package/modern/hooks/utils/useGridApiRef.d.ts +4 -0
  368. package/modern/hooks/utils/useGridAriaAttributes.d.ts +2 -0
  369. package/modern/hooks/utils/useGridPrivateApiContext.d.ts +2 -0
  370. package/modern/hooks/utils/useGridRootProps.d.ts +2 -0
  371. package/modern/hooks/utils/useKeepGroupedColumnsHidden.d.ts +12 -0
  372. package/modern/hooks/utils/useKeepGroupedColumnsHidden.js +2 -2
  373. package/modern/index.d.ts +23 -0
  374. package/modern/index.js +1 -7
  375. package/modern/locales.d.ts +1 -0
  376. package/modern/material/icons.d.ts +15 -0
  377. package/modern/material/index.d.ts +8 -0
  378. package/modern/models/dataGridPremiumProps.d.ts +162 -0
  379. package/modern/models/gridApiPremium.d.ts +14 -0
  380. package/modern/models/gridGroupingValueGetter.d.ts +4 -0
  381. package/modern/models/gridPastedValueParser.d.ts +4 -0
  382. package/modern/models/gridPremiumIconSlotsComponent.d.ts +28 -0
  383. package/modern/models/gridPremiumSlotsComponent.d.ts +7 -0
  384. package/modern/models/gridStatePremium.d.ts +18 -0
  385. package/modern/models/index.d.ts +4 -0
  386. package/modern/package.json +1 -0
  387. package/modern/setupExcelExportWebWorker.d.ts +1 -0
  388. package/modern/setupExcelExportWebWorker.js +1 -0
  389. package/modern/themeAugmentation/index.d.ts +2 -0
  390. package/modern/themeAugmentation/overrides.d.ts +7 -0
  391. package/modern/themeAugmentation/props.d.ts +15 -0
  392. package/modern/typeOverloads/index.d.ts +2 -0
  393. package/modern/typeOverloads/modules.d.ts +97 -0
  394. package/modern/typeOverloads/reexports.d.ts +17 -0
  395. package/modern/utils/releaseInfo.d.ts +1 -0
  396. package/modern/utils/releaseInfo.js +1 -1
  397. package/package.json +42 -9
  398. package/setupExcelExportWebWorker.d.ts +1 -0
  399. package/setupExcelExportWebWorker.js +12 -0
  400. package/themeAugmentation/index.d.ts +2 -2
  401. package/themeAugmentation/overrides.d.ts +3 -4
  402. package/themeAugmentation/props.d.ts +9 -11
  403. package/tsconfig.build.tsbuildinfo +1 -0
  404. package/typeOverloads/index.d.ts +1 -1
  405. package/typeOverloads/modules.d.ts +75 -82
  406. package/typeOverloads/reexports.d.ts +5 -5
  407. package/utils/releaseInfo.d.ts +1 -1
  408. package/utils/releaseInfo.js +1 -1
  409. package/DataGridPremium/package.json +0 -6
  410. package/components/package.json +0 -6
  411. package/esm/hooks/features/dataSource/cache.js +0 -3
  412. package/hooks/features/dataSource/cache.d.ts +0 -2
  413. package/hooks/features/dataSource/cache.js +0 -9
  414. package/hooks/package.json +0 -6
  415. package/material/package.json +0 -6
  416. package/models/package.json +0 -6
  417. package/modern/hooks/features/dataSource/cache.js +0 -3
  418. package/themeAugmentation/package.json +0 -6
  419. package/typeOverloads/package.json +0 -6
package/CHANGELOG.md CHANGED
@@ -5,6 +5,1025 @@
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-beta.0
9
+
10
+ <img width="100%" alt="MUI X v8 Beta is live" src="https://github.com/user-attachments/assets/61ec4dd8-c946-456b-8b45-d51de8772f5d">
11
+
12
+ _Mar 18, 2025_
13
+
14
+ We'd like to offer a big thanks to the 21 contributors who made this release possible. Here are some highlights ✨:
15
+
16
+ - 🚀 Add [Time Range Picker](https://next.mui.com/x/react-date-pickers/time-range-picker/) component
17
+ - 🎁 Add support for `@mui/material` version 7 in all X packages
18
+ - 🐞 Bugfixes
19
+ - 🌍 Improve Chinese (zh-CN), (zh-HK), (zh-TW), Czech (cs-CZ), Korean (ko-KR) and Slovak (sk-Sk) locales on the Data Grid
20
+ - 🌍 Improve Chinese (zh-CN), (zh-HK) and (zh-TW) locales on the Pickers
21
+
22
+ ## Breaking changes
23
+
24
+ - ℹ️ The peer dependency on `@mui/material` has been updated to accept only v7.
25
+ This has been done to increase the adoption rate of ESM.
26
+ Since only v7 of `@mui/material` has proper ESM support, we decided to help with its adoption and fix numerous issues using X packages in environments where transpiling is not an option.
27
+
28
+ Special thanks go out to the community members for their valuable contributions:
29
+ @Blake-McCullough, @hlavacz, @k-rajat19, @layerok, @nusr, @owais635, @yelahj.
30
+ Following are all team members who have contributed to this release:
31
+ @alexfauquette, @arminmeh, @bernardobelchior, @cherniavskii, @DiegoAndai, @flaviendelangle, @Janpot, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @michelengelen, @noraleonte, @romgrk.
32
+
33
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
34
+
35
+ ## Alpha release highlights
36
+
37
+ Below are the highlights of the alpha releases leading up to this beta release:
38
+
39
+ - ⚛️ React 19 support.
40
+
41
+ - 🛠️ New and improved Data Grid [Toolbar component](https://next.mui.com/x/react-data-grid/components/toolbar/).
42
+ - 📦 Data Grid [data source](https://next.mui.com/x/react-data-grid/server-side-data/) is now available in the Community plan.
43
+ - 🚫 Add ["No columns" overlay](https://next.mui.com/x/react-data-grid/overlays/#no-columns-overlay) to Data Grid.
44
+ - 🍬 Improved design for Data Grid [Header filters](https://next.mui.com/x/react-data-grid/filtering/header-filters/).
45
+ - 🔄 Add Data Grid [Scroll restoration](https://next.mui.com/x/react-data-grid/scrolling/#scroll-restoration).
46
+ - 💫 Support [aggregation with server-side data](https://next.mui.com/x/react-data-grid/server-side-data/aggregation/).
47
+ - 🎁 Support [Server-side lazy loading](https://next.mui.com/x/react-data-grid/server-side-data/lazy-loading/) on the Data Grid.
48
+ - 🎯 Improved [data caching](https://next.mui.com/x/react-data-grid/server-side-data/#data-caching).
49
+ - 🏎️ Improve Data Grid aggregation, Excel export serialization, mount, resize and scrolling performance.
50
+ - 🎨 Improve Data Grid theming and add default background color.
51
+
52
+ - 📊 New Pro chart: [Funnel](https://next.mui.com/x/react-charts/funnel/).
53
+ - 📊 New Community chart: [Radar](https://next.mui.com/x/react-charts/radar/) is available in preview for testing.
54
+ - 📊 Charts legend is now an HTML element which can be styled more easily.
55
+ - 📊 Create [custom HTML components](https://next.mui.com/x/react-charts/components/#html-components) using chart data.
56
+ - 📊 Refactor Charts [Tooltip customization](https://next.mui.com/x/react-charts/tooltip/#overriding-content).
57
+ - 📊 Improve Charts [composition](https://next.mui.com/x/react-charts/composition/#overview).
58
+ - 📊 Charts support server-side rendering under [some conditions](https://next.mui.com/x/react-charts/getting-started/#server-side-rendering).
59
+ - 📊 Add a new API to support multiple axes (decouple `margin` and `axis-size`)
60
+
61
+ - 🔁 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.
62
+
63
+ ### Data Grid
64
+
65
+ #### `@mui/x-data-grid@8.0.0-beta.0`
66
+
67
+ - [DataGrid] Add a slot for unsort icon in column menu (#16918) @layerok
68
+ - [DataGrid] Add click propagation and prevents default on `toggleMenu` click (#16845) @michelengelen
69
+ - [DataGrid] Anchor preference panel to columns/filter trigger (#16953) @KenanYusuf
70
+ - [DataGrid] Fix `QuickFilter` debounce overriding input value (#16856) @KenanYusuf
71
+ - [DataGrid] Fix `printOptions` not respecting `hideFooter` root prop (#14863) @k-rajat19
72
+ - [DataGrid] Fix `processRowUpdate()` error if the row is removed before it is executed (#16741) @arminmeh
73
+ - [DataGrid] Fix bug with adding and removing columns in active edit state (#16888) @Blake-McCullough
74
+ - [DataGrid] Fix columns update not restoring column definition defaults (#16970) @cherniavskii
75
+ - [DataGrid] Fix page scrolling when preference panel is opened (#17004) @KenanYusuf
76
+ - [DataGrid] Fix visual issue with pinned columns and row spanning (#16923) @MBilalShafi
77
+ - [DataGrid] Make column header menu button aria-labels unique (#16796) @owais635
78
+ - [DataGrid] Refactor: create base Pagination (#16759) @romgrk
79
+ - [DataGrid] Update CSS variable naming convention to singular (#16993) @KenanYusuf
80
+ - [DataGrid] Use Material UI CSS vars (#16962) @KenanYusuf
81
+ - [l10n] Improve Chinese (zh-CN), (zh-HK) and (zh-TW) locales (#15230, #16898 and #16966) @nusr
82
+ - [l10n] Improve Czech (cs-CZ) and Slovak (sk-Sk) locales (#16968) @hlavacz
83
+ - [l10n] Improve Korean (ko-KR) locale (#16807) @yelahj
84
+
85
+ #### `@mui/x-data-grid-pro@8.0.0-beta.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
86
+
87
+ Same changes as in `@mui/x-data-grid@8.0.0-beta.0`, plus:
88
+
89
+ - [DataGridPro] Fix header filters not displaying restored values (#16855) @MBilalShafi
90
+ - [DataGridPro] Fix infinite loading not reacting when scrolling to the end (#16926) @arminmeh
91
+
92
+ #### `@mui/x-data-grid-premium@8.0.0-beta.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
93
+
94
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-beta.0`, plus:
95
+
96
+ - [DataGridPremium] Fix selection propagation issues with controlled state (#16810) @MBilalShafi
97
+
98
+ ### Date and Time Pickers
99
+
100
+ #### Breaking changes
101
+
102
+ - The `useClearableField` hook has been removed.
103
+ The custom field component now receives the `clearable` and `onClear` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#useclearablefield).
104
+ - The `ExportedUseClearableFieldProps`, `UseClearableFieldSlots`, `UseClearableFieldSlotProps`, and `UseClearableFieldResponse` types have been removed — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#removed-types).
105
+
106
+ #### `@mui/x-date-pickers@8.0.0-beta.0`
107
+
108
+ - [l10n] Improve Chinese (zh-CN), (zh-HK) and (zh-TW) locales (#16966) @nusr
109
+ - [pickers] Add the Time Range Picker component (#9431) @LukasTy and @flaviendelangle
110
+ - [pickers] Add valid aria labels to the range picker opening button (#16799) @flaviendelangle
111
+ - [pickers] Always use `props.value` as the source of truth when defined (#16853) @flaviendelangle
112
+ - [pickers] Avoid passing unexpected `focusedView` to time renderers (#16869) @LukasTy
113
+ - [pickers] Improve JSDoc (#16858) @flaviendelangle
114
+ - [pickers] Remove `useClearableField` hook (#16859) @LukasTy
115
+
116
+ #### `@mui/x-date-pickers-pro@8.0.0-beta.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
117
+
118
+ Same changes as in `@mui/x-date-pickers@8.0.0-beta.0`, plus:
119
+
120
+ - [DateRangeCalendar] Do not update the previewed day when hovering a day and the value is empty (#16892) @flaviendelangle
121
+ - [TimeRangePicker] Shift popper between start and end input on multi input field (#16920) @LukasTy
122
+
123
+ ### Charts
124
+
125
+ #### Breaking changes
126
+
127
+ - Tick labels in the x-axis of cartesian charts will now have an ellipsis applied to prevent overflow.
128
+ If your tick labels are being clipped sooner than you would like, you can increase the x-axis size by increasing its `height` property.
129
+ The default line-height has also been changed to 1.25, so if you aren't customizing the line height for x-axis tick labels, make sure to double check if the result is desirable.
130
+
131
+ #### `@mui/x-charts@8.0.0-beta.0`
132
+
133
+ - [charts] Add axis highlight to the radar (#16868) @alexfauquette
134
+ - [charts] Add radar labels (#16839) @alexfauquette
135
+ - [charts] Allow breaking line for radar labels (#16947) @alexfauquette
136
+ - [charts] Allow circular grid on radar chart (#16870) @alexfauquette
137
+ - [charts] Allow customizing shape in scatter charts (#16640) @bernardobelchior
138
+ - [charts] Avoid spreading props in demos (#16857) @bernardobelchior
139
+ - [charts] Fix React 18 tests failing due to missing `forwardRef` (#16894) @bernardobelchior
140
+ - [charts] Fix line highlight position with RTL (#16994) @alexfauquette
141
+ - [charts] Fix interaction performance (#16897) @JCQuintas
142
+ - [charts] Fix x-axis tick label overflow (#16709) @bernardobelchior
143
+ - [charts] Grid support time step below 1s (#16957) @alexfauquette
144
+ - [charts] Improve radar slice (#16932) @alexfauquette
145
+ - [charts] Radar add option to highlighting series (#16940) @alexfauquette
146
+ - [charts] Refactor zoom `isInteracting` behavior directly to community code (#16999) @JCQuintas
147
+ - [charts] Remove `fireEvent` usage from tests (#17006) @JCQuintas
148
+ - [charts] Remove dead voronoi code (#16886) @JCQuintas
149
+ - [charts] Remove the polar axis plugin from the default plugins of the ChartContainer (#16936) @alexfauquette
150
+ - [charts] Rename `useIsClient` (#16937) @bernardobelchior
151
+
152
+ #### `@mui/x-charts-pro@8.0.0-beta.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
153
+
154
+ Same changes as in `@mui/x-charts@8.0.0-beta.0`.
155
+
156
+ ### Tree View
157
+
158
+ #### `@mui/x-tree-view@8.0.0-beta.0`
159
+
160
+ Internal changes.
161
+
162
+ #### `@mui/x-tree-view-pro@8.0.0-beta.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
163
+
164
+ Same changes as in `@mui/x-tree-view@8.0.0-beta.0`.
165
+
166
+ ### Docs
167
+
168
+ - [docs] Add the Time Range Picker to relevant validation demos (#16919) @LukasTy
169
+ - [docs] Adjust Picker field lifecycle explanation (#16901) @LukasTy
170
+ - [docs] Fix custom detail panel toggle state update (#16929) @nusr
171
+ - [docs] Fix Pickers custom field with Autocomplete demo (#16863) @LukasTy
172
+ - [docs] Fix link to the lazy loading demo for the DataGrid (#16907) @nusr
173
+ - [docs] Improve sparkline demo (#16911) @alexfauquette
174
+ - [docs] Remove `showQuickFilter: true` toolbar prop from demos (#17003) @KenanYusuf
175
+
176
+ ### Core
177
+
178
+ - [core] Fix proptypes and API docs after merge (#16934) @LukasTy
179
+ - [core] Update `@mui/utils` dependency to only v7 (#16928) @Janpot
180
+ - [core] Use MUI Core v7 libraries in packages and docs (#16771) @DiegoAndai
181
+ - [code-infra] Avoid loading package.json with relative path (#16931) @Janpot
182
+ - [code-infra] Bump `cimg/node` image version (#16964) @LukasTy
183
+ - [code-infra] Create `Tanstack query` renovate group (#16989) @LukasTy
184
+ - [code-infra] Fix inconsistent argos test (#16921) @JCQuintas
185
+ - [infra] Added issue permission to workflow (#16865) @michelengelen
186
+ - [infra] Make tests on React 18 part of pipeline (#16933) @LukasTy
187
+ - [infra] changed event trigger from `pull_request` to `pull_request_target` (#16902) @michelengelen
188
+ - [test] Fix Apple M3 failing to execute unit test cases (#16959) @nusr
189
+
190
+ ## 8.0.0-alpha.14
191
+
192
+ _Mar 7, 2025_
193
+
194
+ We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
195
+
196
+ - 🚀📊 New Pro Chart: It is now possible to create Funnel charts—perfect for visualizing conversions, sales pipelines and more!
197
+ <img width="418" alt="Screenshot 2025-01-31 at 12 22 31" src="https://github.com/user-attachments/assets/8cd26821-5f11-46bf-a9bb-34d212880a47" />
198
+ - 🎁 The first iteration of the radar chart is available. Features and refinements will be added in the coming weeks.
199
+ - 🛠️ New and improved [Toolbar component](https://next.mui.com/x/react-data-grid/components/toolbar/) for the data grid
200
+ - 🐞 Bugfixes
201
+
202
+ Special thanks go out to the community member for their valuable contributions:
203
+ @vadimka123.
204
+
205
+ Following are all team members who have contributed to this release:
206
+ @alexfauquette, @arminmeh, @bernardobelchior, @cherniavskii, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @michelengelen, @noraleonte, @oliviertassinari.
207
+
208
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
209
+
210
+ ### Data Grid
211
+
212
+ #### Breaking changes
213
+
214
+ - The density selector has been removed from the toolbar. It is still possible to set the density programmatically via the `density` prop. A density selector can be added to a custom toolbar passed to `slots.toolbar`. See [Toolbar component—Settings menu](https://next.mui.com/x/react-data-grid/components/toolbar/#settings-menu) for an example.
215
+ - The quick filter is now shown in the toolbar by default. Use `slotProps={{ toolbar: { showQuickFilter: false } }}` to hide it.
216
+ - The `<GridSaveAltIcon />` icon is not exported anymore. Import `SaveAlt` from `@mui/icons-material` instead.
217
+
218
+ #### `@mui/x-data-grid@8.0.0-alpha.14`
219
+
220
+ - [DataGrid] Fix `aria-hidden` console error when scrollbar is dragged (#16829) @arminmeh
221
+ - [DataGrid] Fix scroll jump with dynamic row height (#16763) @cherniavskii
222
+ - [DataGrid] New `<Toolbar />` component (#14611) @KenanYusuf
223
+ - [DataGrid] Use new toolbar by default (#16814) @KenanYusuf
224
+ - [DataGrid] Remove the quick filtering on a given column (#16738) @vadimka123
225
+
226
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.14` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
227
+
228
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.14`.
229
+
230
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.14` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
231
+
232
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.14`.
233
+
234
+ ### Date and Time Pickers
235
+
236
+ #### Breaking changes
237
+
238
+ - All Date Time Picker variants now use Digital Clock for time editing.
239
+ - Stop passing invalid date to `onChange` when the date is partially filled — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#treat-partially-filled-date-as-null-in-onchange).
240
+
241
+ #### `@mui/x-date-pickers@8.0.0-alpha.14`
242
+
243
+ - [DateTimePicker] Use Digital Clock in all component variants (#16678) @LukasTy
244
+ - [fields] Always use `props.value` as the source of truth when defined (#15875) @flaviendelangle
245
+ - [fields] Fix Fields aria relationship with `helperText` (#16821) @LukasTy
246
+ - [pickers] Add `TValidationProps` generic to the `PickerManager` interface (#16832) @flaviendelangle
247
+ - [pickers] Fix `edge` property setting in different button position cases (#16838) @LukasTy
248
+ - [pickers] Fix typo in JSDoc (#16831) @flaviendelangle
249
+ - [pickers] Refactor the files in the `usePicker` folder (#16680) @flaviendelangle
250
+
251
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.14` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
252
+
253
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.14`.
254
+
255
+ ### Charts
256
+
257
+ #### `@mui/x-charts@8.0.0-alpha.14`
258
+
259
+ - [charts] Fix `undefined` behaving differently from missing value for axis size (#16844) @bernardobelchior
260
+ - [charts] Fix x-axis text anchor default when language is RTL (#16836) @bernardobelchior
261
+ - [charts] Add Radar chart (#16406) @alexfauquette
262
+ - [charts] Move series default color generation in the series config (#16752) @alexfauquette
263
+ - [charts] Render axis title within axis size (#16730) @bernardobelchior
264
+ - [charts] Split `defaultizeAxis` function into two (#16745) @bernardobelchior
265
+ - [charts] Warn if axes data don't have enough elements (#16830) @alexfauquette
266
+ - [charts] XAxis: Add defaults for `textAnchor` and `dominantBaseline` based on `angle` (#16817) @bernardobelchior
267
+
268
+ #### `@mui/x-charts-pro@8.0.0-alpha.14` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
269
+
270
+ Same changes as in `@mui/x-charts@8.0.0-alpha.14`, plus:
271
+
272
+ - [charts] Add Funnel chart (#14804) @JCQuintas
273
+
274
+ ### Tree View
275
+
276
+ #### Breaking changes
277
+
278
+ - The `selectItem` method has been renamed `setItemSelection`:
279
+
280
+ ```diff
281
+ const { publicAPI } = useTreeItemUtils();
282
+
283
+ const handleSelectItem() {
284
+ - publicAPI.selectItem({ event, itemId: props.itemId, shouldBeSelected: true })
285
+ + publicAPI.setItemSelection({ event, itemId: props.itemId, shouldBeSelected: true })
286
+ }
287
+ ```
288
+
289
+ - The `setItemExpansion` method now receives a single object instead of a list of parameters:
290
+
291
+ ```diff
292
+ const { publicAPI } = useTreeItemUtils();
293
+
294
+ const handleExpandItem() {
295
+ - publicAPI.setItemExpansion(event, props.itemId, true)
296
+ + publicAPI.setItemExpansion({ event, itemId: props.itemId, shouldBeExpanded: true })
297
+ }
298
+ ```
299
+
300
+ #### `@mui/x-tree-view@8.0.0-alpha.14`
301
+
302
+ - [TreeView] Clean the expansion and selection API methods (#16795) @flaviendelangle
303
+
304
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.14` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
305
+
306
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.14`.
307
+
308
+ ### Docs
309
+
310
+ - [docs] Fix padding package install on mobile (#16794) @oliviertassinari
311
+ - [docs] Typo fixes (#16835) @alexfauquette
312
+
313
+ ### Core
314
+
315
+ - [code-infra] Fix console warning in telemetry package (#16816) @JCQuintas
316
+ - [code-infra] Split date-picker test files (#16825) @JCQuintas
317
+ - [infra] Replace PR label check workflow with reusable version (#16762) @michelengelen
318
+ - [infra] Update label in priority-support issue template (#16767) @michelengelen
319
+ - [test] Add timeout to flaky screenshot tests (#16852) @LukasTy
320
+
321
+ ## 8.0.0-alpha.13
322
+
323
+ _Feb 28, 2025_
324
+
325
+ We'd like to offer a big thanks to the 19 contributors who made this release possible. Here are some highlights ✨:
326
+
327
+ - 📊 Decouple `margin` and `axis-size`. A new API to support multiple axes (#16418) @JCQuintas
328
+ - 🗺️ Added Bangla (bn-BD) locale
329
+ - 🗺️ Improve Russian (ru-RU) and Hungarian (hu-HU) locale on the Data Grid
330
+
331
+ Special thanks go out to the community members for their contributions:
332
+ @denpiligrim, @lhilgert9, @noherczeg, @officialkidmax, @pcorpet.
333
+ Following are all team members who have contributed to this release:
334
+ @alexfauquette, @arminmeh, @bernardobelchior, @cherniavskii, @flaviendelangle, @hasdfa, @Janpot, @JCQuintas, @KenanYusuf, @LukasTy, @michelengelen, @MBilalShafi, @oliviertassinari, @romgrk.
335
+
336
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
337
+
338
+ ### Data Grid
339
+
340
+ #### Breaking changes
341
+
342
+ - The `slots.baseFormControl` component was removed.
343
+
344
+ - The "Reset" button in the column visibility panel now resets to the initial column visibility model. Previously it was reset to the model that was active at the time the panel was opened. The reset behavior follows these rules:
345
+
346
+ 1. If an initial `columnVisibilityModel` is provided, it resets to that model.
347
+ 2. If a controlled `columnVisibilityModel` is provided, it resets to the first model value.
348
+ 3. When the columns are updated (via the `columns` prop or `updateColumns()` API method), the reset reference point updates to the current `columnVisibilityModel`.
349
+
350
+ To revert to the previous behavior, provide a custom component to the `slots.columnsManagement`.
351
+
352
+ - The deprecated `LicenseInfo` export has been removed from the `@mui/x-data-grid-pro` and `@mui/x-data-grid-premium` packages.
353
+ You have to import it from `@mui/x-license` instead:
354
+
355
+ ```diff
356
+ - import { LicenseInfo } from '@mui/x-data-grid-pro';
357
+ - import { LicenseInfo } from '@mui/x-data-grid-premium';
358
+ + import { LicenseInfo } from '@mui/x-license';
359
+
360
+ LicenseInfo.setLicenseKey('YOUR_LICENSE_KEY');
361
+ ```
362
+
363
+ - The row selection model has been changed from `GridRowId[]` to `{ type: 'include' | 'exclude'; ids: Set<GridRowId> }`.
364
+ Using `Set` allows for a more efficient row selection management.
365
+ The `exclude` selection type allows to select all rows except the ones in the `ids` set.
366
+
367
+ This change impacts the following props:
368
+
369
+ - `rowSelectionModel`
370
+ - `onRowSelectionModelChange`
371
+ - `initialState.rowSelectionModel`
372
+
373
+ ```diff
374
+ - const [rowSelectionModel, setRowSelectionModel] = React.useState<GridRowSelectionModel>([]);
375
+ + const [rowSelectionModel, setRowSelectionModel] = React.useState<GridRowSelectionModel>({ type: 'include', ids: new Set() });
376
+ ```
377
+
378
+ This change also impacts the `gridRowSelectionStateSelector` selector.
379
+ For convenience, use the `gridRowSelectionManagerSelector` selector to handle both selection types:
380
+
381
+ ```diff
382
+ - const rowSelection = gridRowSelectionStateSelector(apiRef);
383
+ - const isRowSelected = rowSelection.includes(rowId);
384
+ + const rowSelectionManager = gridRowSelectionManagerSelector(apiRef);
385
+ + const isRowSelected = rowSelectionManager.has(rowId);
386
+ ```
387
+
388
+ There is also a `createRowSelectionManager` utility function that can be used to manage the row selection:
389
+
390
+ ```ts
391
+ const rowSelectionManager = createRowSelectionManager({
392
+ type: 'include',
393
+ ids: new Set(),
394
+ });
395
+ rowSelectionManager.select(rowId);
396
+ rowSelectionManager.unselect(rowId);
397
+ rowSelectionManager.has(rowId);
398
+ ```
399
+
400
+ - The `selectedIdsLookupSelector` selector has been removed. Use the `gridRowSelectionManagerSelector` or `gridRowSelectionStateSelector` selectors instead.
401
+ - The `selectedGridRowsSelector` has been renamed to `gridRowSelectionIdsSelector`.
402
+ - The `selectedGridRowsCountSelector` has been renamed to `gridRowSelectionCountSelector`.
403
+
404
+ - The data source feature and its related props are now stable.
405
+
406
+ ```diff
407
+ <DataGridPro
408
+ - unstable_dataSource={dataSource}
409
+ - unstable_dataSourceCache={cache}
410
+ - unstable_lazyLoading
411
+ - unstable_lazyLoadingRequestThrottleMs={100}
412
+ + dataSource={dataSource}
413
+ + dataSourceCache={cache}
414
+ + lazyLoading
415
+ + lazyLoadingRequestThrottleMs={100}
416
+ />
417
+ ```
418
+
419
+ - The data source API is now stable.
420
+
421
+ ```diff
422
+ - apiRef.current.unstable_dataSource.getRows()
423
+ + apiRef.current.dataSource.getRows()
424
+ ```
425
+
426
+ - The signature of `unstable_onDataSourceError()` has been updated to support future use-cases.
427
+
428
+ ```diff
429
+ <DataGrid
430
+ - unstable_onDataSourceError={(error: Error, params: GridGetRowsParams) => {
431
+ - if (params.filterModel) {
432
+ - // do something
433
+ - }
434
+ - }}
435
+ + unstable_onDataSourceError={(error: GridGetRowsError | GridUpdateRowError) => {
436
+ + if (error instanceof GridGetRowsError && error.params.filterModel) {
437
+ + // do something
438
+ + }
439
+ + }}
440
+ />
441
+ ```
442
+
443
+ - Fix the type of the `GridSortModel` to allow readonly arrays.
444
+
445
+ - `GridSortItem` interface is not exported anymore.
446
+
447
+ - The `showToolbar` prop is now required to display the toolbar.
448
+
449
+ It is no longer necessary to pass `GridToolbar` as a slot to display the default toolbar.
450
+
451
+ ```diff
452
+ <DataGrid
453
+ + showToolbar
454
+ - slots={{
455
+ - toolbar: GridToolbar,
456
+ - }}
457
+ />
458
+ ```
459
+
460
+ #### `@mui/x-data-grid@8.0.0-alpha.13`
461
+
462
+ - [DataGrid] Add `showToolbar` prop to enable default toolbar (#16687) @KenanYusuf
463
+ - [DataGrid] Column Visibility: Update "Reset" button behavior (#16626) @MBilalShafi
464
+ - [DataGrid] Column management design updates (#16630) @KenanYusuf
465
+ - [DataGrid] Fix `showColumnVerticalBorder` prop (#16715) @KenanYusuf
466
+ - [DataGrid] Fix scrollbar overlapping cells on mount (#16639) @KenanYusuf
467
+ - [DataGrid] Fix: base `Select` menuprops `onClose()` (#16643) @romgrk
468
+ - [DataGrid] Make `GridSortItem` internal (#16732) @arminmeh
469
+ - [DataGrid] Make data source stable (#16710) @MBilalShafi
470
+ - [DataGrid] Reshape row selection model (#15651) @cherniavskii
471
+ - [DataGrid] Replace `sx` prop usage with `styled()` components (#16665) @KenanYusuf
472
+ - [DataGrid] Refactor: create base `Autocomplete` (#16390) @romgrk
473
+ - [DataGrid] Refactor: remove base form control (#16634) @romgrk
474
+ - [DataGrid] Refactor: remove base input label & adornment (#16646) @romgrk
475
+ - [DataGrid] Refactor: remove material containers (#16633) @romgrk
476
+ - [DataGrid] Refactor: theme to CSS variables (#16588) @romgrk
477
+ - [DataGrid] Update the signature of the `onDataSourceError()` callback (#16718) @MBilalShafi
478
+ - [DataGrid] Use readonly array for the `GridSortModel` (#16627) @pcorpet
479
+ - [DataGrid] Fix the popper focus trap (#16736) @romgrk
480
+ - [l10n] Added Bangla (bn-BD) locale (#16648) @officialkidmax
481
+ - [l10n] Improve Hungarian (hu-HU) locale (#16578) @noherczeg
482
+ - [l10n] Improve Russian (ru-RU) locale (#16591) @denpiligrim
483
+
484
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.13` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
485
+
486
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.13`, plus:
487
+
488
+ - [DataGridPro] Remove `LicenseInfo` reexports (#16671) @cherniavskii
489
+
490
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.13` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
491
+
492
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.13`, plus:
493
+
494
+ - [DataGridPremium] Use `valueGetter` to get row group keys (#16016) @cherniavskii
495
+
496
+ ### Date and Time Pickers
497
+
498
+ #### Breaking changes
499
+
500
+ - The `<DateRangePicker />` now uses a `dialog` instead of a `tooltip` to render their view when used with a single input range field.
501
+
502
+ #### `@mui/x-date-pickers@8.0.0-alpha.13`
503
+
504
+ - [l10n] Added Bangla (bn-BD) locale (#16648) @officialkidmax
505
+ - [pickers] Clean the typing of the slots on the range pickers (#16670) @flaviendelangle
506
+ - [pickers] Fix Time Clock meridiem button selected styles (#16681) @LukasTy
507
+ - [pickers] Make the single input field the default field on range pickers (#16656) @flaviendelangle
508
+ - [pickers] Move the opening logic to the range fields (#16175) @flaviendelangle
509
+
510
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.13` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
511
+
512
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.13`.
513
+
514
+ ### Charts
515
+
516
+ #### Breaking changes
517
+
518
+ - Charts array inputs are now `readonly`. Allowing externally defined `as const` to be used as a prop value of the React component.
519
+
520
+ ```tsx
521
+ const xAxis = [{ position: 'bottom' }] as const
522
+ <BarChart xAxis={xAxis} />
523
+ ```
524
+
525
+ - Replace `topAxis`, `rightAxis`, `bottomAxis` and `leftAxis` props by the `position` property in the axis config.
526
+ If you were using them to place axis, set the `position` property to the corresponding value `'top' | 'right' | 'bottom' | 'left'`.
527
+ If you were disabling an axis by setting it to `null`, set its `position` to `'none'`.
528
+
529
+ ```diff
530
+ <LineChart
531
+ yAxis={[
532
+ {
533
+ scaleType: 'linear',
534
+ + position: 'right',
535
+ },
536
+ ]}
537
+ series={[{ data: [1, 10, 30, 50, 70, 90, 100], label: 'linear' }]}
538
+ height={400}
539
+ - rightAxis={{}}
540
+ />
541
+ ```
542
+
543
+ - Remove `position` prop from `ChartsXAxis` and `ChartsYAxis`.
544
+ The `position` prop has been removed from the `ChartsXAxis` and `ChartsYAxis` components. Configure it directly in the axis config.
545
+
546
+ ```diff
547
+ <ChartContainer
548
+ yAxis={[
549
+ {
550
+ id: 'my-axis',
551
+ + position: 'right',
552
+ },
553
+ ]}
554
+ >
555
+ - <ChartsYAxis axisId="my-axis" position="right" />
556
+ + <ChartsYAxis axisId="my-axis" />
557
+ </ChartContainer>
558
+ ```
559
+
560
+ - Add `minTickLabelGap` to x-axis, which allows users to define the minimum gap, in pixels, between two tick labels. The default value is 4px. Make sure to check your charts as the spacing between tick labels might have changed.
561
+
562
+ #### `@mui/x-charts@8.0.0-alpha.13`
563
+
564
+ - [charts] Accept component in `labelMarkType` (#16739) @bernardobelchior
565
+ - [charts] Add `minTickLabelGap` to x-axis (#16548) @bernardobelchior
566
+ - [charts] Add unit test for pie chart with empty series (#16663) @bernardobelchior
567
+ - [charts] Decouple `margin` and `axis-size` (#16418) @JCQuintas
568
+ - [charts] Display slider tooltip on demos (#16723) @JCQuintas
569
+ - [charts] Fix composition docs link (#16761) @bernardobelchior
570
+ - [charts] Fix default label measurement being off (#16635) @bernardobelchior
571
+ - [charts] Fix is highlighted memoization (#16592) @alexfauquette
572
+ - [charts] Fix missing `theme.shape` error in the tooltip (#16748) @alexfauquette
573
+ - [charts] Fix typo in error message (#16641) @JCQuintas
574
+ - [charts] Improve axis size docs (#16673) @JCQuintas
575
+ - [charts] Improve performance of rendering ticks in x-axis (#16536) @bernardobelchior
576
+ - [charts] Make `defaultizeAxis` function type-safe (#16642) @JCQuintas
577
+ - [charts] Make `series.data` readonly (#16645) @JCQuintas
578
+ - [charts] Migrate `ChartsUsageDemo` to TSX and removed NoSnap (#16686) @JCQuintas
579
+ - [charts] Prevent `position='none'` axes from rendering (#16727) @JCQuintas
580
+ - [charts] Make array inputs readonly (#16632) @JCQuintas
581
+ - [charts] Remove state initialization hack (#16520) @alexfauquette
582
+ - [charts] Remove redundant default axis (#16734) @bernardobelchior
583
+
584
+ #### `@mui/x-charts-pro@8.0.0-alpha.13` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
585
+
586
+ Same changes as in `@mui/x-charts@8.0.0-alpha.13`, plus:
587
+
588
+ - [charts-pro] Add back zoom control (#16550) @alexfauquette
589
+
590
+ ### Tree View
591
+
592
+ #### `@mui/x-tree-view@8.0.0-alpha.13`
593
+
594
+ Internal changes.
595
+
596
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.13` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
597
+
598
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.13`.
599
+
600
+ ### `@mui/x-codemod@8.0.0-alpha.13`
601
+
602
+ - [codemod] Add a few Data Grid codemods (#16711) @MBilalShafi
603
+ - [codemod] Improve Pickers renaming codemod (#16685) @LukasTy
604
+
605
+ ### Docs
606
+
607
+ - [docs] Fix charts with on bar and line pages (#16712) @alexfauquette
608
+ - [docs] Fix migration guide introduction for charts (#16679) @alexfauquette
609
+ - [docs] Fix remaining charts demos on mobile (#16728) @alexfauquette
610
+ - [docs] Fix scroll overflow on mobile (#16675) @oliviertassinari
611
+ - [docs] Improve Pickers migration page (#16682) @LukasTy
612
+ - [docs] Update small Pickers doc inconsistencies (#16724) @LukasTy
613
+ - [code-infra] Charts changes for `vitest` (#16755) @JCQuintas
614
+ - [code-infra] General packages changes for `vitest` (#16757) @JCQuintas
615
+ - [code-infra] Native Node.js ESM (#16603) @Janpot
616
+ - [infra] Update contributor acknowledgment wording (#16751) @michelengelen
617
+ - [test] Revert timeout increase for possibly slow tests (#16651) @LukasTy
618
+ - [x-license] Introduce usage telemetry (#13530) @hasdfa
619
+
620
+ ## 8.0.0-alpha.12
621
+
622
+ _Feb 17, 2025_
623
+
624
+ We'd like to offer a big thanks to the 16 contributors who made this release possible. Here are some highlights ✨:
625
+
626
+ - 📦 Data Grid [data source](https://next.mui.com/x/react-data-grid/server-side-data/) is now available in the Community plan
627
+ - ⚡ Improve Data Grid Excel export serialization performance
628
+ - 🚫 Add ["No columns" overlay](https://next.mui.com/x/react-data-grid/overlays/#no-columns-overlay) to Data Grid
629
+ - 🌍 Improve Polish (pl-PL) and Ukrainian (uk-UA) locales on the Data Grid
630
+ - 🐞 Bugfixes
631
+
632
+ Special thanks go out to the community contributors who have helped make this release possible:
633
+ @Neonin, @nusr, and @pawelkula.
634
+ Following are all team members who have contributed to this release:
635
+ @alexfauquette, @arminmeh, @bernardobelchior, @cherniavskii, @Janpot, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @michelengelen, @oliviertassinari, @romgrk, and @mapache-salvaje.
636
+
637
+ ### Data Grid
638
+
639
+ #### Breaking changes
640
+
641
+ - The `main--hasSkeletonLoadingOverlay` class has been renamed to `main--hiddenContent` and is now also applied when the "No columns" overlay is displayed.
642
+
643
+ - The `apiRef.current.forceUpdate()` method was removed. Use selectors combined with `useGridSelector()` hook to react to changes in the state.
644
+
645
+ - The selectors signature has been updated. They are only accepting `apiRef` as a first argument and `instanceId` is no longer the third argument.
646
+
647
+ ```diff
648
+ -mySelector(state, arguments, instanceId)
649
+ +mySelector(apiRef, arguments)
650
+ ```
651
+
652
+ #### `@mui/x-data-grid@8.0.0-alpha.12`
653
+
654
+ - [DataGrid] Add "No columns" overlay (#16543) @KenanYusuf
655
+ - [DataGrid] All selectors accept only `apiRef` as first argument (#16198) @arminmeh
656
+ - [DataGrid] Avoid `undefined` value for pagination `rowCount` (#16488) @cherniavskii
657
+ - [DataGrid] Create the base Checkbox slot (#16445) @romgrk
658
+ - [DataGrid] Create the base Input slot (#16443) @romgrk
659
+ - [DataGrid] Create the base MenuList slot (#16481) @romgrk
660
+ - [DataGrid] Create the base Popper slot (#16362) @romgrk
661
+ - [DataGrid] Create the base Select slot (#16394) @romgrk
662
+ - [DataGrid] Create the base Switch slot (#16527) @romgrk
663
+ - [DataGrid] Extract `getRowId()` API method as a selector (#16487) @MBilalShafi
664
+ - [DataGrid] Fix the `onClock` prop of the base Select slot (#16557) @romgrk
665
+ - [DataGrid] Go to the first page when sorting/filtering is applied (#16447) @arminmeh
666
+ - [DataGrid] Make base data source available in the Community plan (#16359) @MBilalShafi
667
+ - [DataGrid] Remove `apiRef.current.forceUpdate()` method (#16560) @MBilalShafi
668
+ - [DataGrid] Fix the unexpected behavior of the pagination when using `-1` for "All" rows per page (#16485) @nusr
669
+ - [l10n] Improve Polish (pl-PL) locale (#16123) @pawelkula
670
+ - [l10n] Improve Ukrainian (uk-UA) locale (#16463) @Neonin
671
+
672
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.12` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
673
+
674
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.12`.
675
+
676
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.12` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
677
+
678
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.12`, plus:
679
+
680
+ - [DataGridPremium] Fix Excel export Web Worker demo not working in dev mode (#16517) @cherniavskii
681
+ - [DataGridPremium] Fix loading issue + add skeleton overlay (#16282) @MBilalShafi
682
+ - [DataGridPremium] Improve Excel export serialization performance (#16526) @cherniavskii
683
+ - [DataGridPremium] Namespace Excel export worker (#16020) @oliviertassinari
684
+
685
+ ### Date and Time Pickers
686
+
687
+ #### Breaking changes
688
+
689
+ - The `aria-label` on the `<Clock />` component and Time Picker opening button has been fixed to rely on the set `ampm` property instead of defaulting to the user's locale.
690
+
691
+ - The following unused formats have been removed from the adapters and can no longer be overridden via the `dateFormats` prop on the `<LocalizationProvider />` component:
692
+
693
+ - `fullTime` - please use `fullTime12h` and `fullTime24h` instead:
694
+ ```diff
695
+ <LocalizationProvider
696
+ dateFormats={{
697
+ - fullTime: 'LT',
698
+ + fullTime12h: 'hh:mm A',
699
+ + fullTime24h: 'hh:mm',
700
+ }}
701
+ >
702
+ ```
703
+ - `keyboardDateTime` - please use `keyboardDateTime12h` and `keyboardDateTime24h` instead:
704
+ ```diff
705
+ <LocalizationProvider
706
+ dateFormats={{
707
+ - keyboardDateTime: 'DD.MM.YYYY | LT',
708
+ + keyboardDateTime12h: 'DD.MM.YYYY | hh:mm A',
709
+ + keyboardDateTime24h: 'DD.MM.YYYY | hh:mm',
710
+ }}
711
+ >
712
+ ```
713
+
714
+ #### `@mui/x-date-pickers@8.0.0-alpha.12`
715
+
716
+ - [pickers] Fix time related aria labels to depend on `ampm` flag value (#16572) @LukasTy
717
+ - [pickers] Remove unused adapter formats (#16522) @LukasTy
718
+
719
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.12` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
720
+
721
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.12`, plus:
722
+
723
+ - [DateRangePicker] Avoid unnecessary field section focusing (#16474) @LukasTy
724
+
725
+ ### Charts
726
+
727
+ #### Breaking changes
728
+
729
+ - The `useSeries` hook family has been stabilized and renamed accordingly — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#stabilize-useseries-and-usexxxseries-hooks-✅)
730
+
731
+ #### `@mui/x-charts@8.0.0-alpha.12`
732
+
733
+ - [charts] Add docs for scatter "Size" section (#16556) @bernardobelchior
734
+ - [charts] Add `test:performance:browser` script #16600 @bernardobelchior
735
+ - [charts] Add warning when using unknown ids in `useXxxSeries` hooks (#16552) @JCQuintas
736
+ - [charts] Divide the logic for `useXxxSeries` into `useXxxSeriesContext` (#16546) @JCQuintas
737
+ - [charts] Document plugins for internal use (#16504) @JCQuintas
738
+ - [charts] Fix internal typo (#16524) @alexfauquette
739
+ - [charts] Fix type overloads (#16581) @JCQuintas
740
+ - [charts] Fix zoom filter regression (#16507) @alexfauquette
741
+ - [charts] Improve tooltip placement in mobile (#16553) @bernardobelchior
742
+ - [charts] Let the `useXxxSeries` support array of ids and document them (#15545) @JCQuintas
743
+ - [charts] Memoize some tooltip internals (#16564) @alexfauquette
744
+ - [charts] Move Voronoi handler in a dedicated plugin (#16470) @alexfauquette
745
+ - [charts] Performance tests: set license on setup. Update vitest minor version. (#16525) @bernardobelchior
746
+ - [charts] Propagate the axis scale to the `valueFormatter` (#16555) @alexfauquette
747
+ - [charts] Remove `colors` prop from `SparkLineChart`. (#16494) @bernardobelchior
748
+ - [charts] Stabilize series hooks (`useSeries`, `usePieSeries`, etc.) (#16459) @bernardobelchior
749
+
750
+ #### `@mui/x-charts-pro@8.0.0-alpha.12` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
751
+
752
+ Same changes as in `@mui/x-charts@8.0.0-alpha.12`.
753
+
754
+ ### Tree View
755
+
756
+ #### `@mui/x-tree-view@8.0.0-alpha.12`
757
+
758
+ Internal changes.
759
+
760
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.12` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
761
+
762
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.12`.
763
+
764
+ ### Docs
765
+
766
+ - [docs] Add demo for Scatter Chart with linked points (#16505) @bernardobelchior
767
+ - [docs] Improve license installation page (#16403) @michelengelen
768
+ - [docs] Standardize getting started docs across all packages (#16302) @mapache-salvaje
769
+
770
+ ### Core
771
+
772
+ - [core] Update charts folder structure (#16471) @alexfauquette
773
+ - [code-infra] Bump @mui/monorepo (#16422) @LukasTy
774
+ - [code-infra] Fix lock file (#16562) @LukasTy
775
+ - [code-infra] Fix root package version (#16503) @JCQuintas
776
+ - [code-infra] Update internal packages to `next` releases (#16423) @LukasTy
777
+ - [code-infra] Update package layout for better ESM support (#14386) @Janpot
778
+ - [code-infra] Update peer dependencies for v8 (#16563) @Janpot
779
+
780
+ ## 8.0.0-alpha.11
781
+
782
+ _Feb 7, 2025_
783
+
784
+ We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
785
+
786
+ - ⚡ Mount and resize performance improvements for the Data Grid
787
+
788
+ Special thanks go out to the community contributors who have helped make this release possible:
789
+ @lauri865.
790
+ Following are all team members who have contributed to this release:
791
+ @alexfauquette, @arminmeh, @bernardobelchior, @flaviendelangle, @Janpot, @KenanYusuf, @LukasTy, @MBilalShafi, @noraleonte, @romgrk.
792
+
793
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
794
+
795
+ ### Data Grid
796
+
797
+ #### Breaking changes
798
+
799
+ - `createUseGridApiEventHandler()` is not exported anymore.
800
+ - The `filteredRowsLookup` object of the filter state does not contain `true` values anymore. If the row is filtered out, the value is `false`. Otherwise, the row id is not present in the object.
801
+ This change only impacts you if you relied on `filteredRowsLookup` to get ids of filtered rows. In this case,use `gridDataRowIdsSelector` selector to get row ids and check `filteredRowsLookup` for `false` values:
802
+
803
+ ```diff
804
+ const filteredRowsLookup = gridFilteredRowsLookupSelector(apiRef);
805
+ -const filteredRowIds = Object.keys(filteredRowsLookup).filter((rowId) => filteredRowsLookup[rowId] === true);
806
+ +const rowIds = gridDataRowIdsSelector(apiRef);
807
+ +const filteredRowIds = rowIds.filter((rowId) => filteredRowsLookup[rowId] !== false);
808
+ ```
809
+
810
+ - The `visibleRowsLookup` state does not contain `true` values anymore. If the row is not visible, the value is `false`. Otherwise, the row id is not present in the object:
811
+
812
+ ```diff
813
+ const visibleRowsLookup = gridVisibleRowsLookupSelector(apiRef);
814
+ -const isRowVisible = visibleRowsLookup[rowId] === true;
815
+ +const isRowVisible = visibleRowsLookup[rowId] !== false;
816
+ ```
817
+
818
+ #### `@mui/x-data-grid@8.0.0-alpha.11`
819
+
820
+ - [DataGrid] Avoid `<GridRoot />` double-render pass on mount in SPA mode (#15648) @lauri865
821
+ - [DataGrid] Fix loading overlay not in sync with scroll (#16437) @MBilalShafi
822
+ - [DataGrid] Refactor: remove material `MenuList` import (#16444) @romgrk
823
+ - [DataGrid] Refactor: simplify `useGridApiEventHandler()` (#16479) @romgrk
824
+
825
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.11` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
826
+
827
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.11`, plus:
828
+
829
+ - [DataGridPro] Fix the return type of `useGridApiContext()` for Pro and Premium packages on React < 19 (#16441) @arminmeh
830
+
831
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.11` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
832
+
833
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.11`, plus:
834
+
835
+ - [DataGridPremium] Fix "no rows" overlay not showing with active aggregation (#16466) @KenanYusuf
836
+
837
+ ### Date and Time Pickers
838
+
839
+ #### `@mui/x-date-pickers@8.0.0-alpha.11`
840
+
841
+ Internal changes.
842
+
843
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.11` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
844
+
845
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.11`, plus:
846
+
847
+ - [DateRangeCalendar] Support arrow navigation with multiple months rendered (#16363) @flaviendelangle
848
+ - [DateRangePicker] Fix `currentMonthCalendarPosition` prop behavior on mobile (#16455) @LukasTy
849
+ - [DateRangePicker] Fix vertical alignment for multi input fields (#16489) @noraleonte
850
+
851
+ ### Charts
852
+
853
+ #### `@mui/x-charts@8.0.0-alpha.11`
854
+
855
+ - [charts] Add `color` prop to `Sparkline` and deprecate `colors` (#16477) @bernardobelchior
856
+ - [charts] Make typescript more flexible about plugins and their params (#16478) @alexfauquette
857
+ - [charts] Remove component for axis event listener (#16314) @alexfauquette
858
+
859
+ #### `@mui/x-charts-pro@8.0.0-alpha.11` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
860
+
861
+ Same changes as in `@mui/x-charts@8.0.0-alpha.11`.
862
+
863
+ ### Tree View
864
+
865
+ #### `@mui/x-tree-view@8.0.0-alpha.11`
866
+
867
+ Internal changes.
868
+
869
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.11` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
870
+
871
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.11`.
872
+
873
+ ### Docs
874
+
875
+ - [docs] Update charts colors default value (#16484) @bernardobelchior
876
+
877
+ ### Core
878
+
879
+ - [core] Fix corepack and pnpm installation in CircleCI (#16434) @flaviendelangle
880
+ - [code-infra] Update monorepo (#16112) @Janpot
881
+ - [test] Avoid test warning when running on React 18 (#16486) @LukasTy
882
+ - [test] Disable `react-transition-group` transitions in unit testing (#16288) @lauri865
883
+
884
+ ## 8.0.0-alpha.10
885
+
886
+ _Jan 30, 2025_
887
+
888
+ We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
889
+
890
+ - 🎨 Data Grid theming improvements and default background color
891
+ - 📚 Documentation improvements
892
+ - 🐞 Bugfixes
893
+
894
+ Special thanks go out to the community contributors who have helped make this release possible:
895
+ @k-rajat19, @lauri865, @mateuseap.
896
+ Following are all team members who have contributed to this release:
897
+ @alexfauquette, @flaviendelangle, @JCQuintas, @KenanYusuf, @MBilalShafi, @romgrk, @arminmeh.
898
+
899
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
900
+
901
+ ### Data Grid
902
+
903
+ ### Breaking changes
904
+
905
+ - `viewportInnerSize.width` now includes pinned columns' widths (fixes recursive loops in updating dimensions <-> columns)
906
+ - 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:
907
+
908
+ - `bg`: Sets the background color of the entire grid (new property)
909
+ - `headerBg`: Sets the background color of the header (previously named `containerBackground`)
910
+ - `pinnedBg`: Sets the background color of pinned rows and columns (previously named `pinnedBackground`)
911
+
912
+ ```diff
913
+ const theme = createTheme({
914
+ - mixins: {
915
+ - MuiDataGrid: {
916
+ - containerBackground: '#f8fafc',
917
+ - pinnedBackground: '#f1f5f9',
918
+ - },
919
+ - },
920
+ + palette: {
921
+ + DataGrid: {
922
+ + bg: '#f8fafc',
923
+ + headerBg: '#e2e8f0',
924
+ + pinnedBg: '#f1f5f9',
925
+ + },
926
+ + },
927
+ });
928
+ ```
929
+
930
+ - The `detailPanels`, `pinnedColumns`, and `pinnedRowsRenderZone` classes have been removed.
931
+ - 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 `{}`.
932
+
933
+ 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.
934
+
935
+ 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:
936
+
937
+ - Use optional chaining
938
+ - Use non-null assertion operator if you are sure your code is always executed when the `apiRef` is not `null`
939
+ - Return early if `apiRef` is `null`
940
+ - Throw an error if `apiRef` is `null`
941
+
942
+ #### `@mui/x-data-grid@8.0.0-alpha.10`
943
+
944
+ - [DataGrid] Fix `renderContext` calculation with scroll bounce / over-scroll (#16297) @lauri865
945
+ - [DataGrid] Remove unused classes from `gridClasses` (#16256) @mateuseap
946
+ - [DataGrid] Add default background color to grid (#16066) @KenanYusuf
947
+ - [DataGrid] Add missing style overrides (#16272) @KenanYusuf
948
+ - [DataGrid] Add possibility of `null` in the return type of the `useGridApiRef()` hook (#16353) @arminmeh
949
+ - [DataGrid] Fix header filters keyboard navigation when there are no rows (#16126) @k-rajat19
950
+ - [DataGrid] Fix order of `onClick` prop on toolbar buttons (#16356) @KenanYusuf
951
+ - [DataGrid] Refactor row state propagation (#15627) @lauri865
952
+ - [DataGrid] Refactor: create TextField props (#16174) @romgrk
953
+ - [DataGrid] Remove outdated warning (#16360) @MBilalShafi
954
+ - [DataGrid] Respect width of `iconContainer` during autosizing (#16399) @michelengelen
955
+
956
+ #### `@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')
957
+
958
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.10`, plus:
959
+
960
+ - [DataGridPro] Fetch new rows only once when multiple models are changed in one cycle (#16101) @arminmeh
961
+ - [DataGridPro] Fix the return type of `useGridApiRef` for Pro and Premium packages on React < 19 (#16328) @arminmeh
962
+
963
+ #### `@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')
964
+
965
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.10`.
966
+
967
+ ### Date and Time Pickers
968
+
969
+ #### Breaking changes
970
+
971
+ - 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)
972
+ - 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)
973
+
974
+ #### `@mui/x-date-pickers@8.0.0-alpha.10`
975
+
976
+ - [pickers] Clean the internals and the public API of `<PickersPopper />` (#16319) @flaviendelangle
977
+ - [pickers] Improve the JSDoc of the `PickerContextValue` properties (#16327) @flaviendelangle
978
+ - [pickers] Move more field props to the context (#16278) @flaviendelangle
979
+ - [pickers] Do not close the picker when doing keyboard editing (#16402) @flaviendelangle
980
+
981
+ #### `@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')
982
+
983
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.10`.
984
+
985
+ ### Charts
986
+
987
+ #### Breaking changes
988
+
989
+ - Replace `legend.position.horizontal` from `"left" | "middle" | "right"` to `"start" | "center" | "end"`.
990
+ This is to align with the CSS values and reflect the RTL ability of the legend component.
991
+ - 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.
992
+ - The `id` property is now optional on the `Pie` and `Scatter` data types.
993
+
994
+ #### `@mui/x-charts@8.0.0-alpha.10`
995
+
996
+ - [charts] Add new `bumpX` and `bumpY` curve options (#16318) @JCQuintas
997
+ - [charts] Move `tooltipGetter` to `seriesConfig` (#16331) @JCQuintas
998
+ - [charts] Move item highligh feature to plugin system (#16211) @alexfauquette
999
+ - [charts] Replace `legend.position.horizontal` from `"left" | "middle" | "right"` to `"start" | "center" | "end"` (#16315) @JCQuintas
1000
+ - [charts] New default colors (#16373) @JCQuintas
1001
+ - [charts] Make `id` optional on `PieValueType` and `ScatterValueType` (#16389) @JCQuintas
1002
+
1003
+ #### `@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')
1004
+
1005
+ Same changes as in `@mui/x-charts@8.0.0-alpha.10`.
1006
+
1007
+ ### Tree View
1008
+
1009
+ #### `@mui/x-tree-view@8.0.0-alpha.10`
1010
+
1011
+ Internal changes.
1012
+
1013
+ #### `@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')
1014
+
1015
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.10`.
1016
+
1017
+ ### Docs
1018
+
1019
+ - [docs] Improve release documentation (#16321) @MBilalShafi
1020
+
1021
+ ### Core
1022
+
1023
+ - [core] Reduce chart perf benchmark weight (#16374) @alexfauquette
1024
+ - [test] Fix console warnings while executing tests with React 18 (#16386) @arminmeh
1025
+ - [test] Fix flaky data source tests in DataGrid (#16395) @lauri865
1026
+
8
1027
  ## 8.0.0-alpha.9
9
1028
 
10
1029
  _Jan 24, 2025_
@@ -1209,6 +2228,433 @@ Same changes as in `@mui/x-charts@8.0.0-alpha.0`.
1209
2228
  - [release] v8 preparation (#15054) @michelengelen
1210
2229
  - [test] Fix advanced list view regression test snapshot (#15260) @KenanYusuf
1211
2230
 
2231
+ ## 7.28.0
2232
+
2233
+ _Mar 17, 2025_
2234
+
2235
+ We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
2236
+
2237
+ - 🎁 Add support for `@mui/material` version 7 in all X packages
2238
+ - 🐞 Bugfixes
2239
+ - 🌍 Improve Chinese (zh-CN), (zh-HK), (zh-TW), Czech (cs-CZ), Korean (ko-KR) and Slovak (sk-Sk) locales on the Data Grid
2240
+ - 🌍 Improve Chinese (zh-CN), (zh-HK) and (zh-TW) locales on the Pickers
2241
+
2242
+ Special thanks go out to the community contributors who have helped make this release possible:
2243
+ @Blake-McCullough, @hlavacz, @yelahj, @k-rajat19, @nusr.
2244
+ Following are all team members who have contributed to this release:
2245
+ @arminmeh, @flaviendelangle, @LukasTy, @michelengelen, @MBilalShafi.
2246
+
2247
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
2248
+
2249
+ ### Data Grid
2250
+
2251
+ #### `@mui/x-data-grid@7.28.0`
2252
+
2253
+ - [DataGrid] Add click propagation and prevents default on `toggleMenu` click (#16909) @michelengelen
2254
+ - [DataGrid] Fix `processRowUpdate()` error if the row is removed before it is executed (#16904) @arminmeh
2255
+ - [DataGrid] Fix bug with adding and removing columns in active edit state (#16916) @Blake-McCullough
2256
+ - [DataGrid] Fix visual issue with pinned columns and row spanning (#16942) @MBilalShafi
2257
+ - [DataGrid] Make column header menu button aria-labels unique (#16925) @owais635
2258
+ - [DataGrid] Fix `printOptions` not respecting `hideFooter` root prop (#16915) @k-rajat19
2259
+ - [l10n] Improve Chinese (zh-CN), (zh-HK) and (zh-TW) locales (#16917 and #16887) @nusr
2260
+ - [l10n] Improve Czech (cs-CZ) and Slovak (sk-Sk) locales (#16996) @hlavacz
2261
+ - [l10n] Improve Korean (ko-KR) locale (#16998) @yelahj
2262
+
2263
+ #### `@mui/x-data-grid-pro@7.28.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2264
+
2265
+ Same changes as in `@mui/x-data-grid@7.28.0`, plus:
2266
+
2267
+ - [DataGridPro] Fix header filters not displaying restored values (#16976) @MBilalShafi
2268
+ - [DataGridPro] Fix infinite loading not reacting when scrolling to the end (#16939) @arminmeh
2269
+
2270
+ #### `@mui/x-data-grid-premium@7.28.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
2271
+
2272
+ Same changes as in `@mui/x-data-grid-pro@7.28.0`, plus:
2273
+
2274
+ - [DataGridPremium] Fix selection propagation issues with controlled state (#16995) @MBilalShafi
2275
+
2276
+ ### Date and Time Pickers
2277
+
2278
+ #### `@mui/x-date-pickers@7.28.0`
2279
+
2280
+ - [l10n] Improve Chinese (zh-CN), (zh-HK) and (zh-TW) locales (#16997) @nusr
2281
+
2282
+ #### `@mui/x-date-pickers-pro@7.28.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2283
+
2284
+ Same changes as in `@mui/x-date-pickers@7.28.0`, plus:
2285
+
2286
+ - [DateRangeCalendar] Do not update the previewed day when hovering a day and the value is empty (#16892) @flaviendelangle
2287
+
2288
+ ### Charts
2289
+
2290
+ #### `@mui/x-charts@7.28.0`
2291
+
2292
+ Internal changes.
2293
+
2294
+ #### `@mui/x-charts-pro@7.28.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2295
+
2296
+ Same changes as in `@mui/x-charts@7.28.0`.
2297
+
2298
+ ### Tree View
2299
+
2300
+ #### `@mui/x-tree-view@7.28.0`
2301
+
2302
+ Internal changes.
2303
+
2304
+ #### `@mui/x-tree-view-pro@7.28.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2305
+
2306
+ Same changes as in `@mui/x-tree-view@7.28.0`.
2307
+
2308
+ ### Docs
2309
+
2310
+ - [docs] Fix link to the lazy loading demo for the DataGrid (#16912) @nusr
2311
+
2312
+ ### Core
2313
+
2314
+ - [core] Allow `@mui/material` v7 in dependencies (#16951) @LukasTy
2315
+ - [infra] Make tests on React 18 part of pipeline (#16958) @LukasTy
2316
+
2317
+ ## 7.27.3
2318
+
2319
+ _Mar 7, 2025_
2320
+
2321
+ We'd like to offer a big thanks to the 4 contributors who made this release possible. Here are some highlights ✨:
2322
+
2323
+ - 🐞 Bugfixes
2324
+
2325
+ Team members who have contributed to this release:
2326
+ @arminmeh, @cherniavskii, @LukasTy, @michelengelen.
2327
+
2328
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
2329
+
2330
+ ### Data Grid
2331
+
2332
+ #### `@mui/x-data-grid@7.27.3`
2333
+
2334
+ - [DataGrid] Fix `aria-hidden` console error when scrollbar is dragged (#16834) @arminmeh
2335
+ - [DataGrid] Fix scroll jump with dynamic row height (#16801) @cherniavskii
2336
+
2337
+ #### `@mui/x-data-grid-pro@7.27.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2338
+
2339
+ Same changes as in `@mui/x-data-grid@7.27.3`.
2340
+
2341
+ #### `@mui/x-data-grid-premium@7.27.3` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
2342
+
2343
+ Same changes as in `@mui/x-data-grid-pro@7.27.3`.
2344
+
2345
+ ### Date and Time Pickers
2346
+
2347
+ #### `@mui/x-date-pickers@7.27.3`
2348
+
2349
+ - [fields] Fix Fields aria relationship with `helperText` (#16828) @LukasTy
2350
+
2351
+ #### `@mui/x-date-pickers-pro@7.27.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2352
+
2353
+ Same changes as in `@mui/x-date-pickers@7.27.3`.
2354
+
2355
+ ### Core
2356
+
2357
+ - [infra] Update contributor acknowledgment wording (#16753) @michelengelen
2358
+
2359
+ ## 7.27.2
2360
+
2361
+ <!-- generated comparing v7.27.1..v7.x -->
2362
+
2363
+ _Feb 27, 2025_
2364
+
2365
+ We'd like to offer a big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
2366
+
2367
+ - 🐞 Bugfixes
2368
+ - 🌍 Improve Hungarian (hu-HU) and Russian (ru-RU) locales on the Data Grid
2369
+
2370
+ Special thanks go out to the community contributors who have helped make this release possible:
2371
+ @pcorpet, @noherczeg, @denpiligrim.
2372
+ Following are all team members who have contributed to this release:
2373
+ @MBilalShafi, @KenanYusuf.
2374
+
2375
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
2376
+
2377
+ ### Data Grid
2378
+
2379
+ #### `@mui/x-data-grid@v7.27.2`
2380
+
2381
+ - [DataGrid] Fix `showColumnVerticalBorder` prop (#16726) @KenanYusuf
2382
+ - [DataGrid] Make server-side data navigation consistent (#16735) @MBilalShafi
2383
+ - [DataGrid] Use readonly array for `GridSortModel` (#16731) @pcorpet
2384
+ - [l10n] Improve Hungarian (hu-HU) locale (#16746) @noherczeg
2385
+ - [l10n] Improve Russian (ru-RU) locale (#16725) @denpiligrim
2386
+
2387
+ #### `@mui/x-data-grid-pro@v7.27.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2388
+
2389
+ Same changes as in `@mui/x-data-grid@v7.27.2`.
2390
+
2391
+ #### `@mui/x-data-grid-premium@v7.27.2` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
2392
+
2393
+ Same changes as in `@mui/x-data-grid-pro@v7.27.2`.
2394
+
2395
+ ## 7.27.1
2396
+
2397
+ _Feb 25, 2025_
2398
+
2399
+ We'd like to offer a big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
2400
+
2401
+ - 🐞 Bugfixes
2402
+ - 🌍 Add Bangla (bn-BD) locale on the Data Grid and Date Pickers
2403
+
2404
+ Special thanks go out to the community contributors who have helped make this release possible:
2405
+ @nusr, @officialkidmax.
2406
+ Following are all team members who have contributed to this release:
2407
+ @bernardobelchior, @MBilalShafi, @KenanYusuf.
2408
+
2409
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
2410
+
2411
+ ### Data Grid
2412
+
2413
+ #### `@mui/x-data-grid@7.27.1`
2414
+
2415
+ - [DataGrid] Fix the pagination unexpected behavior when using -1 for "All" rows per page (#16485) @nusr
2416
+ - [DataGrid] Extract `getRowId()` API method as a selector (#16574) @MBilalShafi
2417
+ - [DataGrid] Fix scrollbars overlapping cells on mount (#16653) @KenanYusuf
2418
+ - [l10n] Add Bangla (bn-BD) locale (#16649) @officialkidmax
2419
+
2420
+ #### `@mui/x-data-grid-pro@7.27.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2421
+
2422
+ Same changes as in `@mui/x-data-grid@7.27.1`.
2423
+
2424
+ #### `@mui/x-data-grid-premium@7.27.1` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
2425
+
2426
+ Same changes as in `@mui/x-data-grid-pro@7.27.1`.
2427
+
2428
+ ### Date and Time Pickers
2429
+
2430
+ #### `@mui/x-date-pickers@7.27.1`
2431
+
2432
+ - [l10n] Add Bangla (bn-BD) locale (#16649) @officialkidmax
2433
+
2434
+ #### `@mui/x-date-pickers-pro@7.27.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2435
+
2436
+ Same changes as in `@mui/x-date-pickers@7.27.1`.
2437
+
2438
+ ### Charts
2439
+
2440
+ #### `@mui/x-charts@7.27.1`
2441
+
2442
+ - [charts] Fix empty series array in pie chart (#16657) @bernardobelchior
2443
+
2444
+ #### `@mui/x-charts-pro@7.27.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2445
+
2446
+ Same changes as in `@mui/x-charts@7.27.1`.
2447
+
2448
+ ## 7.27.0
2449
+
2450
+ _Feb 17, 2025_
2451
+
2452
+ We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
2453
+
2454
+ - ⚡ Improve Data Grid Excel export serialization performance
2455
+ - 🐞 Bugfixes
2456
+ - 🌍 Improve Polish (pl-PL) and Ukrainian (uk-UA) locale on the Data Grid
2457
+
2458
+ Special thanks go out to the community contributors who have helped make this release possible:
2459
+ @pawelkula, @Neonin.
2460
+ Following are all team members who have contributed to this release:
2461
+ @cherniavskii, @JCQuintas, @oliviertassinari, @arminmeh and @LukasTy
2462
+
2463
+ ### Data Grid
2464
+
2465
+ #### `@mui/x-data-grid@7.27.0`
2466
+
2467
+ - [DataGrid] Add `resetPageOnSortFilter` prop that resets the page after sorting and filtering (#16580) @arminmeh
2468
+ - [DataGrid] Avoid `undefined` value for pagination `rowCount` (#16558) @cherniavskii
2469
+ - [l10n] Improve Polish (pl-PL) locale (#16594) @pawelkula
2470
+ - [l10n] Improve Ukrainian (uk-UA) locale (#16593) @Neonin
2471
+
2472
+ #### `@mui/x-data-grid-pro@7.27.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2473
+
2474
+ Same changes as in `@mui/x-data-grid@7.27.0`.
2475
+
2476
+ #### `@mui/x-data-grid-premium@7.27.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
2477
+
2478
+ Same changes as in `@mui/x-data-grid-pro@7.27.0`, plus:
2479
+
2480
+ - [DataGridPremium] Fix Excel export Web Worker demo not working in dev mode (#16532) @cherniavskii
2481
+ - [DataGridPremium] Improve Excel export serialization performance (#16545) @cherniavskii
2482
+ - [DataGridPremium] Namespace Excel export worker (#16539) @oliviertassinari
2483
+
2484
+ ### Date and Time Pickers
2485
+
2486
+ #### `@mui/x-date-pickers@7.27.0`
2487
+
2488
+ Internal changes.
2489
+
2490
+ #### `@mui/x-date-pickers-pro@7.27.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2491
+
2492
+ Same changes as in `@mui/x-date-pickers@7.27.0`, plus:
2493
+
2494
+ - [DateRangePicker] Avoid unnecessary field section focusing (#16569) @LukasTy
2495
+
2496
+ ### Charts
2497
+
2498
+ #### `@mui/x-charts@7.27.0`
2499
+
2500
+ Internal changes.
2501
+
2502
+ #### `@mui/x-charts-pro@7.27.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2503
+
2504
+ - [charts-pro] Fix automatic type overloads (#16579) @JCQuintas
2505
+
2506
+ ### Core
2507
+
2508
+ - [test] Fix Data Grid data source error test on React 18 (#16565) @arminmeh
2509
+
2510
+ ## 7.26.0
2511
+
2512
+ _Feb 7, 2025_
2513
+
2514
+ We'd like to offer a big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:
2515
+
2516
+ - ⚡ Mount and resize performance improvements for the Data Grid
2517
+ - 🐞 Bugfixes
2518
+
2519
+ Special thanks go out to the community contributors who have helped make this release possible:
2520
+ @lauri865.
2521
+ Following are all team members who have contributed to this release:
2522
+ @arminmeh, @noraleonte, @LukasTy, @KenanYusuf, @flaviendelangle.
2523
+
2524
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
2525
+
2526
+ ### Data Grid
2527
+
2528
+ #### `@mui/x-data-grid@7.26.0`
2529
+
2530
+ - [DataGrid] Avoid `<GridRoot />` double-render pass on mount in SPA mode (#16480) @lauri865
2531
+
2532
+ #### `@mui/x-data-grid-pro@7.26.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2533
+
2534
+ Same changes as in `@mui/x-data-grid@7.26.0`, plus:
2535
+
2536
+ - [DataGridPro] Fix the return type of `useGridApiContext()` for Pro and Premium packages on React < 19 (#16446) @arminmeh
2537
+
2538
+ #### `@mui/x-data-grid-premium@7.26.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
2539
+
2540
+ Same changes as in `@mui/x-data-grid-pro@7.26.0`, plus:
2541
+
2542
+ - [DataGridPremium] Fix "no rows" overlay not showing with active aggregation (#16468) @KenanYusuf
2543
+
2544
+ ### Date and Time Pickers
2545
+
2546
+ #### `@mui/x-date-pickers@7.26.0`
2547
+
2548
+ Internal changes.
2549
+
2550
+ #### `@mui/x-date-pickers-pro@7.26.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2551
+
2552
+ Same changes as in `@mui/x-date-pickers@7.26.0`, plus:
2553
+
2554
+ - [DateRangePicker] Fix `currentMonthCalendarPosition` prop behavior on mobile (#16457) @LukasTy
2555
+ - [DateRangePicker] Fix vertical alignment for multi input fields (#16490) @noraleonte
2556
+
2557
+ ### Charts
2558
+
2559
+ #### `@mui/x-charts@7.26.0`
2560
+
2561
+ Internal changes.
2562
+
2563
+ #### `@mui/x-charts-pro@7.26.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2564
+
2565
+ Same changes as in `@mui/x-charts@7.26.0`.
2566
+
2567
+ ### Tree View
2568
+
2569
+ #### `@mui/x-tree-view@7.26.0`
2570
+
2571
+ Internal changes.
2572
+
2573
+ #### `@mui/x-tree-view-pro@7.26.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2574
+
2575
+ Same changes as in `@mui/x-tree-view@7.26.0`.
2576
+
2577
+ ### Core
2578
+
2579
+ - [core] Fix corepack and pnpm installation in CircleCI (#16452) @flaviendelangle
2580
+
2581
+ ## 7.25.0
2582
+
2583
+ _Jan 31, 2025_
2584
+
2585
+ We'd like to offer a big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
2586
+
2587
+ - 🐞 Bugfixes
2588
+
2589
+ Special thanks go out to the community contributors who have helped make this release possible:
2590
+ @k-rajat19, @lauri865.
2591
+ Following are all team members who have contributed to this release:
2592
+ @KenanYusuf, @MBilalShafi, @arminmeh.
2593
+
2594
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
2595
+
2596
+ ### Data Grid
2597
+
2598
+ #### `@mui/x-data-grid@7.25.0`
2599
+
2600
+ - [DataGrid] Fix `renderContext` calculation with scroll bounce / over-scroll (#16368) @lauri865
2601
+ - [DataGrid] Refactor row state propagation (#16351) @lauri865
2602
+ - [DataGrid] Add missing style overrides (#16272) (#16358) @KenanYusuf
2603
+ - [DataGrid] Fix header filters keyboard navigation when there are no rows (#16369) @k-rajat19
2604
+ - [DataGrid] Fix order of `onClick` prop on toolbar buttons (#16364) @KenanYusuf
2605
+ - [DataGrid] Improve test coverage of server side data source (#15988) @MBilalShafi
2606
+ - [DataGrid] Remove outdated warning (#16370) @MBilalShafi
2607
+ - [DataGrid] Respect width of `iconContainer` during autosizing (#16409) @michelengelen
2608
+
2609
+ #### `@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')
2610
+
2611
+ Same changes as in `@mui/x-data-grid@7.25.0`, plus:
2612
+
2613
+ - [DataGridPro] Fix the return type of `useGridApiRef` for Pro and Premium packages on React < 19 (#16348) @arminmeh
2614
+ - [DataGridPro] Fetch new rows only once when multiple models are changed in one cycle (#16382) @arminmeh
2615
+
2616
+ #### `@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')
2617
+
2618
+ Same changes as in `@mui/x-data-grid-pro@7.25.0`.
2619
+
2620
+ ### Date and Time Pickers
2621
+
2622
+ #### `@mui/x-date-pickers@7.25.0`
2623
+
2624
+ Internal changes.
2625
+
2626
+ #### `@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')
2627
+
2628
+ Same changes as in `@mui/x-date-pickers@7.25.0`.
2629
+
2630
+ ### Charts
2631
+
2632
+ #### `@mui/x-charts@7.25.0`
2633
+
2634
+ Internal changes.
2635
+
2636
+ #### `@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')
2637
+
2638
+ Same changes as in `@mui/x-charts@7.25.0`.
2639
+
2640
+ ### Tree View
2641
+
2642
+ #### `@mui/x-tree-view@7.25.0`
2643
+
2644
+ Internal changes.
2645
+
2646
+ #### `@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')
2647
+
2648
+ Same changes as in `@mui/x-tree-view@7.25.0`.
2649
+
2650
+ ### Docs
2651
+
2652
+ - [docs] Improve release documentation (#16322) @MBilalShafi
2653
+
2654
+ ### Core
2655
+
2656
+ - [test] Fix flaky data source tests in DataGrid (#16382) @lauri865
2657
+
1212
2658
  ## 7.24.1
1213
2659
 
1214
2660
  _Jan 24, 2025_