@mui/x-tree-view 8.0.0-alpha.8 → 8.0.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (798) hide show
  1. package/CHANGELOG.md +2566 -687
  2. package/README.md +1 -1
  3. package/RichTreeView/RichTreeView.d.ts +4 -4
  4. package/RichTreeView/RichTreeView.js +100 -79
  5. package/RichTreeView/RichTreeView.plugins.d.ts +9 -10
  6. package/RichTreeView/RichTreeView.plugins.js +14 -8
  7. package/RichTreeView/RichTreeView.types.d.ts +40 -40
  8. package/RichTreeView/RichTreeView.types.js +5 -1
  9. package/RichTreeView/index.d.ts +5 -5
  10. package/RichTreeView/index.js +39 -3
  11. package/RichTreeView/richTreeViewClasses.d.ts +3 -3
  12. package/RichTreeView/richTreeViewClasses.js +13 -5
  13. package/SimpleTreeView/SimpleTreeView.d.ts +5 -5
  14. package/SimpleTreeView/SimpleTreeView.js +73 -65
  15. package/SimpleTreeView/SimpleTreeView.plugins.d.ts +8 -9
  16. package/SimpleTreeView/SimpleTreeView.plugins.js +14 -8
  17. package/SimpleTreeView/SimpleTreeView.types.d.ts +41 -41
  18. package/SimpleTreeView/SimpleTreeView.types.js +5 -1
  19. package/SimpleTreeView/index.d.ts +3 -3
  20. package/SimpleTreeView/index.js +27 -3
  21. package/SimpleTreeView/simpleTreeViewClasses.d.ts +3 -3
  22. package/SimpleTreeView/simpleTreeViewClasses.js +13 -5
  23. package/TreeItem/TreeItem.d.ts +10 -8
  24. package/TreeItem/TreeItem.js +121 -73
  25. package/TreeItem/TreeItem.types.d.ts +97 -84
  26. package/TreeItem/TreeItem.types.js +5 -1
  27. package/TreeItem/index.d.ts +2 -2
  28. package/TreeItem/index.js +69 -2
  29. package/TreeItem/treeItemClasses.d.ts +29 -29
  30. package/TreeItem/treeItemClasses.js +13 -5
  31. package/TreeItemDragAndDropOverlay/TreeItemDragAndDropOverlay.d.ts +3 -3
  32. package/TreeItemDragAndDropOverlay/TreeItemDragAndDropOverlay.js +21 -15
  33. package/TreeItemDragAndDropOverlay/TreeItemDragAndDropOverlay.types.d.ts +4 -4
  34. package/TreeItemDragAndDropOverlay/TreeItemDragAndDropOverlay.types.js +5 -1
  35. package/TreeItemDragAndDropOverlay/index.d.ts +2 -2
  36. package/TreeItemDragAndDropOverlay/index.js +12 -1
  37. package/TreeItemIcon/TreeItemIcon.d.ts +3 -3
  38. package/TreeItemIcon/TreeItemIcon.js +35 -27
  39. package/TreeItemIcon/TreeItemIcon.types.d.ts +33 -33
  40. package/TreeItemIcon/TreeItemIcon.types.js +5 -1
  41. package/TreeItemIcon/index.d.ts +2 -2
  42. package/TreeItemIcon/index.js +12 -1
  43. package/TreeItemLabelInput/TreeItemLabelInput.d.ts +1 -1
  44. package/TreeItemLabelInput/TreeItemLabelInput.js +11 -6
  45. package/TreeItemLabelInput/TreeItemLabelInput.types.d.ts +12 -12
  46. package/TreeItemLabelInput/TreeItemLabelInput.types.js +5 -1
  47. package/TreeItemLabelInput/index.d.ts +2 -2
  48. package/TreeItemLabelInput/index.js +12 -1
  49. package/TreeItemProvider/TreeItemProvider.d.ts +3 -3
  50. package/TreeItemProvider/TreeItemProvider.js +22 -16
  51. package/TreeItemProvider/TreeItemProvider.types.d.ts +5 -5
  52. package/TreeItemProvider/TreeItemProvider.types.js +5 -1
  53. package/TreeItemProvider/index.d.ts +2 -2
  54. package/TreeItemProvider/index.js +12 -1
  55. package/esm/RichTreeView/RichTreeView.d.ts +18 -0
  56. package/{node → esm}/RichTreeView/RichTreeView.js +94 -85
  57. package/esm/RichTreeView/RichTreeView.plugins.d.ts +13 -0
  58. package/esm/RichTreeView/RichTreeView.plugins.js +10 -0
  59. package/esm/RichTreeView/RichTreeView.types.d.ts +52 -0
  60. package/esm/RichTreeView/RichTreeView.types.js +1 -0
  61. package/esm/RichTreeView/index.d.ts +5 -0
  62. package/esm/RichTreeView/index.js +3 -0
  63. package/esm/RichTreeView/richTreeViewClasses.d.ts +7 -0
  64. package/esm/RichTreeView/richTreeViewClasses.js +6 -0
  65. package/esm/SimpleTreeView/SimpleTreeView.d.ts +20 -0
  66. package/{node → esm}/SimpleTreeView/SimpleTreeView.js +67 -71
  67. package/esm/SimpleTreeView/SimpleTreeView.plugins.d.ts +12 -0
  68. package/esm/SimpleTreeView/SimpleTreeView.plugins.js +10 -0
  69. package/esm/SimpleTreeView/SimpleTreeView.types.d.ts +51 -0
  70. package/esm/SimpleTreeView/SimpleTreeView.types.js +1 -0
  71. package/esm/SimpleTreeView/index.d.ts +3 -0
  72. package/esm/SimpleTreeView/index.js +3 -0
  73. package/esm/SimpleTreeView/simpleTreeViewClasses.d.ts +7 -0
  74. package/esm/SimpleTreeView/simpleTreeViewClasses.js +6 -0
  75. package/esm/TreeItem/TreeItem.d.ts +33 -0
  76. package/{node → esm}/TreeItem/TreeItem.js +114 -80
  77. package/esm/TreeItem/TreeItem.types.d.ts +107 -0
  78. package/esm/TreeItem/TreeItem.types.js +1 -0
  79. package/esm/TreeItem/index.d.ts +3 -0
  80. package/esm/TreeItem/index.js +2 -0
  81. package/esm/TreeItem/treeItemClasses.d.ts +33 -0
  82. package/esm/TreeItem/treeItemClasses.js +6 -0
  83. package/esm/TreeItemDragAndDropOverlay/TreeItemDragAndDropOverlay.d.ts +7 -0
  84. package/{node → esm}/TreeItemDragAndDropOverlay/TreeItemDragAndDropOverlay.js +15 -21
  85. package/esm/TreeItemDragAndDropOverlay/TreeItemDragAndDropOverlay.types.d.ts +6 -0
  86. package/esm/TreeItemDragAndDropOverlay/TreeItemDragAndDropOverlay.types.js +1 -0
  87. package/esm/TreeItemDragAndDropOverlay/index.d.ts +2 -0
  88. package/esm/TreeItemDragAndDropOverlay/index.js +1 -0
  89. package/esm/TreeItemIcon/TreeItemIcon.d.ts +7 -0
  90. package/esm/TreeItemIcon/TreeItemIcon.js +74 -0
  91. package/esm/TreeItemIcon/TreeItemIcon.types.d.ts +40 -0
  92. package/esm/TreeItemIcon/TreeItemIcon.types.js +1 -0
  93. package/esm/TreeItemIcon/index.d.ts +2 -0
  94. package/esm/TreeItemIcon/index.js +1 -0
  95. package/esm/TreeItemLabelInput/TreeItemLabelInput.d.ts +5 -0
  96. package/esm/TreeItemLabelInput/TreeItemLabelInput.js +24 -0
  97. package/esm/TreeItemLabelInput/TreeItemLabelInput.types.d.ts +14 -0
  98. package/esm/TreeItemLabelInput/TreeItemLabelInput.types.js +1 -0
  99. package/esm/TreeItemLabelInput/index.d.ts +2 -0
  100. package/esm/TreeItemLabelInput/index.js +1 -0
  101. package/esm/TreeItemProvider/TreeItemProvider.d.ts +7 -0
  102. package/esm/TreeItemProvider/TreeItemProvider.js +45 -0
  103. package/esm/TreeItemProvider/TreeItemProvider.types.d.ts +7 -0
  104. package/esm/TreeItemProvider/TreeItemProvider.types.js +1 -0
  105. package/esm/TreeItemProvider/index.d.ts +2 -0
  106. package/esm/TreeItemProvider/index.js +1 -0
  107. package/esm/hooks/index.d.ts +3 -0
  108. package/esm/hooks/index.js +3 -0
  109. package/esm/hooks/useTreeItemModel.d.ts +2 -0
  110. package/esm/hooks/useTreeItemModel.js +11 -0
  111. package/esm/hooks/useTreeItemUtils/index.d.ts +1 -0
  112. package/esm/hooks/useTreeItemUtils/index.js +1 -0
  113. package/esm/hooks/useTreeItemUtils/useTreeItemUtils.d.ts +42 -0
  114. package/{node → esm}/hooks/useTreeItemUtils/useTreeItemUtils.js +45 -39
  115. package/esm/hooks/useTreeViewApiRef.d.ts +7 -0
  116. package/esm/hooks/useTreeViewApiRef.js +7 -0
  117. package/esm/icons/icons.d.ts +6 -0
  118. package/esm/icons/icons.js +9 -0
  119. package/esm/icons/index.d.ts +1 -0
  120. package/esm/icons/index.js +1 -0
  121. package/esm/index.d.ts +12 -0
  122. package/esm/index.js +22 -0
  123. package/esm/internals/TreeViewItemDepthContext/TreeViewItemDepthContext.d.ts +5 -0
  124. package/esm/internals/TreeViewItemDepthContext/TreeViewItemDepthContext.js +5 -0
  125. package/esm/internals/TreeViewItemDepthContext/index.d.ts +1 -0
  126. package/esm/internals/TreeViewItemDepthContext/index.js +1 -0
  127. package/esm/internals/TreeViewProvider/TreeViewChildrenItemProvider.d.ts +17 -0
  128. package/{node → esm}/internals/TreeViewProvider/TreeViewChildrenItemProvider.js +14 -23
  129. package/esm/internals/TreeViewProvider/TreeViewContext.d.ts +6 -0
  130. package/esm/internals/TreeViewProvider/TreeViewContext.js +8 -0
  131. package/esm/internals/TreeViewProvider/TreeViewProvider.d.ts +9 -0
  132. package/esm/internals/TreeViewProvider/TreeViewProvider.js +20 -0
  133. package/esm/internals/TreeViewProvider/TreeViewProvider.types.d.ts +19 -0
  134. package/esm/internals/TreeViewProvider/TreeViewProvider.types.js +1 -0
  135. package/esm/internals/TreeViewProvider/index.d.ts +3 -0
  136. package/esm/internals/TreeViewProvider/index.js +2 -0
  137. package/esm/internals/TreeViewProvider/useTreeViewContext.d.ts +3 -0
  138. package/esm/internals/TreeViewProvider/useTreeViewContext.js +9 -0
  139. package/esm/internals/components/RichTreeViewItems.d.ts +32 -0
  140. package/esm/internals/components/RichTreeViewItems.js +68 -0
  141. package/esm/internals/corePlugins/corePlugins.d.ts +9 -0
  142. package/esm/internals/corePlugins/corePlugins.js +8 -0
  143. package/esm/internals/corePlugins/index.d.ts +2 -0
  144. package/esm/internals/corePlugins/index.js +1 -0
  145. package/esm/internals/corePlugins/useTreeViewId/index.d.ts +2 -0
  146. package/esm/internals/corePlugins/useTreeViewId/index.js +1 -0
  147. package/esm/internals/corePlugins/useTreeViewId/useTreeViewId.d.ts +3 -0
  148. package/esm/internals/corePlugins/useTreeViewId/useTreeViewId.js +39 -0
  149. package/esm/internals/corePlugins/useTreeViewId/useTreeViewId.selectors.d.ts +36 -0
  150. package/esm/internals/corePlugins/useTreeViewId/useTreeViewId.selectors.js +9 -0
  151. package/esm/internals/corePlugins/useTreeViewId/useTreeViewId.types.d.ts +20 -0
  152. package/esm/internals/corePlugins/useTreeViewId/useTreeViewId.types.js +1 -0
  153. package/esm/internals/corePlugins/useTreeViewId/useTreeViewId.utils.d.ts +21 -0
  154. package/{node → esm}/internals/corePlugins/useTreeViewId/useTreeViewId.utils.js +3 -11
  155. package/esm/internals/corePlugins/useTreeViewInstanceEvents/index.d.ts +2 -0
  156. package/esm/internals/corePlugins/useTreeViewInstanceEvents/index.js +1 -0
  157. package/esm/internals/corePlugins/useTreeViewInstanceEvents/useTreeViewInstanceEvents.d.ts +3 -0
  158. package/{node → esm}/internals/corePlugins/useTreeViewInstanceEvents/useTreeViewInstanceEvents.js +4 -12
  159. package/esm/internals/corePlugins/useTreeViewInstanceEvents/useTreeViewInstanceEvents.types.d.ts +22 -0
  160. package/esm/internals/corePlugins/useTreeViewInstanceEvents/useTreeViewInstanceEvents.types.js +1 -0
  161. package/esm/internals/corePlugins/useTreeViewOptionalPlugins/index.d.ts +2 -0
  162. package/esm/internals/corePlugins/useTreeViewOptionalPlugins/index.js +1 -0
  163. package/esm/internals/corePlugins/useTreeViewOptionalPlugins/useTreeViewOptionalPlugins.d.ts +3 -0
  164. package/esm/internals/corePlugins/useTreeViewOptionalPlugins/useTreeViewOptionalPlugins.js +12 -0
  165. package/esm/internals/corePlugins/useTreeViewOptionalPlugins/useTreeViewOptionalPlugins.types.d.ts +8 -0
  166. package/esm/internals/corePlugins/useTreeViewOptionalPlugins/useTreeViewOptionalPlugins.types.js +1 -0
  167. package/esm/internals/hooks/useInstanceEventHandler.d.ts +15 -0
  168. package/{node → esm}/internals/hooks/useInstanceEventHandler.js +7 -16
  169. package/esm/internals/hooks/useLazyRef.d.ts +1 -0
  170. package/esm/internals/hooks/useLazyRef.js +1 -0
  171. package/esm/internals/hooks/useOnMount.d.ts +1 -0
  172. package/esm/internals/hooks/useOnMount.js +1 -0
  173. package/esm/internals/hooks/useSelector.d.ts +4 -0
  174. package/esm/internals/hooks/useSelector.js +9 -0
  175. package/esm/internals/hooks/useTimeout.d.ts +1 -0
  176. package/esm/internals/hooks/useTimeout.js +1 -0
  177. package/esm/internals/index.d.ts +33 -0
  178. package/esm/internals/index.js +24 -0
  179. package/esm/internals/models/events.d.ts +9 -0
  180. package/esm/internals/models/events.js +1 -0
  181. package/esm/internals/models/helpers.d.ts +7 -0
  182. package/esm/internals/models/helpers.js +1 -0
  183. package/esm/internals/models/index.d.ts +4 -0
  184. package/esm/internals/models/index.js +4 -0
  185. package/esm/internals/models/itemPlugin.d.ts +43 -0
  186. package/esm/internals/models/itemPlugin.js +1 -0
  187. package/esm/internals/models/plugin.d.ts +151 -0
  188. package/esm/internals/models/plugin.js +1 -0
  189. package/esm/internals/models/treeView.d.ts +32 -0
  190. package/esm/internals/models/treeView.js +1 -0
  191. package/esm/internals/plugins/useTreeViewExpansion/index.d.ts +2 -0
  192. package/esm/internals/plugins/useTreeViewExpansion/index.js +1 -0
  193. package/esm/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.d.ts +3 -0
  194. package/esm/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.js +134 -0
  195. package/esm/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.selectors.d.ts +184 -0
  196. package/esm/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.selectors.js +24 -0
  197. package/esm/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.types.d.ts +102 -0
  198. package/esm/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.types.js +1 -0
  199. package/esm/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.utils.d.ts +7 -0
  200. package/esm/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.utils.js +19 -0
  201. package/esm/internals/plugins/useTreeViewFocus/index.d.ts +2 -0
  202. package/esm/internals/plugins/useTreeViewFocus/index.js +1 -0
  203. package/esm/internals/plugins/useTreeViewFocus/useTreeViewFocus.d.ts +3 -0
  204. package/esm/internals/plugins/useTreeViewFocus/useTreeViewFocus.js +135 -0
  205. package/esm/internals/plugins/useTreeViewFocus/useTreeViewFocus.selectors.d.ts +182 -0
  206. package/{node → esm}/internals/plugins/useTreeViewFocus/useTreeViewFocus.selectors.js +5 -11
  207. package/esm/internals/plugins/useTreeViewFocus/useTreeViewFocus.types.d.ts +45 -0
  208. package/esm/internals/plugins/useTreeViewFocus/useTreeViewFocus.types.js +1 -0
  209. package/esm/internals/plugins/useTreeViewIcons/index.d.ts +2 -0
  210. package/esm/internals/plugins/useTreeViewIcons/index.js +1 -0
  211. package/esm/internals/plugins/useTreeViewIcons/useTreeViewIcons.d.ts +3 -0
  212. package/{node → esm}/internals/plugins/useTreeViewIcons/useTreeViewIcons.js +2 -10
  213. package/esm/internals/plugins/useTreeViewIcons/useTreeViewIcons.types.d.ts +42 -0
  214. package/esm/internals/plugins/useTreeViewIcons/useTreeViewIcons.types.js +1 -0
  215. package/esm/internals/plugins/useTreeViewItems/index.d.ts +3 -0
  216. package/esm/internals/plugins/useTreeViewItems/index.js +2 -0
  217. package/esm/internals/plugins/useTreeViewItems/useTreeViewItems.d.ts +3 -0
  218. package/esm/internals/plugins/useTreeViewItems/useTreeViewItems.js +330 -0
  219. package/esm/internals/plugins/useTreeViewItems/useTreeViewItems.selectors.d.ts +1058 -0
  220. package/{node → esm}/internals/plugins/useTreeViewItems/useTreeViewItems.selectors.js +25 -18
  221. package/esm/internals/plugins/useTreeViewItems/useTreeViewItems.types.d.ts +205 -0
  222. package/esm/internals/plugins/useTreeViewItems/useTreeViewItems.types.js +1 -0
  223. package/esm/internals/plugins/useTreeViewItems/useTreeViewItems.utils.d.ts +4 -0
  224. package/esm/internals/plugins/useTreeViewItems/useTreeViewItems.utils.js +8 -0
  225. package/esm/internals/plugins/useTreeViewJSXItems/index.d.ts +2 -0
  226. package/esm/internals/plugins/useTreeViewJSXItems/index.js +1 -0
  227. package/esm/internals/plugins/useTreeViewJSXItems/useTreeViewJSXItems.d.ts +3 -0
  228. package/esm/internals/plugins/useTreeViewJSXItems/useTreeViewJSXItems.js +183 -0
  229. package/esm/internals/plugins/useTreeViewJSXItems/useTreeViewJSXItems.types.d.ts +35 -0
  230. package/esm/internals/plugins/useTreeViewJSXItems/useTreeViewJSXItems.types.js +1 -0
  231. package/esm/internals/plugins/useTreeViewKeyboardNavigation/index.d.ts +2 -0
  232. package/esm/internals/plugins/useTreeViewKeyboardNavigation/index.js +1 -0
  233. package/esm/internals/plugins/useTreeViewKeyboardNavigation/useTreeViewKeyboardNavigation.d.ts +3 -0
  234. package/{node → esm}/internals/plugins/useTreeViewKeyboardNavigation/useTreeViewKeyboardNavigation.js +47 -47
  235. package/esm/internals/plugins/useTreeViewKeyboardNavigation/useTreeViewKeyboardNavigation.types.d.ts +33 -0
  236. package/esm/internals/plugins/useTreeViewKeyboardNavigation/useTreeViewKeyboardNavigation.types.js +1 -0
  237. package/esm/internals/plugins/useTreeViewLabel/index.d.ts +2 -0
  238. package/esm/internals/plugins/useTreeViewLabel/index.js +1 -0
  239. package/esm/internals/plugins/useTreeViewLabel/useTreeViewLabel.d.ts +3 -0
  240. package/esm/internals/plugins/useTreeViewLabel/useTreeViewLabel.itemPlugin.d.ts +2 -0
  241. package/{node → esm}/internals/plugins/useTreeViewLabel/useTreeViewLabel.itemPlugin.js +9 -17
  242. package/esm/internals/plugins/useTreeViewLabel/useTreeViewLabel.js +68 -0
  243. package/esm/internals/plugins/useTreeViewLabel/useTreeViewLabel.selectors.d.ts +74 -0
  244. package/{node → esm}/internals/plugins/useTreeViewLabel/useTreeViewLabel.selectors.js +4 -10
  245. package/esm/internals/plugins/useTreeViewLabel/useTreeViewLabel.types.d.ts +59 -0
  246. package/esm/internals/plugins/useTreeViewLabel/useTreeViewLabel.types.js +1 -0
  247. package/esm/internals/plugins/useTreeViewLazyLoading/index.d.ts +1 -0
  248. package/esm/internals/plugins/useTreeViewLazyLoading/index.js +1 -0
  249. package/esm/internals/plugins/useTreeViewLazyLoading/useTreeViewLazyLoading.selectors.d.ts +249 -0
  250. package/esm/internals/plugins/useTreeViewLazyLoading/useTreeViewLazyLoading.selectors.js +27 -0
  251. package/esm/internals/plugins/useTreeViewLazyLoading/useTreeViewLazyLoading.types.d.ts +83 -0
  252. package/esm/internals/plugins/useTreeViewLazyLoading/useTreeViewLazyLoading.types.js +1 -0
  253. package/esm/internals/plugins/useTreeViewSelection/index.d.ts +2 -0
  254. package/esm/internals/plugins/useTreeViewSelection/index.js +1 -0
  255. package/esm/internals/plugins/useTreeViewSelection/useTreeViewSelection.d.ts +3 -0
  256. package/esm/internals/plugins/useTreeViewSelection/useTreeViewSelection.itemPlugin.d.ts +2 -0
  257. package/{node → esm}/internals/plugins/useTreeViewSelection/useTreeViewSelection.itemPlugin.js +14 -22
  258. package/{node → esm}/internals/plugins/useTreeViewSelection/useTreeViewSelection.js +34 -43
  259. package/esm/internals/plugins/useTreeViewSelection/useTreeViewSelection.selectors.d.ts +32 -0
  260. package/esm/internals/plugins/useTreeViewSelection/useTreeViewSelection.selectors.js +9 -0
  261. package/esm/internals/plugins/useTreeViewSelection/useTreeViewSelection.types.d.ts +144 -0
  262. package/esm/internals/plugins/useTreeViewSelection/useTreeViewSelection.types.js +1 -0
  263. package/esm/internals/plugins/useTreeViewSelection/useTreeViewSelection.utils.d.ts +38 -0
  264. package/{node → esm}/internals/plugins/useTreeViewSelection/useTreeViewSelection.utils.js +16 -26
  265. package/esm/internals/useTreeView/extractPluginParamsFromProps.d.ts +22 -0
  266. package/{node → esm}/internals/useTreeView/extractPluginParamsFromProps.js +4 -12
  267. package/esm/internals/useTreeView/index.d.ts +1 -0
  268. package/esm/internals/useTreeView/index.js +1 -0
  269. package/esm/internals/useTreeView/useTreeView.d.ts +9 -0
  270. package/{node → esm}/internals/useTreeView/useTreeView.js +19 -29
  271. package/esm/internals/useTreeView/useTreeView.types.d.ts +23 -0
  272. package/esm/internals/useTreeView/useTreeView.types.js +1 -0
  273. package/esm/internals/useTreeView/useTreeViewBuildContext.d.ts +18 -0
  274. package/{node → esm}/internals/useTreeView/useTreeViewBuildContext.js +3 -11
  275. package/esm/internals/useTreeView/useTreeViewModels.d.ts +7 -0
  276. package/{node → esm}/internals/useTreeView/useTreeViewModels.js +5 -14
  277. package/esm/internals/useTreeView/useTreeViewPlugins.d.ts +0 -0
  278. package/esm/internals/useTreeView/useTreeViewPlugins.js +0 -0
  279. package/esm/internals/utils/TreeViewStore.d.ts +12 -0
  280. package/{node → esm}/internals/utils/TreeViewStore.js +2 -9
  281. package/esm/internals/utils/cleanupTracking/CleanupTracking.d.ts +9 -0
  282. package/esm/internals/utils/cleanupTracking/CleanupTracking.js +1 -0
  283. package/esm/internals/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.d.ts +7 -0
  284. package/{node → esm}/internals/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.js +2 -9
  285. package/esm/internals/utils/cleanupTracking/TimerBasedCleanupTracking.d.ts +9 -0
  286. package/{node → esm}/internals/utils/cleanupTracking/TimerBasedCleanupTracking.js +2 -9
  287. package/esm/internals/utils/plugins.d.ts +2 -0
  288. package/esm/internals/utils/plugins.js +4 -0
  289. package/esm/internals/utils/publishTreeViewEvent.d.ts +5 -0
  290. package/esm/internals/utils/publishTreeViewEvent.js +3 -0
  291. package/esm/internals/utils/selectors.d.ts +16 -0
  292. package/{node → esm}/internals/utils/selectors.js +14 -12
  293. package/esm/internals/utils/tree.d.ts +32 -0
  294. package/{node → esm}/internals/utils/tree.js +41 -55
  295. package/esm/internals/utils/utils.d.ts +2 -0
  296. package/{node → esm}/internals/utils/utils.js +2 -10
  297. package/esm/internals/zero-styled/index.d.ts +3 -0
  298. package/esm/internals/zero-styled/index.js +7 -0
  299. package/esm/models/events.d.ts +4 -0
  300. package/esm/models/events.js +1 -0
  301. package/esm/models/index.d.ts +3 -0
  302. package/esm/models/index.js +5 -0
  303. package/esm/models/items.d.ts +13 -0
  304. package/esm/models/items.js +1 -0
  305. package/esm/package.json +1 -0
  306. package/esm/themeAugmentation/components.d.ts +21 -0
  307. package/esm/themeAugmentation/index.d.ts +3 -0
  308. package/esm/themeAugmentation/index.js +0 -0
  309. package/esm/themeAugmentation/overrides.d.ts +16 -0
  310. package/esm/themeAugmentation/props.d.ts +14 -0
  311. package/esm/useTreeItem/index.d.ts +2 -0
  312. package/esm/useTreeItem/index.js +1 -0
  313. package/esm/useTreeItem/useTreeItem.d.ts +2 -0
  314. package/{node → esm}/useTreeItem/useTreeItem.js +67 -62
  315. package/esm/useTreeItem/useTreeItem.types.d.ts +196 -0
  316. package/esm/useTreeItem/useTreeItem.types.js +1 -0
  317. package/esm/utils/cache.d.ts +38 -0
  318. package/esm/utils/cache.js +31 -0
  319. package/esm/utils/index.d.ts +1 -0
  320. package/esm/utils/index.js +1 -0
  321. package/hooks/index.d.ts +3 -3
  322. package/hooks/index.js +26 -3
  323. package/hooks/useTreeItemModel.d.ts +2 -2
  324. package/hooks/useTreeItemModel.js +13 -7
  325. package/hooks/useTreeItemUtils/index.d.ts +1 -1
  326. package/hooks/useTreeItemUtils/index.js +12 -1
  327. package/hooks/useTreeItemUtils/useTreeItemUtils.d.ts +25 -26
  328. package/hooks/useTreeItemUtils/useTreeItemUtils.js +51 -33
  329. package/hooks/useTreeViewApiRef.d.ts +3 -3
  330. package/hooks/useTreeViewApiRef.js +9 -2
  331. package/icons/icons.d.ts +3 -3
  332. package/icons/icons.js +12 -5
  333. package/icons/index.d.ts +1 -1
  334. package/icons/index.js +16 -1
  335. package/index.d.ts +12 -12
  336. package/index.js +147 -15
  337. package/internals/TreeViewItemDepthContext/TreeViewItemDepthContext.d.ts +3 -3
  338. package/internals/TreeViewItemDepthContext/TreeViewItemDepthContext.js +9 -2
  339. package/internals/TreeViewItemDepthContext/index.d.ts +1 -1
  340. package/internals/TreeViewItemDepthContext/index.js +12 -1
  341. package/internals/TreeViewProvider/TreeViewChildrenItemProvider.d.ts +8 -8
  342. package/internals/TreeViewProvider/TreeViewChildrenItemProvider.js +23 -14
  343. package/internals/TreeViewProvider/TreeViewContext.d.ts +2 -2
  344. package/internals/TreeViewProvider/TreeViewContext.js +9 -2
  345. package/internals/TreeViewProvider/TreeViewProvider.d.ts +3 -3
  346. package/internals/TreeViewProvider/TreeViewProvider.js +12 -5
  347. package/internals/TreeViewProvider/TreeViewProvider.types.d.ts +13 -13
  348. package/internals/TreeViewProvider/TreeViewProvider.types.js +5 -1
  349. package/internals/TreeViewProvider/index.d.ts +3 -3
  350. package/internals/TreeViewProvider/index.js +19 -2
  351. package/internals/TreeViewProvider/useTreeViewContext.d.ts +3 -3
  352. package/internals/TreeViewProvider/useTreeViewContext.js +13 -5
  353. package/internals/components/RichTreeViewItems.d.ts +21 -21
  354. package/internals/components/RichTreeViewItems.js +31 -23
  355. package/internals/corePlugins/corePlugins.d.ts +3 -4
  356. package/internals/corePlugins/corePlugins.js +10 -4
  357. package/internals/corePlugins/index.d.ts +2 -2
  358. package/internals/corePlugins/index.js +12 -1
  359. package/internals/corePlugins/useTreeViewId/index.d.ts +2 -2
  360. package/internals/corePlugins/useTreeViewId/index.js +12 -1
  361. package/internals/corePlugins/useTreeViewId/useTreeViewId.d.ts +3 -3
  362. package/internals/corePlugins/useTreeViewId/useTreeViewId.js +19 -10
  363. package/internals/corePlugins/useTreeViewId/useTreeViewId.selectors.d.ts +25 -25
  364. package/internals/corePlugins/useTreeViewId/useTreeViewId.selectors.js +8 -2
  365. package/internals/corePlugins/useTreeViewId/useTreeViewId.types.d.ts +14 -14
  366. package/internals/corePlugins/useTreeViewId/useTreeViewId.types.js +5 -1
  367. package/internals/corePlugins/useTreeViewId/useTreeViewId.utils.d.ts +10 -6
  368. package/internals/corePlugins/useTreeViewId/useTreeViewId.utils.js +11 -3
  369. package/internals/corePlugins/useTreeViewInstanceEvents/index.d.ts +2 -2
  370. package/internals/corePlugins/useTreeViewInstanceEvents/index.js +12 -1
  371. package/internals/corePlugins/useTreeViewInstanceEvents/useTreeViewInstanceEvents.d.ts +2 -2
  372. package/internals/corePlugins/useTreeViewInstanceEvents/useTreeViewInstanceEvents.js +12 -4
  373. package/internals/corePlugins/useTreeViewInstanceEvents/useTreeViewInstanceEvents.types.d.ts +19 -19
  374. package/internals/corePlugins/useTreeViewInstanceEvents/useTreeViewInstanceEvents.types.js +5 -1
  375. package/internals/corePlugins/useTreeViewOptionalPlugins/index.d.ts +2 -2
  376. package/internals/corePlugins/useTreeViewOptionalPlugins/index.js +12 -1
  377. package/internals/corePlugins/useTreeViewOptionalPlugins/useTreeViewOptionalPlugins.d.ts +3 -3
  378. package/internals/corePlugins/useTreeViewOptionalPlugins/useTreeViewOptionalPlugins.js +8 -1
  379. package/internals/corePlugins/useTreeViewOptionalPlugins/useTreeViewOptionalPlugins.types.d.ts +4 -4
  380. package/internals/corePlugins/useTreeViewOptionalPlugins/useTreeViewOptionalPlugins.types.js +5 -1
  381. package/internals/hooks/useInstanceEventHandler.d.ts +8 -8
  382. package/internals/hooks/useInstanceEventHandler.js +16 -7
  383. package/internals/hooks/useLazyRef.d.ts +1 -1
  384. package/internals/hooks/useLazyRef.js +13 -1
  385. package/internals/hooks/useOnMount.d.ts +1 -1
  386. package/internals/hooks/useOnMount.js +13 -1
  387. package/internals/hooks/useSelector.d.ts +4 -4
  388. package/internals/hooks/useSelector.js +15 -4
  389. package/internals/hooks/useTimeout.d.ts +1 -1
  390. package/internals/hooks/useTimeout.js +13 -1
  391. package/internals/index.d.ts +31 -26
  392. package/internals/index.js +192 -20
  393. package/internals/models/events.d.ts +3 -3
  394. package/internals/models/events.js +5 -1
  395. package/internals/models/helpers.d.ts +1 -1
  396. package/internals/models/helpers.js +5 -1
  397. package/internals/models/index.d.ts +4 -4
  398. package/internals/models/index.js +49 -4
  399. package/internals/models/itemPlugin.d.ts +28 -28
  400. package/internals/models/itemPlugin.js +5 -1
  401. package/internals/models/plugin.d.ts +125 -148
  402. package/internals/models/plugin.js +5 -1
  403. package/internals/models/treeView.d.ts +19 -19
  404. package/internals/models/treeView.js +5 -1
  405. package/internals/plugins/useTreeViewExpansion/index.d.ts +2 -2
  406. package/internals/plugins/useTreeViewExpansion/index.js +12 -1
  407. package/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.d.ts +3 -3
  408. package/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.js +64 -33
  409. package/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.selectors.d.ts +141 -137
  410. package/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.selectors.js +11 -5
  411. package/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.types.d.ts +88 -64
  412. package/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.types.js +5 -1
  413. package/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.utils.d.ts +6 -3
  414. package/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.utils.js +11 -3
  415. package/internals/plugins/useTreeViewFocus/index.d.ts +2 -2
  416. package/internals/plugins/useTreeViewFocus/index.js +12 -1
  417. package/internals/plugins/useTreeViewFocus/useTreeViewFocus.d.ts +3 -3
  418. package/internals/plugins/useTreeViewFocus/useTreeViewFocus.js +40 -31
  419. package/internals/plugins/useTreeViewFocus/useTreeViewFocus.selectors.d.ts +121 -121
  420. package/internals/plugins/useTreeViewFocus/useTreeViewFocus.selectors.js +11 -5
  421. package/internals/plugins/useTreeViewFocus/useTreeViewFocus.types.d.ts +32 -36
  422. package/internals/plugins/useTreeViewFocus/useTreeViewFocus.types.js +5 -1
  423. package/internals/plugins/useTreeViewIcons/index.d.ts +2 -2
  424. package/internals/plugins/useTreeViewIcons/index.js +12 -1
  425. package/internals/plugins/useTreeViewIcons/useTreeViewIcons.d.ts +3 -3
  426. package/internals/plugins/useTreeViewIcons/useTreeViewIcons.js +10 -2
  427. package/internals/plugins/useTreeViewIcons/useTreeViewIcons.types.d.ts +31 -32
  428. package/internals/plugins/useTreeViewIcons/useTreeViewIcons.types.js +5 -1
  429. package/internals/plugins/useTreeViewItems/index.d.ts +3 -3
  430. package/internals/plugins/useTreeViewItems/index.js +25 -2
  431. package/internals/plugins/useTreeViewItems/useTreeViewItems.d.ts +3 -3
  432. package/internals/plugins/useTreeViewItems/useTreeViewItems.js +194 -44
  433. package/internals/plugins/useTreeViewItems/useTreeViewItems.selectors.d.ts +856 -684
  434. package/internals/plugins/useTreeViewItems/useTreeViewItems.selectors.js +31 -12
  435. package/internals/plugins/useTreeViewItems/useTreeViewItems.types.d.ts +179 -130
  436. package/internals/plugins/useTreeViewItems/useTreeViewItems.types.js +5 -1
  437. package/internals/plugins/useTreeViewItems/useTreeViewItems.utils.d.ts +2 -2
  438. package/internals/plugins/useTreeViewItems/useTreeViewItems.utils.js +10 -3
  439. package/internals/plugins/useTreeViewJSXItems/index.d.ts +2 -2
  440. package/internals/plugins/useTreeViewJSXItems/index.js +12 -1
  441. package/internals/plugins/useTreeViewJSXItems/useTreeViewJSXItems.d.ts +3 -3
  442. package/internals/plugins/useTreeViewJSXItems/useTreeViewJSXItems.js +56 -47
  443. package/internals/plugins/useTreeViewJSXItems/useTreeViewJSXItems.types.d.ts +32 -34
  444. package/internals/plugins/useTreeViewJSXItems/useTreeViewJSXItems.types.js +5 -1
  445. package/internals/plugins/useTreeViewKeyboardNavigation/index.d.ts +2 -2
  446. package/internals/plugins/useTreeViewKeyboardNavigation/index.js +12 -1
  447. package/internals/plugins/useTreeViewKeyboardNavigation/useTreeViewKeyboardNavigation.d.ts +3 -3
  448. package/internals/plugins/useTreeViewKeyboardNavigation/useTreeViewKeyboardNavigation.js +56 -38
  449. package/internals/plugins/useTreeViewKeyboardNavigation/useTreeViewKeyboardNavigation.types.d.ts +27 -31
  450. package/internals/plugins/useTreeViewKeyboardNavigation/useTreeViewKeyboardNavigation.types.js +5 -1
  451. package/internals/plugins/useTreeViewLabel/index.d.ts +2 -2
  452. package/internals/plugins/useTreeViewLabel/index.js +12 -1
  453. package/internals/plugins/useTreeViewLabel/useTreeViewLabel.d.ts +3 -3
  454. package/internals/plugins/useTreeViewLabel/useTreeViewLabel.itemPlugin.d.ts +2 -2
  455. package/internals/plugins/useTreeViewLabel/useTreeViewLabel.itemPlugin.js +17 -9
  456. package/internals/plugins/useTreeViewLabel/useTreeViewLabel.js +23 -24
  457. package/internals/plugins/useTreeViewLabel/useTreeViewLabel.selectors.d.ts +49 -49
  458. package/internals/plugins/useTreeViewLabel/useTreeViewLabel.selectors.js +10 -4
  459. package/internals/plugins/useTreeViewLabel/useTreeViewLabel.types.d.ts +44 -49
  460. package/internals/plugins/useTreeViewLabel/useTreeViewLabel.types.js +5 -1
  461. package/internals/plugins/useTreeViewLazyLoading/index.d.ts +1 -0
  462. package/internals/plugins/useTreeViewLazyLoading/useTreeViewLazyLoading.selectors.d.ts +249 -0
  463. package/internals/plugins/useTreeViewLazyLoading/useTreeViewLazyLoading.selectors.js +33 -0
  464. package/internals/plugins/useTreeViewLazyLoading/useTreeViewLazyLoading.types.d.ts +83 -0
  465. package/internals/plugins/useTreeViewSelection/index.d.ts +2 -2
  466. package/internals/plugins/useTreeViewSelection/index.js +12 -1
  467. package/internals/plugins/useTreeViewSelection/useTreeViewSelection.d.ts +3 -3
  468. package/internals/plugins/useTreeViewSelection/useTreeViewSelection.itemPlugin.d.ts +2 -2
  469. package/internals/plugins/useTreeViewSelection/useTreeViewSelection.itemPlugin.js +22 -14
  470. package/internals/plugins/useTreeViewSelection/useTreeViewSelection.js +43 -34
  471. package/internals/plugins/useTreeViewSelection/useTreeViewSelection.selectors.d.ts +22 -22
  472. package/internals/plugins/useTreeViewSelection/useTreeViewSelection.selectors.js +8 -2
  473. package/internals/plugins/useTreeViewSelection/useTreeViewSelection.types.d.ts +123 -128
  474. package/internals/plugins/useTreeViewSelection/useTreeViewSelection.types.js +5 -1
  475. package/internals/plugins/useTreeViewSelection/useTreeViewSelection.utils.d.ts +27 -17
  476. package/internals/plugins/useTreeViewSelection/useTreeViewSelection.utils.js +26 -16
  477. package/internals/useTreeView/extractPluginParamsFromProps.d.ts +18 -9
  478. package/internals/useTreeView/extractPluginParamsFromProps.js +12 -4
  479. package/internals/useTreeView/index.d.ts +1 -1
  480. package/internals/useTreeView/index.js +12 -1
  481. package/internals/useTreeView/useTreeView.d.ts +7 -3
  482. package/internals/useTreeView/useTreeView.js +29 -19
  483. package/internals/useTreeView/useTreeView.types.d.ts +13 -13
  484. package/internals/useTreeView/useTreeView.types.js +5 -1
  485. package/internals/useTreeView/useTreeViewBuildContext.d.ts +17 -11
  486. package/internals/useTreeView/useTreeViewBuildContext.js +11 -3
  487. package/internals/useTreeView/useTreeViewModels.d.ts +3 -3
  488. package/internals/useTreeView/useTreeViewModels.js +14 -5
  489. package/internals/useTreeView/useTreeViewPlugins.js +1 -0
  490. package/internals/utils/TreeViewStore.d.ts +7 -7
  491. package/internals/utils/TreeViewStore.js +9 -2
  492. package/internals/utils/cleanupTracking/CleanupTracking.d.ts +5 -5
  493. package/internals/utils/cleanupTracking/CleanupTracking.js +5 -1
  494. package/internals/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.d.ts +6 -6
  495. package/internals/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.js +9 -2
  496. package/internals/utils/cleanupTracking/TimerBasedCleanupTracking.d.ts +8 -8
  497. package/internals/utils/cleanupTracking/TimerBasedCleanupTracking.js +9 -2
  498. package/internals/utils/plugins.d.ts +2 -2
  499. package/internals/utils/plugins.js +9 -2
  500. package/internals/utils/publishTreeViewEvent.d.ts +4 -4
  501. package/internals/utils/publishTreeViewEvent.js +9 -2
  502. package/internals/utils/selectors.d.ts +9 -2
  503. package/internals/utils/selectors.js +21 -5
  504. package/internals/utils/tree.d.ts +2 -2
  505. package/internals/utils/tree.js +55 -41
  506. package/internals/utils/utils.d.ts +1 -1
  507. package/internals/utils/utils.js +10 -2
  508. package/internals/zero-styled/index.d.ts +1 -1
  509. package/internals/zero-styled/index.js +14 -4
  510. package/models/events.d.ts +2 -2
  511. package/models/events.js +5 -1
  512. package/models/index.d.ts +3 -3
  513. package/models/index.js +26 -4
  514. package/models/items.d.ts +6 -6
  515. package/models/items.js +5 -1
  516. package/modern/RichTreeView/RichTreeView.d.ts +18 -0
  517. package/modern/RichTreeView/RichTreeView.js +28 -13
  518. package/modern/RichTreeView/RichTreeView.plugins.d.ts +13 -0
  519. package/modern/RichTreeView/RichTreeView.types.d.ts +52 -0
  520. package/modern/RichTreeView/index.d.ts +5 -0
  521. package/modern/RichTreeView/richTreeViewClasses.d.ts +7 -0
  522. package/modern/SimpleTreeView/SimpleTreeView.d.ts +20 -0
  523. package/modern/SimpleTreeView/SimpleTreeView.js +8 -6
  524. package/modern/SimpleTreeView/SimpleTreeView.plugins.d.ts +12 -0
  525. package/modern/SimpleTreeView/SimpleTreeView.types.d.ts +51 -0
  526. package/modern/SimpleTreeView/index.d.ts +3 -0
  527. package/modern/SimpleTreeView/simpleTreeViewClasses.d.ts +7 -0
  528. package/modern/TreeItem/TreeItem.d.ts +33 -0
  529. package/modern/TreeItem/TreeItem.js +45 -4
  530. package/modern/TreeItem/TreeItem.types.d.ts +107 -0
  531. package/modern/TreeItem/index.d.ts +3 -0
  532. package/modern/TreeItem/treeItemClasses.d.ts +33 -0
  533. package/modern/TreeItemDragAndDropOverlay/TreeItemDragAndDropOverlay.d.ts +7 -0
  534. package/modern/TreeItemDragAndDropOverlay/TreeItemDragAndDropOverlay.types.d.ts +6 -0
  535. package/modern/TreeItemDragAndDropOverlay/index.d.ts +2 -0
  536. package/modern/TreeItemIcon/TreeItemIcon.d.ts +7 -0
  537. package/modern/TreeItemIcon/TreeItemIcon.js +2 -0
  538. package/modern/TreeItemIcon/TreeItemIcon.types.d.ts +40 -0
  539. package/modern/TreeItemIcon/index.d.ts +2 -0
  540. package/modern/TreeItemLabelInput/TreeItemLabelInput.d.ts +5 -0
  541. package/modern/TreeItemLabelInput/TreeItemLabelInput.types.d.ts +14 -0
  542. package/modern/TreeItemLabelInput/index.d.ts +2 -0
  543. package/modern/TreeItemProvider/TreeItemProvider.d.ts +7 -0
  544. package/modern/TreeItemProvider/TreeItemProvider.types.d.ts +7 -0
  545. package/modern/TreeItemProvider/index.d.ts +2 -0
  546. package/modern/hooks/index.d.ts +3 -0
  547. package/modern/hooks/useTreeItemModel.d.ts +2 -0
  548. package/modern/hooks/useTreeItemUtils/index.d.ts +1 -0
  549. package/modern/hooks/useTreeItemUtils/useTreeItemUtils.d.ts +42 -0
  550. package/modern/hooks/useTreeItemUtils/useTreeItemUtils.js +21 -9
  551. package/modern/hooks/useTreeViewApiRef.d.ts +7 -0
  552. package/modern/icons/icons.d.ts +6 -0
  553. package/modern/icons/index.d.ts +1 -0
  554. package/modern/index.d.ts +12 -0
  555. package/modern/index.js +1 -1
  556. package/modern/internals/TreeViewItemDepthContext/TreeViewItemDepthContext.d.ts +5 -0
  557. package/modern/internals/TreeViewItemDepthContext/index.d.ts +1 -0
  558. package/modern/internals/TreeViewProvider/TreeViewChildrenItemProvider.d.ts +17 -0
  559. package/modern/internals/TreeViewProvider/TreeViewContext.d.ts +6 -0
  560. package/modern/internals/TreeViewProvider/TreeViewProvider.d.ts +9 -0
  561. package/modern/internals/TreeViewProvider/TreeViewProvider.types.d.ts +19 -0
  562. package/modern/internals/TreeViewProvider/index.d.ts +3 -0
  563. package/modern/internals/TreeViewProvider/useTreeViewContext.d.ts +3 -0
  564. package/modern/internals/components/RichTreeViewItems.d.ts +32 -0
  565. package/modern/internals/corePlugins/corePlugins.d.ts +9 -0
  566. package/modern/internals/corePlugins/index.d.ts +2 -0
  567. package/modern/internals/corePlugins/useTreeViewId/index.d.ts +2 -0
  568. package/modern/internals/corePlugins/useTreeViewId/useTreeViewId.d.ts +3 -0
  569. package/modern/internals/corePlugins/useTreeViewId/useTreeViewId.selectors.d.ts +36 -0
  570. package/modern/internals/corePlugins/useTreeViewId/useTreeViewId.types.d.ts +20 -0
  571. package/modern/internals/corePlugins/useTreeViewId/useTreeViewId.utils.d.ts +21 -0
  572. package/modern/internals/corePlugins/useTreeViewInstanceEvents/index.d.ts +2 -0
  573. package/modern/internals/corePlugins/useTreeViewInstanceEvents/useTreeViewInstanceEvents.d.ts +3 -0
  574. package/modern/internals/corePlugins/useTreeViewInstanceEvents/useTreeViewInstanceEvents.types.d.ts +22 -0
  575. package/modern/internals/corePlugins/useTreeViewOptionalPlugins/index.d.ts +2 -0
  576. package/modern/internals/corePlugins/useTreeViewOptionalPlugins/useTreeViewOptionalPlugins.d.ts +3 -0
  577. package/modern/internals/corePlugins/useTreeViewOptionalPlugins/useTreeViewOptionalPlugins.types.d.ts +8 -0
  578. package/modern/internals/hooks/useInstanceEventHandler.d.ts +15 -0
  579. package/modern/internals/hooks/useLazyRef.d.ts +1 -0
  580. package/modern/internals/hooks/useOnMount.d.ts +1 -0
  581. package/modern/internals/hooks/useSelector.d.ts +4 -0
  582. package/modern/internals/hooks/useSelector.js +4 -1
  583. package/modern/internals/hooks/useTimeout.d.ts +1 -0
  584. package/modern/internals/index.d.ts +33 -0
  585. package/modern/internals/index.js +4 -1
  586. package/modern/internals/models/events.d.ts +9 -0
  587. package/modern/internals/models/helpers.d.ts +7 -0
  588. package/modern/internals/models/index.d.ts +4 -0
  589. package/modern/internals/models/itemPlugin.d.ts +43 -0
  590. package/modern/internals/models/plugin.d.ts +151 -0
  591. package/modern/internals/models/treeView.d.ts +32 -0
  592. package/modern/internals/plugins/useTreeViewExpansion/index.d.ts +2 -0
  593. package/modern/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.d.ts +3 -0
  594. package/modern/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.js +35 -12
  595. package/modern/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.selectors.d.ts +184 -0
  596. package/modern/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.types.d.ts +102 -0
  597. package/modern/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.utils.d.ts +7 -0
  598. package/modern/internals/plugins/useTreeViewFocus/index.d.ts +2 -0
  599. package/modern/internals/plugins/useTreeViewFocus/useTreeViewFocus.d.ts +3 -0
  600. package/modern/internals/plugins/useTreeViewFocus/useTreeViewFocus.selectors.d.ts +182 -0
  601. package/modern/internals/plugins/useTreeViewFocus/useTreeViewFocus.types.d.ts +45 -0
  602. package/modern/internals/plugins/useTreeViewIcons/index.d.ts +2 -0
  603. package/modern/internals/plugins/useTreeViewIcons/useTreeViewIcons.d.ts +3 -0
  604. package/modern/internals/plugins/useTreeViewIcons/useTreeViewIcons.types.d.ts +42 -0
  605. package/modern/internals/plugins/useTreeViewItems/index.d.ts +3 -0
  606. package/modern/internals/plugins/useTreeViewItems/useTreeViewItems.d.ts +3 -0
  607. package/modern/internals/plugins/useTreeViewItems/useTreeViewItems.js +157 -16
  608. package/modern/internals/plugins/useTreeViewItems/useTreeViewItems.selectors.d.ts +1058 -0
  609. package/modern/internals/plugins/useTreeViewItems/useTreeViewItems.selectors.js +13 -0
  610. package/modern/internals/plugins/useTreeViewItems/useTreeViewItems.types.d.ts +205 -0
  611. package/modern/internals/plugins/useTreeViewItems/useTreeViewItems.utils.d.ts +4 -0
  612. package/modern/internals/plugins/useTreeViewJSXItems/index.d.ts +2 -0
  613. package/modern/internals/plugins/useTreeViewJSXItems/useTreeViewJSXItems.d.ts +3 -0
  614. package/modern/internals/plugins/useTreeViewJSXItems/useTreeViewJSXItems.js +2 -2
  615. package/modern/internals/plugins/useTreeViewJSXItems/useTreeViewJSXItems.types.d.ts +35 -0
  616. package/modern/internals/plugins/useTreeViewKeyboardNavigation/index.d.ts +2 -0
  617. package/modern/internals/plugins/useTreeViewKeyboardNavigation/useTreeViewKeyboardNavigation.d.ts +3 -0
  618. package/modern/internals/plugins/useTreeViewKeyboardNavigation/useTreeViewKeyboardNavigation.js +16 -7
  619. package/modern/internals/plugins/useTreeViewKeyboardNavigation/useTreeViewKeyboardNavigation.types.d.ts +33 -0
  620. package/modern/internals/plugins/useTreeViewLabel/index.d.ts +2 -0
  621. package/modern/internals/plugins/useTreeViewLabel/useTreeViewLabel.d.ts +3 -0
  622. package/modern/internals/plugins/useTreeViewLabel/useTreeViewLabel.itemPlugin.d.ts +2 -0
  623. package/modern/internals/plugins/useTreeViewLabel/useTreeViewLabel.js +4 -14
  624. package/modern/internals/plugins/useTreeViewLabel/useTreeViewLabel.selectors.d.ts +74 -0
  625. package/modern/internals/plugins/useTreeViewLabel/useTreeViewLabel.types.d.ts +59 -0
  626. package/modern/internals/plugins/useTreeViewLazyLoading/index.d.ts +1 -0
  627. package/modern/internals/plugins/useTreeViewLazyLoading/index.js +1 -0
  628. package/modern/internals/plugins/useTreeViewLazyLoading/useTreeViewLazyLoading.selectors.d.ts +249 -0
  629. package/modern/internals/plugins/useTreeViewLazyLoading/useTreeViewLazyLoading.selectors.js +27 -0
  630. package/modern/internals/plugins/useTreeViewLazyLoading/useTreeViewLazyLoading.types.d.ts +83 -0
  631. package/modern/internals/plugins/useTreeViewLazyLoading/useTreeViewLazyLoading.types.js +1 -0
  632. package/modern/internals/plugins/useTreeViewSelection/index.d.ts +2 -0
  633. package/modern/internals/plugins/useTreeViewSelection/useTreeViewSelection.d.ts +3 -0
  634. package/modern/internals/plugins/useTreeViewSelection/useTreeViewSelection.itemPlugin.d.ts +2 -0
  635. package/modern/internals/plugins/useTreeViewSelection/useTreeViewSelection.js +4 -4
  636. package/modern/internals/plugins/useTreeViewSelection/useTreeViewSelection.selectors.d.ts +32 -0
  637. package/modern/internals/plugins/useTreeViewSelection/useTreeViewSelection.types.d.ts +144 -0
  638. package/modern/internals/plugins/useTreeViewSelection/useTreeViewSelection.utils.d.ts +38 -0
  639. package/modern/internals/useTreeView/extractPluginParamsFromProps.d.ts +22 -0
  640. package/modern/internals/useTreeView/index.d.ts +1 -0
  641. package/modern/internals/useTreeView/useTreeView.d.ts +9 -0
  642. package/modern/internals/useTreeView/useTreeView.types.d.ts +23 -0
  643. package/modern/internals/useTreeView/useTreeViewBuildContext.d.ts +18 -0
  644. package/modern/internals/useTreeView/useTreeViewModels.d.ts +7 -0
  645. package/modern/internals/useTreeView/useTreeViewPlugins.d.ts +0 -0
  646. package/modern/internals/utils/TreeViewStore.d.ts +12 -0
  647. package/modern/internals/utils/cleanupTracking/CleanupTracking.d.ts +9 -0
  648. package/modern/internals/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.d.ts +7 -0
  649. package/modern/internals/utils/cleanupTracking/TimerBasedCleanupTracking.d.ts +9 -0
  650. package/modern/internals/utils/plugins.d.ts +2 -0
  651. package/modern/internals/utils/publishTreeViewEvent.d.ts +5 -0
  652. package/modern/internals/utils/selectors.d.ts +16 -0
  653. package/modern/internals/utils/selectors.js +9 -0
  654. package/modern/internals/utils/tree.d.ts +32 -0
  655. package/modern/internals/utils/utils.d.ts +2 -0
  656. package/modern/internals/zero-styled/index.d.ts +3 -0
  657. package/modern/models/events.d.ts +4 -0
  658. package/modern/models/index.d.ts +3 -0
  659. package/modern/models/items.d.ts +13 -0
  660. package/modern/package.json +1 -0
  661. package/modern/themeAugmentation/components.d.ts +21 -0
  662. package/modern/themeAugmentation/index.d.ts +3 -0
  663. package/modern/themeAugmentation/overrides.d.ts +16 -0
  664. package/modern/themeAugmentation/props.d.ts +14 -0
  665. package/modern/useTreeItem/index.d.ts +2 -0
  666. package/modern/useTreeItem/useTreeItem.d.ts +2 -0
  667. package/modern/useTreeItem/useTreeItem.js +13 -0
  668. package/modern/useTreeItem/useTreeItem.types.d.ts +196 -0
  669. package/modern/utils/cache.d.ts +38 -0
  670. package/modern/utils/cache.js +31 -0
  671. package/modern/utils/index.d.ts +1 -0
  672. package/modern/utils/index.js +1 -0
  673. package/package.json +41 -8
  674. package/themeAugmentation/components.d.ts +1 -3
  675. package/themeAugmentation/index.d.ts +1 -1
  676. package/themeAugmentation/index.js +1 -0
  677. package/themeAugmentation/overrides.d.ts +4 -5
  678. package/themeAugmentation/props.d.ts +4 -6
  679. package/tsconfig.build.tsbuildinfo +1 -0
  680. package/useTreeItem/index.d.ts +2 -2
  681. package/useTreeItem/index.js +12 -1
  682. package/useTreeItem/useTreeItem.d.ts +2 -2
  683. package/useTreeItem/useTreeItem.js +75 -54
  684. package/useTreeItem/useTreeItem.types.d.ts +161 -151
  685. package/useTreeItem/useTreeItem.types.js +5 -1
  686. package/utils/cache.d.ts +38 -0
  687. package/utils/cache.js +38 -0
  688. package/utils/index.d.ts +1 -0
  689. package/{node/icons → utils}/index.js +4 -4
  690. package/RichTreeView/package.json +0 -6
  691. package/SimpleTreeView/package.json +0 -6
  692. package/TreeItem/package.json +0 -6
  693. package/TreeItemDragAndDropOverlay/package.json +0 -6
  694. package/TreeItemIcon/package.json +0 -6
  695. package/TreeItemLabelInput/package.json +0 -6
  696. package/TreeItemProvider/package.json +0 -6
  697. package/hooks/package.json +0 -6
  698. package/icons/package.json +0 -6
  699. package/internals/package.json +0 -6
  700. package/models/package.json +0 -6
  701. package/node/RichTreeView/RichTreeView.plugins.js +0 -16
  702. package/node/RichTreeView/index.js +0 -39
  703. package/node/RichTreeView/richTreeViewClasses.js +0 -14
  704. package/node/SimpleTreeView/SimpleTreeView.plugins.js +0 -16
  705. package/node/SimpleTreeView/index.js +0 -27
  706. package/node/SimpleTreeView/simpleTreeViewClasses.js +0 -14
  707. package/node/TreeItem/TreeItem.types.js +0 -5
  708. package/node/TreeItem/index.js +0 -69
  709. package/node/TreeItem/treeItemClasses.js +0 -14
  710. package/node/TreeItemDragAndDropOverlay/TreeItemDragAndDropOverlay.types.js +0 -5
  711. package/node/TreeItemDragAndDropOverlay/index.js +0 -12
  712. package/node/TreeItemIcon/TreeItemIcon.js +0 -78
  713. package/node/TreeItemIcon/TreeItemIcon.types.js +0 -5
  714. package/node/TreeItemIcon/index.js +0 -12
  715. package/node/TreeItemLabelInput/TreeItemLabelInput.js +0 -29
  716. package/node/TreeItemLabelInput/TreeItemLabelInput.types.js +0 -5
  717. package/node/TreeItemLabelInput/index.js +0 -12
  718. package/node/TreeItemProvider/TreeItemProvider.js +0 -51
  719. package/node/TreeItemProvider/TreeItemProvider.types.js +0 -5
  720. package/node/TreeItemProvider/index.js +0 -12
  721. package/node/hooks/index.js +0 -26
  722. package/node/hooks/useTreeItemModel.js +0 -17
  723. package/node/hooks/useTreeItemUtils/index.js +0 -12
  724. package/node/hooks/useTreeViewApiRef.js +0 -14
  725. package/node/icons/icons.js +0 -16
  726. package/node/index.js +0 -154
  727. package/node/internals/TreeViewItemDepthContext/TreeViewItemDepthContext.js +0 -12
  728. package/node/internals/TreeViewItemDepthContext/index.js +0 -12
  729. package/node/internals/TreeViewProvider/TreeViewContext.js +0 -15
  730. package/node/internals/TreeViewProvider/TreeViewProvider.js +0 -27
  731. package/node/internals/TreeViewProvider/TreeViewProvider.types.js +0 -5
  732. package/node/internals/TreeViewProvider/index.js +0 -19
  733. package/node/internals/TreeViewProvider/useTreeViewContext.js +0 -17
  734. package/node/internals/components/RichTreeViewItems.js +0 -76
  735. package/node/internals/corePlugins/corePlugins.js +0 -14
  736. package/node/internals/corePlugins/index.js +0 -12
  737. package/node/internals/corePlugins/useTreeViewId/index.js +0 -12
  738. package/node/internals/corePlugins/useTreeViewId/useTreeViewId.js +0 -48
  739. package/node/internals/corePlugins/useTreeViewId/useTreeViewId.selectors.js +0 -15
  740. package/node/internals/corePlugins/useTreeViewId/useTreeViewId.types.js +0 -5
  741. package/node/internals/corePlugins/useTreeViewInstanceEvents/index.js +0 -12
  742. package/node/internals/corePlugins/useTreeViewInstanceEvents/useTreeViewInstanceEvents.types.js +0 -5
  743. package/node/internals/corePlugins/useTreeViewOptionalPlugins/index.js +0 -12
  744. package/node/internals/corePlugins/useTreeViewOptionalPlugins/useTreeViewOptionalPlugins.js +0 -19
  745. package/node/internals/corePlugins/useTreeViewOptionalPlugins/useTreeViewOptionalPlugins.types.js +0 -5
  746. package/node/internals/hooks/useLazyRef.js +0 -13
  747. package/node/internals/hooks/useOnMount.js +0 -13
  748. package/node/internals/hooks/useSelector.js +0 -13
  749. package/node/internals/hooks/useTimeout.js +0 -13
  750. package/node/internals/index.js +0 -160
  751. package/node/internals/models/events.js +0 -5
  752. package/node/internals/models/helpers.js +0 -5
  753. package/node/internals/models/index.js +0 -49
  754. package/node/internals/models/itemPlugin.js +0 -5
  755. package/node/internals/models/plugin.js +0 -5
  756. package/node/internals/models/treeView.js +0 -5
  757. package/node/internals/plugins/useTreeViewExpansion/index.js +0 -12
  758. package/node/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.js +0 -119
  759. package/node/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.selectors.js +0 -30
  760. package/node/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.types.js +0 -5
  761. package/node/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.utils.js +0 -27
  762. package/node/internals/plugins/useTreeViewFocus/index.js +0 -12
  763. package/node/internals/plugins/useTreeViewFocus/useTreeViewFocus.js +0 -144
  764. package/node/internals/plugins/useTreeViewFocus/useTreeViewFocus.types.js +0 -5
  765. package/node/internals/plugins/useTreeViewIcons/index.js +0 -12
  766. package/node/internals/plugins/useTreeViewIcons/useTreeViewIcons.types.js +0 -5
  767. package/node/internals/plugins/useTreeViewItems/index.js +0 -25
  768. package/node/internals/plugins/useTreeViewItems/useTreeViewItems.js +0 -198
  769. package/node/internals/plugins/useTreeViewItems/useTreeViewItems.types.js +0 -5
  770. package/node/internals/plugins/useTreeViewItems/useTreeViewItems.utils.js +0 -15
  771. package/node/internals/plugins/useTreeViewJSXItems/index.js +0 -12
  772. package/node/internals/plugins/useTreeViewJSXItems/useTreeViewJSXItems.js +0 -192
  773. package/node/internals/plugins/useTreeViewJSXItems/useTreeViewJSXItems.types.js +0 -5
  774. package/node/internals/plugins/useTreeViewKeyboardNavigation/index.js +0 -12
  775. package/node/internals/plugins/useTreeViewKeyboardNavigation/useTreeViewKeyboardNavigation.types.js +0 -5
  776. package/node/internals/plugins/useTreeViewLabel/index.js +0 -12
  777. package/node/internals/plugins/useTreeViewLabel/useTreeViewLabel.js +0 -87
  778. package/node/internals/plugins/useTreeViewLabel/useTreeViewLabel.types.js +0 -5
  779. package/node/internals/plugins/useTreeViewSelection/index.js +0 -12
  780. package/node/internals/plugins/useTreeViewSelection/useTreeViewSelection.selectors.js +0 -15
  781. package/node/internals/plugins/useTreeViewSelection/useTreeViewSelection.types.js +0 -5
  782. package/node/internals/useTreeView/index.js +0 -12
  783. package/node/internals/useTreeView/useTreeView.types.js +0 -5
  784. package/node/internals/useTreeView/useTreeViewPlugins.js +0 -1
  785. package/node/internals/utils/cleanupTracking/CleanupTracking.js +0 -5
  786. package/node/internals/utils/plugins.js +0 -11
  787. package/node/internals/utils/publishTreeViewEvent.js +0 -10
  788. package/node/internals/zero-styled/index.js +0 -17
  789. package/node/models/events.js +0 -5
  790. package/node/models/index.js +0 -27
  791. package/node/models/items.js +0 -5
  792. package/node/themeAugmentation/index.js +0 -1
  793. package/node/useTreeItem/index.js +0 -12
  794. package/node/useTreeItem/useTreeItem.types.js +0 -5
  795. package/themeAugmentation/package.json +0 -6
  796. package/useTreeItem/package.json +0 -6
  797. /package/{node/RichTreeView/RichTreeView.types.js → internals/plugins/useTreeViewLazyLoading/index.js} +0 -0
  798. /package/{node/SimpleTreeView/SimpleTreeView.types.js → internals/plugins/useTreeViewLazyLoading/useTreeViewLazyLoading.types.js} +0 -0
