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

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