package/CHANGELOG.md CHANGED
@@ -5,261 +5,333 @@
5
5
  All notable changes to this project will be documented in this file.
6
6
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
7
7
 
8
- ## 8.0.0-alpha.8
9
-
10
- _Jan 16, 2025_
8
+ ## 8.0.0-beta.0
11
9
 
12
- We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
10
+ <img width="100%" alt="MUI X v8 Beta is live" src="https://github.com/user-attachments/assets/61ec4dd8-c946-456b-8b45-d51de8772f5d">
13
11
 
14
- - 🍬 Improved design for Data Grid [Header filters](https://next.mui.com/x/react-data-grid/filtering/header-filters/)
12
+ _Mar 18, 2025_
15
13
 
16
- <img width="100%" alt="Data Grid Header filters" src="https://github.com/user-attachments/assets/74a50cd9-7a55-41fc-a2b8-f8a0d5b9120e" />
14
+ We'd like to offer a big thanks to the 21 contributors who made this release possible. Here are some highlights ✨:
17
15
 
18
- - 🔄 Data Grid [Scroll restoration](https://next.mui.com/x/react-data-grid/scrolling/#scroll-restoration)
19
- - 📊 Charts support server-side rendering under [some conditions](https://next.mui.com/x/react-charts/getting-started/#server-side-rendering)
16
+ - 🚀 Add [Time Range Picker](https://next.mui.com/x/react-date-pickers/time-range-picker/) component
17
+ - 🎁 Add support for `@mui/material` version 7 in all X packages
20
18
  - 🐞 Bugfixes
19
+ - 🌍 Improve Chinese (zh-CN), (zh-HK), (zh-TW), Czech (cs-CZ), Korean (ko-KR) and Slovak (sk-Sk) locales on the Data Grid
20
+ - 🌍 Improve Chinese (zh-CN), (zh-HK) and (zh-TW) locales on the Pickers
21
21
 
22
- Special thanks go out to the community contributors who have helped make this release possible:
23
- @lauri865.
22
+ ## Breaking changes
23
+
24
+ - ℹ️ The peer dependency on `@mui/material` has been updated to accept only v7.
25
+ This has been done to increase the adoption rate of ESM.
26
+ Since only v7 of `@mui/material` has proper ESM support, we decided to help with its adoption and fix numerous issues using X packages in environments where transpiling is not an option.
27
+
28
+ Special thanks go out to the community members for their valuable contributions:
29
+ @Blake-McCullough, @hlavacz, @k-rajat19, @layerok, @nusr, @owais635, @yelahj.
24
30
  Following are all team members who have contributed to this release:
25
- @arminmeh, @romgrk, @samuelsycamore, @alexfauquette, @cherniavskii, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @michelengelen.
31
+ @alexfauquette, @arminmeh, @bernardobelchior, @cherniavskii, @DiegoAndai, @flaviendelangle, @Janpot, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @michelengelen, @noraleonte, @romgrk.
26
32
 
27
33
  <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
28
34
 
29
- ### Data Grid
35
+ ## Alpha release highlights
30
36
 
31
- #### Breaking changes
37
+ Below are the highlights of the alpha releases leading up to this beta release:
32
38
 
33
- - The clear button in header filter cells has been moved to the header filter menu. Use `slotProps={{ headerFilterCell: { showClearIcon: true } }}` to restore the clear button in the cell.
39
+ - ⚛️ React 19 support.
34
40
 
35
- #### `@mui/x-data-grid@8.0.0-alpha.8`
41
+ - 🛠️ New and improved Data Grid [Toolbar component](https://next.mui.com/x/react-data-grid/components/toolbar/).
42
+ - 📦 Data Grid [data source](https://next.mui.com/x/react-data-grid/server-side-data/) is now available in the Community plan.
43
+ - 🚫 Add ["No columns" overlay](https://next.mui.com/x/react-data-grid/overlays/#no-columns-overlay) to Data Grid.
44
+ - 🍬 Improved design for Data Grid [Header filters](https://next.mui.com/x/react-data-grid/filtering/header-filters/).
45
+ - 🔄 Add Data Grid [Scroll restoration](https://next.mui.com/x/react-data-grid/scrolling/#scroll-restoration).
46
+ - 💫 Support [aggregation with server-side data](https://next.mui.com/x/react-data-grid/server-side-data/aggregation/).
47
+ - 🎁 Support [Server-side lazy loading](https://next.mui.com/x/react-data-grid/server-side-data/lazy-loading/) on the Data Grid.
48
+ - 🎯 Improved [data caching](https://next.mui.com/x/react-data-grid/server-side-data/#data-caching).
49
+ - 🏎️ Improve Data Grid aggregation, Excel export serialization, mount, resize and scrolling performance.
50
+ - 🎨 Improve Data Grid theming and add default background color.
36
51
 
37
- - [DataGrid] Improve scrollbar deadzone with overlay scrollbars (#15961) @lauri865
38
- - [DataGrid] Header filter design improvements (#15991) @KenanYusuf
39
- - [DataGrid] Scroll restoration (#15623) @lauri865
40
- - [DataGrid] Fix row, cell and header memoizations (#15666) @lauri865
52
+ - 📊 New Pro chart: [Funnel](https://next.mui.com/x/react-charts/funnel/).
53
+ - 📊 New Community chart: [Radar](https://next.mui.com/x/react-charts/radar/) is available in preview for testing.
54
+ - 📊 Charts legend is now an HTML element which can be styled more easily.
55
+ - 📊 Create [custom HTML components](https://next.mui.com/x/react-charts/components/#html-components) using chart data.
56
+ - 📊 Refactor Charts [Tooltip customization](https://next.mui.com/x/react-charts/tooltip/#overriding-content).
57
+ - 📊 Improve Charts [composition](https://next.mui.com/x/react-charts/composition/#overview).
58
+ - 📊 Charts support server-side rendering under [some conditions](https://next.mui.com/x/react-charts/getting-started/#server-side-rendering).
59
+ - 📊 Add a new API to support multiple axes (decouple `margin` and `axis-size`)
41
60
 
42
- #### `@mui/x-data-grid-pro@8.0.0-alpha.8` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
61
+ - 🔁 Support [automatic parents and children selection](https://next.mui.com/x/react-tree-view/rich-tree-view/selection/#automatic-parents-and-children-selection) for the Rich Tree View components.
43
62
 
44
- Same changes as in `@mui/x-data-grid@8.0.0-alpha.8`, plus:
63
+ ### Data Grid
45
64
 
46
- - [DataGridPro] Add test for column pinning with disabled column virtualization (#16176) @cherniavskii
47
- - [DataGridPro] Fix width of right-pinned column group during resize (#16199) @cherniavskii
65
+ #### `@mui/x-data-grid@8.0.0-beta.0`
48
66
 
49
- #### `@mui/x-data-grid-premium@8.0.0-alpha.8` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
67
+ - [DataGrid] Add a slot for unsort icon in column menu (#16918) @layerok
68
+ - [DataGrid] Add click propagation and prevents default on `toggleMenu` click (#16845) @michelengelen
69
+ - [DataGrid] Anchor preference panel to columns/filter trigger (#16953) @KenanYusuf
70
+ - [DataGrid] Fix `QuickFilter` debounce overriding input value (#16856) @KenanYusuf
71
+ - [DataGrid] Fix `printOptions` not respecting `hideFooter` root prop (#14863) @k-rajat19
72
+ - [DataGrid] Fix `processRowUpdate()` error if the row is removed before it is executed (#16741) @arminmeh
73
+ - [DataGrid] Fix bug with adding and removing columns in active edit state (#16888) @Blake-McCullough
74
+ - [DataGrid] Fix columns update not restoring column definition defaults (#16970) @cherniavskii
75
+ - [DataGrid] Fix page scrolling when preference panel is opened (#17004) @KenanYusuf
76
+ - [DataGrid] Fix visual issue with pinned columns and row spanning (#16923) @MBilalShafi
77
+ - [DataGrid] Make column header menu button aria-labels unique (#16796) @owais635
78
+ - [DataGrid] Refactor: create base Pagination (#16759) @romgrk
79
+ - [DataGrid] Update CSS variable naming convention to singular (#16993) @KenanYusuf
80
+ - [DataGrid] Use Material UI CSS vars (#16962) @KenanYusuf
81
+ - [l10n] Improve Chinese (zh-CN), (zh-HK) and (zh-TW) locales (#15230, #16898 and #16966) @nusr
82
+ - [l10n] Improve Czech (cs-CZ) and Slovak (sk-Sk) locales (#16968) @hlavacz
83
+ - [l10n] Improve Korean (ko-KR) locale (#16807) @yelahj
50
84
 
51
- Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.8`.
85
+ #### `@mui/x-data-grid-pro@8.0.0-beta.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
52
86
 
53
- ### Date and Time Pickers
87
+ Same changes as in `@mui/x-data-grid@8.0.0-beta.0`, plus:
54
88
 
55
- #### Breaking changes
89
+ - [DataGridPro] Fix header filters not displaying restored values (#16855) @MBilalShafi
90
+ - [DataGridPro] Fix infinite loading not reacting when scrolling to the end (#16926) @arminmeh
56
91
 
57
- - The field is now editable if rendered inside a mobile Picker — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#field-editing-on-mobile-pickers)
58
- - The `useMultiInputDateRangeField`, `useMultiInputTimeRangeField`, and `useMultiInputDateTimeRangeField` hooks have been removed in favor of the new `useMultiInputRangeField` hook — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#usemultiinputdaterangefield)
59
- - The component passed to the `field` slot no longer receives the `value`, `onChange`, `timezone`, `format`, `disabled`, `formatDensity`, `enableAccessibleFieldDOMStructure`, `selectedSections` and `onSelectedSectionsChange` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-field)
92
+ #### `@mui/x-data-grid-premium@8.0.0-beta.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
60
93
 
61
- #### `@mui/x-date-pickers@8.0.0-alpha.8`
94
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-beta.0`, plus:
62
95
 
63
- - [pickers] Let the field components handle their opening UI, and allow field editing on mobile pickers (#15671) @flaviendelangle
64
- - [pickers] Remove code duplication for the multi input range fields (#15505) @flaviendelangle
65
- - [pickers] Rename `onRangePositionChange` into `setRangePosition` in `usePickerRangePositionContext` (#16189) @flaviendelangle
66
- - [pickers] Use context to pass props from the picker to the field (#16042) @flaviendelangle
96
+ - [DataGridPremium] Fix selection propagation issues with controlled state (#16810) @MBilalShafi
67
97
 
68
- #### `@mui/x-date-pickers-pro@8.0.0-alpha.8` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
98
+ ### Date and Time Pickers
69
99
 
70
- Same changes as in `@mui/x-date-pickers@8.0.0-alpha.8`.
100
+ #### Breaking changes
71
101
 
72
- ### Charts
102
+ - The `useClearableField` hook has been removed.
103
+ The custom field component now receives the `clearable` and `onClear` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#useclearablefield).
104
+ - The `ExportedUseClearableFieldProps`, `UseClearableFieldSlots`, `UseClearableFieldSlotProps`, and `UseClearableFieldResponse` types have been removed — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#removed-types).
73
105
 
74
- #### Breaking changes
106
+ #### `@mui/x-date-pickers@8.0.0-beta.0`
75
107
 
76
- - Charts tooltip markers now have different styles for each chart type. The tooltip and legend marks are now the same.
77
- - Duplicate axis id's across `x` and `y` axis now log a warning in dev mode. Axis ids should be unique to prevent internal issues.
108
+ - [l10n] Improve Chinese (zh-CN), (zh-HK) and (zh-TW) locales (#16966) @nusr
109
+ - [pickers] Add the Time Range Picker component (#9431) @LukasTy and @flaviendelangle
110
+ - [pickers] Add valid aria labels to the range picker opening button (#16799) @flaviendelangle
111
+ - [pickers] Always use `props.value` as the source of truth when defined (#16853) @flaviendelangle
112
+ - [pickers] Avoid passing unexpected `focusedView` to time renderers (#16869) @LukasTy
113
+ - [pickers] Improve JSDoc (#16858) @flaviendelangle
114
+ - [pickers] Remove `useClearableField` hook (#16859) @LukasTy
78
115
 
79
- #### `@mui/x-charts@8.0.0-alpha.8`
116
+ #### `@mui/x-date-pickers-pro@8.0.0-beta.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
80
117
 
81
- - [charts] Fix flaky charts tests (#16180) @JCQuintas
82
- - [charts] Handle case where gradient stop `offset` could be `Infinite` (#16131) @JCQuintas
83
- - [charts] Make `useChartGradientId` public (#16106) @JCQuintas
84
- - [charts] Move z-axis to plugin (#16130) @alexfauquette
85
- - [charts] Plot data at first render if `skipAnimation` is set to `true` (#16166) @alexfauquette
86
- - [charts] Replace tooltip mark with style (#16117) @JCQuintas
87
- - [charts] Support `rtl` for gradient legend (#16115) @JCQuintas
88
- - [charts] Use plugin system for series and axes (#15865) @alexfauquette
118
+ Same changes as in `@mui/x-date-pickers@8.0.0-beta.0`, plus:
89
119
 
90
- #### `@mui/x-charts-pro@8.0.0-alpha.8` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
120
+ - [DateRangeCalendar] Do not update the previewed day when hovering a day and the value is empty (#16892) @flaviendelangle
121
+ - [TimeRangePicker] Shift popper between start and end input on multi input field (#16920) @LukasTy
91
122
 
92
- Same changes as in `@mui/x-charts@8.0.0-alpha.8`.
123
+ ### Charts
124
+
125
+ #### Breaking changes
126
+
127
+ - Tick labels in the x-axis of cartesian charts will now have an ellipsis applied to prevent overflow.
128
+ If your tick labels are being clipped sooner than you would like, you can increase the x-axis size by increasing its `height` property.
129
+ The default line-height has also been changed to 1.25, so if you aren't customizing the line height for x-axis tick labels, make sure to double check if the result is desirable.
130
+
131
+ #### `@mui/x-charts@8.0.0-beta.0`
132
+
133
+ - [charts] Add axis highlight to the radar (#16868) @alexfauquette
134
+ - [charts] Add radar labels (#16839) @alexfauquette
135
+ - [charts] Allow breaking line for radar labels (#16947) @alexfauquette
136
+ - [charts] Allow circular grid on radar chart (#16870) @alexfauquette
137
+ - [charts] Allow customizing shape in scatter charts (#16640) @bernardobelchior
138
+ - [charts] Avoid spreading props in demos (#16857) @bernardobelchior
139
+ - [charts] Fix React 18 tests failing due to missing `forwardRef` (#16894) @bernardobelchior
140
+ - [charts] Fix line highlight position with RTL (#16994) @alexfauquette
141
+ - [charts] Fix interaction performance (#16897) @JCQuintas
142
+ - [charts] Fix x-axis tick label overflow (#16709) @bernardobelchior
143
+ - [charts] Grid support time step below 1s (#16957) @alexfauquette
144
+ - [charts] Improve radar slice (#16932) @alexfauquette
145
+ - [charts] Radar add option to highlighting series (#16940) @alexfauquette
146
+ - [charts] Refactor zoom `isInteracting` behavior directly to community code (#16999) @JCQuintas
147
+ - [charts] Remove `fireEvent` usage from tests (#17006) @JCQuintas
148
+ - [charts] Remove dead voronoi code (#16886) @JCQuintas
149
+ - [charts] Remove the polar axis plugin from the default plugins of the ChartContainer (#16936) @alexfauquette
150
+ - [charts] Rename `useIsClient` (#16937) @bernardobelchior
151
+
152
+ #### `@mui/x-charts-pro@8.0.0-beta.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
153
+
154
+ Same changes as in `@mui/x-charts@8.0.0-beta.0`.
93
155
 
94
156
  ### Tree View
95
157
 
96
- #### `@mui/x-tree-view@8.0.0-alpha.8`
158
+ #### `@mui/x-tree-view@8.0.0-beta.0`
97
159
 
98
- No changes since `@mui/x-tree-view-pro@v8.0.0-alpha.7`.
160
+ Internal changes.
99
161
 
100
- #### `@mui/x-tree-view-pro@8.0.0-alpha.8` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
162
+ #### `@mui/x-tree-view-pro@8.0.0-beta.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
101
163
 
102
- Same changes as in `@mui/x-tree-view@8.0.0-alpha.8`.
164
+ Same changes as in `@mui/x-tree-view@8.0.0-beta.0`.
103
165
 
104
166
  ### Docs
105
167
 
106
- - [docs] Add example for custom legend (#16169) @alexfauquette
107
- - [docs] Add full custom field creation example (#15194) @flaviendelangle
108
- - [docs] Copyedit the Data Grid cell selection page (#16099) @samuelsycamore
109
- - [docs] Fix demo rendering issue on Codesandbox (#16118) @arminmeh
110
- - [docs] Remove broken links (#16167) @alexfauquette
111
- - [docs] Split the Data Grid editing page (#14931) @MBilalShafi
112
- - [docs] Fix wrong props warnings (#16119) @JCQuintas
168
+ - [docs] Add the Time Range Picker to relevant validation demos (#16919) @LukasTy
169
+ - [docs] Adjust Picker field lifecycle explanation (#16901) @LukasTy
170
+ - [docs] Fix custom detail panel toggle state update (#16929) @nusr
171
+ - [docs] Fix Pickers custom field with Autocomplete demo (#16863) @LukasTy
172
+ - [docs] Fix link to the lazy loading demo for the DataGrid (#16907) @nusr
173
+ - [docs] Improve sparkline demo (#16911) @alexfauquette
174
+ - [docs] Remove `showQuickFilter: true` toolbar prop from demos (#17003) @KenanYusuf
113
175
 
114
176
  ### Core
115
177
 
116
- - [core] Type all references as `RefObject` (#16124) @arminmeh
117
- - [code-infra] Refactor `react` and `react-dom` definitions to simplify dep resolving (#16160) @LukasTy
118
- - [code-infra] Stop renovate from updating `date-fns-v2` (#16158) @LukasTy
119
- - [infra] Improve cherry-pick action target list (#16184) @michelengelen
120
- - [test] Fix flaky column pinning unit test (#16202) @cherniavskii
121
- - [test] Fix flaky screenshot (#16182) @cherniavskii
178
+ - [core] Fix proptypes and API docs after merge (#16934) @LukasTy
179
+ - [core] Update `@mui/utils` dependency to only v7 (#16928) @Janpot
180
+ - [core] Use MUI Core v7 libraries in packages and docs (#16771) @DiegoAndai
181
+ - [code-infra] Avoid loading package.json with relative path (#16931) @Janpot
182
+ - [code-infra] Bump `cimg/node` image version (#16964) @LukasTy
183
+ - [code-infra] Create `Tanstack query` renovate group (#16989) @LukasTy
184
+ - [code-infra] Fix inconsistent argos test (#16921) @JCQuintas
185
+ - [infra] Added issue permission to workflow (#16865) @michelengelen
186
+ - [infra] Make tests on React 18 part of pipeline (#16933) @LukasTy
187
+ - [infra] changed event trigger from `pull_request` to `pull_request_target` (#16902) @michelengelen
188
+ - [test] Fix Apple M3 failing to execute unit test cases (#16959) @nusr
122
189
 
123
- ## 8.0.0-alpha.7
190
+ ## 8.0.0-alpha.14
124
191
 
125
- _Jan 9, 2025_
192
+ _Mar 7, 2025_
126
193
 
127
- We'd like to offer a big thanks to the 13 contributors who made this release possible. Here are some highlights ✨:
194
+ We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
128
195
 
129
- - 📊 Charts legend is now an HTML element which can be styled more easily
130
- - 💫 Support [aggregation with server-side data](/x/react-data-grid/server-side-data/aggregation/)
131
- - 🏎️ Improve Data Grid aggregation performance
132
- - 🌍 Add Chinese (Taiwan) (zh-TW) locale on the Date and Time Pickers
133
- - 🌍 Improve Norwegian (nb-NO) locale on the Date and Time Pickers
196
+ - 🚀📊 New Pro Chart: It is now possible to create Funnel charts—perfect for visualizing conversions, sales pipelines and more!
197
+ <img width="418" alt="Screenshot 2025-01-31 at 12 22 31" src="https://github.com/user-attachments/assets/8cd26821-5f11-46bf-a9bb-34d212880a47" />
198
+ - 🎁 The first iteration of the radar chart is available. Features and refinements will be added in the coming weeks.
199
+ - 🛠️ New and improved [Toolbar component](https://next.mui.com/x/react-data-grid/components/toolbar/) for the data grid
134
200
  - 🐞 Bugfixes
135
201
 
136
- Special thanks go out to the community contributors who have helped make this release possible:
137
- @derek-0000, @josteinjhauge, @k-rajat19, @nusr, @tomashauser.
202
+ Special thanks go out to the community member for their valuable contributions:
203
+ @vadimka123.
204
+
138
205
  Following are all team members who have contributed to this release:
139
- @cherniavskii, @flaviendelangle, @JCQuintas, @LukasTy, @MBilalShafi, @arminmeh, @romgrk, @oliviertassinari.
206
+ @alexfauquette, @arminmeh, @bernardobelchior, @cherniavskii, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @michelengelen, @noraleonte, @oliviertassinari.
140
207
 
141
208
  <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
142
209
 
143
210
  ### Data Grid
144
211
 
145
- #### `@mui/x-data-grid@8.0.0-alpha.7`
212
+ #### Breaking changes
146
213
 
147
- - [DataGrid] Improve React 19 support (#15769) @LukasTy
148
- - [DataGrid] Add `name` attribute to the checkbox selection column (#15178) @derek-0000
149
- - [DataGrid] Fix number filter field formatting values while typing (#16062) @arminmeh
150
- - [DataGrid] Fix select all checkbox state reset with server side data (#16034) @MBilalShafi
151
- - [DataGrid] Refactor: create base button props (#15930) @romgrk
152
- - [DataGrid] Refactor: create tooltip props (#16086) @romgrk
153
- - [DataGrid] Fix TS error (#16046) @cherniavskii
214
+ - The density selector has been removed from the toolbar. It is still possible to set the density programmatically via the `density` prop. A density selector can be added to a custom toolbar passed to `slots.toolbar`. See [Toolbar component—Settings menu](https://next.mui.com/x/react-data-grid/components/toolbar/#settings-menu) for an example.
215
+ - The quick filter is now shown in the toolbar by default. Use `slotProps={{ toolbar: { showQuickFilter: false } }}` to hide it.
216
+ - The `<GridSaveAltIcon />` icon is not exported anymore. Import `SaveAlt` from `@mui/icons-material` instead.
154
217
 
155
- #### `@mui/x-data-grid-pro@8.0.0-alpha.7` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
218
+ #### `@mui/x-data-grid@8.0.0-alpha.14`
156
219
 
157
- Same changes as in `@mui/x-data-grid@8.0.0-alpha.7`.
220
+ - [DataGrid] Fix `aria-hidden` console error when scrollbar is dragged (#16829) @arminmeh
221
+ - [DataGrid] Fix scroll jump with dynamic row height (#16763) @cherniavskii
222
+ - [DataGrid] New `<Toolbar />` component (#14611) @KenanYusuf
223
+ - [DataGrid] Use new toolbar by default (#16814) @KenanYusuf
224
+ - [DataGrid] Remove the quick filtering on a given column (#16738) @vadimka123
158
225
 
159
- #### `@mui/x-data-grid-premium@8.0.0-alpha.7` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
226
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.14` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
160
227
 
161
- Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.7`, plus:
228
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.14`.
162
229
 
163
- - [DataGridPremium] Improve aggregation performance for multiple columns (#16097) @cherniavskii
164
- - [DataGridPremium] Make Aggregation keyboard accessible in the column menu (#15934) @k-rajat19
165
- - [DataGridPremium] Server-side aggregation with data source (#15741) @MBilalShafi
230
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.14` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
231
+
232
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.14`.
166
233
 
167
234
  ### Date and Time Pickers
168
235
 
169
236
  #### Breaking changes
170
237
 
171
- - The `date-fns` and `date-fns-jalali` date library adapters have been renamed to better align with the current stable major versions — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#✅-rename-date-fns-adapter-imports)
172
- - Update default `closeOnSelect` and Action Bar `actions` values - [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#update-default-closeonselect-and-action-bar-actions-values)
173
- - The component passed to the `layout` slot no longer receives the `value`, `onChange` and `onSelectShortcut` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-layout).
174
- - The component passed to the `toolbar` slot no longer receives the `value`, `onChange` and `isLandscape` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-toolbar).
175
- - The component passed to the `shortcuts` slot no longer receives the `onChange`, `isValid` and `isLandscape` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-shortcuts).
176
- - The `PickerShortcutChangeImportance` type has been renamed `PickerChangeImportance` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#renamed-variables-and-types).
177
- - The component passed to the `layout` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-layout).
178
- - The component passed to the `toolbar` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-toolbar).
179
- - The component passed to the `tabs` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-tabs).
238
+ - All Date Time Picker variants now use Digital Clock for time editing.
239
+ - Stop passing invalid date to `onChange` when the date is partially filled [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#treat-partially-filled-date-as-null-in-onchange).
180
240
 
181
- #### `@mui/x-date-pickers@8.0.0-alpha.7`
241
+ #### `@mui/x-date-pickers@8.0.0-alpha.14`
182
242
 
183
- - [fields] Handle focusing container with `inputRef.current.focus` on `accessibleFieldDOMStructure` (#15985) @LukasTy
184
- - [pickers] Always use `setValue` internally to update the picker value (#16056) @flaviendelangle
185
- - [pickers] Create a new context to pass the range position props to the layout components and to the views (#15846) @flaviendelangle
186
- - [pickers] Introduce a new concept of `manager` (#15339) @flaviendelangle
187
- - [pickers] Improve React 19 support (#15769) @LukasTy
188
- - [pickers] Memoize `<PickersActionBar />` (#16071) @LukasTy
189
- - [pickers] Remove `NonEmptyDateRange` type (#16035) @flaviendelangle
190
- - [pickers] Rename `AdapterDateFns` into `AdapterDateFnsV2` and `AdapterDateFnsV3` into `AdapterDateFns` (#16082) @LukasTy
191
- - [pickers] Rename `ctx.onViewChange` to `ctx.setView` and add it to the actions context (#16044) @flaviendelangle
192
- - [pickers] Support `date-fns-jalali` v4 (#16011) @LukasTy
193
- - [pickers] Update `closeOnSelect` and `actionBar.actions` default values (#15944) @LukasTy
194
- - [pickers] Use `usePickerContext()` and `usePickerActionsContext()` instead of passing props to the `shortcuts` and `toolbar` slots (#15948) @flaviendelangle
195
- - [l10n] Add Chinese (Taiwan) (zh-TW) locale (#16033) @nusr
196
- - [l10n] Improve Norwegian (nb-NO) locale (#16089) @josteinjhauge
243
+ - [DateTimePicker] Use Digital Clock in all component variants (#16678) @LukasTy
244
+ - [fields] Always use `props.value` as the source of truth when defined (#15875) @flaviendelangle
245
+ - [fields] Fix Fields aria relationship with `helperText` (#16821) @LukasTy
246
+ - [pickers] Add `TValidationProps` generic to the `PickerManager` interface (#16832) @flaviendelangle
247
+ - [pickers] Fix `edge` property setting in different button position cases (#16838) @LukasTy
248
+ - [pickers] Fix typo in JSDoc (#16831) @flaviendelangle
249
+ - [pickers] Refactor the files in the `usePicker` folder (#16680) @flaviendelangle
197
250
 
198
- #### `@mui/x-date-pickers-pro@8.0.0-alpha.7` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
251
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.14` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
199
252
 
200
- Same changes as in `@mui/x-date-pickers@8.0.0-alpha.7`.
253
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.14`.
201
254
 
202
255
  ### Charts
203
256
 
257
+ #### `@mui/x-charts@8.0.0-alpha.14`
258
+
259
+ - [charts] Fix `undefined` behaving differently from missing value for axis size (#16844) @bernardobelchior
260
+ - [charts] Fix x-axis text anchor default when language is RTL (#16836) @bernardobelchior
261
+ - [charts] Add Radar chart (#16406) @alexfauquette
262
+ - [charts] Move series default color generation in the series config (#16752) @alexfauquette
263
+ - [charts] Render axis title within axis size (#16730) @bernardobelchior
264
+ - [charts] Split `defaultizeAxis` function into two (#16745) @bernardobelchior
265
+ - [charts] Warn if axes data don't have enough elements (#16830) @alexfauquette
266
+ - [charts] XAxis: Add defaults for `textAnchor` and `dominantBaseline` based on `angle` (#16817) @bernardobelchior
267
+
268
+ #### `@mui/x-charts-pro@8.0.0-alpha.14` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
269
+
270
+ Same changes as in `@mui/x-charts@8.0.0-alpha.14`, plus:
271
+
272
+ - [charts] Add Funnel chart (#14804) @JCQuintas
273
+
274
+ ### Tree View
275
+
204
276
  #### Breaking changes
205
277
 
206
- - Removed `DefaultChartsLegend` component, since it is now easier to create custom legends — [Learn more](https://next.mui.com/x/react-charts/components/#html-components).
207
- - The default legend is now an HTML element and can be styled more easily.
208
- - The `width` and `height` properties of the charts now only apply to the `svg` element, and not their wrappers, this might cause some layout shifts.
209
- - `slotProps.legend.direction` now accepts `'horizontal' | 'vertical'` instead of `'row' | 'column'` — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#legend-direction-value-change-✅).
210
- - The `getSeriesToDisplay` function was removed in favor of the `useLegend` hook. — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#the-getseriestodisplay-function-was-removed).
278
+ - The `selectItem` method has been renamed `setItemSelection`:
211
279
 
212
- #### `@mui/x-charts@8.0.0-alpha.7`
280
+ ```diff
281
+ const { publicAPI } = useTreeItemUtils();
213
282
 
214
- - [charts] New HTML legend & styles (#15733) @JCQuintas
215
- - [charts] Improve React 19 support (#15769) @LukasTy
216
- - [charts] Fix 301 redirection in the API documentation @oliviertassinari
283
+ const handleSelectItem() {
284
+ - publicAPI.selectItem({ event, itemId: props.itemId, shouldBeSelected: true })
285
+ + publicAPI.setItemSelection({ event, itemId: props.itemId, shouldBeSelected: true })
286
+ }
287
+ ```
217
288
 
218
- #### `@mui/x-charts-pro@8.0.0-alpha.7` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
289
+ - The `setItemExpansion` method now receives a single object instead of a list of parameters:
219
290
 
220
- Same changes as in `@mui/x-charts@8.0.0-alpha.7`.
291
+ ```diff
292
+ const { publicAPI } = useTreeItemUtils();
221
293
 
222
- ### Tree View
294
+ const handleExpandItem() {
295
+ - publicAPI.setItemExpansion(event, props.itemId, true)
296
+ + publicAPI.setItemExpansion({ event, itemId: props.itemId, shouldBeExpanded: true })
297
+ }
298
+ ```
223
299
 
224
- #### `@mui/x-tree-view@8.0.0-alpha.7`
300
+ #### `@mui/x-tree-view@8.0.0-alpha.14`
225
301
 
226
- - [TreeView] Improve React 19 support (#15769) @LukasTy
302
+ - [TreeView] Clean the expansion and selection API methods (#16795) @flaviendelangle
227
303
 
228
- #### `@mui/x-tree-view-pro@8.0.0-alpha.7` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
304
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.14` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
229
305
 
230
- Same changes as in `@mui/x-tree-view@8.0.0-alpha.7`.
306
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.14`.
231
307
 
232
308
  ### Docs
233
309
 
234
- - [docs] Fix `EditingWithDatePickers` demo (#15967) @k-rajat19
235
- - [docs] Fix inconsistent multi input range field separators (#16043) @flaviendelangle
236
- - [docs] Fix non-existing "adapter" property of `LocalizationProvider` (#16084) @tomashauser
237
- - [docs] Refactor Data Grid with Date Pickers example (#15992) @LukasTy
238
- - [docs] Unify the wording of the pickers slots breaking changes (#16036) @flaviendelangle
310
+ - [docs] Fix padding package install on mobile (#16794) @oliviertassinari
311
+ - [docs] Typo fixes (#16835) @alexfauquette
239
312
 
240
313
  ### Core
241
314
 
242
- - [core] Clarify the release strategy (#16014) @MBilalShafi
243
- - [core] Small fixes on docs @oliviertassinari
244
- - [core] Sync with other repos @oliviertassinari
245
- - [core] Update the `release:version` docs (#16038) @cherniavskii
246
- - [code-infra] Add `testSkipIf` and `describeSkipIf` (#16049) @JCQuintas
247
- - [test] Stabilize flaky Data Grid tests (#16053) @LukasTy
315
+ - [code-infra] Fix console warning in telemetry package (#16816) @JCQuintas
316
+ - [code-infra] Split date-picker test files (#16825) @JCQuintas
317
+ - [infra] Replace PR label check workflow with reusable version (#16762) @michelengelen
318
+ - [infra] Update label in priority-support issue template (#16767) @michelengelen
319
+ - [test] Add timeout to flaky screenshot tests (#16852) @LukasTy
248
320
 
249
- ## 8.0.0-alpha.6
321
+ ## 8.0.0-alpha.13
250
322
 
251
- _Dec 26, 2024_
323
+ _Feb 28, 2025_
252
324
 
253
- We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
325
+ We'd like to offer a big thanks to the 19 contributors who made this release possible. Here are some highlights ✨:
254
326
 
255
- - 🏎️ Improve Data Grid scrolling performance
256
- - 🌍 Improve Dutch (nl-NL) locale on the Data Grid
257
- - 🐞 Bugfixes
327
+ - 📊 Decouple `margin` and `axis-size`. A new API to support multiple axes (#16418) @JCQuintas
328
+ - 🗺️ Added Bangla (bn-BD) locale
329
+ - 🗺️ Improve Russian (ru-RU) and Hungarian (hu-HU) locale on the Data Grid
258
330
 
259
- Special thanks go out to the community contributors who have helped make this release possible:
260
- @JoepVerkoelen, @k-rajat19, @lauri865.
331
+ Special thanks go out to the community members for their contributions:
332
+ @denpiligrim, @lhilgert9, @noherczeg, @officialkidmax, @pcorpet.
261
333
  Following are all team members who have contributed to this release:
262
- @flaviendelangle, @JCQuintas, @LukasTy, @MBilalShafi, @romgrk.
334
+ @alexfauquette, @arminmeh, @bernardobelchior, @cherniavskii, @flaviendelangle, @hasdfa, @Janpot, @JCQuintas, @KenanYusuf, @LukasTy, @michelengelen, @MBilalShafi, @oliviertassinari, @romgrk.
263
335
 
264
336
  <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
265
337
 
@@ -267,307 +339,456 @@ Following are all team members who have contributed to this release:
267
339
 
268
340
  #### Breaking changes
269
341
 
270
- - The `sanitizeFilterItemValue()` utility is not exported anymore.
342
+ - The `slots.baseFormControl` component was removed.
271
343
 
272
- #### `@mui/x-data-grid@8.0.0-alpha.6`
344
+ - The "Reset" button in the column visibility panel now resets to the initial column visibility model. Previously it was reset to the model that was active at the time the panel was opened. The reset behavior follows these rules:
273
345
 
274
- - [DataGrid] Avoid subscribing to `renderContext` state in grid root for better scroll performance (#15986) @lauri865
275
- - [DataGrid] Fix header filters showing clear button while empty (#15829) @k-rajat19
276
- - [DataGrid] Improve test coverage of server side data source (#15942) @MBilalShafi
277
- - [DataGrid] Move progress components to leaf import (#15914) @romgrk
278
- - [DataGrid] Move skeleton to leaf import (#15931) @romgrk
279
- - [DataGrid] Replace `forwardRef` with a shim for forward compatibility (#15955) @lauri865
280
- - [l10n] Improve Dutch (nl-NL) locale (#15994) @JoepVerkoelen
346
+ 1. If an initial `columnVisibilityModel` is provided, it resets to that model.
347
+ 2. If a controlled `columnVisibilityModel` is provided, it resets to the first model value.
348
+ 3. When the columns are updated (via the `columns` prop or `updateColumns()` API method), the reset reference point updates to the current `columnVisibilityModel`.
281
349
 
282
- #### `@mui/x-data-grid-pro@8.0.0-alpha.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
350
+ To revert to the previous behavior, provide a custom component to the `slots.columnsManagement`.
283
351
 
284
- Same changes as in `@mui/x-data-grid@8.0.0-alpha.6`.
352
+ - The deprecated `LicenseInfo` export has been removed from the `@mui/x-data-grid-pro` and `@mui/x-data-grid-premium` packages.
353
+ You have to import it from `@mui/x-license` instead:
285
354
 
286
- #### `@mui/x-data-grid-premium@8.0.0-alpha.6` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
355
+ ```diff
356
+ - import { LicenseInfo } from '@mui/x-data-grid-pro';
357
+ - import { LicenseInfo } from '@mui/x-data-grid-premium';
358
+ + import { LicenseInfo } from '@mui/x-license';
287
359
 
288
- Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.6`, plus:
360
+ LicenseInfo.setLicenseKey('YOUR_LICENSE_KEY');
361
+ ```
289
362
 
290
- - [DataGridPremium] Fix column unpinning with row grouping (#15908) @k-rajat19
363
+ - The row selection model has been changed from `GridRowId[]` to `{ type: 'include' | 'exclude'; ids: Set<GridRowId> }`.
364
+ Using `Set` allows for a more efficient row selection management.
365
+ The `exclude` selection type allows to select all rows except the ones in the `ids` set.
291
366
 
292
- ### Date and Time Pickers
367
+ This change impacts the following props:
293
368
 
294
- #### `@mui/x-date-pickers@8.0.0-alpha.6`
369
+ - `rowSelectionModel`
370
+ - `onRowSelectionModelChange`
371
+ - `initialState.rowSelectionModel`
295
372
 
296
- - [pickers] Use `usePickerContext()` and `usePickerActionsContext()` to get the actions in the `actionBar` slot and in internal components (#15843) @flaviendelangle
297
- - [pickers] Use `usePickerContext()` to get the view-related props in the layout, toolbar and tabs slots (#15606) @flaviendelangle
373
+ ```diff
374
+ - const [rowSelectionModel, setRowSelectionModel] = React.useState<GridRowSelectionModel>([]);
375
+ + const [rowSelectionModel, setRowSelectionModel] = React.useState<GridRowSelectionModel>({ type: 'include', ids: new Set() });
376
+ ```
298
377
 
299
- #### `@mui/x-date-pickers-pro@8.0.0-alpha.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
378
+ This change also impacts the `gridRowSelectionStateSelector` selector.
379
+ For convenience, use the `gridRowSelectionManagerSelector` selector to handle both selection types:
300
380
 
301
- Same changes as in `@mui/x-date-pickers@8.0.0-alpha.6`.
381
+ ```diff
382
+ - const rowSelection = gridRowSelectionStateSelector(apiRef);
383
+ - const isRowSelected = rowSelection.includes(rowId);
384
+ + const rowSelectionManager = gridRowSelectionManagerSelector(apiRef);
385
+ + const isRowSelected = rowSelectionManager.has(rowId);
386
+ ```
302
387
 
303
- ### Charts
388
+ There is also a `createRowSelectionManager` utility function that can be used to manage the row selection:
304
389
 
305
- #### `@mui/x-charts@8.0.0-alpha.6`
390
+ ```ts
391
+ const rowSelectionManager = createRowSelectionManager({
392
+ type: 'include',
393
+ ids: new Set(),
394
+ });
395
+ rowSelectionManager.select(rowId);
396
+ rowSelectionManager.unselect(rowId);
397
+ rowSelectionManager.has(rowId);
398
+ ```
306
399
 
307
- No changes since `@mui/x-charts@v8.0.0-alpha.5`.
400
+ - The `selectedIdsLookupSelector` selector has been removed. Use the `gridRowSelectionManagerSelector` or `gridRowSelectionStateSelector` selectors instead.
401
+ - The `selectedGridRowsSelector` has been renamed to `gridRowSelectionIdsSelector`.
402
+ - The `selectedGridRowsCountSelector` has been renamed to `gridRowSelectionCountSelector`.
308
403
 
309
- #### `@mui/x-charts-pro@8.0.0-alpha.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
404
+ - The data source feature and its related props are now stable.
310
405
 
311
- Same changes as in `@mui/x-charts@8.0.0-alpha.6`.
406
+ ```diff
407
+ <DataGridPro
408
+ - unstable_dataSource={dataSource}
409
+ - unstable_dataSourceCache={cache}
410
+ - unstable_lazyLoading
411
+ - unstable_lazyLoadingRequestThrottleMs={100}
412
+ + dataSource={dataSource}
413
+ + dataSourceCache={cache}
414
+ + lazyLoading
415
+ + lazyLoadingRequestThrottleMs={100}
416
+ />
417
+ ```
312
418
 
313
- ### Tree View
419
+ - The data source API is now stable.
314
420
 
315
- #### `@mui/x-tree-view@8.0.0-alpha.6`
421
+ ```diff
422
+ - apiRef.current.unstable_dataSource.getRows()
423
+ + apiRef.current.dataSource.getRows()
424
+ ```
316
425
 
317
- No changes since `@mui/x-tree-view-pro@v8.0.0-alpha.5`.
426
+ - The signature of `unstable_onDataSourceError()` has been updated to support future use-cases.
318
427
 
319
- #### `@mui/x-tree-view-pro@8.0.0-alpha.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
428
+ ```diff
429
+ <DataGrid
430
+ - unstable_onDataSourceError={(error: Error, params: GridGetRowsParams) => {
431
+ - if (params.filterModel) {
432
+ - // do something
433
+ - }
434
+ - }}
435
+ + unstable_onDataSourceError={(error: GridGetRowsError | GridUpdateRowError) => {
436
+ + if (error instanceof GridGetRowsError && error.params.filterModel) {
437
+ + // do something
438
+ + }
439
+ + }}
440
+ />
441
+ ```
320
442
 
321
- Same changes as in `@mui/x-tree-view@8.0.0-alpha.6`.
443
+ - Fix the type of the `GridSortModel` to allow readonly arrays.
322
444
 
323
- ### Docs
445
+ - `GridSortItem` interface is not exported anymore.
324
446
 
325
- - [docs] Remove production profiler from docs build (#15959) @lauri865
326
- - [code-infra] Add new `next-env.d.ts` changes (#15947) @JCQuintas
447
+ - The `showToolbar` prop is now required to display the toolbar.
327
448
 
328
- ## 8.0.0-alpha.5
449
+ It is no longer necessary to pass `GridToolbar` as a slot to display the default toolbar.
329
450
 
330
- _Dec 19, 2024_
451
+ ```diff
452
+ <DataGrid
453
+ + showToolbar
454
+ - slots={{
455
+ - toolbar: GridToolbar,
456
+ - }}
457
+ />
458
+ ```
331
459
 
332
- We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
460
+ #### `@mui/x-data-grid@8.0.0-alpha.13`
333
461
 
334
- - 🌍 Improve Korean (ko-KR) locale on the Data Grid
335
- - 🐞 Bugfixes
462
+ - [DataGrid] Add `showToolbar` prop to enable default toolbar (#16687) @KenanYusuf
463
+ - [DataGrid] Column Visibility: Update "Reset" button behavior (#16626) @MBilalShafi
464
+ - [DataGrid] Column management design updates (#16630) @KenanYusuf
465
+ - [DataGrid] Fix `showColumnVerticalBorder` prop (#16715) @KenanYusuf
466
+ - [DataGrid] Fix scrollbar overlapping cells on mount (#16639) @KenanYusuf
467
+ - [DataGrid] Fix: base `Select` menuprops `onClose()` (#16643) @romgrk
468
+ - [DataGrid] Make `GridSortItem` internal (#16732) @arminmeh
469
+ - [DataGrid] Make data source stable (#16710) @MBilalShafi
470
+ - [DataGrid] Reshape row selection model (#15651) @cherniavskii
471
+ - [DataGrid] Replace `sx` prop usage with `styled()` components (#16665) @KenanYusuf
472
+ - [DataGrid] Refactor: create base `Autocomplete` (#16390) @romgrk
473
+ - [DataGrid] Refactor: remove base form control (#16634) @romgrk
474
+ - [DataGrid] Refactor: remove base input label & adornment (#16646) @romgrk
475
+ - [DataGrid] Refactor: remove material containers (#16633) @romgrk
476
+ - [DataGrid] Refactor: theme to CSS variables (#16588) @romgrk
477
+ - [DataGrid] Update the signature of the `onDataSourceError()` callback (#16718) @MBilalShafi
478
+ - [DataGrid] Use readonly array for the `GridSortModel` (#16627) @pcorpet
479
+ - [DataGrid] Fix the popper focus trap (#16736) @romgrk
480
+ - [l10n] Added Bangla (bn-BD) locale (#16648) @officialkidmax
481
+ - [l10n] Improve Hungarian (hu-HU) locale (#16578) @noherczeg
482
+ - [l10n] Improve Russian (ru-RU) locale (#16591) @denpiligrim
336
483
 
337
- Special thanks go out to the community contributors who have helped make this release possible:
338
- @good-jinu, @k-rajat19.
339
- Following are all team members who have contributed to this release:
340
- @alexfauquette, @cherniavskii, @flaviendelangle, @KenanYusuf, @LukasTy, @MBilalShafi, @romgrk.
484
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.13` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
341
485
 
342
- <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
486
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.13`, plus:
343
487
 
344
- ### Data Grid
488
+ - [DataGridPro] Remove `LicenseInfo` reexports (#16671) @cherniavskii
345
489
 
346
- #### Breaking changes
490
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.13` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
347
491
 
348
- - Passing additional props (like `data-*`, `aria-*`) directly on the Data Grid component is no longer supported. To pass the props, use `slotProps`:
492
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.13`, plus:
349
493
 
350
- - For `.root` element, use `slotProps.root`.
351
- - For `.main` element (the one with `role="grid"`), use `slotProps.main`.
494
+ - [DataGridPremium] Use `valueGetter` to get row group keys (#16016) @cherniavskii
352
495
 
353
- - `detailPanelExpandedRowIds` and `onDetailPanelExpandedRowIdsChange` props use a [`Set`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set) instead of an array:
354
-
355
- ```diff
356
- -detailPanelExpandedRowIds?: GridRowId[];
357
- +detailPanelExpandedRowIds?: Set<GridRowId>;
496
+ ### Date and Time Pickers
358
497
 
359
- -onDetailPanelExpandedRowIdsChange?: (ids: GridRowId[], details: GridCallbackDetails) => void;
360
- +onDetailPanelExpandedRowIdsChange?: (ids: Set<GridRowId>, details: GridCallbackDetails) => void;
361
- ```
498
+ #### Breaking changes
362
499
 
363
- - `apiRef.current.getExpandedDetailPanels` and `apiRef.current.setExpandedDetailPanels` methods receive and return a [`Set`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set) instead of an array.
364
- - `gridDetailPanelExpandedRowIdsSelector` returns a [`Set`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set) instead of an array.
365
- - `gridDetailPanelExpandedRowsHeightCacheSelector` was removed.
500
+ - The `<DateRangePicker />` now uses a `dialog` instead of a `tooltip` to render their view when used with a single input range field.
366
501
 
367
- #### `@mui/x-data-grid@8.0.0-alpha.5`
502
+ #### `@mui/x-date-pickers@8.0.0-alpha.13`
368
503
 
369
- - [DataGrid] Consider `columnGroupHeaderHeight` prop in `getTotalHeaderHeight` method (#15915) @k-rajat19
370
- - [DataGrid] Fix autosizing with virtualized columns (#15116) @k-rajat19
371
- - [DataGrid] Move `<Badge />` to leaf import (#15879) @romgrk
372
- - [DataGrid] Move `<ListItemText />` and `<ListItemIcon />` to leaf import (#15869) @romgrk
373
- - [DataGrid] Remove the Joy UI demo (#15913) @romgrk
374
- - [DataGrid] Update quick filter input variant (#15909) @KenanYusuf
375
- - [DataGrid] Use `slotProps` to forward props to `.main` and `.root` elements (#15870) @MBilalShafi
376
- - [l10n] Improve Korean(ko-KR) locale (#15878) @good-jinu
504
+ - [l10n] Added Bangla (bn-BD) locale (#16648) @officialkidmax
505
+ - [pickers] Clean the typing of the slots on the range pickers (#16670) @flaviendelangle
506
+ - [pickers] Fix Time Clock meridiem button selected styles (#16681) @LukasTy
507
+ - [pickers] Make the single input field the default field on range pickers (#16656) @flaviendelangle
508
+ - [pickers] Move the opening logic to the range fields (#16175) @flaviendelangle
377
509
 
378
- #### `@mui/x-data-grid-pro@8.0.0-alpha.5` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
510
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.13` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
379
511
 
380
- Same changes as in `@mui/x-data-grid@8.0.0-alpha.5`, plus:
512
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.13`.
381
513
 
382
- - [DataGridPro] Use `Set` for `detailPanelExpandedRowIds` (#15835) @cherniavskii
514
+ ### Charts
383
515
 
384
- #### `@mui/x-data-grid-premium@8.0.0-alpha.5` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
516
+ #### Breaking changes
385
517
 
386
- Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.5`.
518
+ - Charts array inputs are now `readonly`. Allowing externally defined `as const` to be used as a prop value of the React component.
387
519
 
388
- ### Date and Time Pickers
520
+ ```tsx
521
+ const xAxis = [{ position: 'bottom' }] as const
522
+ <BarChart xAxis={xAxis} />
523
+ ```
389
524
 
390
- #### Breaking changes
525
+ - Replace `topAxis`, `rightAxis`, `bottomAxis` and `leftAxis` props by the `position` property in the axis config.
526
+ If you were using them to place axis, set the `position` property to the corresponding value `'top' | 'right' | 'bottom' | 'left'`.
527
+ If you were disabling an axis by setting it to `null`, set its `position` to `'none'`.
391
528
 
392
- - The `<PickersMonth />` component has been moved inside the Month Calendar component — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#month-calendar).
529
+ ```diff
530
+ <LineChart
531
+ yAxis={[
532
+ {
533
+ scaleType: 'linear',
534
+ + position: 'right',
535
+ },
536
+ ]}
537
+ series={[{ data: [1, 10, 30, 50, 70, 90, 100], label: 'linear' }]}
538
+ height={400}
539
+ - rightAxis={{}}
540
+ />
541
+ ```
393
542
 
394
- - The `<PickersYear />` component has been moved inside the Year Calendar component — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#year-calendar).
543
+ - Remove `position` prop from `ChartsXAxis` and `ChartsYAxis`.
544
+ The `position` prop has been removed from the `ChartsXAxis` and `ChartsYAxis` components. Configure it directly in the axis config.
395
545
 
396
- #### `@mui/x-date-pickers@8.0.0-alpha.5`
546
+ ```diff
547
+ <ChartContainer
548
+ yAxis={[
549
+ {
550
+ id: 'my-axis',
551
+ + position: 'right',
552
+ },
553
+ ]}
554
+ >
555
+ - <ChartsYAxis axisId="my-axis" position="right" />
556
+ + <ChartsYAxis axisId="my-axis" />
557
+ </ChartContainer>
558
+ ```
397
559
 
398
- - [pickers] Add verification to disable skipped hours in spring forward DST (#15849) @flaviendelangle
399
- - [pickers] Remove `PickersMonth` and `PickersYear` from the theme and remove the `div` wrapping each button (#15806) @flaviendelangle
400
- - [pickers] Use the new `ownerState` object on the `<PickersTextField />` component (#15863) @flaviendelangle
560
+ - Add `minTickLabelGap` to x-axis, which allows users to define the minimum gap, in pixels, between two tick labels. The default value is 4px. Make sure to check your charts as the spacing between tick labels might have changed.
401
561
 
402
- #### `@mui/x-date-pickers-pro@8.0.0-alpha.5` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
562
+ #### `@mui/x-charts@8.0.0-alpha.13`
403
563
 
404
- Same changes as in `@mui/x-date-pickers@8.0.0-alpha.5`.
564
+ - [charts] Accept component in `labelMarkType` (#16739) @bernardobelchior
565
+ - [charts] Add `minTickLabelGap` to x-axis (#16548) @bernardobelchior
566
+ - [charts] Add unit test for pie chart with empty series (#16663) @bernardobelchior
567
+ - [charts] Decouple `margin` and `axis-size` (#16418) @JCQuintas
568
+ - [charts] Display slider tooltip on demos (#16723) @JCQuintas
569
+ - [charts] Fix composition docs link (#16761) @bernardobelchior
570
+ - [charts] Fix default label measurement being off (#16635) @bernardobelchior
571
+ - [charts] Fix is highlighted memoization (#16592) @alexfauquette
572
+ - [charts] Fix missing `theme.shape` error in the tooltip (#16748) @alexfauquette
573
+ - [charts] Fix typo in error message (#16641) @JCQuintas
574
+ - [charts] Improve axis size docs (#16673) @JCQuintas
575
+ - [charts] Improve performance of rendering ticks in x-axis (#16536) @bernardobelchior
576
+ - [charts] Make `defaultizeAxis` function type-safe (#16642) @JCQuintas
577
+ - [charts] Make `series.data` readonly (#16645) @JCQuintas
578
+ - [charts] Migrate `ChartsUsageDemo` to TSX and removed NoSnap (#16686) @JCQuintas
579
+ - [charts] Prevent `position='none'` axes from rendering (#16727) @JCQuintas
580
+ - [charts] Make array inputs readonly (#16632) @JCQuintas
581
+ - [charts] Remove state initialization hack (#16520) @alexfauquette
582
+ - [charts] Remove redundant default axis (#16734) @bernardobelchior
405
583
 
406
- ### Charts
584
+ #### `@mui/x-charts-pro@8.0.0-alpha.13` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
407
585
 
408
- #### `@mui/x-charts@8.0.0-alpha.5`
586
+ Same changes as in `@mui/x-charts@8.0.0-alpha.13`, plus:
409
587
 
410
- - [charts] Fix `<ScatterChart />` value type if `null` (#15917) @alexfauquette
588
+ - [charts-pro] Add back zoom control (#16550) @alexfauquette
411
589
 
412
- #### `@mui/x-charts-pro@8.0.0-alpha.5` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
590
+ ### Tree View
413
591
 
414
- Same changes as in `@mui/x-charts@8.0.0-alpha.5`.
592
+ #### `@mui/x-tree-view@8.0.0-alpha.13`
415
593
 
416
- ### Tree View
594
+ Internal changes.
417
595
 
418
- #### `@mui/x-tree-view@8.0.0-alpha.5`
596
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.13` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
419
597
 
420
- No changes since `@mui/x-tree-view-pro@v8.0.0-alpha.4`.
598
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.13`.
421
599
 
422
- #### `@mui/x-tree-view-pro@8.0.0-alpha.5` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
600
+ ### `@mui/x-codemod@8.0.0-alpha.13`
423
601
 
424
- Same changes as in `@mui/x-tree-view@8.0.0-alpha.5`.
602
+ - [codemod] Add a few Data Grid codemods (#16711) @MBilalShafi
603
+ - [codemod] Improve Pickers renaming codemod (#16685) @LukasTy
425
604
 
426
- ### Core
605
+ ### Docs
427
606
 
428
- - [code-infra] Remove `@mui/material-nextjs` dependency (#15925) @LukasTy
607
+ - [docs] Fix charts with on bar and line pages (#16712) @alexfauquette
608
+ - [docs] Fix migration guide introduction for charts (#16679) @alexfauquette
609
+ - [docs] Fix remaining charts demos on mobile (#16728) @alexfauquette
610
+ - [docs] Fix scroll overflow on mobile (#16675) @oliviertassinari
611
+ - [docs] Improve Pickers migration page (#16682) @LukasTy
612
+ - [docs] Update small Pickers doc inconsistencies (#16724) @LukasTy
613
+ - [code-infra] Charts changes for `vitest` (#16755) @JCQuintas
614
+ - [code-infra] General packages changes for `vitest` (#16757) @JCQuintas
615
+ - [code-infra] Native Node.js ESM (#16603) @Janpot
616
+ - [infra] Update contributor acknowledgment wording (#16751) @michelengelen
617
+ - [test] Revert timeout increase for possibly slow tests (#16651) @LukasTy
618
+ - [x-license] Introduce usage telemetry (#13530) @hasdfa
429
619
 
430
- ## 8.0.0-alpha.4
620
+ ## 8.0.0-alpha.12
431
621
 
432
- _Dec 13, 2024_
622
+ _Feb 17, 2025_
433
623
 
434
- We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
624
+ We'd like to offer a big thanks to the 16 contributors who made this release possible. Here are some highlights ✨:
435
625
 
436
- - 🌍 Improve Romanian locale on the Data Grid and Pickers
437
- - 📚 Documentation improvements
626
+ - 📦 Data Grid [data source](https://next.mui.com/x/react-data-grid/server-side-data/) is now available in the Community plan
627
+ - Improve Data Grid Excel export serialization performance
628
+ - 🚫 Add ["No columns" overlay](https://next.mui.com/x/react-data-grid/overlays/#no-columns-overlay) to Data Grid
629
+ - 🌍 Improve Polish (pl-PL) and Ukrainian (uk-UA) locales on the Data Grid
438
630
  - 🐞 Bugfixes
439
631
 
440
632
  Special thanks go out to the community contributors who have helped make this release possible:
441
- @k-rajat19, @nusr, @rares985, @zivl.
633
+ @Neonin, @nusr, and @pawelkula.
442
634
  Following are all team members who have contributed to this release:
443
- @alexfauquette, @arminmeh, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi.
444
-
445
- <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
635
+ @alexfauquette, @arminmeh, @bernardobelchior, @cherniavskii, @Janpot, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @michelengelen, @oliviertassinari, @romgrk, and @mapache-salvaje.
446
636
 
447
637
  ### Data Grid
448
638
 
449
639
  #### Breaking changes
450
640
 
451
- - The selectors signature has been updated due to the support of arguments in the selectors. Pass `undefined` as `arguments` if the selector doesn't use any arguments.
641
+ - The `main--hasSkeletonLoadingOverlay` class has been renamed to `main--hiddenContent` and is now also applied when the "No columns" overlay is displayed.
452
642
 
453
- ```diff
454
- -mySelector(state, instanceId)
455
- +mySelector(state, arguments, instanceId)
456
- ```
643
+ - The `apiRef.current.forceUpdate()` method was removed. Use selectors combined with `useGridSelector()` hook to react to changes in the state.
457
644
 
458
- - The `useGridSelector` signature has been updated due to the introduction of arguments parameter in the selectors. Pass `undefined` as `arguments` if the selector doesn't use any arguments.
645
+ - The selectors signature has been updated. They are only accepting `apiRef` as a first argument and `instanceId` is no longer the third argument.
459
646
 
460
647
  ```diff
461
- -const output = useGridSelector(apiRef, selector, equals)
462
- +const output = useGridSelector(apiRef, selector, arguments, equals)
648
+ -mySelector(state, arguments, instanceId)
649
+ +mySelector(apiRef, arguments)
463
650
  ```
464
651
 
465
- - The default variant for text fields and selects in the filter panel has been changed to `outlined`.
466
- - The "row spanning" feature is now stable.
467
- ```diff
468
- <DataGrid
469
- - unstable_rowSpanning
470
- + rowSpanning
471
- />
472
- ```
473
- - Selected row is now deselected when clicked again.
652
+ #### `@mui/x-data-grid@8.0.0-alpha.12`
474
653
 
475
- #### `@mui/x-data-grid@8.0.0-alpha.4`
654
+ - [DataGrid] Add "No columns" overlay (#16543) @KenanYusuf
655
+ - [DataGrid] All selectors accept only `apiRef` as first argument (#16198) @arminmeh
656
+ - [DataGrid] Avoid `undefined` value for pagination `rowCount` (#16488) @cherniavskii
657
+ - [DataGrid] Create the base Checkbox slot (#16445) @romgrk
658
+ - [DataGrid] Create the base Input slot (#16443) @romgrk
659
+ - [DataGrid] Create the base MenuList slot (#16481) @romgrk
660
+ - [DataGrid] Create the base Popper slot (#16362) @romgrk
661
+ - [DataGrid] Create the base Select slot (#16394) @romgrk
662
+ - [DataGrid] Create the base Switch slot (#16527) @romgrk
663
+ - [DataGrid] Extract `getRowId()` API method as a selector (#16487) @MBilalShafi
664
+ - [DataGrid] Fix the `onClock` prop of the base Select slot (#16557) @romgrk
665
+ - [DataGrid] Go to the first page when sorting/filtering is applied (#16447) @arminmeh
666
+ - [DataGrid] Make base data source available in the Community plan (#16359) @MBilalShafi
667
+ - [DataGrid] Remove `apiRef.current.forceUpdate()` method (#16560) @MBilalShafi
668
+ - [DataGrid] Fix the unexpected behavior of the pagination when using `-1` for "All" rows per page (#16485) @nusr
669
+ - [l10n] Improve Polish (pl-PL) locale (#16123) @pawelkula
670
+ - [l10n] Improve Ukrainian (uk-UA) locale (#16463) @Neonin
476
671
 
477
- - [DataGrid] Deselect selected row on click (#15509) @k-rajat19
478
- - [DataGrid] Fix "No rows" displaying when all rows are pinned (#15335) @nusr
479
- - [DataGrid] Make row spanning feature stable (#15742) @MBilalShafi
480
- - [DataGrid] Round dimensions to avoid subpixel rendering error (#15850) @KenanYusuf
481
- - [DataGrid] Toggle menu on click in `<GridActionsCell />` (#15867) @k-rajat19
482
- - [DataGrid] Trigger row spanning computation on rows update (#15858) @MBilalShafi
483
- - [DataGrid] Update filter panel input variant (#15807) @KenanYusuf
484
- - [DataGrid] Use `columnsManagement` slot (#15817) @k-rajat19
485
- - [DataGrid] Use new selector signature (#15200) @MBilalShafi
486
- - [l10n] Improve Romanian (ro-RO) locale (#15745) @rares985
672
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.12` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
487
673
 
488
- #### `@mui/x-data-grid-pro@8.0.0-alpha.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
674
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.12`.
489
675
 
490
- Same changes as in `@mui/x-data-grid@8.0.0-alpha.4`, plus:
676
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.12` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
491
677
 
492
- - [DataGridPro] Make row reordering work with pagination (#15355) @k-rajat19
678
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.12`, plus:
493
679
 
494
- #### `@mui/x-data-grid-premium@8.0.0-alpha.4` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
680
+ - [DataGridPremium] Fix Excel export Web Worker demo not working in dev mode (#16517) @cherniavskii
681
+ - [DataGridPremium] Fix loading issue + add skeleton overlay (#16282) @MBilalShafi
682
+ - [DataGridPremium] Improve Excel export serialization performance (#16526) @cherniavskii
683
+ - [DataGridPremium] Namespace Excel export worker (#16020) @oliviertassinari
495
684
 
496
- Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.4`, plus:
685
+ ### Date and Time Pickers
497
686
 
498
- - [DataGridPremium] Fix group column ignoring `valueOptions` for `singleSelect` column type (#15739) @arminmeh
687
+ #### Breaking changes
499
688
 
500
- ### Date and Time Pickers
689
+ - The `aria-label` on the `<Clock />` component and Time Picker opening button has been fixed to rely on the set `ampm` property instead of defaulting to the user's locale.
501
690
 
502
- #### `@mui/x-date-pickers@8.0.0-alpha.4`
691
+ - The following unused formats have been removed from the adapters and can no longer be overridden via the `dateFormats` prop on the `<LocalizationProvider />` component:
503
692
 
504
- - [l10n] Improve Romanian (ro-RO) locale (#15745) @rares985
505
- - [pickers] Clean `usePicker` logic (#15763) @flaviendelangle
506
- - [pickers] Rename layout `ownerState` property from `isRtl` to `layoutDirection` (#15803) @flaviendelangle
507
- - [pickers] Use the new `ownerState` in `useClearableField` (#15776) @flaviendelangle
508
- - [pickers] Use the new `ownerState` in the toolbar components (#15777) @flaviendelangle
509
- - [pickers] Use the new `ownerState` object for the clock components and the desktop / mobile wrappers (#15669) @flaviendelangle
693
+ - `fullTime` - please use `fullTime12h` and `fullTime24h` instead:
694
+ ```diff
695
+ <LocalizationProvider
696
+ dateFormats={{
697
+ - fullTime: 'LT',
698
+ + fullTime12h: 'hh:mm A',
699
+ + fullTime24h: 'hh:mm',
700
+ }}
701
+ >
702
+ ```
703
+ - `keyboardDateTime` - please use `keyboardDateTime12h` and `keyboardDateTime24h` instead:
704
+ ```diff
705
+ <LocalizationProvider
706
+ dateFormats={{
707
+ - keyboardDateTime: 'DD.MM.YYYY | LT',
708
+ + keyboardDateTime12h: 'DD.MM.YYYY | hh:mm A',
709
+ + keyboardDateTime24h: 'DD.MM.YYYY | hh:mm',
710
+ }}
711
+ >
712
+ ```
510
713
 
511
- #### `@mui/x-date-pickers-pro@8.0.0-alpha.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
714
+ #### `@mui/x-date-pickers@8.0.0-alpha.12`
512
715
 
513
- Same changes as in `@mui/x-date-pickers@8.0.0-alpha.4`.
716
+ - [pickers] Fix time related aria labels to depend on `ampm` flag value (#16572) @LukasTy
717
+ - [pickers] Remove unused adapter formats (#16522) @LukasTy
718
+
719
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.12` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
720
+
721
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.12`, plus:
722
+
723
+ - [DateRangePicker] Avoid unnecessary field section focusing (#16474) @LukasTy
514
724
 
515
725
  ### Charts
516
726
 
517
727
  #### Breaking changes
518
728
 
519
- - The default styling of the charts tooltip has been updated.
729
+ - The `useSeries` hook family has been stabilized and renamed accordingly — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#stabilize-useseries-and-usexxxseries-hooks-✅)
520
730
 
521
- #### `@mui/x-charts@8.0.0-alpha.4`
731
+ #### `@mui/x-charts@8.0.0-alpha.12`
522
732
 
523
- - [charts] Fix hydration missmatch (#15647) @alexfauquette
524
- - [charts] Fix internal spelling typo (#15805) @zivl
525
- - [charts] Fix scatter dataset with missing data (#15802) @alexfauquette
526
- - [charts] HTML Labels (#15813) @JCQuintas
527
- - [charts] Only access store values by using hooks (#15764) @alexfauquette
528
- - [charts] Update Tooltip style (#15630) @alexfauquette
733
+ - [charts] Add docs for scatter "Size" section (#16556) @bernardobelchior
734
+ - [charts] Add `test:performance:browser` script #16600 @bernardobelchior
735
+ - [charts] Add warning when using unknown ids in `useXxxSeries` hooks (#16552) @JCQuintas
736
+ - [charts] Divide the logic for `useXxxSeries` into `useXxxSeriesContext` (#16546) @JCQuintas
737
+ - [charts] Document plugins for internal use (#16504) @JCQuintas
738
+ - [charts] Fix internal typo (#16524) @alexfauquette
739
+ - [charts] Fix type overloads (#16581) @JCQuintas
740
+ - [charts] Fix zoom filter regression (#16507) @alexfauquette
741
+ - [charts] Improve tooltip placement in mobile (#16553) @bernardobelchior
742
+ - [charts] Let the `useXxxSeries` support array of ids and document them (#15545) @JCQuintas
743
+ - [charts] Memoize some tooltip internals (#16564) @alexfauquette
744
+ - [charts] Move Voronoi handler in a dedicated plugin (#16470) @alexfauquette
745
+ - [charts] Performance tests: set license on setup. Update vitest minor version. (#16525) @bernardobelchior
746
+ - [charts] Propagate the axis scale to the `valueFormatter` (#16555) @alexfauquette
747
+ - [charts] Remove `colors` prop from `SparkLineChart`. (#16494) @bernardobelchior
748
+ - [charts] Stabilize series hooks (`useSeries`, `usePieSeries`, etc.) (#16459) @bernardobelchior
529
749
 
530
- #### `@mui/x-charts-pro@8.0.0-alpha.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
750
+ #### `@mui/x-charts-pro@8.0.0-alpha.12` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
531
751
 
532
- Same changes as in `@mui/x-charts@8.0.0-alpha.4`.
752
+ Same changes as in `@mui/x-charts@8.0.0-alpha.12`.
533
753
 
534
754
  ### Tree View
535
755
 
536
- #### `@mui/x-tree-view@8.0.0-alpha.4`
756
+ #### `@mui/x-tree-view@8.0.0-alpha.12`
537
757
 
538
- No changes, releasing to keep the versions in sync.
758
+ Internal changes.
539
759
 
540
- #### `@mui/x-tree-view-pro@8.0.0-alpha.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
760
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.12` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
541
761
 
542
- Releasing to benefit from license package fix (#15814).
762
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.12`.
543
763
 
544
764
  ### Docs
545
765
 
546
- - [docs] Clean Joy and Browser custom field demos (#15707) @flaviendelangle
547
- - [docs] Fix outdated link to handbook (#15855) @oliviertassinari
548
- - [docs] Improve Pickers accessible DOM migration section description (#15596) @LukasTy
549
- - [docs] Use `updateRows` method for list view demos (#15732) @KenanYusuf
550
- - [docs] Use date library version from package dev dependencies for sandboxes (#15762) @LukasTy
766
+ - [docs] Add demo for Scatter Chart with linked points (#16505) @bernardobelchior
767
+ - [docs] Improve license installation page (#16403) @michelengelen
768
+ - [docs] Standardize getting started docs across all packages (#16302) @mapache-salvaje
551
769
 
552
770
  ### Core
553
771
 
554
- - [code-infra] Add Charts sandbox generation (#15830) @JCQuintas
555
- - [code-infra] Remove redundant `@type/react-test-renderer` dep (#15766) @LukasTy
556
- - [license] Use `console.log` for the error message on Codesandbox to avoid rendering error (#15814) @arminmeh
772
+ - [core] Update charts folder structure (#16471) @alexfauquette
773
+ - [code-infra] Bump @mui/monorepo (#16422) @LukasTy
774
+ - [code-infra] Fix lock file (#16562) @LukasTy
775
+ - [code-infra] Fix root package version (#16503) @JCQuintas
776
+ - [code-infra] Update internal packages to `next` releases (#16423) @LukasTy
777
+ - [code-infra] Update package layout for better ESM support (#14386) @Janpot
778
+ - [code-infra] Update peer dependencies for v8 (#16563) @Janpot
557
779
 
558
- ## 8.0.0-alpha.3
780
+ ## 8.0.0-alpha.11
559
781
 
560
- _Dec 5, 2024_
782
+ _Feb 7, 2025_
561
783
 
562
- We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
784
+ We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
563
785
 
564
- - 💫 Support [Server-side lazy loading](https://mui.com/x/react-data-grid/server-side-data/lazy-loading/) on the Data Grid. Use [data source](https://mui.com/x/react-data-grid/server-side-data/#data-source) to fetch a range of rows on demand and update the rows in the same way as described in [Infinite loading](https://mui.com/x/react-data-grid/row-updates/#infinite-loading) and [Lazy loading](https://mui.com/x/react-data-grid/row-updates/#lazy-loading) without the need to use any additional event listeners and callbacks.
565
- - 🎯 Improved [data caching](https://mui.com/x/react-data-grid/server-side-data/#data-caching). Check out our [recommendations](https://mui.com/x/react-data-grid/server-side-data/#improving-the-cache-hit-rate) for improving the cache hit rate.
786
+ - Mount and resize performance improvements for the Data Grid
566
787
 
567
788
  Special thanks go out to the community contributors who have helped make this release possible:
568
- @ihsanberkozcan, @k-rajat19, @perezShaked.
789
+ @lauri865.
569
790
  Following are all team members who have contributed to this release:
570
- @arminmeh, @cherniavskii, @flaviendelangle, @JCQuintas, @MBilalShafi, @noraleonte.
791
+ @alexfauquette, @arminmeh, @bernardobelchior, @flaviendelangle, @Janpot, @KenanYusuf, @LukasTy, @MBilalShafi, @noraleonte, @romgrk.
571
792
 
572
793
  <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
573
794
 
@@ -575,547 +796,2205 @@ Following are all team members who have contributed to this release:
575
796
 
576
797
  #### Breaking changes
577
798
 
578
- - The "Select all" checkbox is now checked when all the selectable rows are selected, ignoring rows that are not selectable because of the `isRowSelectable` prop.
579
- - The `rowPositionsDebounceMs` prop was removed.
580
- - The `gridRowsDataRowIdToIdLookupSelector` selector was removed. Use the `gridRowsLookupSelector` selector in combination with the `getRowId()` API method instead.
799
+ - `createUseGridApiEventHandler()` is not exported anymore.
800
+ - The `filteredRowsLookup` object of the filter state does not contain `true` values anymore. If the row is filtered out, the value is `false`. Otherwise, the row id is not present in the object.
801
+ This change only impacts you if you relied on `filteredRowsLookup` to get ids of filtered rows. In this case,use `gridDataRowIdsSelector` selector to get row ids and check `filteredRowsLookup` for `false` values:
802
+
581
803
  ```diff
582
- -const idToIdLookup = gridRowsDataRowIdToIdLookupSelector(apiRef);
583
- -const rowId = idToIdLookup[id]
584
- +const rowsLookup = gridRowsLookupSelector(apiRef);
585
- +const rowId = apiRef.current.getRowId(rowsLookup[id])
804
+ const filteredRowsLookup = gridFilteredRowsLookupSelector(apiRef);
805
+ -const filteredRowIds = Object.keys(filteredRowsLookup).filter((rowId) => filteredRowsLookup[rowId] === true);
806
+ +const rowIds = gridDataRowIdsSelector(apiRef);
807
+ +const filteredRowIds = rowIds.filter((rowId) => filteredRowsLookup[rowId] !== false);
586
808
  ```
587
- - The Grid is now more aligned with the WAI-ARIA authoring practices and sets the `role` attribute to `treegrid` if the Data Grid is used with row grouping feature.
588
809
 
589
- #### `@mui/x-data-grid@8.0.0-alpha.3`
810
+ - The `visibleRowsLookup` state does not contain `true` values anymore. If the row is not visible, the value is `false`. Otherwise, the row id is not present in the object:
590
811
 
591
- - [DataGrid] Fix deselection not working with `isRowSelectable` (#15692) @MBilalShafi
592
- - [DataGrid] Make column autosizing work with flex columns (#15465) @cherniavskii
593
- - [DataGrid] Remove `gridRowsDataRowIdToIdLookupSelector` selector (#15698) @arminmeh
594
- - [DataGrid] Remove `rowPositionsDebounceMs` prop (#15482) @k-rajat19
595
- - [l10n] Improve Hebrew (he-IL) locale (#15699) @perezShaked
596
- - [l10n] Improve Turkish (tr-TR) locale (#15734) @ihsanberkozcan
812
+ ```diff
813
+ const visibleRowsLookup = gridVisibleRowsLookupSelector(apiRef);
814
+ -const isRowVisible = visibleRowsLookup[rowId] === true;
815
+ +const isRowVisible = visibleRowsLookup[rowId] !== false;
816
+ ```
597
817
 
598
- #### `@mui/x-data-grid-pro@8.0.0-alpha.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
818
+ #### `@mui/x-data-grid@8.0.0-alpha.11`
599
819
 
600
- Same changes as in `@mui/x-data-grid@8.0.0-alpha.3`, plus:
820
+ - [DataGrid] Avoid `<GridRoot />` double-render pass on mount in SPA mode (#15648) @lauri865
821
+ - [DataGrid] Fix loading overlay not in sync with scroll (#16437) @MBilalShafi
822
+ - [DataGrid] Refactor: remove material `MenuList` import (#16444) @romgrk
823
+ - [DataGrid] Refactor: simplify `useGridApiEventHandler()` (#16479) @romgrk
601
824
 
602
- - [DataGridPro] Cleanup pinned rows on removal (#15697) @cherniavskii
603
- - [DataGridPro] Server-side lazy loading (#13878) @arminmeh
825
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.11` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
604
826
 
605
- #### `@mui/x-data-grid-premium@8.0.0-alpha.3` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
827
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.11`, plus:
606
828
 
607
- Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.3`, plus:
829
+ - [DataGridPro] Fix the return type of `useGridApiContext()` for Pro and Premium packages on React < 19 (#16441) @arminmeh
608
830
 
609
- - [DataGridPremium] Remove the `ariaV8` experimental flag (#15694) @arminmeh
831
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.11` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
610
832
 
611
- ### Date and Time Pickers
833
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.11`, plus:
612
834
 
613
- #### Breaking changes
835
+ - [DataGridPremium] Fix "no rows" overlay not showing with active aggregation (#16466) @KenanYusuf
614
836
 
615
- - The `onOpen()` and `onClose()` methods of the `usePickerContext()` hook have been replaced with a single `setOpen` method — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#usepickercontext).
837
+ ### Date and Time Pickers
616
838
 
617
- #### `@mui/x-date-pickers@8.0.0-alpha.3`
839
+ #### `@mui/x-date-pickers@8.0.0-alpha.11`
618
840
 
619
- - [pickers] Replace the `onOpen()` and `onClose()` methods of `usePickerContext()` with a single `setOpen()` method. (#15701) @flaviendelangle
841
+ Internal changes.
620
842
 
621
- #### `@mui/x-date-pickers-pro@8.0.0-alpha.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
843
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.11` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
622
844
 
623
- Same changes as in `@mui/x-date-pickers@8.0.0-alpha.3`.
845
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.11`, plus:
846
+
847
+ - [DateRangeCalendar] Support arrow navigation with multiple months rendered (#16363) @flaviendelangle
848
+ - [DateRangePicker] Fix `currentMonthCalendarPosition` prop behavior on mobile (#16455) @LukasTy
849
+ - [DateRangePicker] Fix vertical alignment for multi input fields (#16489) @noraleonte
624
850
 
625
851
  ### Charts
626
852
 
627
- #### `@mui/x-charts@8.0.0-alpha.3`
853
+ #### `@mui/x-charts@8.0.0-alpha.11`
628
854
 
629
- - [charts] Improve SVG `pattern` and `gradient` support (#15720) @JCQuintas
855
+ - [charts] Add `color` prop to `Sparkline` and deprecate `colors` (#16477) @bernardobelchior
856
+ - [charts] Make typescript more flexible about plugins and their params (#16478) @alexfauquette
857
+ - [charts] Remove component for axis event listener (#16314) @alexfauquette
630
858
 
631
- #### `@mui/x-charts-pro@8.0.0-alpha.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
859
+ #### `@mui/x-charts-pro@8.0.0-alpha.11` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
632
860
 
633
- Same changes as in `@mui/x-charts@8.0.0-alpha.3`.
861
+ Same changes as in `@mui/x-charts@8.0.0-alpha.11`.
634
862
 
635
863
  ### Tree View
636
864
 
637
- #### `@mui/x-tree-view@8.0.0-alpha.3`
865
+ #### `@mui/x-tree-view@8.0.0-alpha.11`
638
866
 
639
- No changes since `@mui/x-tree-view-pro@v8.0.0-alpha.2`.
867
+ Internal changes.
640
868
 
641
- #### `@mui/x-tree-view-pro@8.0.0-alpha.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
869
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.11` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
642
870
 
643
- Same changes as in `@mui/x-tree-view@8.0.0-alpha.3`.
871
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.11`.
644
872
 
645
873
  ### Docs
646
874
 
647
- - [docs] Add a customization demo for the Date and Time Pickers overview page (#15118) @noraleonte
648
- - [docs] Fix typo in charts axis documentation (#15743) @JCQuintas
649
- - [docs] Improve SEO titles for the Data Grid (#15695) @MBilalShafi
875
+ - [docs] Update charts colors default value (#16484) @bernardobelchior
650
876
 
651
877
  ### Core
652
878
 
653
- - [core] Add `@mui/x-tree-view-pro` to `releaseChangelog` (#15316) @flaviendelangle
654
- - [code-infra] Lock file maintenance (#11894)
655
- - [code-infra] Check if `preset-safe` folder exists in codemod test (#15703) @JCQuintas
656
- - [code-infra] Import Pickers `preset-safe` into global codemod config (#15659) @JCQuintas
657
- - [code-infra] Playwright 1.49 (#15493) @JCQuintas
658
- - [test] Force hover in headless Chrome (#15710) @cherniavskii
879
+ - [core] Fix corepack and pnpm installation in CircleCI (#16434) @flaviendelangle
880
+ - [code-infra] Update monorepo (#16112) @Janpot
881
+ - [test] Avoid test warning when running on React 18 (#16486) @LukasTy
882
+ - [test] Disable `react-transition-group` transitions in unit testing (#16288) @lauri865
659
883
 
660
- ## v8.0.0-alpha.2
884
+ ## 8.0.0-alpha.10
661
885
 
662
- _Nov 29, 2024_
886
+ _Jan 30, 2025_
663
887
 
664
- We'd like to offer a big thanks to the 17 contributors who made this release possible. Here are some highlights ✨:
888
+ We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
665
889
 
666
- - 👨🏽‍💻 Improve resize performance on the Data Gird.
667
- - `<ChartDataProvider />` and `<ChartsSurface />` components are now fully divided — [Learn more](https://next.mui.com/x/react-charts/composition/#overview).
668
- - Users can create their own HTML components using chart data — [Learn more](https://next.mui.com/x/react-charts/components/#html-components).
669
- - 🌍 Improve Spanish, Portuguese, Chinese locales on the Data Grid component.
670
- - 🌍 Improve Dutch locale on the Date and Time Pickers components.
671
- - 🐞 Bugfixes
890
+ - 🎨 Data Grid theming improvements and default background color
672
891
  - 📚 Documentation improvements
892
+ - 🐞 Bugfixes
673
893
 
674
894
  Special thanks go out to the community contributors who have helped make this release possible:
675
- @dloeda, @headironc, @jedesroches, @k-rajat19, @lauri865, @mathzdev, @nphmuller, @zinoroman.
895
+ @k-rajat19, @lauri865, @mateuseap.
676
896
  Following are all team members who have contributed to this release:
677
- @arminmeh, @alexfauquette, @cherniavskii, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @oliviertassinari.
897
+ @alexfauquette, @flaviendelangle, @JCQuintas, @KenanYusuf, @MBilalShafi, @romgrk, @arminmeh.
678
898
 
679
899
  <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
680
900
 
681
901
  ### Data Grid
682
902
 
683
- #### Breaking changes
903
+ ### Breaking changes
684
904
 
685
- - The `<GridOverlays />` component is not exported anymore.
686
- - The `indeterminateCheckboxAction` prop has been removed. Clicking on an indeterminate checkbox "selects" the unselected descendants.
687
- - The `apiRef.current.resize()` method was removed.
688
- - The default value of the `rowSelectionPropagation` prop has been changed to `{ parents: true, descendants: true }` which means that the selection will be propagated to the parents and descendants by default.
689
- To revert to the previous behavior, pass `rowSelectionPropagation` as `{ parents: false, descendants: false }`.
690
- - If `estimatedRowCount` is used, the text provided to the [Table Pagination](/material-ui/api/table-pagination/) component from the Material UI library is updated and requires additional translations. Check the example at the end of [Index-based pagination section](/x/react-data-grid/pagination/#index-based-pagination).
905
+ - `viewportInnerSize.width` now includes pinned columns' widths (fixes recursive loops in updating dimensions <-> columns)
906
+ - The Data Grid now has a default background color, and its customization has moved from `theme.mixins.MuiDataGrid` to `theme.palette.DataGrid` with the following properties:
691
907
 
692
- #### `@mui/x-data-grid@v8.0.0-alpha.2`
908
+ - `bg`: Sets the background color of the entire grid (new property)
909
+ - `headerBg`: Sets the background color of the header (previously named `containerBackground`)
910
+ - `pinnedBg`: Sets the background color of pinned rows and columns (previously named `pinnedBackground`)
693
911
 
694
- - [DataGrid] Change test dom check from `/jsdom/` to `/jsdom|HappyDOM/`. (#15634) @jedesroches
695
- - [DataGrid] Clear timers on unmount (#15620) @cherniavskii
696
- - [DataGrid] Fix order of spread props on toolbar items (#15556) @KenanYusuf
697
- - [DataGrid] Improve resize performance (#15549) @lauri865
698
- - [DataGrid] Make estimation label more accurate (#15632) @arminmeh
699
- - [DataGrid] Remove `<GridOverlays />` export (#15573) @k-rajat19
700
- - [DataGrid] Remove `indeterminateCheckboxAction` prop (#15522) @MBilalShafi
701
- - [DataGrid] Remove try/catch from `<GridCell />` due to performance issues (#15616) @lauri865
702
- - [DataGrid] Remove unused `resize` method (#15599) @cherniavskii
703
- - [DataGrid] Support column virtualization with dynamic row height (#15541) @cherniavskii
704
- - [DataGrid] Update the default value for `rowSelectionPropagation` (#15523) @MBilalShafi
705
- - [l10n] Improve Chinese (zh-CN) locale (#15570) @headironc
706
- - [l10n] Improve Portuguese (pt-PT) locale (#15561) @mathzdev
912
+ ```diff
913
+ const theme = createTheme({
914
+ - mixins: {
915
+ - MuiDataGrid: {
916
+ - containerBackground: '#f8fafc',
917
+ - pinnedBackground: '#f1f5f9',
918
+ - },
919
+ - },
920
+ + palette: {
921
+ + DataGrid: {
922
+ + bg: '#f8fafc',
923
+ + headerBg: '#e2e8f0',
924
+ + pinnedBg: '#f1f5f9',
925
+ + },
926
+ + },
927
+ });
928
+ ```
707
929
 
708
- #### `@mui/x-data-grid-pro@v8.0.0-alpha.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
930
+ - The `detailPanels`, `pinnedColumns`, and `pinnedRowsRenderZone` classes have been removed.
931
+ - Return type of the `useGridApiRef()` hook and the type of `apiRef` prop are updated to explicitly include the possibilty of `null`. In addition to this, `useGridApiRef()` returns a reference that is initialized with `null` instead of `{}`.
709
932
 
710
- Same changes as in `@mui/x-data-grid@v8.0.0-alpha.2`, plus:
933
+ Only the initial value and the type are updated. Logic that initializes the API and its availability remained the same, which means that if you could access API in a particular line of your code before, you are able to access it as well after this change.
711
934
 
712
- - [DataGridPro] Fix header filtering with `boolean` column type (#15528) @k-rajat19
713
- - [DataGridPro] Fix pagination state not updating if the data source response has no rows (#15622) @zinoroman
714
- - [DataGridPro] Fix selection propagation issue on initialization (#15461) @MBilalShafi
935
+ Depending on the context in which the API is being used, you can decide what is the best way to deal with `null` value. Some options are:
715
936
 
716
- #### `@mui/x-data-grid-premium@v8.0.0-alpha.2` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
937
+ - Use optional chaining
938
+ - Use non-null assertion operator if you are sure your code is always executed when the `apiRef` is not `null`
939
+ - Return early if `apiRef` is `null`
940
+ - Throw an error if `apiRef` is `null`
717
941
 
718
- Same changes as in `@mui/x-data-grid-pro@v8.0.0-alpha.2`.
942
+ #### `@mui/x-data-grid@8.0.0-alpha.10`
719
943
 
720
- ### Date and Time Pickers
944
+ - [DataGrid] Fix `renderContext` calculation with scroll bounce / over-scroll (#16297) @lauri865
945
+ - [DataGrid] Remove unused classes from `gridClasses` (#16256) @mateuseap
946
+ - [DataGrid] Add default background color to grid (#16066) @KenanYusuf
947
+ - [DataGrid] Add missing style overrides (#16272) @KenanYusuf
948
+ - [DataGrid] Add possibility of `null` in the return type of the `useGridApiRef()` hook (#16353) @arminmeh
949
+ - [DataGrid] Fix header filters keyboard navigation when there are no rows (#16126) @k-rajat19
950
+ - [DataGrid] Fix order of `onClick` prop on toolbar buttons (#16356) @KenanYusuf
951
+ - [DataGrid] Refactor row state propagation (#15627) @lauri865
952
+ - [DataGrid] Refactor: create TextField props (#16174) @romgrk
953
+ - [DataGrid] Remove outdated warning (#16360) @MBilalShafi
954
+ - [DataGrid] Respect width of `iconContainer` during autosizing (#16399) @michelengelen
721
955
 
722
- #### Breaking changes
956
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.10` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
723
957
 
724
- - The props received by the `layout` and the `toolbar` slots have been reworked — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#do-not-pass-the-section-type-as-a-generic).
958
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.10`, plus:
725
959
 
726
- - The `TSection` generic of the `FieldRef` type has been replaced with the `TValue` generic — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slots-breaking-changes).
960
+ - [DataGridPro] Fetch new rows only once when multiple models are changed in one cycle (#16101) @arminmeh
961
+ - [DataGridPro] Fix the return type of `useGridApiRef` for Pro and Premium packages on React < 19 (#16328) @arminmeh
727
962
 
728
- #### `@mui/x-date-pickers@v8.0.0-alpha.2`
963
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.10` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
729
964
 
730
- - [l10n] Improve Dutch (nl-NL) locale (#15564) @nphmuller
731
- - [pickers] Fix DST issue with `America/Asuncion` timezone and `AdapterMoment` (#15552) @flaviendelangle
732
- - [pickers] Improve validation internals (#15419) @flaviendelangle
733
- - [pickers] Remove `TSection` and strictly type `TValue` (#15434) @flaviendelangle
734
- - [pickers] Remove `orientation`, `isLandscape`, `isRtl`, `wrapperVariant` and `disabled` props from `PickersLayout` (#15494) @flaviendelangle
735
- - [pickers] Use the new `ownerState` in `<PickersCalendarHeader />`, `<PickersArrowSwitcher />` and `<DayCalendarSkeleton />` (#15499) @flaviendelangle
736
- - [pickers] Use the new `ownerState` object in all the field components (#15510) @flaviendelangle
965
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.10`.
737
966
 
738
- #### `@mui/x-date-pickers-pro@v8.0.0-alpha.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
967
+ ### Date and Time Pickers
739
968
 
740
- Same changes as in `@mui/x-date-pickers@v8.0.0-alpha.2`.
969
+ #### Breaking changes
970
+
971
+ - The component passed to the `field` slot no longer receives the `ref`, `disabled`, `className`, `sx`, `label`, `name`, `formatDensity`, `enableAccessibleFieldDOMStructure`, `selectedSections`, `onSelectedSectionsChange` and `inputRef` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-field)
972
+ - The `MuiPickersPopper` theme entry have been renamed `MuiPickerPopper` and some of its props have been removed — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#muipickerspopper)
973
+
974
+ #### `@mui/x-date-pickers@8.0.0-alpha.10`
975
+
976
+ - [pickers] Clean the internals and the public API of `<PickersPopper />` (#16319) @flaviendelangle
977
+ - [pickers] Improve the JSDoc of the `PickerContextValue` properties (#16327) @flaviendelangle
978
+ - [pickers] Move more field props to the context (#16278) @flaviendelangle
979
+ - [pickers] Do not close the picker when doing keyboard editing (#16402) @flaviendelangle
980
+
981
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.10` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
982
+
983
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.10`.
741
984
 
742
985
  ### Charts
743
986
 
744
987
  #### Breaking changes
745
988
 
746
- - Charts Container don't have a `<div />` wrapping them anymore. All props are now passed to the root `<svg />` instead of the `<div />`.
989
+ - Replace `legend.position.horizontal` from `"left" | "middle" | "right"` to `"start" | "center" | "end"`.
990
+ This is to align with the CSS values and reflect the RTL ability of the legend component.
991
+ - The default colors have changed. To keep using the old palette. It is possible to import `blueberryTwilightPalette` from `@mui/x-charts/colorPalettes` and set it on the `colors` property of charts.
992
+ - The `id` property is now optional on the `Pie` and `Scatter` data types.
747
993
 
748
- #### `@mui/x-charts@v8.0.0-alpha.2`
994
+ #### `@mui/x-charts@8.0.0-alpha.10`
749
995
 
750
- - [charts] Allow the creation of custom HTML components using charts data (#15511) @JCQuintas
751
- - [charts] Flatten imports from `@mui/utils` and `@mui/system` (#15603) @alexfauquette
752
- - [charts] Introduce the plugin system (#15513) @alexfauquette
753
- - [charts] Prevent invalid `releasePointerCapture` (#15602) @alexfauquette
754
- - [charts] Fix custom Tooltip demos (#15631) @alexfauquette
996
+ - [charts] Add new `bumpX` and `bumpY` curve options (#16318) @JCQuintas
997
+ - [charts] Move `tooltipGetter` to `seriesConfig` (#16331) @JCQuintas
998
+ - [charts] Move item highligh feature to plugin system (#16211) @alexfauquette
999
+ - [charts] Replace `legend.position.horizontal` from `"left" | "middle" | "right"` to `"start" | "center" | "end"` (#16315) @JCQuintas
1000
+ - [charts] New default colors (#16373) @JCQuintas
1001
+ - [charts] Make `id` optional on `PieValueType` and `ScatterValueType` (#16389) @JCQuintas
755
1002
 
756
- #### `@mui/x-charts-pro@v8.0.0-alpha.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1003
+ #### `@mui/x-charts-pro@8.0.0-alpha.10` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
757
1004
 
758
- Same changes as in `@mui/x-charts@v8.0.0-alpha.2`.
1005
+ Same changes as in `@mui/x-charts@8.0.0-alpha.10`.
759
1006
 
760
1007
  ### Tree View
761
1008
 
762
- #### `@mui/x-tree-view@v8.0.0-alpha.2`
1009
+ #### `@mui/x-tree-view@8.0.0-alpha.10`
763
1010
 
764
- - [TreeView] Flatten import from `@mui/utils` and `@mui/system` (#15604) @alexfauquette
1011
+ Internal changes.
765
1012
 
766
- #### `@mui/x-tree-view-pro@v8.0.0-alpha.2`
1013
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.10` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
767
1014
 
768
- Same changes as in `@mui/x-tree-view@v8.0.0-alpha.2`.
1015
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.10`.
769
1016
 
770
1017
  ### Docs
771
1018
 
772
- - [docs] Fix 404 links (#15575) @oliviertassinari
773
- - [docs] Fix bash comments (#15571) @oliviertassinari
774
- - [docs] Fix Pickers theme augmentation example (#15672) @LukasTy
775
- - [docs] Replace use of "e.g." with "for example" (#15572) @oliviertassinari
776
- - [docs] Update stale `new` and `preview` tags in v8 docs (#15547) @JCQuintas
777
- - [docs] Fix layout shift image on Tree View docs (#15626) @oliviertassinari
778
- - [docs] Fix `anchorEl` API page for charts (#15625) @oliviertassinari
779
- - [docs] Add documentation for the list view feature (#15344) @KenanYusuf
1019
+ - [docs] Improve release documentation (#16321) @MBilalShafi
780
1020
 
781
1021
  ### Core
782
1022
 
783
- - [core] Follow `()` function convention for docs @oliviertassinari
784
- - [core] Remove dead translation key (#15566) @oliviertassinari
785
- - [code-infra] Auto-merge `@types/node` bumps (#15591) @LukasTy
1023
+ - [core] Reduce chart perf benchmark weight (#16374) @alexfauquette
1024
+ - [test] Fix console warnings while executing tests with React 18 (#16386) @arminmeh
1025
+ - [test] Fix flaky data source tests in DataGrid (#16395) @lauri865
786
1026
 
787
- ## v8.0.0-alpha.1
1027
+ ## 8.0.0-alpha.9
788
1028
 
789
- _Nov 22, 2024_
1029
+ _Jan 24, 2025_
790
1030
 
791
- We'd like to offer a big thanks to the 16 contributors who made this release possible. Here are some highlights ✨:
1031
+ We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
792
1032
 
793
- - 🔧 Refactor Tooltip customisation for charts — [Learn more](https://next.mui.com/x/react-charts/tooltip/#overriding-content).
794
- - ⚛️ React 19 support
795
- - 🌍 Improve Chinese, Spanish, and Swedish locale on the Data Grid component
796
- - 🐞 Bugfixes
1033
+ - 🌍 Improve Persian (fa-IR) and Urdu (ur-PK) locales on the Data Grid
797
1034
  - 📚 Documentation improvements
1035
+ - 🐞 Bugfixes
798
1036
 
799
1037
  Special thanks go out to the community contributors who have helped make this release possible:
800
- @CarlosLopezLg, @headironc, @hendrikpeilke, @k-rajat19, @lhilgert9, @viktormelin.
801
- Following are all team members who have contributed to this release:
802
- @alexfauquette, @arthurbalduini, @cherniavskii, @flaviendelangle, @JCQuintas, @LukasTy, @MBilalShafi, @oliviertassinari, @KenanYusuf, @arminmeh.
1038
+ @AxharKhan, @lauri865, @mapache-salvaje, @mostafaRoosta74.
803
1039
 
804
- <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1040
+ Following are all team members who have contributed to this release:
1041
+ @alexfauquette, @cherniavskii, @Janpot, @JCQuintas, @LukasTy, @arminmeh.
805
1042
 
806
1043
  ### Data Grid
807
1044
 
808
- #### `@mui/x-data-grid@v8.0.0-alpha.1`
809
-
810
- - [DataGrid] React 19 support (#15342) @arminmeh
811
- - [DataGrid] Add prop to override search input props in `GridColumnsManagement` (#15347) @k-rajat19
812
- - [DataGrid] Add test coverage for issues fixed in #15184 (#15282) @MBilalShafi
813
- - [DataGrid] Change default loading overlay variants (#15504) @KenanYusuf
814
- - [DataGrid] Fix last separator not being hidden when grid is scrollable (#15543) @KenanYusuf
815
- - [DataGrid] Fix right column group header border with virtualization (#15470) @hendrikpeilke
816
- - [DataGrid] Fix row-spanning in combination with column-pinning (#15368) @lhilgert9
817
- - [l10n] Improve Chinese (zh-CN) locale (#15365) @headironc
818
- - [l10n] Improve Spanish (es-ES) locale (#15369) @CarlosLopezLg
819
- - [l10n] Improve Swedish (sv-SE) locale (#15371) @viktormelin
1045
+ #### `@mui/x-data-grid@v8.0.0-alpha.9`
820
1046
 
821
- #### `@mui/x-data-grid-pro@v8.0.0-alpha.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1047
+ - [DataGrid] Fix toggling preference panel from toolbar (#16274) @lauri865
1048
+ - [DataGrid] Only try to mount filter button if there are filters present (#16267) @lauri865
1049
+ - [DataGrid] Revert `apiRef` to be `MutableRefObject` for React versions < 19 (#16279) @arminmeh
1050
+ - [l10n] Improve Persian (fa-IR) locale (#16312) @mostafaRoosta74
1051
+ - [l10n] Improve Urdu (ur-PK) locale (#16295) @AxharKhan
822
1052
 
823
- Same changes as in `@mui/x-data-grid@v8.0.0-alpha.1`.
1053
+ #### `@mui/x-data-grid-pro@v8.0.0-alpha.9` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
824
1054
 
825
- #### `@mui/x-data-grid-premium@v8.0.0-alpha.1` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1055
+ Same changes as in `@mui/x-data-grid@v8.0.0-alpha.9`.
826
1056
 
827
- Same changes as in `@mui/x-data-grid-pro@v8.0.0-alpha.1`, plus:
1057
+ #### `@mui/x-data-grid-premium@v8.0.0-alpha.9` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
828
1058
 
829
- - [DataGridPremium] Prompt input control (#15401) @arminmeh
1059
+ Same changes as in `@mui/x-data-grid-pro@v8.0.0-alpha.9`.
830
1060
 
831
1061
  ### Date and Time Pickers
832
1062
 
833
- #### Breaking change
834
-
835
- - The `FieldValueType` type has been renamed to `PickerValueType` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#renamed-variables).
836
- - The `toolbar` and `layout` slots no longer receive the `disabled` and `readOnly` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slots-breaking-changes).
837
-
838
- #### `@mui/x-date-pickers@v8.0.0-alpha.1`
839
-
840
- - [fields] Fix focus management with new DOM structure (#15475) @flaviendelangle
841
- - [pickers] React 19 support (#15342) @arminmeh
842
- - [pickers] Add new properties to `PickerOwnerState` and `PickerContextValue` (#15415) @flaviendelangle
843
- - [pickers] Always use `props.value` when it changes (#15490) @flaviendelangle
844
- - [pickers] Ensure internal value timezone is updated (#15435) @LukasTy
845
- - [pickers] Fix unused code in `<PickersToolbar />` component (#15515) @LukasTy
846
- - [pickers] Remove `FieldValueType` in favor of `PickerValueType` (#15259) @arthurbalduini
847
- - [pickers] Remove the form props from the layout and the toolbar slots (#15492) @flaviendelangle
848
- - [pickers] Use `props.referenceDate` timezone when `props.value` and `props.defaultValue` are not defined (#15532) @flaviendelangle
849
- - [TimePicker] Prevent mouse events after `touchend` event (#15346) @arthurbalduini
1063
+ #### `@mui/x-date-pickers@v8.0.0-alpha.9`
850
1064
 
851
- #### `@mui/x-date-pickers-pro@v8.0.0-alpha.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1065
+ - [fields] Reset `all` selected state on section edit (#16223) @LukasTy
852
1066
 
853
- Same changes as in `@mui/x-date-pickers@v8.0.0-alpha.1`, plus:
1067
+ #### `@mui/x-date-pickers-pro@v8.0.0-alpha.9` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
854
1068
 
855
- - [DateTimeRangePicker] Use time in `referenceDate` when selecting date (#15429) @LukasTy
1069
+ Same changes as in `@mui/x-date-pickers@v8.0.0-alpha.9`.
856
1070
 
857
1071
  ### Charts
858
1072
 
859
- #### Breaking change
860
-
861
- - The DX of the Tooltip customization has been refactored
862
-
863
- - The `tooltip` prop has been removed in favor of `slotProps.tooltip` for consistency.
864
- - The `popper`, `axisContent`, and `itemContent` slots have been removed in favor of the `tooltip` slot which overrides the entire tooltip.
865
- - To override the tooltip content, use the `useItemTooltip` or `useAxisTooltip` hook to get the data, and wrap your component in `ChartsTooltipContainer` to follow the pointer position.
866
- - To override the tooltip placement, use the `ChartsItemTooltipContent` or `ChartsItemTooltipContent` to get default data and place them in your custom tooltip.
1073
+ #### Breaking Changes
867
1074
 
868
- - The library now uses the SVG `filter` attribute instead of `d3-color` for color manipulation.
1075
+ The `experimentalMarkRendering` prop has been removed from the `LineChart` component.
1076
+ The line mark are now `<circle />` element by default.
1077
+ And you can chose another shape by adding a `shape` property to your line series.
869
1078
 
870
- - This modification impacts the `LinePlot`, `AreaPlot`, and `BarPlot` components.
871
- If you've customized the `fill` of those elements, you might need to override it by using the CSS `filter`.
872
- - The `theme.styleOverride` is removed for `MuiLineElement`, `MuiAreaElement`, and `MuiBarElement` to improve performance.
873
- You can still target those elements by using the `MuiLinePlot`, `MuiAreaPlot`, and `MuiBarPlot` and target the appropriate classes `lineElementClasses.root`, `areaElementClasses.root`, `barElementClasses.root`
1079
+ The codemod only removes the `experimentalMarkRendering` prop.
1080
+ If you relied on the fact that marks were `path` elements, you need to update your logic.
874
1081
 
875
- - Removed the `resolveSizeBeforeRender` prop from all chart components — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#remove-resolvesizebeforerender-prop).
876
- - Removed `width` and `height` props from the `ChartsSurface` component.
877
- - Removed the `viewport` prop from all charts.
1082
+ #### `@mui/x-charts@v8.0.0-alpha.9`
878
1083
 
879
- #### `@mui/x-charts@v8.0.0-alpha.1`
1084
+ - [charts] Expand line with step interpolation (#16229) @alexfauquette
1085
+ - [charts] Fix hydration mismatch (#16261) @alexfauquette
1086
+ - [charts] Fix zoom option reactivity (#16262) @alexfauquette
1087
+ - [charts] Move legend getter to series config (#16307) @alexfauquette
1088
+ - [charts] Use `<circle />` instead of `<path />` for line marks by default (#15220) @alexfauquette
880
1089
 
881
- - [charts] React 19 support (#15342) @arminmeh
882
- - [charts] Decouple `<ChartDataProvider />` and `<ChartsSurface />` (#15375) @JCQuintas
883
- - [charts] Fix Scatter Chart tooltip wrong defaults (#15537) @JCQuintas
884
- - [charts] Fix key generation for the `<ChartsGrid />` component (#15463) @alexfauquette
885
- - [charts] Improve `<SvgRefProvider />` to split the received ref (#15424) @JCQuintas
886
- - [charts] Move interaction state in store (#15426) @alexfauquette
887
- - [charts] Refactor Tooltip customisation (#15154) @alexfauquette
888
- - [charts] Remove intrinsic size requirement (#15471) @JCQuintas
889
- - [charts] Replace `d3-color` with CSS filter for highlight (#15084) @alexfauquette
890
- - [charts] Split `<DrawingProvider />` into `<DrawingAreaProvider />` and `<SvgRefProvider />` (#15417) @JCQuintas
1090
+ #### `@mui/x-charts-pro@v8.0.0-alpha.9` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
891
1091
 
892
- #### `@mui/x-charts-pro@v8.0.0-alpha.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1092
+ Same changes as in `@mui/x-charts@v8.0.0-alpha.9`, plus:
893
1093
 
894
- Same changes as in `@mui/x-charts@v8.0.0-alpha.1`.
1094
+ - [charts-pro] Fix `pro` components watermark (#16222) @JCQuintas
895
1095
 
896
1096
  ### Tree View
897
1097
 
898
- #### Breaking changes
1098
+ #### `@mui/x-tree-view@v8.0.0-alpha.9`
899
1099
 
900
- - The Tree Item component can no longer use `publicAPI` methods in the `render` because they are now memoized — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#stop-using-publicapi-methods-in-the-render).
1100
+ Internal changes.
901
1101
 
902
- #### `@mui/x-tree-view@v8.0.0-alpha.1`
1102
+ #### `@mui/x-tree-view-pro@v8.0.0-alpha.9` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
903
1103
 
904
- - [TreeView] React 19 support (#15342) @arminmeh
905
- - [TreeView] Do not re-render every Tree Item when the Rich Tree View re-renders (introduce selectors) (#14210) @flaviendelangle
906
- - [TreeView] Remove `treeId` from the item context (#15542) @flaviendelangle
907
- - [TreeView] Remove state mutation in `moveItemInTree()` (#15539) @flaviendelangle
908
- - [TreeItem] Correct the typing of `slotProps.groupTransition` (#15534) @flaviendelangle
1104
+ Same changes as in `@mui/x-tree-view@v8.0.0-alpha.9`.
909
1105
 
910
1106
  ### Docs
911
1107
 
912
- - [docs] Fix some migration typos (#15422) @LukasTy
913
- - [docs] Fix typo in migration guide (#15508) @flaviendelangle
914
- - [docs] Fix 301 redirection in docs @oliviertassinari
915
- - [docs] Polish Server-side data section (#15330) @oliviertassinari
916
- - [docs] Use loading state in the demos (#15512) @cherniavskii
917
-
918
- ### Core
1108
+ - [docs] Fix `domainLimit` definition (#16270) @alexfauquette
1109
+ - [docs] Fix tiny line chart breaking change (#16268) @alexfauquette
1110
+ - [docs] Revise planned feature callouts and descriptions (#16290) @mapache-salvaje
1111
+ - [docs] Copyedit the Aggregation doc (#16200) @mapache-salvaje
1112
+ - [docs] Revise the Data Grid getting started docs (#15757) @mapache-salvaje
1113
+ - [code-infra] Add 'use client' directive (#16273) @Janpot
1114
+ - [code-infra] Allow dispatch of manual cherry-pick workflow (#16299) @JCQuintas
1115
+ - [code-infra] Update changelog script (#16218) @cherniavskii
1116
+ - [test] Fix flaky column pinning tests (#16219) @cherniavskii
1117
+ - [test] Fix flaky tests (#16257) @lauri865
919
1118
 
920
- - [core] Keep OpenSSF badge up-to-date @oliviertassinari
921
- - [code-infra] Add `'DensitySelectorGrid'` to time-sensitive argos tests (#15425) @JCQuintas
922
- - [code-infra] Add documentation to internal types (#15540) @JCQuintas
923
- - [code-infra] Prevent relative imports across packages (#15437) @JCQuintas
924
- - [code-infra] Update renovate config to merge `action` pins (#15462) @LukasTy
925
- - [docs-infra] Fix version tooltip (#15468) @alexfauquette
926
- - [docs-infra] Transpile `.ts` demo files (#15345) @KenanYusuf
927
- - [infra] Remove cherry-pick issue write permission (#15456) @oliviertassinari
1119
+ ## 8.0.0-alpha.8
928
1120
 
929
- ## 8.0.0-alpha.0
1121
+ _Jan 16, 2025_
930
1122
 
931
- <img width="100%" alt="MUI X v8 Alpha is live" src="https://github.com/user-attachments/assets/114cf615-b617-435f-8499-76ac3c26c57b">
1123
+ We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
932
1124
 
933
- _Nov 14, 2024_
1125
+ - 🍬 Improved design for Data Grid [Header filters](https://next.mui.com/x/react-data-grid/filtering/header-filters/)
934
1126
 
935
- We'd like to offer a big thanks to the 22 contributors who made this release possible. Here are some highlights ✨:
1127
+ <img width="100%" alt="Data Grid Header filters" src="https://github.com/user-attachments/assets/74a50cd9-7a55-41fc-a2b8-f8a0d5b9120e" />
936
1128
 
937
- - 🔁 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.
938
- - 🌍 Improve Greek (el-GR) locale on the Date and Time Pickers components
939
- - 🌍 Improve Polish (pl-PL) locale on the Data Grid component
1129
+ - 🔄 Data Grid [Scroll restoration](https://next.mui.com/x/react-data-grid/scrolling/#scroll-restoration)
1130
+ - 📊 Charts support server-side rendering under [some conditions](https://next.mui.com/x/react-charts/getting-started/#server-side-rendering)
940
1131
  - 🐞 Bugfixes
941
- - 📚 Documentation improvements
942
1132
 
943
- Special thanks go out to the community contributors who have helped make this release possible:
944
- @belkocik, @GeorgiosDrivas, @k-rajat19, @kalyan90, @DungTiger, @fxnoob, @GuillaumeMeheut
945
- Following are all team members who have contributed to this release:
946
- @alexfauquette, @arminmeh, @arthurbalduini, @cherniavskii, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @michelengelen, @noraleonte, @oliviertassinari, @romgrk, @samuelsycamore, @joserodolfofreitas.
1133
+ Special thanks go out to the community contributors who have helped make this release possible:
1134
+ @lauri865.
1135
+ Following are all team members who have contributed to this release:
1136
+ @arminmeh, @romgrk, @samuelsycamore, @alexfauquette, @cherniavskii, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @michelengelen.
947
1137
 
948
1138
  <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
949
1139
 
950
1140
  ### Data Grid
951
1141
 
952
- #### `@mui/x-data-grid@8.0.0-alpha.0`
1142
+ #### Breaking changes
953
1143
 
954
- - [DataGrid] Fix grid overlay aligment with scroll for rtl (#15072) @kalyan90
955
- - [DataGrid] Fix resizing right pinned column (#15107) @KenanYusuf
956
- - [DataGrid] Pass the reason to the `onPaginationModelChange` callback (#13959) @DungTiger
957
- - [DataGrid] Set default overlay height in flex parent layout (#15202) @cherniavskii
958
- - [DataGrid] Refactor `baseMenuList` and `baseMenuItem` (#15049) @romgrk
959
- - [DataGrid] Remove more material imports (#15063) @romgrk
960
- - [l10n] Improve Polish (pl-PL) locale (#15227) @belkocik
1144
+ - The clear button in header filter cells has been moved to the header filter menu. Use `slotProps={{ headerFilterCell: { showClearIcon: true } }}` to restore the clear button in the cell.
961
1145
 
962
- #### `@mui/x-data-grid-pro@8.0.0-alpha.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1146
+ #### `@mui/x-data-grid@8.0.0-alpha.8`
963
1147
 
964
- Same changes as in `@mui/x-data-grid@8.0.0-alpha.0`, plus:
1148
+ - [DataGrid] Improve scrollbar deadzone with overlay scrollbars (#15961) @lauri865
1149
+ - [DataGrid] Header filter design improvements (#15991) @KenanYusuf
1150
+ - [DataGrid] Scroll restoration (#15623) @lauri865
1151
+ - [DataGrid] Fix row, cell and header memoizations (#15666) @lauri865
965
1152
 
966
- - [DataGridPro] Fix column pinning layout (#14966) @cherniavskii
1153
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.8` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
967
1154
 
968
- #### `@mui/x-data-grid-premium@8.0.0-alpha.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1155
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.8`, plus:
969
1156
 
970
- Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.0`, plus:
1157
+ - [DataGridPro] Add test for column pinning with disabled column virtualization (#16176) @cherniavskii
1158
+ - [DataGridPro] Fix width of right-pinned column group during resize (#16199) @cherniavskii
971
1159
 
972
- - [DataGridPremium] Server-side data source with row grouping (#13826) @MBilalShafi
1160
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.8` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1161
+
1162
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.8`.
973
1163
 
974
1164
  ### Date and Time Pickers
975
1165
 
976
1166
  #### Breaking changes
977
1167
 
978
- - The default DOM structure of the field has changed [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#new-dom-structure-for-the-field).
1168
+ - The field is now editable if rendered inside a mobile Picker — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#field-editing-on-mobile-pickers)
1169
+ - The `useMultiInputDateRangeField`, `useMultiInputTimeRangeField`, and `useMultiInputDateTimeRangeField` hooks have been removed in favor of the new `useMultiInputRangeField` hook — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#usemultiinputdaterangefield)
1170
+ - The component passed to the `field` slot no longer receives the `value`, `onChange`, `timezone`, `format`, `disabled`, `formatDensity`, `enableAccessibleFieldDOMStructure`, `selectedSections` and `onSelectedSectionsChange` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-field)
979
1171
 
980
- - Before version `v8.x`, the fields' DOM structure consisted of an `<input />`, which held the whole value for the component, but unfortunately presents a few limitations in terms of accessibility when managing multiple section values.
981
- - Starting with version `v8.x`, all the field and picker components come with a new DOM structure that allows the field component to set aria attributes on individual sections, providing a far better experience with screen readers.
1172
+ #### `@mui/x-date-pickers@8.0.0-alpha.8`
982
1173
 
983
- - Some translation keys no longer require `utils` and the date object as parameters, but only the formatted value as a string. The keys affected by this changes are: `clockLabelText`, `openDatePickerDialogue` and `openTimePickerDialogue` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#stop-passing-utils-and-the-date-object-to-some-translation-keys).
1174
+ - [pickers] Let the field components handle their opening UI, and allow field editing on mobile pickers (#15671) @flaviendelangle
1175
+ - [pickers] Remove code duplication for the multi input range fields (#15505) @flaviendelangle
1176
+ - [pickers] Rename `onRangePositionChange` into `setRangePosition` in `usePickerRangePositionContext` (#16189) @flaviendelangle
1177
+ - [pickers] Use context to pass props from the picker to the field (#16042) @flaviendelangle
984
1178
 
985
- - The following types are no longer exported by `@mui/x-date-pickers` and `@mui/x-date-pickers-pro` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#removed-types).
1179
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.8` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
986
1180
 
987
- - `UseDateFieldComponentProps`
988
- - `UseTimeFieldComponentProps`
989
- - `UseDateTimeFieldComponentProps`
990
- - `BaseSingleInputFieldProps`
991
- - `BaseMultiInputFieldProps`
992
- - `BasePickersTextFieldProps`
1181
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.8`.
993
1182
 
994
- - The `TDate` generic has been removed from all the types, interfaces, and variables of the `@mui/x-date-pickers` and `@mui/x-date-pickers-pro` packages — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#remove-tdate-generic).
1183
+ ### Charts
995
1184
 
996
- - Renamed `usePickersTranslations` and `usePickersContext` hooks to have a coherent `Picker` prefix instead of `Pickers` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#renamed-variables).
1185
+ #### Breaking changes
997
1186
 
998
- - The `LicenseInfo` object is no longer exported from the `@mui/x-date-pickers-pro` package [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#stop-using-licenseinfo-from-mui-x-date-pickers-pro).
1187
+ - Charts tooltip markers now have different styles for each chart type. The tooltip and legend marks are now the same.
1188
+ - Duplicate axis id's across `x` and `y` axis now log a warning in dev mode. Axis ids should be unique to prevent internal issues.
999
1189
 
1000
- #### `@mui/x-date-pickers@8.0.0-alpha.0`
1190
+ #### `@mui/x-charts@8.0.0-alpha.8`
1001
1191
 
1002
- - [fields] Enable the new field DOM structure by default (#14651) @flaviendelangle
1003
- - [fields] Remove `UseDateFieldComponentProps` and equivalent interfaces (#15053) @flaviendelangle
1004
- - [fields] Remove clear button from the tab sequence (#14616) @k-rajat19
1005
- - [l10n] Improve Greek (el-GR) locale (#15250) @GeorgiosDrivas
1006
- - [pickers] Clean definition of validation props (#15198) @flaviendelangle
1007
- - [pickers] Clean the new `ownerState` object (#15056) @flaviendelangle
1008
- - [pickers] Correctly type the `ownerState` of the `field` and `actionBar` slots when resolved in a picker component (#15162) @flaviendelangle
1009
- - [pickers] Fix `DateCalendar` timezone management (#12321) @LukasTy
1010
- - [pickers] Fix `DateTimeRangePicker` error when using format without time (#14917) @fxnoob
1011
- - [pickers] Fix `DigitalClock` time options on a `DST` switch day (#10793) @LukasTy
1012
- - [pickers] Remove `TDate` generics in favor of `PickerValidDate` direct usage (#15001) @flaviendelangle
1013
- - [pickers] Remove `utils` and `value` params from translations (#14986) @arthurbalduini
1014
- - [pickers] Remove plural in "Pickers" on recently introduced APIs (#15297) @flaviendelangle
1015
- - [pickers] Remove the re-export from `@mui/x-license` (#14487) @k-rajat19
1016
- - [pickers] Strictly type the props a picker passes to its field, and migrate all the custom field demos accordingly (#15197) @flaviendelangle
1017
- - [pickers] Unify JSDoc for all the `disabled` and `readOnly` props (#15304) @flaviendelangle
1018
- - [pickers] Use the new `ownerState` in `DateCalendar`, `DateRangeCalendar`, `MonthCalendar` and `YearCalendar` (#15171) @flaviendelangle
1019
- - [pickers] Use the new `ownerState` in `usePickersLayout` and `useXXXPicker` (#14994) @flaviendelangle
1192
+ - [charts] Fix flaky charts tests (#16180) @JCQuintas
1193
+ - [charts] Handle case where gradient stop `offset` could be `Infinite` (#16131) @JCQuintas
1194
+ - [charts] Make `useChartGradientId` public (#16106) @JCQuintas
1195
+ - [charts] Move z-axis to plugin (#16130) @alexfauquette
1196
+ - [charts] Plot data at first render if `skipAnimation` is set to `true` (#16166) @alexfauquette
1197
+ - [charts] Replace tooltip mark with style (#16117) @JCQuintas
1198
+ - [charts] Support `rtl` for gradient legend (#16115) @JCQuintas
1199
+ - [charts] Use plugin system for series and axes (#15865) @alexfauquette
1020
1200
 
1021
- #### `@mui/x-date-pickers-pro@8.0.0-alpha.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1201
+ #### `@mui/x-charts-pro@8.0.0-alpha.8` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1022
1202
 
1023
- Same changes as in `@mui/x-date-pickers@8.0.0-alpha.0`.
1203
+ Same changes as in `@mui/x-charts@8.0.0-alpha.8`.
1024
1204
 
1025
- ### Charts
1205
+ ### Tree View
1026
1206
 
1027
- #### Breaking changes
1207
+ #### `@mui/x-tree-view@8.0.0-alpha.8`
1028
1208
 
1029
- - The `legend` prop has been removed. To pass props to the legend, use `slotProps={{ legend: { ... } }}` instead. This can be automatically done with the codemod as long as the `legend` prop does not come from a destructured object — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#legend-props-propagation-✅).
1209
+ No changes since `@mui/x-tree-view-pro@v8.0.0-alpha.7`.
1210
+
1211
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.8` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1212
+
1213
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.8`.
1214
+
1215
+ ### Docs
1216
+
1217
+ - [docs] Add example for custom legend (#16169) @alexfauquette
1218
+ - [docs] Add full custom field creation example (#15194) @flaviendelangle
1219
+ - [docs] Copyedit the Data Grid cell selection page (#16099) @samuelsycamore
1220
+ - [docs] Fix demo rendering issue on Codesandbox (#16118) @arminmeh
1221
+ - [docs] Remove broken links (#16167) @alexfauquette
1222
+ - [docs] Split the Data Grid editing page (#14931) @MBilalShafi
1223
+ - [docs] Fix wrong props warnings (#16119) @JCQuintas
1224
+
1225
+ ### Core
1226
+
1227
+ - [core] Type all references as `RefObject` (#16124) @arminmeh
1228
+ - [code-infra] Refactor `react` and `react-dom` definitions to simplify dep resolving (#16160) @LukasTy
1229
+ - [code-infra] Stop renovate from updating `date-fns-v2` (#16158) @LukasTy
1230
+ - [infra] Improve cherry-pick action target list (#16184) @michelengelen
1231
+ - [test] Fix flaky column pinning unit test (#16202) @cherniavskii
1232
+ - [test] Fix flaky screenshot (#16182) @cherniavskii
1233
+
1234
+ ## 8.0.0-alpha.7
1235
+
1236
+ _Jan 9, 2025_
1237
+
1238
+ We'd like to offer a big thanks to the 13 contributors who made this release possible. Here are some highlights ✨:
1239
+
1240
+ - 📊 Charts legend is now an HTML element which can be styled more easily
1241
+ - 💫 Support [aggregation with server-side data](/x/react-data-grid/server-side-data/aggregation/)
1242
+ - 🏎️ Improve Data Grid aggregation performance
1243
+ - 🌍 Add Chinese (Taiwan) (zh-TW) locale on the Date and Time Pickers
1244
+ - 🌍 Improve Norwegian (nb-NO) locale on the Date and Time Pickers
1245
+ - 🐞 Bugfixes
1246
+
1247
+ Special thanks go out to the community contributors who have helped make this release possible:
1248
+ @derek-0000, @josteinjhauge, @k-rajat19, @nusr, @tomashauser.
1249
+ Following are all team members who have contributed to this release:
1250
+ @cherniavskii, @flaviendelangle, @JCQuintas, @LukasTy, @MBilalShafi, @arminmeh, @romgrk, @oliviertassinari.
1251
+
1252
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1253
+
1254
+ ### Data Grid
1255
+
1256
+ #### `@mui/x-data-grid@8.0.0-alpha.7`
1257
+
1258
+ - [DataGrid] Improve React 19 support (#15769) @LukasTy
1259
+ - [DataGrid] Add `name` attribute to the checkbox selection column (#15178) @derek-0000
1260
+ - [DataGrid] Fix number filter field formatting values while typing (#16062) @arminmeh
1261
+ - [DataGrid] Fix select all checkbox state reset with server side data (#16034) @MBilalShafi
1262
+ - [DataGrid] Refactor: create base button props (#15930) @romgrk
1263
+ - [DataGrid] Refactor: create tooltip props (#16086) @romgrk
1264
+ - [DataGrid] Fix TS error (#16046) @cherniavskii
1265
+
1266
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.7` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1267
+
1268
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.7`.
1269
+
1270
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.7` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1271
+
1272
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.7`, plus:
1273
+
1274
+ - [DataGridPremium] Improve aggregation performance for multiple columns (#16097) @cherniavskii
1275
+ - [DataGridPremium] Make Aggregation keyboard accessible in the column menu (#15934) @k-rajat19
1276
+ - [DataGridPremium] Server-side aggregation with data source (#15741) @MBilalShafi
1277
+
1278
+ ### Date and Time Pickers
1279
+
1280
+ #### Breaking changes
1281
+
1282
+ - The `date-fns` and `date-fns-jalali` date library adapters have been renamed to better align with the current stable major versions — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#✅-rename-date-fns-adapter-imports)
1283
+ - Update default `closeOnSelect` and Action Bar `actions` values - [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#update-default-closeonselect-and-action-bar-actions-values)
1284
+ - The component passed to the `layout` slot no longer receives the `value`, `onChange` and `onSelectShortcut` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-layout).
1285
+ - The component passed to the `toolbar` slot no longer receives the `value`, `onChange` and `isLandscape` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-toolbar).
1286
+ - The component passed to the `shortcuts` slot no longer receives the `onChange`, `isValid` and `isLandscape` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-shortcuts).
1287
+ - The `PickerShortcutChangeImportance` type has been renamed `PickerChangeImportance` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#renamed-variables-and-types).
1288
+ - The component passed to the `layout` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-layout).
1289
+ - The component passed to the `toolbar` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-toolbar).
1290
+ - The component passed to the `tabs` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slot-tabs).
1291
+
1292
+ #### `@mui/x-date-pickers@8.0.0-alpha.7`
1293
+
1294
+ - [fields] Handle focusing container with `inputRef.current.focus` on `accessibleFieldDOMStructure` (#15985) @LukasTy
1295
+ - [pickers] Always use `setValue` internally to update the picker value (#16056) @flaviendelangle
1296
+ - [pickers] Create a new context to pass the range position props to the layout components and to the views (#15846) @flaviendelangle
1297
+ - [pickers] Introduce a new concept of `manager` (#15339) @flaviendelangle
1298
+ - [pickers] Improve React 19 support (#15769) @LukasTy
1299
+ - [pickers] Memoize `<PickersActionBar />` (#16071) @LukasTy
1300
+ - [pickers] Remove `NonEmptyDateRange` type (#16035) @flaviendelangle
1301
+ - [pickers] Rename `AdapterDateFns` into `AdapterDateFnsV2` and `AdapterDateFnsV3` into `AdapterDateFns` (#16082) @LukasTy
1302
+ - [pickers] Rename `ctx.onViewChange` to `ctx.setView` and add it to the actions context (#16044) @flaviendelangle
1303
+ - [pickers] Support `date-fns-jalali` v4 (#16011) @LukasTy
1304
+ - [pickers] Update `closeOnSelect` and `actionBar.actions` default values (#15944) @LukasTy
1305
+ - [pickers] Use `usePickerContext()` and `usePickerActionsContext()` instead of passing props to the `shortcuts` and `toolbar` slots (#15948) @flaviendelangle
1306
+ - [l10n] Add Chinese (Taiwan) (zh-TW) locale (#16033) @nusr
1307
+ - [l10n] Improve Norwegian (nb-NO) locale (#16089) @josteinjhauge
1308
+
1309
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.7` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1310
+
1311
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.7`.
1312
+
1313
+ ### Charts
1314
+
1315
+ #### Breaking changes
1316
+
1317
+ - Removed `DefaultChartsLegend` component, since it is now easier to create custom legends — [Learn more](https://next.mui.com/x/react-charts/components/#html-components).
1318
+ - The default legend is now an HTML element and can be styled more easily.
1319
+ - The `width` and `height` properties of the charts now only apply to the `svg` element, and not their wrappers, this might cause some layout shifts.
1320
+ - `slotProps.legend.direction` now accepts `'horizontal' | 'vertical'` instead of `'row' | 'column'` — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#legend-direction-value-change-✅).
1321
+ - The `getSeriesToDisplay` function was removed in favor of the `useLegend` hook. — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#the-getseriestodisplay-function-was-removed).
1322
+
1323
+ #### `@mui/x-charts@8.0.0-alpha.7`
1324
+
1325
+ - [charts] New HTML legend & styles (#15733) @JCQuintas
1326
+ - [charts] Improve React 19 support (#15769) @LukasTy
1327
+ - [charts] Fix 301 redirection in the API documentation @oliviertassinari
1328
+
1329
+ #### `@mui/x-charts-pro@8.0.0-alpha.7` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1330
+
1331
+ Same changes as in `@mui/x-charts@8.0.0-alpha.7`.
1332
+
1333
+ ### Tree View
1334
+
1335
+ #### `@mui/x-tree-view@8.0.0-alpha.7`
1336
+
1337
+ - [TreeView] Improve React 19 support (#15769) @LukasTy
1338
+
1339
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.7` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1340
+
1341
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.7`.
1342
+
1343
+ ### Docs
1344
+
1345
+ - [docs] Fix `EditingWithDatePickers` demo (#15967) @k-rajat19
1346
+ - [docs] Fix inconsistent multi input range field separators (#16043) @flaviendelangle
1347
+ - [docs] Fix non-existing "adapter" property of `LocalizationProvider` (#16084) @tomashauser
1348
+ - [docs] Refactor Data Grid with Date Pickers example (#15992) @LukasTy
1349
+ - [docs] Unify the wording of the pickers slots breaking changes (#16036) @flaviendelangle
1350
+
1351
+ ### Core
1352
+
1353
+ - [core] Clarify the release strategy (#16014) @MBilalShafi
1354
+ - [core] Small fixes on docs @oliviertassinari
1355
+ - [core] Sync with other repos @oliviertassinari
1356
+ - [core] Update the `release:version` docs (#16038) @cherniavskii
1357
+ - [code-infra] Add `testSkipIf` and `describeSkipIf` (#16049) @JCQuintas
1358
+ - [test] Stabilize flaky Data Grid tests (#16053) @LukasTy
1359
+
1360
+ ## 8.0.0-alpha.6
1361
+
1362
+ _Dec 26, 2024_
1363
+
1364
+ We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
1365
+
1366
+ - 🏎️ Improve Data Grid scrolling performance
1367
+ - 🌍 Improve Dutch (nl-NL) locale on the Data Grid
1368
+ - 🐞 Bugfixes
1369
+
1370
+ Special thanks go out to the community contributors who have helped make this release possible:
1371
+ @JoepVerkoelen, @k-rajat19, @lauri865.
1372
+ Following are all team members who have contributed to this release:
1373
+ @flaviendelangle, @JCQuintas, @LukasTy, @MBilalShafi, @romgrk.
1374
+
1375
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1376
+
1377
+ ### Data Grid
1378
+
1379
+ #### Breaking changes
1380
+
1381
+ - The `sanitizeFilterItemValue()` utility is not exported anymore.
1382
+
1383
+ #### `@mui/x-data-grid@8.0.0-alpha.6`
1384
+
1385
+ - [DataGrid] Avoid subscribing to `renderContext` state in grid root for better scroll performance (#15986) @lauri865
1386
+ - [DataGrid] Fix header filters showing clear button while empty (#15829) @k-rajat19
1387
+ - [DataGrid] Improve test coverage of server side data source (#15942) @MBilalShafi
1388
+ - [DataGrid] Move progress components to leaf import (#15914) @romgrk
1389
+ - [DataGrid] Move skeleton to leaf import (#15931) @romgrk
1390
+ - [DataGrid] Replace `forwardRef` with a shim for forward compatibility (#15955) @lauri865
1391
+ - [l10n] Improve Dutch (nl-NL) locale (#15994) @JoepVerkoelen
1392
+
1393
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1394
+
1395
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.6`.
1396
+
1397
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.6` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1398
+
1399
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.6`, plus:
1400
+
1401
+ - [DataGridPremium] Fix column unpinning with row grouping (#15908) @k-rajat19
1402
+
1403
+ ### Date and Time Pickers
1404
+
1405
+ #### `@mui/x-date-pickers@8.0.0-alpha.6`
1406
+
1407
+ - [pickers] Use `usePickerContext()` and `usePickerActionsContext()` to get the actions in the `actionBar` slot and in internal components (#15843) @flaviendelangle
1408
+ - [pickers] Use `usePickerContext()` to get the view-related props in the layout, toolbar and tabs slots (#15606) @flaviendelangle
1409
+
1410
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1411
+
1412
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.6`.
1413
+
1414
+ ### Charts
1415
+
1416
+ #### `@mui/x-charts@8.0.0-alpha.6`
1417
+
1418
+ No changes since `@mui/x-charts@v8.0.0-alpha.5`.
1419
+
1420
+ #### `@mui/x-charts-pro@8.0.0-alpha.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1421
+
1422
+ Same changes as in `@mui/x-charts@8.0.0-alpha.6`.
1423
+
1424
+ ### Tree View
1425
+
1426
+ #### `@mui/x-tree-view@8.0.0-alpha.6`
1427
+
1428
+ No changes since `@mui/x-tree-view-pro@v8.0.0-alpha.5`.
1429
+
1430
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1431
+
1432
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.6`.
1433
+
1434
+ ### Docs
1435
+
1436
+ - [docs] Remove production profiler from docs build (#15959) @lauri865
1437
+ - [code-infra] Add new `next-env.d.ts` changes (#15947) @JCQuintas
1438
+
1439
+ ## 8.0.0-alpha.5
1440
+
1441
+ _Dec 19, 2024_
1442
+
1443
+ We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
1444
+
1445
+ - 🌍 Improve Korean (ko-KR) locale on the Data Grid
1446
+ - 🐞 Bugfixes
1447
+
1448
+ Special thanks go out to the community contributors who have helped make this release possible:
1449
+ @good-jinu, @k-rajat19.
1450
+ Following are all team members who have contributed to this release:
1451
+ @alexfauquette, @cherniavskii, @flaviendelangle, @KenanYusuf, @LukasTy, @MBilalShafi, @romgrk.
1452
+
1453
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1454
+
1455
+ ### Data Grid
1456
+
1457
+ #### Breaking changes
1458
+
1459
+ - Passing additional props (like `data-*`, `aria-*`) directly on the Data Grid component is no longer supported. To pass the props, use `slotProps`:
1460
+
1461
+ - For `.root` element, use `slotProps.root`.
1462
+ - For `.main` element (the one with `role="grid"`), use `slotProps.main`.
1463
+
1464
+ - `detailPanelExpandedRowIds` and `onDetailPanelExpandedRowIdsChange` props use a [`Set`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set) instead of an array:
1465
+
1466
+ ```diff
1467
+ -detailPanelExpandedRowIds?: GridRowId[];
1468
+ +detailPanelExpandedRowIds?: Set<GridRowId>;
1469
+
1470
+ -onDetailPanelExpandedRowIdsChange?: (ids: GridRowId[], details: GridCallbackDetails) => void;
1471
+ +onDetailPanelExpandedRowIdsChange?: (ids: Set<GridRowId>, details: GridCallbackDetails) => void;
1472
+ ```
1473
+
1474
+ - `apiRef.current.getExpandedDetailPanels` and `apiRef.current.setExpandedDetailPanels` methods receive and return a [`Set`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set) instead of an array.
1475
+ - `gridDetailPanelExpandedRowIdsSelector` returns a [`Set`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set) instead of an array.
1476
+ - `gridDetailPanelExpandedRowsHeightCacheSelector` was removed.
1477
+
1478
+ #### `@mui/x-data-grid@8.0.0-alpha.5`
1479
+
1480
+ - [DataGrid] Consider `columnGroupHeaderHeight` prop in `getTotalHeaderHeight` method (#15915) @k-rajat19
1481
+ - [DataGrid] Fix autosizing with virtualized columns (#15116) @k-rajat19
1482
+ - [DataGrid] Move `<Badge />` to leaf import (#15879) @romgrk
1483
+ - [DataGrid] Move `<ListItemText />` and `<ListItemIcon />` to leaf import (#15869) @romgrk
1484
+ - [DataGrid] Remove the Joy UI demo (#15913) @romgrk
1485
+ - [DataGrid] Update quick filter input variant (#15909) @KenanYusuf
1486
+ - [DataGrid] Use `slotProps` to forward props to `.main` and `.root` elements (#15870) @MBilalShafi
1487
+ - [l10n] Improve Korean(ko-KR) locale (#15878) @good-jinu
1488
+
1489
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.5` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1490
+
1491
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.5`, plus:
1492
+
1493
+ - [DataGridPro] Use `Set` for `detailPanelExpandedRowIds` (#15835) @cherniavskii
1494
+
1495
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.5` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1496
+
1497
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.5`.
1498
+
1499
+ ### Date and Time Pickers
1500
+
1501
+ #### Breaking changes
1502
+
1503
+ - The `<PickersMonth />` component has been moved inside the Month Calendar component — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#month-calendar).
1504
+
1505
+ - The `<PickersYear />` component has been moved inside the Year Calendar component — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#year-calendar).
1506
+
1507
+ #### `@mui/x-date-pickers@8.0.0-alpha.5`
1508
+
1509
+ - [pickers] Add verification to disable skipped hours in spring forward DST (#15849) @flaviendelangle
1510
+ - [pickers] Remove `PickersMonth` and `PickersYear` from the theme and remove the `div` wrapping each button (#15806) @flaviendelangle
1511
+ - [pickers] Use the new `ownerState` object on the `<PickersTextField />` component (#15863) @flaviendelangle
1512
+
1513
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.5` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1514
+
1515
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.5`.
1516
+
1517
+ ### Charts
1518
+
1519
+ #### `@mui/x-charts@8.0.0-alpha.5`
1520
+
1521
+ - [charts] Fix `<ScatterChart />` value type if `null` (#15917) @alexfauquette
1522
+
1523
+ #### `@mui/x-charts-pro@8.0.0-alpha.5` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1524
+
1525
+ Same changes as in `@mui/x-charts@8.0.0-alpha.5`.
1526
+
1527
+ ### Tree View
1528
+
1529
+ #### `@mui/x-tree-view@8.0.0-alpha.5`
1530
+
1531
+ No changes since `@mui/x-tree-view-pro@v8.0.0-alpha.4`.
1532
+
1533
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.5` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1534
+
1535
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.5`.
1536
+
1537
+ ### Core
1538
+
1539
+ - [code-infra] Remove `@mui/material-nextjs` dependency (#15925) @LukasTy
1540
+
1541
+ ## 8.0.0-alpha.4
1542
+
1543
+ _Dec 13, 2024_
1544
+
1545
+ We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
1546
+
1547
+ - 🌍 Improve Romanian locale on the Data Grid and Pickers
1548
+ - 📚 Documentation improvements
1549
+ - 🐞 Bugfixes
1550
+
1551
+ Special thanks go out to the community contributors who have helped make this release possible:
1552
+ @k-rajat19, @nusr, @rares985, @zivl.
1553
+ Following are all team members who have contributed to this release:
1554
+ @alexfauquette, @arminmeh, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi.
1555
+
1556
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1557
+
1558
+ ### Data Grid
1559
+
1560
+ #### Breaking changes
1561
+
1562
+ - The selectors signature has been updated due to the support of arguments in the selectors. Pass `undefined` as `arguments` if the selector doesn't use any arguments.
1563
+
1564
+ ```diff
1565
+ -mySelector(state, instanceId)
1566
+ +mySelector(state, arguments, instanceId)
1567
+ ```
1568
+
1569
+ - The `useGridSelector` signature has been updated due to the introduction of arguments parameter in the selectors. Pass `undefined` as `arguments` if the selector doesn't use any arguments.
1570
+
1571
+ ```diff
1572
+ -const output = useGridSelector(apiRef, selector, equals)
1573
+ +const output = useGridSelector(apiRef, selector, arguments, equals)
1574
+ ```
1575
+
1576
+ - The default variant for text fields and selects in the filter panel has been changed to `outlined`.
1577
+ - The "row spanning" feature is now stable.
1578
+ ```diff
1579
+ <DataGrid
1580
+ - unstable_rowSpanning
1581
+ + rowSpanning
1582
+ />
1583
+ ```
1584
+ - Selected row is now deselected when clicked again.
1585
+
1586
+ #### `@mui/x-data-grid@8.0.0-alpha.4`
1587
+
1588
+ - [DataGrid] Deselect selected row on click (#15509) @k-rajat19
1589
+ - [DataGrid] Fix "No rows" displaying when all rows are pinned (#15335) @nusr
1590
+ - [DataGrid] Make row spanning feature stable (#15742) @MBilalShafi
1591
+ - [DataGrid] Round dimensions to avoid subpixel rendering error (#15850) @KenanYusuf
1592
+ - [DataGrid] Toggle menu on click in `<GridActionsCell />` (#15867) @k-rajat19
1593
+ - [DataGrid] Trigger row spanning computation on rows update (#15858) @MBilalShafi
1594
+ - [DataGrid] Update filter panel input variant (#15807) @KenanYusuf
1595
+ - [DataGrid] Use `columnsManagement` slot (#15817) @k-rajat19
1596
+ - [DataGrid] Use new selector signature (#15200) @MBilalShafi
1597
+ - [l10n] Improve Romanian (ro-RO) locale (#15745) @rares985
1598
+
1599
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1600
+
1601
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.4`, plus:
1602
+
1603
+ - [DataGridPro] Make row reordering work with pagination (#15355) @k-rajat19
1604
+
1605
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.4` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1606
+
1607
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.4`, plus:
1608
+
1609
+ - [DataGridPremium] Fix group column ignoring `valueOptions` for `singleSelect` column type (#15739) @arminmeh
1610
+
1611
+ ### Date and Time Pickers
1612
+
1613
+ #### `@mui/x-date-pickers@8.0.0-alpha.4`
1614
+
1615
+ - [l10n] Improve Romanian (ro-RO) locale (#15745) @rares985
1616
+ - [pickers] Clean `usePicker` logic (#15763) @flaviendelangle
1617
+ - [pickers] Rename layout `ownerState` property from `isRtl` to `layoutDirection` (#15803) @flaviendelangle
1618
+ - [pickers] Use the new `ownerState` in `useClearableField` (#15776) @flaviendelangle
1619
+ - [pickers] Use the new `ownerState` in the toolbar components (#15777) @flaviendelangle
1620
+ - [pickers] Use the new `ownerState` object for the clock components and the desktop / mobile wrappers (#15669) @flaviendelangle
1621
+
1622
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1623
+
1624
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.4`.
1625
+
1626
+ ### Charts
1627
+
1628
+ #### Breaking changes
1629
+
1630
+ - The default styling of the charts tooltip has been updated.
1631
+
1632
+ #### `@mui/x-charts@8.0.0-alpha.4`
1633
+
1634
+ - [charts] Fix hydration missmatch (#15647) @alexfauquette
1635
+ - [charts] Fix internal spelling typo (#15805) @zivl
1636
+ - [charts] Fix scatter dataset with missing data (#15802) @alexfauquette
1637
+ - [charts] HTML Labels (#15813) @JCQuintas
1638
+ - [charts] Only access store values by using hooks (#15764) @alexfauquette
1639
+ - [charts] Update Tooltip style (#15630) @alexfauquette
1640
+
1641
+ #### `@mui/x-charts-pro@8.0.0-alpha.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1642
+
1643
+ Same changes as in `@mui/x-charts@8.0.0-alpha.4`.
1644
+
1645
+ ### Tree View
1646
+
1647
+ #### `@mui/x-tree-view@8.0.0-alpha.4`
1648
+
1649
+ No changes, releasing to keep the versions in sync.
1650
+
1651
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1652
+
1653
+ Releasing to benefit from license package fix (#15814).
1654
+
1655
+ ### Docs
1656
+
1657
+ - [docs] Clean Joy and Browser custom field demos (#15707) @flaviendelangle
1658
+ - [docs] Fix outdated link to handbook (#15855) @oliviertassinari
1659
+ - [docs] Improve Pickers accessible DOM migration section description (#15596) @LukasTy
1660
+ - [docs] Use `updateRows` method for list view demos (#15732) @KenanYusuf
1661
+ - [docs] Use date library version from package dev dependencies for sandboxes (#15762) @LukasTy
1662
+
1663
+ ### Core
1664
+
1665
+ - [code-infra] Add Charts sandbox generation (#15830) @JCQuintas
1666
+ - [code-infra] Remove redundant `@type/react-test-renderer` dep (#15766) @LukasTy
1667
+ - [license] Use `console.log` for the error message on Codesandbox to avoid rendering error (#15814) @arminmeh
1668
+
1669
+ ## 8.0.0-alpha.3
1670
+
1671
+ _Dec 5, 2024_
1672
+
1673
+ We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
1674
+
1675
+ - 💫 Support [Server-side lazy loading](https://mui.com/x/react-data-grid/server-side-data/lazy-loading/) on the Data Grid. Use [data source](https://mui.com/x/react-data-grid/server-side-data/#data-source) to fetch a range of rows on demand and update the rows in the same way as described in [Infinite loading](https://mui.com/x/react-data-grid/row-updates/#infinite-loading) and [Lazy loading](https://mui.com/x/react-data-grid/row-updates/#lazy-loading) without the need to use any additional event listeners and callbacks.
1676
+ - 🎯 Improved [data caching](https://mui.com/x/react-data-grid/server-side-data/#data-caching). Check out our [recommendations](https://mui.com/x/react-data-grid/server-side-data/#improving-the-cache-hit-rate) for improving the cache hit rate.
1677
+
1678
+ Special thanks go out to the community contributors who have helped make this release possible:
1679
+ @ihsanberkozcan, @k-rajat19, @perezShaked.
1680
+ Following are all team members who have contributed to this release:
1681
+ @arminmeh, @cherniavskii, @flaviendelangle, @JCQuintas, @MBilalShafi, @noraleonte.
1682
+
1683
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1684
+
1685
+ ### Data Grid
1686
+
1687
+ #### Breaking changes
1688
+
1689
+ - The "Select all" checkbox is now checked when all the selectable rows are selected, ignoring rows that are not selectable because of the `isRowSelectable` prop.
1690
+ - The `rowPositionsDebounceMs` prop was removed.
1691
+ - The `gridRowsDataRowIdToIdLookupSelector` selector was removed. Use the `gridRowsLookupSelector` selector in combination with the `getRowId()` API method instead.
1692
+ ```diff
1693
+ -const idToIdLookup = gridRowsDataRowIdToIdLookupSelector(apiRef);
1694
+ -const rowId = idToIdLookup[id]
1695
+ +const rowsLookup = gridRowsLookupSelector(apiRef);
1696
+ +const rowId = apiRef.current.getRowId(rowsLookup[id])
1697
+ ```
1698
+ - The Grid is now more aligned with the WAI-ARIA authoring practices and sets the `role` attribute to `treegrid` if the Data Grid is used with row grouping feature.
1699
+
1700
+ #### `@mui/x-data-grid@8.0.0-alpha.3`
1701
+
1702
+ - [DataGrid] Fix deselection not working with `isRowSelectable` (#15692) @MBilalShafi
1703
+ - [DataGrid] Make column autosizing work with flex columns (#15465) @cherniavskii
1704
+ - [DataGrid] Remove `gridRowsDataRowIdToIdLookupSelector` selector (#15698) @arminmeh
1705
+ - [DataGrid] Remove `rowPositionsDebounceMs` prop (#15482) @k-rajat19
1706
+ - [l10n] Improve Hebrew (he-IL) locale (#15699) @perezShaked
1707
+ - [l10n] Improve Turkish (tr-TR) locale (#15734) @ihsanberkozcan
1708
+
1709
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1710
+
1711
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.3`, plus:
1712
+
1713
+ - [DataGridPro] Cleanup pinned rows on removal (#15697) @cherniavskii
1714
+ - [DataGridPro] Server-side lazy loading (#13878) @arminmeh
1715
+
1716
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.3` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1717
+
1718
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.3`, plus:
1719
+
1720
+ - [DataGridPremium] Remove the `ariaV8` experimental flag (#15694) @arminmeh
1721
+
1722
+ ### Date and Time Pickers
1723
+
1724
+ #### Breaking changes
1725
+
1726
+ - The `onOpen()` and `onClose()` methods of the `usePickerContext()` hook have been replaced with a single `setOpen` method — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#usepickercontext).
1727
+
1728
+ #### `@mui/x-date-pickers@8.0.0-alpha.3`
1729
+
1730
+ - [pickers] Replace the `onOpen()` and `onClose()` methods of `usePickerContext()` with a single `setOpen()` method. (#15701) @flaviendelangle
1731
+
1732
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1733
+
1734
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.3`.
1735
+
1736
+ ### Charts
1737
+
1738
+ #### `@mui/x-charts@8.0.0-alpha.3`
1739
+
1740
+ - [charts] Improve SVG `pattern` and `gradient` support (#15720) @JCQuintas
1741
+
1742
+ #### `@mui/x-charts-pro@8.0.0-alpha.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1743
+
1744
+ Same changes as in `@mui/x-charts@8.0.0-alpha.3`.
1745
+
1746
+ ### Tree View
1747
+
1748
+ #### `@mui/x-tree-view@8.0.0-alpha.3`
1749
+
1750
+ No changes since `@mui/x-tree-view-pro@v8.0.0-alpha.2`.
1751
+
1752
+ #### `@mui/x-tree-view-pro@8.0.0-alpha.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1753
+
1754
+ Same changes as in `@mui/x-tree-view@8.0.0-alpha.3`.
1755
+
1756
+ ### Docs
1757
+
1758
+ - [docs] Add a customization demo for the Date and Time Pickers overview page (#15118) @noraleonte
1759
+ - [docs] Fix typo in charts axis documentation (#15743) @JCQuintas
1760
+ - [docs] Improve SEO titles for the Data Grid (#15695) @MBilalShafi
1761
+
1762
+ ### Core
1763
+
1764
+ - [core] Add `@mui/x-tree-view-pro` to `releaseChangelog` (#15316) @flaviendelangle
1765
+ - [code-infra] Lock file maintenance (#11894)
1766
+ - [code-infra] Check if `preset-safe` folder exists in codemod test (#15703) @JCQuintas
1767
+ - [code-infra] Import Pickers `preset-safe` into global codemod config (#15659) @JCQuintas
1768
+ - [code-infra] Playwright 1.49 (#15493) @JCQuintas
1769
+ - [test] Force hover in headless Chrome (#15710) @cherniavskii
1770
+
1771
+ ## 8.0.0-alpha.2
1772
+
1773
+ _Nov 29, 2024_
1774
+
1775
+ We'd like to offer a big thanks to the 17 contributors who made this release possible. Here are some highlights ✨:
1776
+
1777
+ - 👨🏽‍💻 Improve resize performance on the Data Gird.
1778
+ - `<ChartDataProvider />` and `<ChartsSurface />` components are now fully divided — [Learn more](https://next.mui.com/x/react-charts/composition/#overview).
1779
+ - Users can create their own HTML components using chart data — [Learn more](https://next.mui.com/x/react-charts/components/#html-components).
1780
+ - 🌍 Improve Spanish, Portuguese, Chinese locales on the Data Grid component.
1781
+ - 🌍 Improve Dutch locale on the Date and Time Pickers components.
1782
+ - 🐞 Bugfixes
1783
+ - 📚 Documentation improvements
1784
+
1785
+ Special thanks go out to the community contributors who have helped make this release possible:
1786
+ @dloeda, @headironc, @jedesroches, @k-rajat19, @lauri865, @mathzdev, @nphmuller, @zinoroman.
1787
+ Following are all team members who have contributed to this release:
1788
+ @arminmeh, @alexfauquette, @cherniavskii, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @oliviertassinari.
1789
+
1790
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1791
+
1792
+ ### Data Grid
1793
+
1794
+ #### Breaking changes
1795
+
1796
+ - The `<GridOverlays />` component is not exported anymore.
1797
+ - The `indeterminateCheckboxAction` prop has been removed. Clicking on an indeterminate checkbox "selects" the unselected descendants.
1798
+ - The `apiRef.current.resize()` method was removed.
1799
+ - The default value of the `rowSelectionPropagation` prop has been changed to `{ parents: true, descendants: true }` which means that the selection will be propagated to the parents and descendants by default.
1800
+ To revert to the previous behavior, pass `rowSelectionPropagation` as `{ parents: false, descendants: false }`.
1801
+ - If `estimatedRowCount` is used, the text provided to the [Table Pagination](/material-ui/api/table-pagination/) component from the Material UI library is updated and requires additional translations. Check the example at the end of [Index-based pagination section](/x/react-data-grid/pagination/#index-based-pagination).
1802
+
1803
+ #### `@mui/x-data-grid@v8.0.0-alpha.2`
1804
+
1805
+ - [DataGrid] Change test dom check from `/jsdom/` to `/jsdom|HappyDOM/`. (#15634) @jedesroches
1806
+ - [DataGrid] Clear timers on unmount (#15620) @cherniavskii
1807
+ - [DataGrid] Fix order of spread props on toolbar items (#15556) @KenanYusuf
1808
+ - [DataGrid] Improve resize performance (#15549) @lauri865
1809
+ - [DataGrid] Make estimation label more accurate (#15632) @arminmeh
1810
+ - [DataGrid] Remove `<GridOverlays />` export (#15573) @k-rajat19
1811
+ - [DataGrid] Remove `indeterminateCheckboxAction` prop (#15522) @MBilalShafi
1812
+ - [DataGrid] Remove try/catch from `<GridCell />` due to performance issues (#15616) @lauri865
1813
+ - [DataGrid] Remove unused `resize` method (#15599) @cherniavskii
1814
+ - [DataGrid] Support column virtualization with dynamic row height (#15541) @cherniavskii
1815
+ - [DataGrid] Update the default value for `rowSelectionPropagation` (#15523) @MBilalShafi
1816
+ - [l10n] Improve Chinese (zh-CN) locale (#15570) @headironc
1817
+ - [l10n] Improve Portuguese (pt-PT) locale (#15561) @mathzdev
1818
+
1819
+ #### `@mui/x-data-grid-pro@v8.0.0-alpha.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1820
+
1821
+ Same changes as in `@mui/x-data-grid@v8.0.0-alpha.2`, plus:
1822
+
1823
+ - [DataGridPro] Fix header filtering with `boolean` column type (#15528) @k-rajat19
1824
+ - [DataGridPro] Fix pagination state not updating if the data source response has no rows (#15622) @zinoroman
1825
+ - [DataGridPro] Fix selection propagation issue on initialization (#15461) @MBilalShafi
1826
+
1827
+ #### `@mui/x-data-grid-premium@v8.0.0-alpha.2` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1828
+
1829
+ Same changes as in `@mui/x-data-grid-pro@v8.0.0-alpha.2`.
1830
+
1831
+ ### Date and Time Pickers
1832
+
1833
+ #### Breaking changes
1834
+
1835
+ - The props received by the `layout` and the `toolbar` slots have been reworked — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#do-not-pass-the-section-type-as-a-generic).
1836
+
1837
+ - The `TSection` generic of the `FieldRef` type has been replaced with the `TValue` generic — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slots-breaking-changes).
1838
+
1839
+ #### `@mui/x-date-pickers@v8.0.0-alpha.2`
1840
+
1841
+ - [l10n] Improve Dutch (nl-NL) locale (#15564) @nphmuller
1842
+ - [pickers] Fix DST issue with `America/Asuncion` timezone and `AdapterMoment` (#15552) @flaviendelangle
1843
+ - [pickers] Improve validation internals (#15419) @flaviendelangle
1844
+ - [pickers] Remove `TSection` and strictly type `TValue` (#15434) @flaviendelangle
1845
+ - [pickers] Remove `orientation`, `isLandscape`, `isRtl`, `wrapperVariant` and `disabled` props from `PickersLayout` (#15494) @flaviendelangle
1846
+ - [pickers] Use the new `ownerState` in `<PickersCalendarHeader />`, `<PickersArrowSwitcher />` and `<DayCalendarSkeleton />` (#15499) @flaviendelangle
1847
+ - [pickers] Use the new `ownerState` object in all the field components (#15510) @flaviendelangle
1848
+
1849
+ #### `@mui/x-date-pickers-pro@v8.0.0-alpha.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1850
+
1851
+ Same changes as in `@mui/x-date-pickers@v8.0.0-alpha.2`.
1852
+
1853
+ ### Charts
1854
+
1855
+ #### Breaking changes
1856
+
1857
+ - Charts Container don't have a `<div />` wrapping them anymore. All props are now passed to the root `<svg />` instead of the `<div />`.
1858
+
1859
+ #### `@mui/x-charts@v8.0.0-alpha.2`
1860
+
1861
+ - [charts] Allow the creation of custom HTML components using charts data (#15511) @JCQuintas
1862
+ - [charts] Flatten imports from `@mui/utils` and `@mui/system` (#15603) @alexfauquette
1863
+ - [charts] Introduce the plugin system (#15513) @alexfauquette
1864
+ - [charts] Prevent invalid `releasePointerCapture` (#15602) @alexfauquette
1865
+ - [charts] Fix custom Tooltip demos (#15631) @alexfauquette
1866
+
1867
+ #### `@mui/x-charts-pro@v8.0.0-alpha.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1868
+
1869
+ Same changes as in `@mui/x-charts@v8.0.0-alpha.2`.
1870
+
1871
+ ### Tree View
1872
+
1873
+ #### `@mui/x-tree-view@v8.0.0-alpha.2`
1874
+
1875
+ - [TreeView] Flatten import from `@mui/utils` and `@mui/system` (#15604) @alexfauquette
1876
+
1877
+ #### `@mui/x-tree-view-pro@v8.0.0-alpha.2`
1878
+
1879
+ Same changes as in `@mui/x-tree-view@v8.0.0-alpha.2`.
1880
+
1881
+ ### Docs
1882
+
1883
+ - [docs] Fix 404 links (#15575) @oliviertassinari
1884
+ - [docs] Fix bash comments (#15571) @oliviertassinari
1885
+ - [docs] Fix Pickers theme augmentation example (#15672) @LukasTy
1886
+ - [docs] Replace use of "e.g." with "for example" (#15572) @oliviertassinari
1887
+ - [docs] Update stale `new` and `preview` tags in v8 docs (#15547) @JCQuintas
1888
+ - [docs] Fix layout shift image on Tree View docs (#15626) @oliviertassinari
1889
+ - [docs] Fix `anchorEl` API page for charts (#15625) @oliviertassinari
1890
+ - [docs] Add documentation for the list view feature (#15344) @KenanYusuf
1891
+
1892
+ ### Core
1893
+
1894
+ - [core] Follow `()` function convention for docs @oliviertassinari
1895
+ - [core] Remove dead translation key (#15566) @oliviertassinari
1896
+ - [code-infra] Auto-merge `@types/node` bumps (#15591) @LukasTy
1897
+
1898
+ ## 8.0.0-alpha.1
1899
+
1900
+ _Nov 22, 2024_
1901
+
1902
+ We'd like to offer a big thanks to the 16 contributors who made this release possible. Here are some highlights ✨:
1903
+
1904
+ - 🔧 Refactor Tooltip customisation for charts — [Learn more](https://next.mui.com/x/react-charts/tooltip/#overriding-content).
1905
+ - ⚛️ React 19 support
1906
+ - 🌍 Improve Chinese, Spanish, and Swedish locale on the Data Grid component
1907
+ - 🐞 Bugfixes
1908
+ - 📚 Documentation improvements
1909
+
1910
+ Special thanks go out to the community contributors who have helped make this release possible:
1911
+ @CarlosLopezLg, @headironc, @hendrikpeilke, @k-rajat19, @lhilgert9, @viktormelin.
1912
+ Following are all team members who have contributed to this release:
1913
+ @alexfauquette, @arthurbalduini, @cherniavskii, @flaviendelangle, @JCQuintas, @LukasTy, @MBilalShafi, @oliviertassinari, @KenanYusuf, @arminmeh.
1914
+
1915
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
1916
+
1917
+ ### Data Grid
1918
+
1919
+ #### `@mui/x-data-grid@v8.0.0-alpha.1`
1920
+
1921
+ - [DataGrid] React 19 support (#15342) @arminmeh
1922
+ - [DataGrid] Add prop to override search input props in `GridColumnsManagement` (#15347) @k-rajat19
1923
+ - [DataGrid] Add test coverage for issues fixed in #15184 (#15282) @MBilalShafi
1924
+ - [DataGrid] Change default loading overlay variants (#15504) @KenanYusuf
1925
+ - [DataGrid] Fix last separator not being hidden when grid is scrollable (#15543) @KenanYusuf
1926
+ - [DataGrid] Fix right column group header border with virtualization (#15470) @hendrikpeilke
1927
+ - [DataGrid] Fix row-spanning in combination with column-pinning (#15368) @lhilgert9
1928
+ - [l10n] Improve Chinese (zh-CN) locale (#15365) @headironc
1929
+ - [l10n] Improve Spanish (es-ES) locale (#15369) @CarlosLopezLg
1930
+ - [l10n] Improve Swedish (sv-SE) locale (#15371) @viktormelin
1931
+
1932
+ #### `@mui/x-data-grid-pro@v8.0.0-alpha.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1933
+
1934
+ Same changes as in `@mui/x-data-grid@v8.0.0-alpha.1`.
1935
+
1936
+ #### `@mui/x-data-grid-premium@v8.0.0-alpha.1` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
1937
+
1938
+ Same changes as in `@mui/x-data-grid-pro@v8.0.0-alpha.1`, plus:
1939
+
1940
+ - [DataGridPremium] Prompt input control (#15401) @arminmeh
1941
+
1942
+ ### Date and Time Pickers
1943
+
1944
+ #### Breaking change
1945
+
1946
+ - The `FieldValueType` type has been renamed to `PickerValueType` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#renamed-variables).
1947
+ - The `toolbar` and `layout` slots no longer receive the `disabled` and `readOnly` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#slots-breaking-changes).
1948
+
1949
+ #### `@mui/x-date-pickers@v8.0.0-alpha.1`
1950
+
1951
+ - [fields] Fix focus management with new DOM structure (#15475) @flaviendelangle
1952
+ - [pickers] React 19 support (#15342) @arminmeh
1953
+ - [pickers] Add new properties to `PickerOwnerState` and `PickerContextValue` (#15415) @flaviendelangle
1954
+ - [pickers] Always use `props.value` when it changes (#15490) @flaviendelangle
1955
+ - [pickers] Ensure internal value timezone is updated (#15435) @LukasTy
1956
+ - [pickers] Fix unused code in `<PickersToolbar />` component (#15515) @LukasTy
1957
+ - [pickers] Remove `FieldValueType` in favor of `PickerValueType` (#15259) @arthurbalduini
1958
+ - [pickers] Remove the form props from the layout and the toolbar slots (#15492) @flaviendelangle
1959
+ - [pickers] Use `props.referenceDate` timezone when `props.value` and `props.defaultValue` are not defined (#15532) @flaviendelangle
1960
+ - [TimePicker] Prevent mouse events after `touchend` event (#15346) @arthurbalduini
1961
+
1962
+ #### `@mui/x-date-pickers-pro@v8.0.0-alpha.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1963
+
1964
+ Same changes as in `@mui/x-date-pickers@v8.0.0-alpha.1`, plus:
1965
+
1966
+ - [DateTimeRangePicker] Use time in `referenceDate` when selecting date (#15429) @LukasTy
1967
+
1968
+ ### Charts
1969
+
1970
+ #### Breaking change
1971
+
1972
+ - The DX of the Tooltip customization has been refactored
1973
+
1974
+ - The `tooltip` prop has been removed in favor of `slotProps.tooltip` for consistency.
1975
+ - The `popper`, `axisContent`, and `itemContent` slots have been removed in favor of the `tooltip` slot which overrides the entire tooltip.
1976
+ - To override the tooltip content, use the `useItemTooltip` or `useAxisTooltip` hook to get the data, and wrap your component in `ChartsTooltipContainer` to follow the pointer position.
1977
+ - To override the tooltip placement, use the `ChartsItemTooltipContent` or `ChartsItemTooltipContent` to get default data and place them in your custom tooltip.
1978
+
1979
+ - The library now uses the SVG `filter` attribute instead of `d3-color` for color manipulation.
1980
+
1981
+ - This modification impacts the `LinePlot`, `AreaPlot`, and `BarPlot` components.
1982
+ If you've customized the `fill` of those elements, you might need to override it by using the CSS `filter`.
1983
+ - The `theme.styleOverride` is removed for `MuiLineElement`, `MuiAreaElement`, and `MuiBarElement` to improve performance.
1984
+ You can still target those elements by using the `MuiLinePlot`, `MuiAreaPlot`, and `MuiBarPlot` and target the appropriate classes `lineElementClasses.root`, `areaElementClasses.root`, `barElementClasses.root`
1985
+
1986
+ - Removed the `resolveSizeBeforeRender` prop from all chart components — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#remove-resolvesizebeforerender-prop).
1987
+ - Removed `width` and `height` props from the `ChartsSurface` component.
1988
+ - Removed the `viewport` prop from all charts.
1989
+
1990
+ #### `@mui/x-charts@v8.0.0-alpha.1`
1991
+
1992
+ - [charts] React 19 support (#15342) @arminmeh
1993
+ - [charts] Decouple `<ChartDataProvider />` and `<ChartsSurface />` (#15375) @JCQuintas
1994
+ - [charts] Fix Scatter Chart tooltip wrong defaults (#15537) @JCQuintas
1995
+ - [charts] Fix key generation for the `<ChartsGrid />` component (#15463) @alexfauquette
1996
+ - [charts] Improve `<SvgRefProvider />` to split the received ref (#15424) @JCQuintas
1997
+ - [charts] Move interaction state in store (#15426) @alexfauquette
1998
+ - [charts] Refactor Tooltip customisation (#15154) @alexfauquette
1999
+ - [charts] Remove intrinsic size requirement (#15471) @JCQuintas
2000
+ - [charts] Replace `d3-color` with CSS filter for highlight (#15084) @alexfauquette
2001
+ - [charts] Split `<DrawingProvider />` into `<DrawingAreaProvider />` and `<SvgRefProvider />` (#15417) @JCQuintas
2002
+
2003
+ #### `@mui/x-charts-pro@v8.0.0-alpha.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2004
+
2005
+ Same changes as in `@mui/x-charts@v8.0.0-alpha.1`.
2006
+
2007
+ ### Tree View
2008
+
2009
+ #### Breaking changes
2010
+
2011
+ - The Tree Item component can no longer use `publicAPI` methods in the `render` because they are now memoized — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#stop-using-publicapi-methods-in-the-render).
2012
+
2013
+ #### `@mui/x-tree-view@v8.0.0-alpha.1`
2014
+
2015
+ - [TreeView] React 19 support (#15342) @arminmeh
2016
+ - [TreeView] Do not re-render every Tree Item when the Rich Tree View re-renders (introduce selectors) (#14210) @flaviendelangle
2017
+ - [TreeView] Remove `treeId` from the item context (#15542) @flaviendelangle
2018
+ - [TreeView] Remove state mutation in `moveItemInTree()` (#15539) @flaviendelangle
2019
+ - [TreeItem] Correct the typing of `slotProps.groupTransition` (#15534) @flaviendelangle
2020
+
2021
+ ### Docs
2022
+
2023
+ - [docs] Fix some migration typos (#15422) @LukasTy
2024
+ - [docs] Fix typo in migration guide (#15508) @flaviendelangle
2025
+ - [docs] Fix 301 redirection in docs @oliviertassinari
2026
+ - [docs] Polish Server-side data section (#15330) @oliviertassinari
2027
+ - [docs] Use loading state in the demos (#15512) @cherniavskii
2028
+
2029
+ ### Core
2030
+
2031
+ - [core] Keep OpenSSF badge up-to-date @oliviertassinari
2032
+ - [code-infra] Add `'DensitySelectorGrid'` to time-sensitive argos tests (#15425) @JCQuintas
2033
+ - [code-infra] Add documentation to internal types (#15540) @JCQuintas
2034
+ - [code-infra] Prevent relative imports across packages (#15437) @JCQuintas
2035
+ - [code-infra] Update renovate config to merge `action` pins (#15462) @LukasTy
2036
+ - [docs-infra] Fix version tooltip (#15468) @alexfauquette
2037
+ - [docs-infra] Transpile `.ts` demo files (#15345) @KenanYusuf
2038
+ - [infra] Remove cherry-pick issue write permission (#15456) @oliviertassinari
2039
+
2040
+ ## 8.0.0-alpha.0
2041
+
2042
+ <img width="100%" alt="MUI X v8 Alpha is live" src="https://github.com/user-attachments/assets/114cf615-b617-435f-8499-76ac3c26c57b">
2043
+
2044
+ _Nov 14, 2024_
2045
+
2046
+ We'd like to offer a big thanks to the 22 contributors who made this release possible. Here are some highlights ✨:
2047
+
2048
+ - 🔁 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.
2049
+ - 🌍 Improve Greek (el-GR) locale on the Date and Time Pickers components
2050
+ - 🌍 Improve Polish (pl-PL) locale on the Data Grid component
2051
+ - 🐞 Bugfixes
2052
+ - 📚 Documentation improvements
2053
+
2054
+ Special thanks go out to the community contributors who have helped make this release possible:
2055
+ @belkocik, @GeorgiosDrivas, @k-rajat19, @kalyan90, @DungTiger, @fxnoob, @GuillaumeMeheut
2056
+ Following are all team members who have contributed to this release:
2057
+ @alexfauquette, @arminmeh, @arthurbalduini, @cherniavskii, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @michelengelen, @noraleonte, @oliviertassinari, @romgrk, @samuelsycamore, @joserodolfofreitas.
2058
+
2059
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
2060
+
2061
+ ### Data Grid
2062
+
2063
+ #### `@mui/x-data-grid@8.0.0-alpha.0`
2064
+
2065
+ - [DataGrid] Fix grid overlay aligment with scroll for rtl (#15072) @kalyan90
2066
+ - [DataGrid] Fix resizing right pinned column (#15107) @KenanYusuf
2067
+ - [DataGrid] Pass the reason to the `onPaginationModelChange` callback (#13959) @DungTiger
2068
+ - [DataGrid] Set default overlay height in flex parent layout (#15202) @cherniavskii
2069
+ - [DataGrid] Refactor `baseMenuList` and `baseMenuItem` (#15049) @romgrk
2070
+ - [DataGrid] Remove more material imports (#15063) @romgrk
2071
+ - [l10n] Improve Polish (pl-PL) locale (#15227) @belkocik
2072
+
2073
+ #### `@mui/x-data-grid-pro@8.0.0-alpha.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2074
+
2075
+ Same changes as in `@mui/x-data-grid@8.0.0-alpha.0`, plus:
2076
+
2077
+ - [DataGridPro] Fix column pinning layout (#14966) @cherniavskii
2078
+
2079
+ #### `@mui/x-data-grid-premium@8.0.0-alpha.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
2080
+
2081
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.0`, plus:
2082
+
2083
+ - [DataGridPremium] Server-side data source with row grouping (#13826) @MBilalShafi
2084
+
2085
+ ### Date and Time Pickers
2086
+
2087
+ #### Breaking changes
2088
+
2089
+ - The default DOM structure of the field has changed [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#new-dom-structure-for-the-field).
2090
+
2091
+ - Before version `v8.x`, the fields' DOM structure consisted of an `<input />`, which held the whole value for the component, but unfortunately presents a few limitations in terms of accessibility when managing multiple section values.
2092
+ - Starting with version `v8.x`, all the field and picker components come with a new DOM structure that allows the field component to set aria attributes on individual sections, providing a far better experience with screen readers.
2093
+
2094
+ - Some translation keys no longer require `utils` and the date object as parameters, but only the formatted value as a string. The keys affected by this changes are: `clockLabelText`, `openDatePickerDialogue` and `openTimePickerDialogue` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#stop-passing-utils-and-the-date-object-to-some-translation-keys).
2095
+
2096
+ - The following types are no longer exported by `@mui/x-date-pickers` and `@mui/x-date-pickers-pro` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#removed-types).
2097
+
2098
+ - `UseDateFieldComponentProps`
2099
+ - `UseTimeFieldComponentProps`
2100
+ - `UseDateTimeFieldComponentProps`
2101
+ - `BaseSingleInputFieldProps`
2102
+ - `BaseMultiInputFieldProps`
2103
+ - `BasePickersTextFieldProps`
2104
+
2105
+ - The `TDate` generic has been removed from all the types, interfaces, and variables of the `@mui/x-date-pickers` and `@mui/x-date-pickers-pro` packages — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#remove-tdate-generic).
2106
+
2107
+ - Renamed `usePickersTranslations` and `usePickersContext` hooks to have a coherent `Picker` prefix instead of `Pickers` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#renamed-variables).
2108
+
2109
+ - The `LicenseInfo` object is no longer exported from the `@mui/x-date-pickers-pro` package — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#stop-using-licenseinfo-from-mui-x-date-pickers-pro).
2110
+
2111
+ #### `@mui/x-date-pickers@8.0.0-alpha.0`
2112
+
2113
+ - [fields] Enable the new field DOM structure by default (#14651) @flaviendelangle
2114
+ - [fields] Remove `UseDateFieldComponentProps` and equivalent interfaces (#15053) @flaviendelangle
2115
+ - [fields] Remove clear button from the tab sequence (#14616) @k-rajat19
2116
+ - [l10n] Improve Greek (el-GR) locale (#15250) @GeorgiosDrivas
2117
+ - [pickers] Clean definition of validation props (#15198) @flaviendelangle
2118
+ - [pickers] Clean the new `ownerState` object (#15056) @flaviendelangle
2119
+ - [pickers] Correctly type the `ownerState` of the `field` and `actionBar` slots when resolved in a picker component (#15162) @flaviendelangle
2120
+ - [pickers] Fix `DateCalendar` timezone management (#12321) @LukasTy
2121
+ - [pickers] Fix `DateTimeRangePicker` error when using format without time (#14917) @fxnoob
2122
+ - [pickers] Fix `DigitalClock` time options on a `DST` switch day (#10793) @LukasTy
2123
+ - [pickers] Remove `TDate` generics in favor of `PickerValidDate` direct usage (#15001) @flaviendelangle
2124
+ - [pickers] Remove `utils` and `value` params from translations (#14986) @arthurbalduini
2125
+ - [pickers] Remove plural in "Pickers" on recently introduced APIs (#15297) @flaviendelangle
2126
+ - [pickers] Remove the re-export from `@mui/x-license` (#14487) @k-rajat19
2127
+ - [pickers] Strictly type the props a picker passes to its field, and migrate all the custom field demos accordingly (#15197) @flaviendelangle
2128
+ - [pickers] Unify JSDoc for all the `disabled` and `readOnly` props (#15304) @flaviendelangle
2129
+ - [pickers] Use the new `ownerState` in `DateCalendar`, `DateRangeCalendar`, `MonthCalendar` and `YearCalendar` (#15171) @flaviendelangle
2130
+ - [pickers] Use the new `ownerState` in `usePickersLayout` and `useXXXPicker` (#14994) @flaviendelangle
2131
+
2132
+ #### `@mui/x-date-pickers-pro@8.0.0-alpha.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2133
+
2134
+ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.0`.
2135
+
2136
+ ### Charts
2137
+
2138
+ #### Breaking changes
2139
+
2140
+ - The `legend` prop has been removed. To pass props to the legend, use `slotProps={{ legend: { ... } }}` instead. This can be automatically done with the codemod as long as the `legend` prop does not come from a destructured object — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#legend-props-propagation-✅).
2141
+
2142
+ - The `slots.legend` does not receive the `drawingArea` prop. You can still access your custom legend with the `useDrawingArea()` hook if your custom legend needs it.
2143
+
2144
+ - Removed or renamed multiple props from Series — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#series-properties-renaming).
2145
+
2146
+ - The `highlighted` and `faded` properties of highlightScope have been deprecated in favor of `highlight` and `fade`.
2147
+ The deprecated ones are now removed.
2148
+ - The `xAxisKey`, `yAxisKey`, and `zAxisKey` properties have been deprecated in favor of `xAxisId`, `yAxisId`, and `zAxisId`.
2149
+
2150
+ - The Pie Chart lost all props and renderer linked to axes because pie chart does not need cartesian axes. If you used it, you can still add them back with composition. Please consider opening an issue to share your use case with us — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#remove-pie-chart-axes).
2151
+
2152
+ #### `@mui/x-charts@8.0.0-alpha.0`
2153
+
2154
+ - [charts] Introduce `hideLegend` prop (#15277) @alexfauquette
2155
+ - [charts] Filter items outside the drawing area for performance (#14281) @alexfauquette
2156
+ - [charts] Fix log scale with `null` data (#15337) @alexfauquette
2157
+ - [charts] Fix tooltip follow mouse (#15189) @alexfauquette
2158
+ - [charts] Remove `xAxisKey`, `yAxisKey`, and `zAxisKey` series keys (#15192) @alexfauquette
2159
+ - [charts] Remove axis from the pie chart (#15187) @alexfauquette
2160
+ - [charts] Remove deprecated `legend` props (#15081) @alexfauquette
2161
+ - [charts] Remove deprecated highlight properties (#15191) @alexfauquette
2162
+ - [charts] Update Popper position outside of React (#15003) @alexfauquette
2163
+ - [charts] Improve the performance of the `getSymbol` method (#15233) @romgrk
2164
+
2165
+ #### `@mui/x-charts-pro@8.0.0-alpha.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2166
+
2167
+ Same changes as in `@mui/x-charts@8.0.0-alpha.0`.
2168
+
2169
+ ### Tree View
2170
+
2171
+ #### Breaking changes
2172
+
2173
+ - The `ContentComponent` or `ContentProps` props of the `<TreeItem />` component have been removed in favor of the new `slots`, `slotProps` props and of the `useTreeItem` hook — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#new-api-to-customize-the-tree-item).
2174
+
2175
+ - The `onClick` and `onMouseDown` callbacks of the Tree Item component are now passed to the root element instead of the content — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#behavior-change-on-the-onclick-and-onmousedown-props-of-treeitem).
2176
+
2177
+ - Rename the `<TreeItem2 />` component (and related utils) — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#✅-rename-the-treeitem2-and-related-utils).
2178
+
2179
+ - The `<TreeView />` component has been renamed `<SimpleTreeView />` which has exactly the same API — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#✅-use-simple-tree-view-instead-of-tree-view).
2180
+
2181
+ - The indentation of nested Tree Items is now applied on the content of the element — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#apply-the-indentation-on-the-item-content-instead-of-its-parents-group).
2182
+
2183
+ #### `@mui/x-tree-view@8.0.0-alpha.0`
2184
+
2185
+ - [TreeView] Always apply the indentation on the item content instead of its parent's group (#15089) @flaviendelangle
2186
+ - [TreeView] Automatic parents and children selection (#14899) @flaviendelangle
2187
+ - [TreeView] Remove deprecated `TreeView` component (#15093) @flaviendelangle
2188
+ - [TreeView] Replace `<TreeItem />` with `<TreeItem2 />` and migrate all the components and utils (#14913) @flaviendelangle
2189
+
2190
+ ### Docs
2191
+
2192
+ - [docs] Add docs for rounded symbol (#15324) @GuillaumeMeheut
2193
+ - [docs] Add migration guide for the removal of `LicenseInfo` from `@mui/x-date-pickers-pro` (#15321) @flaviendelangle
2194
+ - [docs] Add migration guide for the first breaking changes of charts (#15276) @alexfauquette
2195
+ - [docs] Add `PickersPopper` component to the Date Picker customization playground (#15305) @LukasTy
2196
+ - [docs] Add v8 to supported releases table (#15384) @joserodolfofreitas
2197
+ - [docs] Apply the new DX to the Button Field demos (#14860) @flaviendelangle
2198
+ - [docs] Apply the new DX to the `Autocomplete` Field demo (#15165) @flaviendelangle
2199
+ - [docs] Cleanup the pickers migration guide (#15310) @flaviendelangle
2200
+ - [docs] Copyedit the Charts Getting Started sequence (#14962) @samuelsycamore
2201
+ - [docs] Create Pickers masked field recipe (#13515) @flaviendelangle
2202
+ - [docs] Fix `applyDomain` docs for the charts (#15332) @JCQuintas
2203
+ - [docs] Fix link to private notion page (#15396) @michelengelen
2204
+ - [docs] Fix missing punctuation on descriptions (#15229) @oliviertassinari
2205
+ - [docs] Fix peer dependency range (#15281) @oliviertassinari
2206
+ - [docs] Fix small Tree View typo (#15390) @oliviertassinari
2207
+ - [docs] Fix the `AdapterMomentHijri` doc section (#15312) @flaviendelangle
2208
+ - [docs] Replace the Tree Item anatomy images (#15066) @noraleonte
2209
+ - [docs] Start v8 migration guides (#15096) @MBilalShafi
2210
+ - [docs] Subdivide and reorganize navigation bar (#15014) @samuelsycamore
2211
+ - [docs] Use `PickersTextField` in the customization playground (#15288) @LukasTy
2212
+ - [docs] Use `next` instead of `^8.0.0` in the migration guides (#15091) @flaviendelangle
2213
+
2214
+ ### Core
2215
+
2216
+ - [core] Adjust the `cherry-pick` GitHub actions (#15099) @LukasTy
2217
+ - [core] Add `()` at the name of function name in the doc (#15075) @oliviertassinari
2218
+ - [core] Clarify release version bump strategy (#15219) @cherniavskii
2219
+ - [core] Fix CodeSandbox and StackBlitz for next doc-infra sync @oliviertassinari
2220
+ - [core] Fix Vale error on `master` @oliviertassinari
2221
+ - [core] Fix changelog reference to VoiceOver @oliviertassinari
2222
+ - [core] Fix `tools-public.mui.com` redirection @oliviertassinari
2223
+ - [core] Fix webpack capitalization (#15353) @oliviertassinari
2224
+ - [core] Move `helpers` to `@mui/x-internals` package (#15188) @LukasTy
2225
+ - [code-infra] Set renovate to automerge devDependencies (#13463) @JCQuintas
2226
+ - [infra] Reintroduce the cherry pick workflow (#15293) @michelengelen
2227
+ - [core] Remove duplicate title header (#15389) @oliviertassinari
2228
+ - [release] v8 preparation (#15054) @michelengelen
2229
+ - [test] Fix advanced list view regression test snapshot (#15260) @KenanYusuf
2230
+
2231
+ ## 7.28.0
2232
+
2233
+ _Mar 17, 2025_
2234
+
2235
+ We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
2236
+
2237
+ - 🎁 Add support for `@mui/material` version 7 in all X packages
2238
+ - 🐞 Bugfixes
2239
+ - 🌍 Improve Chinese (zh-CN), (zh-HK), (zh-TW), Czech (cs-CZ), Korean (ko-KR) and Slovak (sk-Sk) locales on the Data Grid
2240
+ - 🌍 Improve Chinese (zh-CN), (zh-HK) and (zh-TW) locales on the Pickers
2241
+
2242
+ Special thanks go out to the community contributors who have helped make this release possible:
2243
+ @Blake-McCullough, @hlavacz, @yelahj, @k-rajat19, @nusr.
2244
+ Following are all team members who have contributed to this release:
2245
+ @arminmeh, @flaviendelangle, @LukasTy, @michelengelen, @MBilalShafi.
2246
+
2247
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
2248
+
2249
+ ### Data Grid
2250
+
2251
+ #### `@mui/x-data-grid@7.28.0`
2252
+
2253
+ - [DataGrid] Add click propagation and prevents default on `toggleMenu` click (#16909) @michelengelen
2254
+ - [DataGrid] Fix `processRowUpdate()` error if the row is removed before it is executed (#16904) @arminmeh
2255
+ - [DataGrid] Fix bug with adding and removing columns in active edit state (#16916) @Blake-McCullough
2256
+ - [DataGrid] Fix visual issue with pinned columns and row spanning (#16942) @MBilalShafi
2257
+ - [DataGrid] Make column header menu button aria-labels unique (#16925) @owais635
2258
+ - [DataGrid] Fix `printOptions` not respecting `hideFooter` root prop (#16915) @k-rajat19
2259
+ - [l10n] Improve Chinese (zh-CN), (zh-HK) and (zh-TW) locales (#16917 and #16887) @nusr
2260
+ - [l10n] Improve Czech (cs-CZ) and Slovak (sk-Sk) locales (#16996) @hlavacz
2261
+ - [l10n] Improve Korean (ko-KR) locale (#16998) @yelahj
2262
+
2263
+ #### `@mui/x-data-grid-pro@7.28.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2264
+
2265
+ Same changes as in `@mui/x-data-grid@7.28.0`, plus:
2266
+
2267
+ - [DataGridPro] Fix header filters not displaying restored values (#16976) @MBilalShafi
2268
+ - [DataGridPro] Fix infinite loading not reacting when scrolling to the end (#16939) @arminmeh
2269
+
2270
+ #### `@mui/x-data-grid-premium@7.28.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
2271
+
2272
+ Same changes as in `@mui/x-data-grid-pro@7.28.0`, plus:
2273
+
2274
+ - [DataGridPremium] Fix selection propagation issues with controlled state (#16995) @MBilalShafi
2275
+
2276
+ ### Date and Time Pickers
2277
+
2278
+ #### `@mui/x-date-pickers@7.28.0`
2279
+
2280
+ - [l10n] Improve Chinese (zh-CN), (zh-HK) and (zh-TW) locales (#16997) @nusr
2281
+
2282
+ #### `@mui/x-date-pickers-pro@7.28.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2283
+
2284
+ Same changes as in `@mui/x-date-pickers@7.28.0`, plus:
2285
+
2286
+ - [DateRangeCalendar] Do not update the previewed day when hovering a day and the value is empty (#16892) @flaviendelangle
2287
+
2288
+ ### Charts
2289
+
2290
+ #### `@mui/x-charts@7.28.0`
2291
+
2292
+ Internal changes.
2293
+
2294
+ #### `@mui/x-charts-pro@7.28.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2295
+
2296
+ Same changes as in `@mui/x-charts@7.28.0`.
2297
+
2298
+ ### Tree View
2299
+
2300
+ #### `@mui/x-tree-view@7.28.0`
2301
+
2302
+ Internal changes.
2303
+
2304
+ #### `@mui/x-tree-view-pro@7.28.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2305
+
2306
+ Same changes as in `@mui/x-tree-view@7.28.0`.
2307
+
2308
+ ### Docs
2309
+
2310
+ - [docs] Fix link to the lazy loading demo for the DataGrid (#16912) @nusr
2311
+
2312
+ ### Core
2313
+
2314
+ - [core] Allow `@mui/material` v7 in dependencies (#16951) @LukasTy
2315
+ - [infra] Make tests on React 18 part of pipeline (#16958) @LukasTy
2316
+
2317
+ ## 7.27.3
2318
+
2319
+ _Mar 7, 2025_
2320
+
2321
+ We'd like to offer a big thanks to the 4 contributors who made this release possible. Here are some highlights ✨:
2322
+
2323
+ - 🐞 Bugfixes
2324
+
2325
+ Team members who have contributed to this release:
2326
+ @arminmeh, @cherniavskii, @LukasTy, @michelengelen.
2327
+
2328
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
2329
+
2330
+ ### Data Grid
2331
+
2332
+ #### `@mui/x-data-grid@7.27.3`
2333
+
2334
+ - [DataGrid] Fix `aria-hidden` console error when scrollbar is dragged (#16834) @arminmeh
2335
+ - [DataGrid] Fix scroll jump with dynamic row height (#16801) @cherniavskii
2336
+
2337
+ #### `@mui/x-data-grid-pro@7.27.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2338
+
2339
+ Same changes as in `@mui/x-data-grid@7.27.3`.
2340
+
2341
+ #### `@mui/x-data-grid-premium@7.27.3` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
2342
+
2343
+ Same changes as in `@mui/x-data-grid-pro@7.27.3`.
2344
+
2345
+ ### Date and Time Pickers
2346
+
2347
+ #### `@mui/x-date-pickers@7.27.3`
2348
+
2349
+ - [fields] Fix Fields aria relationship with `helperText` (#16828) @LukasTy
2350
+
2351
+ #### `@mui/x-date-pickers-pro@7.27.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2352
+
2353
+ Same changes as in `@mui/x-date-pickers@7.27.3`.
2354
+
2355
+ ### Core
2356
+
2357
+ - [infra] Update contributor acknowledgment wording (#16753) @michelengelen
2358
+
2359
+ ## 7.27.2
2360
+
2361
+ <!-- generated comparing v7.27.1..v7.x -->
2362
+
2363
+ _Feb 27, 2025_
2364
+
2365
+ We'd like to offer a big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
2366
+
2367
+ - 🐞 Bugfixes
2368
+ - 🌍 Improve Hungarian (hu-HU) and Russian (ru-RU) locales on the Data Grid
2369
+
2370
+ Special thanks go out to the community contributors who have helped make this release possible:
2371
+ @pcorpet, @noherczeg, @denpiligrim.
2372
+ Following are all team members who have contributed to this release:
2373
+ @MBilalShafi, @KenanYusuf.
2374
+
2375
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
2376
+
2377
+ ### Data Grid
2378
+
2379
+ #### `@mui/x-data-grid@v7.27.2`
2380
+
2381
+ - [DataGrid] Fix `showColumnVerticalBorder` prop (#16726) @KenanYusuf
2382
+ - [DataGrid] Make server-side data navigation consistent (#16735) @MBilalShafi
2383
+ - [DataGrid] Use readonly array for `GridSortModel` (#16731) @pcorpet
2384
+ - [l10n] Improve Hungarian (hu-HU) locale (#16746) @noherczeg
2385
+ - [l10n] Improve Russian (ru-RU) locale (#16725) @denpiligrim
2386
+
2387
+ #### `@mui/x-data-grid-pro@v7.27.2` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2388
+
2389
+ Same changes as in `@mui/x-data-grid@v7.27.2`.
2390
+
2391
+ #### `@mui/x-data-grid-premium@v7.27.2` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
2392
+
2393
+ Same changes as in `@mui/x-data-grid-pro@v7.27.2`.
2394
+
2395
+ ## 7.27.1
2396
+
2397
+ _Feb 25, 2025_
2398
+
2399
+ We'd like to offer a big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
2400
+
2401
+ - 🐞 Bugfixes
2402
+ - 🌍 Add Bangla (bn-BD) locale on the Data Grid and Date Pickers
2403
+
2404
+ Special thanks go out to the community contributors who have helped make this release possible:
2405
+ @nusr, @officialkidmax.
2406
+ Following are all team members who have contributed to this release:
2407
+ @bernardobelchior, @MBilalShafi, @KenanYusuf.
2408
+
2409
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
2410
+
2411
+ ### Data Grid
2412
+
2413
+ #### `@mui/x-data-grid@7.27.1`
2414
+
2415
+ - [DataGrid] Fix the pagination unexpected behavior when using -1 for "All" rows per page (#16485) @nusr
2416
+ - [DataGrid] Extract `getRowId()` API method as a selector (#16574) @MBilalShafi
2417
+ - [DataGrid] Fix scrollbars overlapping cells on mount (#16653) @KenanYusuf
2418
+ - [l10n] Add Bangla (bn-BD) locale (#16649) @officialkidmax
2419
+
2420
+ #### `@mui/x-data-grid-pro@7.27.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2421
+
2422
+ Same changes as in `@mui/x-data-grid@7.27.1`.
2423
+
2424
+ #### `@mui/x-data-grid-premium@7.27.1` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
2425
+
2426
+ Same changes as in `@mui/x-data-grid-pro@7.27.1`.
2427
+
2428
+ ### Date and Time Pickers
2429
+
2430
+ #### `@mui/x-date-pickers@7.27.1`
2431
+
2432
+ - [l10n] Add Bangla (bn-BD) locale (#16649) @officialkidmax
2433
+
2434
+ #### `@mui/x-date-pickers-pro@7.27.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2435
+
2436
+ Same changes as in `@mui/x-date-pickers@7.27.1`.
2437
+
2438
+ ### Charts
2439
+
2440
+ #### `@mui/x-charts@7.27.1`
2441
+
2442
+ - [charts] Fix empty series array in pie chart (#16657) @bernardobelchior
2443
+
2444
+ #### `@mui/x-charts-pro@7.27.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2445
+
2446
+ Same changes as in `@mui/x-charts@7.27.1`.
2447
+
2448
+ ## 7.27.0
2449
+
2450
+ _Feb 17, 2025_
2451
+
2452
+ We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
2453
+
2454
+ - ⚡ Improve Data Grid Excel export serialization performance
2455
+ - 🐞 Bugfixes
2456
+ - 🌍 Improve Polish (pl-PL) and Ukrainian (uk-UA) locale on the Data Grid
2457
+
2458
+ Special thanks go out to the community contributors who have helped make this release possible:
2459
+ @pawelkula, @Neonin.
2460
+ Following are all team members who have contributed to this release:
2461
+ @cherniavskii, @JCQuintas, @oliviertassinari, @arminmeh and @LukasTy
2462
+
2463
+ ### Data Grid
2464
+
2465
+ #### `@mui/x-data-grid@7.27.0`
2466
+
2467
+ - [DataGrid] Add `resetPageOnSortFilter` prop that resets the page after sorting and filtering (#16580) @arminmeh
2468
+ - [DataGrid] Avoid `undefined` value for pagination `rowCount` (#16558) @cherniavskii
2469
+ - [l10n] Improve Polish (pl-PL) locale (#16594) @pawelkula
2470
+ - [l10n] Improve Ukrainian (uk-UA) locale (#16593) @Neonin
2471
+
2472
+ #### `@mui/x-data-grid-pro@7.27.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2473
+
2474
+ Same changes as in `@mui/x-data-grid@7.27.0`.
2475
+
2476
+ #### `@mui/x-data-grid-premium@7.27.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
2477
+
2478
+ Same changes as in `@mui/x-data-grid-pro@7.27.0`, plus:
2479
+
2480
+ - [DataGridPremium] Fix Excel export Web Worker demo not working in dev mode (#16532) @cherniavskii
2481
+ - [DataGridPremium] Improve Excel export serialization performance (#16545) @cherniavskii
2482
+ - [DataGridPremium] Namespace Excel export worker (#16539) @oliviertassinari
2483
+
2484
+ ### Date and Time Pickers
2485
+
2486
+ #### `@mui/x-date-pickers@7.27.0`
2487
+
2488
+ Internal changes.
2489
+
2490
+ #### `@mui/x-date-pickers-pro@7.27.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2491
+
2492
+ Same changes as in `@mui/x-date-pickers@7.27.0`, plus:
2493
+
2494
+ - [DateRangePicker] Avoid unnecessary field section focusing (#16569) @LukasTy
2495
+
2496
+ ### Charts
2497
+
2498
+ #### `@mui/x-charts@7.27.0`
2499
+
2500
+ Internal changes.
2501
+
2502
+ #### `@mui/x-charts-pro@7.27.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2503
+
2504
+ - [charts-pro] Fix automatic type overloads (#16579) @JCQuintas
2505
+
2506
+ ### Core
2507
+
2508
+ - [test] Fix Data Grid data source error test on React 18 (#16565) @arminmeh
2509
+
2510
+ ## 7.26.0
2511
+
2512
+ _Feb 7, 2025_
2513
+
2514
+ We'd like to offer a big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:
2515
+
2516
+ - ⚡ Mount and resize performance improvements for the Data Grid
2517
+ - 🐞 Bugfixes
2518
+
2519
+ Special thanks go out to the community contributors who have helped make this release possible:
2520
+ @lauri865.
2521
+ Following are all team members who have contributed to this release:
2522
+ @arminmeh, @noraleonte, @LukasTy, @KenanYusuf, @flaviendelangle.
2523
+
2524
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
2525
+
2526
+ ### Data Grid
2527
+
2528
+ #### `@mui/x-data-grid@7.26.0`
2529
+
2530
+ - [DataGrid] Avoid `<GridRoot />` double-render pass on mount in SPA mode (#16480) @lauri865
2531
+
2532
+ #### `@mui/x-data-grid-pro@7.26.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2533
+
2534
+ Same changes as in `@mui/x-data-grid@7.26.0`, plus:
2535
+
2536
+ - [DataGridPro] Fix the return type of `useGridApiContext()` for Pro and Premium packages on React < 19 (#16446) @arminmeh
2537
+
2538
+ #### `@mui/x-data-grid-premium@7.26.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
2539
+
2540
+ Same changes as in `@mui/x-data-grid-pro@7.26.0`, plus:
2541
+
2542
+ - [DataGridPremium] Fix "no rows" overlay not showing with active aggregation (#16468) @KenanYusuf
2543
+
2544
+ ### Date and Time Pickers
2545
+
2546
+ #### `@mui/x-date-pickers@7.26.0`
2547
+
2548
+ Internal changes.
2549
+
2550
+ #### `@mui/x-date-pickers-pro@7.26.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2551
+
2552
+ Same changes as in `@mui/x-date-pickers@7.26.0`, plus:
2553
+
2554
+ - [DateRangePicker] Fix `currentMonthCalendarPosition` prop behavior on mobile (#16457) @LukasTy
2555
+ - [DateRangePicker] Fix vertical alignment for multi input fields (#16490) @noraleonte
2556
+
2557
+ ### Charts
2558
+
2559
+ #### `@mui/x-charts@7.26.0`
2560
+
2561
+ Internal changes.
2562
+
2563
+ #### `@mui/x-charts-pro@7.26.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2564
+
2565
+ Same changes as in `@mui/x-charts@7.26.0`.
2566
+
2567
+ ### Tree View
2568
+
2569
+ #### `@mui/x-tree-view@7.26.0`
2570
+
2571
+ Internal changes.
2572
+
2573
+ #### `@mui/x-tree-view-pro@7.26.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2574
+
2575
+ Same changes as in `@mui/x-tree-view@7.26.0`.
2576
+
2577
+ ### Core
2578
+
2579
+ - [core] Fix corepack and pnpm installation in CircleCI (#16452) @flaviendelangle
2580
+
2581
+ ## 7.25.0
2582
+
2583
+ _Jan 31, 2025_
2584
+
2585
+ We'd like to offer a big thanks to the 5 contributors who made this release possible. Here are some highlights ✨:
2586
+
2587
+ - 🐞 Bugfixes
2588
+
2589
+ Special thanks go out to the community contributors who have helped make this release possible:
2590
+ @k-rajat19, @lauri865.
2591
+ Following are all team members who have contributed to this release:
2592
+ @KenanYusuf, @MBilalShafi, @arminmeh.
2593
+
2594
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
2595
+
2596
+ ### Data Grid
2597
+
2598
+ #### `@mui/x-data-grid@7.25.0`
2599
+
2600
+ - [DataGrid] Fix `renderContext` calculation with scroll bounce / over-scroll (#16368) @lauri865
2601
+ - [DataGrid] Refactor row state propagation (#16351) @lauri865
2602
+ - [DataGrid] Add missing style overrides (#16272) (#16358) @KenanYusuf
2603
+ - [DataGrid] Fix header filters keyboard navigation when there are no rows (#16369) @k-rajat19
2604
+ - [DataGrid] Fix order of `onClick` prop on toolbar buttons (#16364) @KenanYusuf
2605
+ - [DataGrid] Improve test coverage of server side data source (#15988) @MBilalShafi
2606
+ - [DataGrid] Remove outdated warning (#16370) @MBilalShafi
2607
+ - [DataGrid] Respect width of `iconContainer` during autosizing (#16409) @michelengelen
2608
+
2609
+ #### `@mui/x-data-grid-pro@7.25.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2610
+
2611
+ Same changes as in `@mui/x-data-grid@7.25.0`, plus:
2612
+
2613
+ - [DataGridPro] Fix the return type of `useGridApiRef` for Pro and Premium packages on React < 19 (#16348) @arminmeh
2614
+ - [DataGridPro] Fetch new rows only once when multiple models are changed in one cycle (#16382) @arminmeh
2615
+
2616
+ #### `@mui/x-data-grid-premium@7.25.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
2617
+
2618
+ Same changes as in `@mui/x-data-grid-pro@7.25.0`.
2619
+
2620
+ ### Date and Time Pickers
2621
+
2622
+ #### `@mui/x-date-pickers@7.25.0`
2623
+
2624
+ Internal changes.
2625
+
2626
+ #### `@mui/x-date-pickers-pro@7.25.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2627
+
2628
+ Same changes as in `@mui/x-date-pickers@7.25.0`.
2629
+
2630
+ ### Charts
2631
+
2632
+ #### `@mui/x-charts@7.25.0`
1030
2633
 
1031
- - The `slots.legend` does not receive the `drawingArea` prop. You can still access your custom legend with the `useDrawingArea()` hook if your custom legend needs it.
2634
+ Internal changes.
1032
2635
 
1033
- - Removed or renamed multiple props from Series — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#series-properties-renaming).
2636
+ #### `@mui/x-charts-pro@7.25.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1034
2637
 
1035
- - The `highlighted` and `faded` properties of highlightScope have been deprecated in favor of `highlight` and `fade`.
1036
- The deprecated ones are now removed.
1037
- - The `xAxisKey`, `yAxisKey`, and `zAxisKey` properties have been deprecated in favor of `xAxisId`, `yAxisId`, and `zAxisId`.
2638
+ Same changes as in `@mui/x-charts@7.25.0`.
1038
2639
 
1039
- - The Pie Chart lost all props and renderer linked to axes because pie chart does not need cartesian axes. If you used it, you can still add them back with composition. Please consider opening an issue to share your use case with us — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#remove-pie-chart-axes).
2640
+ ### Tree View
1040
2641
 
1041
- #### `@mui/x-charts@8.0.0-alpha.0`
2642
+ #### `@mui/x-tree-view@7.25.0`
1042
2643
 
1043
- - [charts] Introduce `hideLegend` prop (#15277) @alexfauquette
1044
- - [charts] Filter items outside the drawing area for performance (#14281) @alexfauquette
1045
- - [charts] Fix log scale with `null` data (#15337) @alexfauquette
1046
- - [charts] Fix tooltip follow mouse (#15189) @alexfauquette
1047
- - [charts] Remove `xAxisKey`, `yAxisKey`, and `zAxisKey` series keys (#15192) @alexfauquette
1048
- - [charts] Remove axis from the pie chart (#15187) @alexfauquette
1049
- - [charts] Remove deprecated `legend` props (#15081) @alexfauquette
1050
- - [charts] Remove deprecated highlight properties (#15191) @alexfauquette
1051
- - [charts] Update Popper position outside of React (#15003) @alexfauquette
1052
- - [charts] Improve the performance of the `getSymbol` method (#15233) @romgrk
2644
+ Internal changes.
1053
2645
 
1054
- #### `@mui/x-charts-pro@8.0.0-alpha.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2646
+ #### `@mui/x-tree-view-pro@7.25.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1055
2647
 
1056
- Same changes as in `@mui/x-charts@8.0.0-alpha.0`.
2648
+ Same changes as in `@mui/x-tree-view@7.25.0`.
2649
+
2650
+ ### Docs
2651
+
2652
+ - [docs] Improve release documentation (#16322) @MBilalShafi
2653
+
2654
+ ### Core
2655
+
2656
+ - [test] Fix flaky data source tests in DataGrid (#16382) @lauri865
2657
+
2658
+ ## 7.24.1
2659
+
2660
+ _Jan 24, 2025_
2661
+
2662
+ We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
2663
+
2664
+ - 🐞 Bugfixes
2665
+ - 🌍 Improve Persian (fa-IR) locale on the Data Grid
2666
+
2667
+ Special thanks go out to the community contributors who have helped make this release possible:
2668
+ @mostafaRoosta74, @lauri865.
2669
+
2670
+ Following are all team members who have contributed to this release:
2671
+ @alexfauquette, @JCQuintas, @cherniavskii, @LukasTy, @arminmeh.
2672
+
2673
+ ### Data Grid
2674
+
2675
+ #### `@mui/x-data-grid@7.24.1`
2676
+
2677
+ - [DataGrid] Fix toggling preference panel from toolbar (#16276) @lauri865
2678
+ - [DataGrid] Only try to mount filter button if there are filters present (#16269) @lauri865
2679
+ - [DataGrid] Revert `apiRef` to be `MutableRefObject` for React versions < 19 (#16320) @arminmeh
2680
+ - [l10n] Improve Persian (fa-IR) locale (#15964) @mostafaRoosta74
2681
+
2682
+ #### `@mui/x-data-grid-pro@7.24.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2683
+
2684
+ Same changes as in `@mui/x-data-grid@7.24.1`.
2685
+
2686
+ #### `@mui/x-data-grid-premium@7.24.1` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
2687
+
2688
+ Same changes as in `@mui/x-data-grid-pro@7.24.1`.
2689
+
2690
+ ### Date and Time Pickers
2691
+
2692
+ #### `@mui/x-date-pickers@7.24.1`
2693
+
2694
+ - [fields] Reset `all` selected state on section edit (#16232) @LukasTy
2695
+
2696
+ #### `@mui/x-date-pickers-pro@7.24.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2697
+
2698
+ Same changes as in `@mui/x-date-pickers@7.24.1`.
2699
+
2700
+ ### Charts
2701
+
2702
+ #### `@mui/x-charts@7.24.1`
2703
+
2704
+ - [charts] Handle case where gradient stop `offset` could be `Infinite` (@JCQuintas) (#16309) @JCQuintas
2705
+
2706
+ #### `@mui/x-charts-pro@7.24.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2707
+
2708
+ Same changes as in `@mui/x-charts@7.24.1`.
1057
2709
 
1058
2710
  ### Tree View
1059
2711
 
1060
- #### Breaking changes
2712
+ #### `@mui/x-tree-view@7.24.1`
1061
2713
 
1062
- - The `ContentComponent` or `ContentProps` props of the `<TreeItem />` component have been removed in favor of the new `slots`, `slotProps` props and of the `useTreeItem` hook — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#new-api-to-customize-the-tree-item).
2714
+ Internal changes.
1063
2715
 
1064
- - The `onClick` and `onMouseDown` callbacks of the Tree Item component are now passed to the root element instead of the content — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#behavior-change-on-the-onclick-and-onmousedown-props-of-treeitem).
2716
+ #### `@mui/x-tree-view-pro@7.24.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
1065
2717
 
1066
- - Rename the `<TreeItem2 />` component (and related utils) — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#✅-rename-the-treeitem2-and-related-utils).
2718
+ Same changes as in `@mui/x-tree-view@7.24.1`.
1067
2719
 
1068
- - The `<TreeView />` component has been renamed `<SimpleTreeView />` which has exactly the same API — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#✅-use-simple-tree-view-instead-of-tree-view).
2720
+ ### Docs
1069
2721
 
1070
- - The indentation of nested Tree Items is now applied on the content of the element — [Learn more](https://next.mui.com/x/migration/migration-tree-view-v7/#apply-the-indentation-on-the-item-content-instead-of-its-parents-group).
2722
+ - [docs] Fix `domainLimit` definition (#16271) @alexfauquette
1071
2723
 
1072
- #### `@mui/x-tree-view@8.0.0-alpha.0`
2724
+ ### Core
1073
2725
 
1074
- - [TreeView] Always apply the indentation on the item content instead of its parent's group (#15089) @flaviendelangle
1075
- - [TreeView] Automatic parents and children selection (#14899) @flaviendelangle
1076
- - [TreeView] Remove deprecated `TreeView` component (#15093) @flaviendelangle
1077
- - [TreeView] Replace `<TreeItem />` with `<TreeItem2 />` and migrate all the components and utils (#14913) @flaviendelangle
2726
+ - [core] Make `@mui/x-internals` a dependency of `@mui/x-license` (#16265) @alexfauquette
2727
+ - [test] Fix flaky column pinning tests (#16228) @cherniavskii
2728
+ - [test] Fix flaky tests (#16264) @lauri865
2729
+
2730
+ ## 7.24.0
2731
+
2732
+ _Jan 17, 2025_
2733
+
2734
+ We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
2735
+
2736
+ - 🔄 Data Grid [Scroll restoration](https://next.mui.com/x/react-data-grid/scrolling/#scroll-restoration)
2737
+ - 🐞 Bugfixes
2738
+
2739
+ Special thanks go out to the community contributors who have helped make this release possible:
2740
+ @lauri865, @AxharKhan.
2741
+ Following are all team members who have contributed to this release:
2742
+ @KenanYusuf, @arminmeh, @cherniavskii, @michelengelen, @samuelsycamore, @LukasTy.
2743
+
2744
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
2745
+
2746
+ ### Data Grid
2747
+
2748
+ #### `@mui/x-data-grid@7.24.0`
2749
+
2750
+ - [DataGrid] Fix resizing right pinned column (#16193) @KenanYusuf
2751
+ - [DataGrid] Improve scrollbar deadzone with overlay scrollbars (#16212) @lauri865
2752
+ - [DataGrid] Scroll restoration (#16208) @lauri865
2753
+ - [DataGrid] Fix row, cell and header memoizations (#16195) @lauri865
2754
+ - [l10n] Improve Urdu (ur-PK) locale (#16081) @AxharKhan
2755
+
2756
+ #### `@mui/x-data-grid-pro@7.24.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2757
+
2758
+ Same changes as in `@mui/x-data-grid@7.24.0`, plus:
2759
+
2760
+ - [DataGridPro] Add test for column pinning with disabled column virtualization (#16196) @cherniavskii
2761
+ - [DataGridPro] Fix width of right-pinned column group during resize (#16207) @cherniavskii
2762
+
2763
+ #### `@mui/x-data-grid-premium@7.24.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
2764
+
2765
+ Same changes as in `@mui/x-data-grid-pro@7.24.0`.
2766
+
2767
+ ### Date and Time Pickers
2768
+
2769
+ #### `@mui/x-date-pickers@7.24.0`
2770
+
2771
+ Internal changes.
2772
+
2773
+ #### `@mui/x-date-pickers-pro@7.24.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2774
+
2775
+ Same changes as in `@mui/x-date-pickers@7.24.0`.
2776
+
2777
+ ### Charts
2778
+
2779
+ #### `@mui/x-charts@7.24.0`
2780
+
2781
+ Internal changes.
2782
+
2783
+ #### `@mui/x-charts-pro@7.24.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2784
+
2785
+ Same changes as in `@mui/x-charts@7.24.0`.
2786
+
2787
+ ### Tree View
2788
+
2789
+ #### `@mui/x-tree-view@7.24.0`
2790
+
2791
+ Internal changes.
2792
+
2793
+ #### `@mui/x-tree-view-pro@7.24.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2794
+
2795
+ Same changes as in `@mui/x-tree-view@7.24.0`.
1078
2796
 
1079
2797
  ### Docs
1080
2798
 
1081
- - [docs] Add docs for rounded symbol (#15324) @GuillaumeMeheut
1082
- - [docs] Add migration guide for the removal of `LicenseInfo` from `@mui/x-date-pickers-pro` (#15321) @flaviendelangle
1083
- - [docs] Add migration guide for the first breaking changes of charts (#15276) @alexfauquette
1084
- - [docs] Add `PickersPopper` component to the Date Picker customization playground (#15305) @LukasTy
1085
- - [docs] Add v8 to supported releases table (#15384) @joserodolfofreitas
1086
- - [docs] Apply the new DX to the Button Field demos (#14860) @flaviendelangle
1087
- - [docs] Apply the new DX to the `Autocomplete` Field demo (#15165) @flaviendelangle
1088
- - [docs] Cleanup the pickers migration guide (#15310) @flaviendelangle
1089
- - [docs] Copyedit the Charts Getting Started sequence (#14962) @samuelsycamore
1090
- - [docs] Create Pickers masked field recipe (#13515) @flaviendelangle
1091
- - [docs] Fix `applyDomain` docs for the charts (#15332) @JCQuintas
1092
- - [docs] Fix link to private notion page (#15396) @michelengelen
1093
- - [docs] Fix missing punctuation on descriptions (#15229) @oliviertassinari
1094
- - [docs] Fix peer dependency range (#15281) @oliviertassinari
1095
- - [docs] Fix small Tree View typo (#15390) @oliviertassinari
1096
- - [docs] Fix the `AdapterMomentHijri` doc section (#15312) @flaviendelangle
1097
- - [docs] Replace the Tree Item anatomy images (#15066) @noraleonte
1098
- - [docs] Start v8 migration guides (#15096) @MBilalShafi
1099
- - [docs] Subdivide and reorganize navigation bar (#15014) @samuelsycamore
1100
- - [docs] Use `PickersTextField` in the customization playground (#15288) @LukasTy
1101
- - [docs] Use `next` instead of `^8.0.0` in the migration guides (#15091) @flaviendelangle
2799
+ - [docs] Copyedit the Data Grid cell selection page (#16213) @samuelsycamore
2800
+ - [docs] Fix demo rendering issue on Codesandbox (#16129) @arminmeh
1102
2801
 
1103
2802
  ### Core
1104
2803
 
1105
- - [core] Adjust the `cherry-pick` GitHub actions (#15099) @LukasTy
1106
- - [core] Add `()` at the name of function name in the doc (#15075) @oliviertassinari
1107
- - [core] Clarify release version bump strategy (#15219) @cherniavskii
1108
- - [core] Fix CodeSandbox and StackBlitz for next doc-infra sync @oliviertassinari
1109
- - [core] Fix Vale error on `master` @oliviertassinari
1110
- - [core] Fix changelog reference to VoiceOver @oliviertassinari
1111
- - [core] Fix `tools-public.mui.com` redirection @oliviertassinari
1112
- - [core] Fix webpack capitalization (#15353) @oliviertassinari
1113
- - [core] Move `helpers` to `@mui/x-internals` package (#15188) @LukasTy
1114
- - [code-infra] Set renovate to automerge devDependencies (#13463) @JCQuintas
1115
- - [infra] Reintroduce the cherry pick workflow (#15293) @michelengelen
1116
- - [core] Remove duplicate title header (#15389) @oliviertassinari
1117
- - [release] v8 preparation (#15054) @michelengelen
1118
- - [test] Fix advanced list view regression test snapshot (#15260) @KenanYusuf
2804
+ - [core] Type all references as `RefObject` (#16125) @arminmeh
2805
+ - [code-infra] Refactor `react` and `react-dom` definitions to simplify dep resolving (#16214) @LukasTy
2806
+ - [infra] Improve cherry-pick action target list (#16188) @michelengelen
2807
+ - [test] Fix flaky column pinning unit test (#16209) @cherniavskii
2808
+
2809
+ ## 7.23.6
2810
+
2811
+ _Jan 9, 2025_
2812
+
2813
+ We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
2814
+
2815
+ - 🌍 Add Chinese (Taiwan) (zh-TW) locale on the Date and Time Pickers
2816
+ - 🌍 Improve Norwegian (nb-NO) locale on the Date and Time Pickers
2817
+ - 🌍 Improve Dutch (nl-NL) locale on the Data Grid
2818
+ - 🐞 Bugfixes
2819
+
2820
+ Special thanks go out to the community contributors who have helped make this release possible:
2821
+ @josteinjhauge, @derek-0000, @nusr, @k-rajat19, @tomashauser.
2822
+ Following are all team members who have contributed to this release:
2823
+ @flaviendelangle, @LukasTy, @MBilalShafi, @arminmeh, @oliviertassinari, @cherniavskii.
2824
+
2825
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
2826
+
2827
+ ### Data Grid
2828
+
2829
+ #### `@mui/x-data-grid@7.23.6`
2830
+
2831
+ - [DataGrid] Improve React 19 support (#16048) @LukasTy
2832
+ - [DataGrid] Add `name` attribute to selection checkboxes (#16041) @derek-0000
2833
+ - [DataGrid] Fix number filter field formatting values while typing (#16068) @arminmeh
2834
+ - [DataGrid] Fix select all checkbox state reset with server side data (#16039) @MBilalShafi
2835
+
2836
+ #### `@mui/x-data-grid-pro@7.23.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2837
+
2838
+ Same changes as in `@mui/x-data-grid@7.23.6`.
2839
+
2840
+ #### `@mui/x-data-grid-premium@7.23.6` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
2841
+
2842
+ Same changes as in `@mui/x-data-grid-pro@7.23.6`.
2843
+
2844
+ ### Date and Time Pickers
2845
+
2846
+ #### `@mui/x-date-pickers@7.23.6`
2847
+
2848
+ - [pickers] Improve React 19 support (#16048) @LukasTy
2849
+ - [l10n] Add Chinese (Taiwan) (zh-TW) locale (#16057) @nusr
2850
+ - [l10n] Improve Norwegian (nb-NO) locale (#16083) @josteinjhauge
2851
+ - [pickers] Support `date-fns-jalali` v4 (#16013) @LukasTy
2852
+
2853
+ #### `@mui/x-date-pickers-pro@7.23.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2854
+
2855
+ Same changes as in `@mui/x-date-pickers@7.23.6`.
2856
+
2857
+ ### Charts
2858
+
2859
+ #### `@mui/x-charts@7.23.6`
2860
+
2861
+ - [charts] Improve React 19 support (#16048) @LukasTy
2862
+ - [charts] Fix 301 redirection in the API documentation @oliviertassinari
2863
+
2864
+ #### `@mui/x-charts-pro@7.23.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2865
+
2866
+ Same changes as in `@mui/x-charts@7.23.6`.
2867
+
2868
+ ### Tree View
2869
+
2870
+ #### `@mui/x-tree-view@7.23.6`
2871
+
2872
+ - [TreeView] Improve React 19 support (#16048) @LukasTy
2873
+
2874
+ #### `@mui/x-tree-view-pro@7.23.6` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2875
+
2876
+ Same changes as in `@mui/x-tree-view@7.23.6`.
2877
+
2878
+ ### Docs
2879
+
2880
+ - [docs] Fix `EditingWithDatePickers` demo (#16047) @k-rajat19
2881
+ - [docs] Fix doc warning for automatic children selection on tree view (#16037) @flaviendelangle
2882
+ - [docs] Fix non-existing "adapter" property of `LocalizationProvider` (#16088) @tomashauser
2883
+
2884
+ ### Core
2885
+
2886
+ - [core] Clarify the release strategy (#16012) @MBilalShafi
2887
+ - [core] Update the `release:version` docs (#16040) @cherniavskii
2888
+
2889
+ ## 7.23.5
2890
+
2891
+ _Dec 27, 2024_
2892
+
2893
+ Here are some highlights ✨:
2894
+
2895
+ - 🐞 Fix version mismatch issue in Data Grid codesandbox/stackblitz demos
2896
+
2897
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
2898
+
2899
+ ### Data Grid
2900
+
2901
+ #### `@mui/x-data-grid@7.23.5`
2902
+
2903
+ No changes since `@mui/x-data-grid@v7.23.4`.
2904
+
2905
+ #### `@mui/x-data-grid-pro@7.23.5` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2906
+
2907
+ Same changes as in `@mui/x-data-grid@7.23.5`.
2908
+
2909
+ #### `@mui/x-data-grid-premium@7.23.5` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
2910
+
2911
+ Same changes as in `@mui/x-data-grid-pro@7.23.5`.
2912
+
2913
+ ## 7.23.4
2914
+
2915
+ _Dec 27, 2024_
2916
+
2917
+ We'd like to offer a big thanks to the 4 contributors who made this release possible. Here are some highlights ✨:
2918
+
2919
+ - 🌍 Improve Dutch (nl-NL) locale on the Data Grid
2920
+ - 🐞 Bugfixes
2921
+
2922
+ Special thanks go out to the community contributor who has helped make this release possible:
2923
+ @JoepVerkoelen.
2924
+ Following are all team members who have contributed to this release:
2925
+ @arminmeh, @oliviertassinari.
2926
+
2927
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
2928
+
2929
+ ### Data Grid
2930
+
2931
+ #### `@mui/x-data-grid@7.23.4`
2932
+
2933
+ - [DataGrid] Fix header filters showing clear button while empty (#15990) @k-rajat19
2934
+ - [DataGrid] Replace `forwardRef` with a shim for forward compatibility (#15984) @lauri865
2935
+ - [l10n] Improve Dutch (nl-NL) locale (#15920) @JoepVerkoelen
2936
+
2937
+ #### `@mui/x-data-grid-pro@7.23.4` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2938
+
2939
+ Same changes as in `@mui/x-data-grid@7.23.4`.
2940
+
2941
+ #### `@mui/x-data-grid-premium@7.23.4` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
2942
+
2943
+ Same changes as in `@mui/x-data-grid-pro@7.23.4`, plus:
2944
+
2945
+ - [DataGridPremium] Fix column pinning with checkbox selection and row grouping (#15949) @k-rajat19
2946
+
2947
+ ### Docs
2948
+
2949
+ - [docs] Fix outdated link to handbook (#15855) @oliviertassinari
2950
+
2951
+ ## 7.23.3
2952
+
2953
+ _Dec 19, 2024_
2954
+
2955
+ We'd like to offer a big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:
2956
+
2957
+ - 🌍 Improve Korean (ko-KR) locale on the Data Grid
2958
+ - 🐞 Bugfixes
2959
+
2960
+ Special thanks go out to the community contributors who have helped make this release possible:
2961
+ @k-rajat19, @good-jinu.
2962
+ Following are all team members who have contributed to this release:
2963
+ @KenanYusuf, @MBilalShafi, @arminmeh, @flaviendelangle.
2964
+
2965
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
2966
+
2967
+ ### Data Grid
2968
+
2969
+ #### `@mui/x-data-grid@7.23.3`
2970
+
2971
+ - [DataGrid] Allow passing custom props to `.main` element (#15919) @MBilalShafi
2972
+ - [DataGrid] Consider `columnGroupHeaderHeight` prop in `getTotalHeaderHeight` method (#15927) @k-rajat19
2973
+ - [DataGrid] Deprecate `indeterminateCheckboxAction` prop (#15862) @MBilalShafi
2974
+ - [DataGrid] Fix `aria-label` value for group checkboxes (#15861) @MBilalShafi
2975
+ - [DataGrid] Fix autosizing with virtualized columns (#15929) @k-rajat19
2976
+ - [DataGrid] Round dimensions to avoid subpixel rendering error (#15873) @KenanYusuf
2977
+ - [DataGrid] Toggle menu on click in `<GridActionsCell />` (#15871) @k-rajat19
2978
+ - [DataGrid] Trigger row spanning computation on rows update (#15872) @MBilalShafi
2979
+ - [l10n] Improve Korean (ko-KR) locale (#15906) @good-jinu
2980
+
2981
+ #### `@mui/x-data-grid-pro@7.23.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2982
+
2983
+ Same changes as in `@mui/x-data-grid@7.23.3`.
2984
+
2985
+ #### `@mui/x-data-grid-premium@7.23.3` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
2986
+
2987
+ Same changes as in `@mui/x-data-grid-pro@7.23.3`.
2988
+
2989
+ ### Date and Time Pickers
2990
+
2991
+ #### `@mui/x-date-pickers@7.23.3`
2992
+
2993
+ - [pickers] Add verification to disable skipped hours in spring forward DST (#15918) @flaviendelangle
2994
+
2995
+ #### `@mui/x-date-pickers-pro@7.23.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
2996
+
2997
+ Same changes as in `@mui/x-date-pickers@7.23.3`.
1119
2998
 
1120
2999
  ## 7.23.2
1121
3000
 
@@ -1358,7 +3237,7 @@ Same changes as in `@mui/x-tree-view@7.23.0`.
1358
3237
 
1359
3238
  - [core] Update @mui/monorepo (#15574) @oliviertassinari
1360
3239
 
1361
- ## v7.22.3
3240
+ ## 7.22.3
1362
3241
 
1363
3242
  _Nov 21, 2024_
1364
3243