@mui/x-tree-view 8.0.0-beta.2 → 8.0.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 (421) hide show
  1. package/CHANGELOG.md +423 -96
  2. package/RichTreeView/RichTreeView.js +11 -6
  3. package/RichTreeView/RichTreeView.plugins.d.ts +3 -6
  4. package/RichTreeView/RichTreeView.plugins.js +1 -2
  5. package/RichTreeView/RichTreeView.types.d.ts +4 -3
  6. package/RichTreeView/index.d.ts +1 -1
  7. package/SimpleTreeView/SimpleTreeView.js +12 -8
  8. package/SimpleTreeView/SimpleTreeView.plugins.d.ts +3 -6
  9. package/SimpleTreeView/SimpleTreeView.plugins.js +1 -2
  10. package/SimpleTreeView/SimpleTreeView.types.d.ts +4 -3
  11. package/TreeItemIcon/TreeItemIcon.js +15 -11
  12. package/esm/RichTreeView/RichTreeView.js +10 -5
  13. package/esm/RichTreeView/RichTreeView.plugins.d.ts +3 -6
  14. package/esm/RichTreeView/RichTreeView.plugins.js +1 -2
  15. package/esm/RichTreeView/RichTreeView.types.d.ts +4 -3
  16. package/esm/RichTreeView/index.d.ts +1 -1
  17. package/esm/SimpleTreeView/SimpleTreeView.js +11 -7
  18. package/esm/SimpleTreeView/SimpleTreeView.plugins.d.ts +3 -6
  19. package/esm/SimpleTreeView/SimpleTreeView.plugins.js +1 -2
  20. package/esm/SimpleTreeView/SimpleTreeView.types.d.ts +4 -3
  21. package/esm/TreeItemIcon/TreeItemIcon.js +15 -11
  22. package/esm/hooks/useTreeItemUtils/useTreeItemUtils.js +1 -1
  23. package/esm/index.js +1 -1
  24. package/esm/internals/TreeViewProvider/TreeViewContext.d.ts +1 -1
  25. package/esm/internals/TreeViewProvider/TreeViewProvider.js +14 -4
  26. package/esm/internals/TreeViewProvider/TreeViewProvider.types.d.ts +6 -5
  27. package/esm/internals/TreeViewProvider/TreeViewStyleContext.d.ts +23 -0
  28. package/esm/internals/TreeViewProvider/TreeViewStyleContext.js +3 -1
  29. package/esm/internals/hooks/useSelector.js +1 -4
  30. package/esm/internals/index.d.ts +2 -3
  31. package/esm/internals/index.js +1 -1
  32. package/esm/internals/models/events.d.ts +2 -6
  33. package/esm/internals/models/plugin.d.ts +63 -38
  34. package/esm/internals/models/treeView.d.ts +0 -5
  35. package/esm/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.js +35 -21
  36. package/esm/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.selectors.d.ts +144 -10
  37. package/esm/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.selectors.js +21 -1
  38. package/esm/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.types.d.ts +1 -1
  39. package/esm/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.utils.d.ts +0 -1
  40. package/esm/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.utils.js +0 -7
  41. package/esm/internals/plugins/useTreeViewFocus/useTreeViewFocus.js +3 -30
  42. package/esm/internals/plugins/useTreeViewFocus/useTreeViewFocus.selectors.d.ts +476 -28
  43. package/esm/internals/plugins/useTreeViewFocus/useTreeViewFocus.selectors.js +21 -1
  44. package/esm/internals/plugins/useTreeViewFocus/useTreeViewFocus.types.d.ts +0 -1
  45. package/esm/internals/plugins/useTreeViewItems/useTreeViewItems.selectors.d.ts +90 -4
  46. package/esm/internals/plugins/useTreeViewItems/useTreeViewItems.selectors.js +12 -25
  47. package/esm/internals/plugins/useTreeViewItems/useTreeViewItems.utils.d.ts +12 -1
  48. package/esm/internals/plugins/useTreeViewItems/useTreeViewItems.utils.js +31 -0
  49. package/esm/internals/plugins/useTreeViewLabel/useTreeViewLabel.js +3 -6
  50. package/esm/internals/plugins/useTreeViewLabel/useTreeViewLabel.selectors.d.ts +43 -9
  51. package/esm/internals/plugins/useTreeViewLabel/useTreeViewLabel.selectors.js +12 -2
  52. package/esm/internals/plugins/useTreeViewLabel/useTreeViewLabel.types.d.ts +1 -1
  53. package/esm/internals/plugins/useTreeViewSelection/useTreeViewSelection.itemPlugin.js +2 -2
  54. package/esm/internals/plugins/useTreeViewSelection/useTreeViewSelection.js +39 -40
  55. package/esm/internals/plugins/useTreeViewSelection/useTreeViewSelection.selectors.d.ts +186 -30
  56. package/esm/internals/plugins/useTreeViewSelection/useTreeViewSelection.selectors.js +36 -1
  57. package/esm/internals/plugins/useTreeViewSelection/useTreeViewSelection.types.d.ts +3 -6
  58. package/esm/internals/plugins/useTreeViewSelection/useTreeViewSelection.utils.d.ts +0 -7
  59. package/esm/internals/plugins/useTreeViewSelection/useTreeViewSelection.utils.js +5 -24
  60. package/esm/internals/useTreeView/extractPluginParamsFromProps.d.ts +0 -2
  61. package/esm/internals/useTreeView/extractPluginParamsFromProps.js +1 -5
  62. package/esm/internals/useTreeView/useTreeView.d.ts +10 -1
  63. package/esm/internals/useTreeView/useTreeView.js +22 -25
  64. package/esm/internals/useTreeView/useTreeView.types.d.ts +1 -3
  65. package/esm/internals/useTreeView/useTreeViewBuildContext.js +9 -11
  66. package/esm/internals/utils/models.d.ts +7 -0
  67. package/esm/internals/utils/models.js +23 -0
  68. package/esm/internals/utils/selectors.d.ts +1 -1
  69. package/esm/utils/cache.d.ts +1 -1
  70. package/esm/utils/cache.js +1 -1
  71. package/hooks/useTreeItemUtils/useTreeItemUtils.js +1 -1
  72. package/index.js +1 -1
  73. package/internals/TreeViewProvider/TreeViewContext.d.ts +1 -1
  74. package/internals/TreeViewProvider/TreeViewProvider.js +14 -4
  75. package/internals/TreeViewProvider/TreeViewProvider.types.d.ts +6 -5
  76. package/internals/TreeViewProvider/TreeViewStyleContext.d.ts +23 -0
  77. package/internals/TreeViewProvider/TreeViewStyleContext.js +3 -1
  78. package/internals/hooks/useSelector.js +1 -5
  79. package/internals/index.d.ts +2 -3
  80. package/internals/index.js +13 -7
  81. package/internals/models/events.d.ts +2 -6
  82. package/internals/models/plugin.d.ts +63 -38
  83. package/internals/models/treeView.d.ts +0 -5
  84. package/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.js +33 -19
  85. package/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.selectors.d.ts +144 -10
  86. package/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.selectors.js +22 -2
  87. package/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.types.d.ts +1 -1
  88. package/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.utils.d.ts +0 -1
  89. package/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.utils.js +1 -9
  90. package/internals/plugins/useTreeViewFocus/useTreeViewFocus.js +2 -30
  91. package/internals/plugins/useTreeViewFocus/useTreeViewFocus.selectors.d.ts +476 -28
  92. package/internals/plugins/useTreeViewFocus/useTreeViewFocus.selectors.js +21 -1
  93. package/internals/plugins/useTreeViewFocus/useTreeViewFocus.types.d.ts +0 -1
  94. package/internals/plugins/useTreeViewItems/useTreeViewItems.selectors.d.ts +90 -4
  95. package/internals/plugins/useTreeViewItems/useTreeViewItems.selectors.js +12 -25
  96. package/internals/plugins/useTreeViewItems/useTreeViewItems.utils.d.ts +12 -1
  97. package/internals/plugins/useTreeViewItems/useTreeViewItems.utils.js +34 -2
  98. package/internals/plugins/useTreeViewLabel/useTreeViewLabel.js +3 -6
  99. package/internals/plugins/useTreeViewLabel/useTreeViewLabel.selectors.d.ts +43 -9
  100. package/internals/plugins/useTreeViewLabel/useTreeViewLabel.selectors.js +13 -3
  101. package/internals/plugins/useTreeViewLabel/useTreeViewLabel.types.d.ts +1 -1
  102. package/internals/plugins/useTreeViewSelection/useTreeViewSelection.itemPlugin.js +2 -2
  103. package/internals/plugins/useTreeViewSelection/useTreeViewSelection.js +37 -38
  104. package/internals/plugins/useTreeViewSelection/useTreeViewSelection.selectors.d.ts +186 -30
  105. package/internals/plugins/useTreeViewSelection/useTreeViewSelection.selectors.js +37 -2
  106. package/internals/plugins/useTreeViewSelection/useTreeViewSelection.types.d.ts +3 -6
  107. package/internals/plugins/useTreeViewSelection/useTreeViewSelection.utils.d.ts +0 -7
  108. package/internals/plugins/useTreeViewSelection/useTreeViewSelection.utils.js +6 -26
  109. package/internals/useTreeView/extractPluginParamsFromProps.d.ts +0 -2
  110. package/internals/useTreeView/extractPluginParamsFromProps.js +1 -5
  111. package/internals/useTreeView/useTreeView.d.ts +10 -1
  112. package/internals/useTreeView/useTreeView.js +22 -25
  113. package/internals/useTreeView/useTreeView.types.d.ts +1 -3
  114. package/internals/useTreeView/useTreeViewBuildContext.js +9 -11
  115. package/internals/utils/models.d.ts +7 -0
  116. package/internals/utils/models.js +30 -0
  117. package/internals/utils/selectors.d.ts +1 -1
  118. package/package.json +7 -15
  119. package/utils/cache.d.ts +1 -1
  120. package/utils/cache.js +1 -1
  121. package/esm/internals/plugins/useTreeViewIcons/index.d.ts +0 -2
  122. package/esm/internals/plugins/useTreeViewIcons/index.js +0 -1
  123. package/esm/internals/plugins/useTreeViewIcons/useTreeViewIcons.d.ts +0 -3
  124. package/esm/internals/plugins/useTreeViewIcons/useTreeViewIcons.js +0 -24
  125. package/esm/internals/plugins/useTreeViewIcons/useTreeViewIcons.types.d.ts +0 -42
  126. package/esm/internals/plugins/useTreeViewIcons/useTreeViewIcons.types.js +0 -1
  127. package/esm/internals/plugins/useTreeViewItemCustomization/index.d.ts +0 -2
  128. package/esm/internals/plugins/useTreeViewItemCustomization/index.js +0 -1
  129. package/esm/internals/plugins/useTreeViewItemCustomization/useTreeViewItemCustomization.d.ts +0 -3
  130. package/esm/internals/plugins/useTreeViewItemCustomization/useTreeViewItemCustomization.js +0 -24
  131. package/esm/internals/plugins/useTreeViewItemCustomization/useTreeViewItemCustomization.types.d.ts +0 -42
  132. package/esm/internals/plugins/useTreeViewItemCustomization/useTreeViewItemCustomization.types.js +0 -1
  133. package/esm/internals/useTreeView/useTreeViewModels.d.ts +0 -7
  134. package/esm/internals/useTreeView/useTreeViewModels.js +0 -62
  135. package/internals/plugins/useTreeViewIcons/index.d.ts +0 -2
  136. package/internals/plugins/useTreeViewIcons/index.js +0 -12
  137. package/internals/plugins/useTreeViewIcons/useTreeViewIcons.d.ts +0 -3
  138. package/internals/plugins/useTreeViewIcons/useTreeViewIcons.js +0 -32
  139. package/internals/plugins/useTreeViewIcons/useTreeViewIcons.types.d.ts +0 -42
  140. package/internals/plugins/useTreeViewIcons/useTreeViewIcons.types.js +0 -5
  141. package/internals/plugins/useTreeViewItemCustomization/index.d.ts +0 -2
  142. package/internals/plugins/useTreeViewItemCustomization/index.js +0 -12
  143. package/internals/plugins/useTreeViewItemCustomization/useTreeViewItemCustomization.d.ts +0 -3
  144. package/internals/plugins/useTreeViewItemCustomization/useTreeViewItemCustomization.js +0 -32
  145. package/internals/plugins/useTreeViewItemCustomization/useTreeViewItemCustomization.types.d.ts +0 -42
  146. package/internals/plugins/useTreeViewItemCustomization/useTreeViewItemCustomization.types.js +0 -5
  147. package/internals/useTreeView/useTreeViewModels.d.ts +0 -7
  148. package/internals/useTreeView/useTreeViewModels.js +0 -71
  149. package/modern/RichTreeView/RichTreeView.d.ts +0 -18
  150. package/modern/RichTreeView/RichTreeView.js +0 -322
  151. package/modern/RichTreeView/RichTreeView.plugins.d.ts +0 -13
  152. package/modern/RichTreeView/RichTreeView.plugins.js +0 -10
  153. package/modern/RichTreeView/RichTreeView.types.d.ts +0 -52
  154. package/modern/RichTreeView/RichTreeView.types.js +0 -1
  155. package/modern/RichTreeView/index.d.ts +0 -5
  156. package/modern/RichTreeView/index.js +0 -3
  157. package/modern/RichTreeView/richTreeViewClasses.d.ts +0 -5
  158. package/modern/RichTreeView/richTreeViewClasses.js +0 -6
  159. package/modern/SimpleTreeView/SimpleTreeView.d.ts +0 -20
  160. package/modern/SimpleTreeView/SimpleTreeView.js +0 -265
  161. package/modern/SimpleTreeView/SimpleTreeView.plugins.d.ts +0 -12
  162. package/modern/SimpleTreeView/SimpleTreeView.plugins.js +0 -10
  163. package/modern/SimpleTreeView/SimpleTreeView.types.d.ts +0 -51
  164. package/modern/SimpleTreeView/SimpleTreeView.types.js +0 -1
  165. package/modern/SimpleTreeView/index.d.ts +0 -3
  166. package/modern/SimpleTreeView/index.js +0 -3
  167. package/modern/SimpleTreeView/simpleTreeViewClasses.d.ts +0 -5
  168. package/modern/SimpleTreeView/simpleTreeViewClasses.js +0 -6
  169. package/modern/TreeItem/TreeItem.d.ts +0 -33
  170. package/modern/TreeItem/TreeItem.js +0 -408
  171. package/modern/TreeItem/TreeItem.types.d.ts +0 -107
  172. package/modern/TreeItem/TreeItem.types.js +0 -1
  173. package/modern/TreeItem/index.d.ts +0 -4
  174. package/modern/TreeItem/index.js +0 -2
  175. package/modern/TreeItem/treeItemClasses.d.ts +0 -55
  176. package/modern/TreeItem/treeItemClasses.js +0 -8
  177. package/modern/TreeItemDragAndDropOverlay/TreeItemDragAndDropOverlay.d.ts +0 -7
  178. package/modern/TreeItemDragAndDropOverlay/TreeItemDragAndDropOverlay.js +0 -74
  179. package/modern/TreeItemDragAndDropOverlay/TreeItemDragAndDropOverlay.types.d.ts +0 -6
  180. package/modern/TreeItemDragAndDropOverlay/TreeItemDragAndDropOverlay.types.js +0 -1
  181. package/modern/TreeItemDragAndDropOverlay/index.d.ts +0 -2
  182. package/modern/TreeItemDragAndDropOverlay/index.js +0 -1
  183. package/modern/TreeItemIcon/TreeItemIcon.d.ts +0 -7
  184. package/modern/TreeItemIcon/TreeItemIcon.js +0 -74
  185. package/modern/TreeItemIcon/TreeItemIcon.types.d.ts +0 -40
  186. package/modern/TreeItemIcon/TreeItemIcon.types.js +0 -1
  187. package/modern/TreeItemIcon/index.d.ts +0 -2
  188. package/modern/TreeItemIcon/index.js +0 -1
  189. package/modern/TreeItemLabelInput/TreeItemLabelInput.d.ts +0 -5
  190. package/modern/TreeItemLabelInput/TreeItemLabelInput.js +0 -24
  191. package/modern/TreeItemLabelInput/TreeItemLabelInput.types.d.ts +0 -14
  192. package/modern/TreeItemLabelInput/TreeItemLabelInput.types.js +0 -1
  193. package/modern/TreeItemLabelInput/index.d.ts +0 -2
  194. package/modern/TreeItemLabelInput/index.js +0 -1
  195. package/modern/TreeItemProvider/TreeItemProvider.d.ts +0 -7
  196. package/modern/TreeItemProvider/TreeItemProvider.js +0 -45
  197. package/modern/TreeItemProvider/TreeItemProvider.types.d.ts +0 -7
  198. package/modern/TreeItemProvider/TreeItemProvider.types.js +0 -1
  199. package/modern/TreeItemProvider/index.d.ts +0 -2
  200. package/modern/TreeItemProvider/index.js +0 -1
  201. package/modern/hooks/index.d.ts +0 -3
  202. package/modern/hooks/index.js +0 -3
  203. package/modern/hooks/useTreeItemModel.d.ts +0 -2
  204. package/modern/hooks/useTreeItemModel.js +0 -11
  205. package/modern/hooks/useTreeItemUtils/index.d.ts +0 -1
  206. package/modern/hooks/useTreeItemUtils/index.js +0 -1
  207. package/modern/hooks/useTreeItemUtils/useTreeItemUtils.d.ts +0 -42
  208. package/modern/hooks/useTreeItemUtils/useTreeItemUtils.js +0 -165
  209. package/modern/hooks/useTreeViewApiRef.d.ts +0 -7
  210. package/modern/hooks/useTreeViewApiRef.js +0 -7
  211. package/modern/icons/icons.d.ts +0 -6
  212. package/modern/icons/icons.js +0 -9
  213. package/modern/icons/index.d.ts +0 -1
  214. package/modern/icons/index.js +0 -1
  215. package/modern/index.d.ts +0 -12
  216. package/modern/index.js +0 -22
  217. package/modern/internals/TreeViewItemDepthContext/TreeViewItemDepthContext.d.ts +0 -5
  218. package/modern/internals/TreeViewItemDepthContext/TreeViewItemDepthContext.js +0 -5
  219. package/modern/internals/TreeViewItemDepthContext/index.d.ts +0 -1
  220. package/modern/internals/TreeViewItemDepthContext/index.js +0 -1
  221. package/modern/internals/TreeViewProvider/TreeViewChildrenItemProvider.d.ts +0 -17
  222. package/modern/internals/TreeViewProvider/TreeViewChildrenItemProvider.js +0 -49
  223. package/modern/internals/TreeViewProvider/TreeViewContext.d.ts +0 -8
  224. package/modern/internals/TreeViewProvider/TreeViewContext.js +0 -15
  225. package/modern/internals/TreeViewProvider/TreeViewProvider.d.ts +0 -9
  226. package/modern/internals/TreeViewProvider/TreeViewProvider.js +0 -32
  227. package/modern/internals/TreeViewProvider/TreeViewProvider.types.d.ts +0 -21
  228. package/modern/internals/TreeViewProvider/TreeViewProvider.types.js +0 -1
  229. package/modern/internals/TreeViewProvider/TreeViewStyleContext.d.ts +0 -33
  230. package/modern/internals/TreeViewProvider/TreeViewStyleContext.js +0 -13
  231. package/modern/internals/TreeViewProvider/index.d.ts +0 -3
  232. package/modern/internals/TreeViewProvider/index.js +0 -2
  233. package/modern/internals/components/RichTreeViewItems.d.ts +0 -32
  234. package/modern/internals/components/RichTreeViewItems.js +0 -68
  235. package/modern/internals/corePlugins/corePlugins.d.ts +0 -9
  236. package/modern/internals/corePlugins/corePlugins.js +0 -8
  237. package/modern/internals/corePlugins/index.d.ts +0 -2
  238. package/modern/internals/corePlugins/index.js +0 -1
  239. package/modern/internals/corePlugins/useTreeViewId/index.d.ts +0 -2
  240. package/modern/internals/corePlugins/useTreeViewId/index.js +0 -1
  241. package/modern/internals/corePlugins/useTreeViewId/useTreeViewId.d.ts +0 -3
  242. package/modern/internals/corePlugins/useTreeViewId/useTreeViewId.js +0 -39
  243. package/modern/internals/corePlugins/useTreeViewId/useTreeViewId.selectors.d.ts +0 -36
  244. package/modern/internals/corePlugins/useTreeViewId/useTreeViewId.selectors.js +0 -9
  245. package/modern/internals/corePlugins/useTreeViewId/useTreeViewId.types.d.ts +0 -20
  246. package/modern/internals/corePlugins/useTreeViewId/useTreeViewId.types.js +0 -1
  247. package/modern/internals/corePlugins/useTreeViewId/useTreeViewId.utils.d.ts +0 -21
  248. package/modern/internals/corePlugins/useTreeViewId/useTreeViewId.utils.js +0 -26
  249. package/modern/internals/corePlugins/useTreeViewInstanceEvents/index.d.ts +0 -2
  250. package/modern/internals/corePlugins/useTreeViewInstanceEvents/index.js +0 -1
  251. package/modern/internals/corePlugins/useTreeViewInstanceEvents/useTreeViewInstanceEvents.d.ts +0 -3
  252. package/modern/internals/corePlugins/useTreeViewInstanceEvents/useTreeViewInstanceEvents.js +0 -29
  253. package/modern/internals/corePlugins/useTreeViewInstanceEvents/useTreeViewInstanceEvents.types.d.ts +0 -22
  254. package/modern/internals/corePlugins/useTreeViewInstanceEvents/useTreeViewInstanceEvents.types.js +0 -1
  255. package/modern/internals/corePlugins/useTreeViewOptionalPlugins/index.d.ts +0 -2
  256. package/modern/internals/corePlugins/useTreeViewOptionalPlugins/index.js +0 -1
  257. package/modern/internals/corePlugins/useTreeViewOptionalPlugins/useTreeViewOptionalPlugins.d.ts +0 -3
  258. package/modern/internals/corePlugins/useTreeViewOptionalPlugins/useTreeViewOptionalPlugins.js +0 -12
  259. package/modern/internals/corePlugins/useTreeViewOptionalPlugins/useTreeViewOptionalPlugins.types.d.ts +0 -8
  260. package/modern/internals/corePlugins/useTreeViewOptionalPlugins/useTreeViewOptionalPlugins.types.js +0 -1
  261. package/modern/internals/hooks/useInstanceEventHandler.d.ts +0 -15
  262. package/modern/internals/hooks/useInstanceEventHandler.js +0 -77
  263. package/modern/internals/hooks/useLazyRef.d.ts +0 -1
  264. package/modern/internals/hooks/useLazyRef.js +0 -1
  265. package/modern/internals/hooks/useOnMount.d.ts +0 -1
  266. package/modern/internals/hooks/useOnMount.js +0 -1
  267. package/modern/internals/hooks/useSelector.d.ts +0 -4
  268. package/modern/internals/hooks/useSelector.js +0 -9
  269. package/modern/internals/hooks/useTimeout.d.ts +0 -1
  270. package/modern/internals/hooks/useTimeout.js +0 -1
  271. package/modern/internals/index.d.ts +0 -34
  272. package/modern/internals/index.js +0 -24
  273. package/modern/internals/models/events.d.ts +0 -9
  274. package/modern/internals/models/events.js +0 -1
  275. package/modern/internals/models/helpers.d.ts +0 -7
  276. package/modern/internals/models/helpers.js +0 -1
  277. package/modern/internals/models/index.d.ts +0 -4
  278. package/modern/internals/models/index.js +0 -4
  279. package/modern/internals/models/itemPlugin.d.ts +0 -43
  280. package/modern/internals/models/itemPlugin.js +0 -1
  281. package/modern/internals/models/plugin.d.ts +0 -151
  282. package/modern/internals/models/plugin.js +0 -1
  283. package/modern/internals/models/treeView.d.ts +0 -32
  284. package/modern/internals/models/treeView.js +0 -1
  285. package/modern/internals/plugins/useTreeViewExpansion/index.d.ts +0 -2
  286. package/modern/internals/plugins/useTreeViewExpansion/index.js +0 -1
  287. package/modern/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.d.ts +0 -3
  288. package/modern/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.js +0 -134
  289. package/modern/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.selectors.d.ts +0 -184
  290. package/modern/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.selectors.js +0 -24
  291. package/modern/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.types.d.ts +0 -102
  292. package/modern/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.types.js +0 -1
  293. package/modern/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.utils.d.ts +0 -7
  294. package/modern/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.utils.js +0 -19
  295. package/modern/internals/plugins/useTreeViewFocus/index.d.ts +0 -2
  296. package/modern/internals/plugins/useTreeViewFocus/index.js +0 -1
  297. package/modern/internals/plugins/useTreeViewFocus/useTreeViewFocus.d.ts +0 -3
  298. package/modern/internals/plugins/useTreeViewFocus/useTreeViewFocus.js +0 -135
  299. package/modern/internals/plugins/useTreeViewFocus/useTreeViewFocus.selectors.d.ts +0 -182
  300. package/modern/internals/plugins/useTreeViewFocus/useTreeViewFocus.selectors.js +0 -34
  301. package/modern/internals/plugins/useTreeViewFocus/useTreeViewFocus.types.d.ts +0 -45
  302. package/modern/internals/plugins/useTreeViewFocus/useTreeViewFocus.types.js +0 -1
  303. package/modern/internals/plugins/useTreeViewIcons/index.d.ts +0 -2
  304. package/modern/internals/plugins/useTreeViewIcons/index.js +0 -1
  305. package/modern/internals/plugins/useTreeViewIcons/useTreeViewIcons.d.ts +0 -3
  306. package/modern/internals/plugins/useTreeViewIcons/useTreeViewIcons.js +0 -24
  307. package/modern/internals/plugins/useTreeViewIcons/useTreeViewIcons.types.d.ts +0 -42
  308. package/modern/internals/plugins/useTreeViewIcons/useTreeViewIcons.types.js +0 -1
  309. package/modern/internals/plugins/useTreeViewItemCustomization/index.d.ts +0 -2
  310. package/modern/internals/plugins/useTreeViewItemCustomization/index.js +0 -1
  311. package/modern/internals/plugins/useTreeViewItemCustomization/useTreeViewItemCustomization.d.ts +0 -3
  312. package/modern/internals/plugins/useTreeViewItemCustomization/useTreeViewItemCustomization.js +0 -24
  313. package/modern/internals/plugins/useTreeViewItemCustomization/useTreeViewItemCustomization.types.d.ts +0 -42
  314. package/modern/internals/plugins/useTreeViewItemCustomization/useTreeViewItemCustomization.types.js +0 -1
  315. package/modern/internals/plugins/useTreeViewItems/index.d.ts +0 -3
  316. package/modern/internals/plugins/useTreeViewItems/index.js +0 -2
  317. package/modern/internals/plugins/useTreeViewItems/useTreeViewItems.d.ts +0 -3
  318. package/modern/internals/plugins/useTreeViewItems/useTreeViewItems.js +0 -325
  319. package/modern/internals/plugins/useTreeViewItems/useTreeViewItems.selectors.d.ts +0 -1058
  320. package/modern/internals/plugins/useTreeViewItems/useTreeViewItems.selectors.js +0 -113
  321. package/modern/internals/plugins/useTreeViewItems/useTreeViewItems.types.d.ts +0 -205
  322. package/modern/internals/plugins/useTreeViewItems/useTreeViewItems.types.js +0 -1
  323. package/modern/internals/plugins/useTreeViewItems/useTreeViewItems.utils.d.ts +0 -4
  324. package/modern/internals/plugins/useTreeViewItems/useTreeViewItems.utils.js +0 -8
  325. package/modern/internals/plugins/useTreeViewJSXItems/index.d.ts +0 -2
  326. package/modern/internals/plugins/useTreeViewJSXItems/index.js +0 -1
  327. package/modern/internals/plugins/useTreeViewJSXItems/useTreeViewJSXItems.d.ts +0 -3
  328. package/modern/internals/plugins/useTreeViewJSXItems/useTreeViewJSXItems.js +0 -183
  329. package/modern/internals/plugins/useTreeViewJSXItems/useTreeViewJSXItems.types.d.ts +0 -35
  330. package/modern/internals/plugins/useTreeViewJSXItems/useTreeViewJSXItems.types.js +0 -1
  331. package/modern/internals/plugins/useTreeViewKeyboardNavigation/index.d.ts +0 -2
  332. package/modern/internals/plugins/useTreeViewKeyboardNavigation/index.js +0 -1
  333. package/modern/internals/plugins/useTreeViewKeyboardNavigation/useTreeViewKeyboardNavigation.d.ts +0 -3
  334. package/modern/internals/plugins/useTreeViewKeyboardNavigation/useTreeViewKeyboardNavigation.js +0 -273
  335. package/modern/internals/plugins/useTreeViewKeyboardNavigation/useTreeViewKeyboardNavigation.types.d.ts +0 -30
  336. package/modern/internals/plugins/useTreeViewKeyboardNavigation/useTreeViewKeyboardNavigation.types.js +0 -1
  337. package/modern/internals/plugins/useTreeViewLabel/index.d.ts +0 -2
  338. package/modern/internals/plugins/useTreeViewLabel/index.js +0 -1
  339. package/modern/internals/plugins/useTreeViewLabel/useTreeViewLabel.d.ts +0 -3
  340. package/modern/internals/plugins/useTreeViewLabel/useTreeViewLabel.itemPlugin.d.ts +0 -2
  341. package/modern/internals/plugins/useTreeViewLabel/useTreeViewLabel.itemPlugin.js +0 -72
  342. package/modern/internals/plugins/useTreeViewLabel/useTreeViewLabel.js +0 -73
  343. package/modern/internals/plugins/useTreeViewLabel/useTreeViewLabel.selectors.d.ts +0 -68
  344. package/modern/internals/plugins/useTreeViewLabel/useTreeViewLabel.selectors.js +0 -24
  345. package/modern/internals/plugins/useTreeViewLabel/useTreeViewLabel.types.d.ts +0 -60
  346. package/modern/internals/plugins/useTreeViewLabel/useTreeViewLabel.types.js +0 -1
  347. package/modern/internals/plugins/useTreeViewLazyLoading/index.d.ts +0 -1
  348. package/modern/internals/plugins/useTreeViewLazyLoading/index.js +0 -1
  349. package/modern/internals/plugins/useTreeViewLazyLoading/useTreeViewLazyLoading.selectors.d.ts +0 -247
  350. package/modern/internals/plugins/useTreeViewLazyLoading/useTreeViewLazyLoading.selectors.js +0 -27
  351. package/modern/internals/plugins/useTreeViewLazyLoading/useTreeViewLazyLoading.types.d.ts +0 -82
  352. package/modern/internals/plugins/useTreeViewLazyLoading/useTreeViewLazyLoading.types.js +0 -1
  353. package/modern/internals/plugins/useTreeViewSelection/index.d.ts +0 -2
  354. package/modern/internals/plugins/useTreeViewSelection/index.js +0 -1
  355. package/modern/internals/plugins/useTreeViewSelection/useTreeViewSelection.d.ts +0 -3
  356. package/modern/internals/plugins/useTreeViewSelection/useTreeViewSelection.itemPlugin.d.ts +0 -2
  357. package/modern/internals/plugins/useTreeViewSelection/useTreeViewSelection.itemPlugin.js +0 -80
  358. package/modern/internals/plugins/useTreeViewSelection/useTreeViewSelection.js +0 -234
  359. package/modern/internals/plugins/useTreeViewSelection/useTreeViewSelection.selectors.d.ts +0 -363
  360. package/modern/internals/plugins/useTreeViewSelection/useTreeViewSelection.selectors.js +0 -46
  361. package/modern/internals/plugins/useTreeViewSelection/useTreeViewSelection.types.d.ts +0 -145
  362. package/modern/internals/plugins/useTreeViewSelection/useTreeViewSelection.types.js +0 -1
  363. package/modern/internals/plugins/useTreeViewSelection/useTreeViewSelection.utils.d.ts +0 -38
  364. package/modern/internals/plugins/useTreeViewSelection/useTreeViewSelection.utils.js +0 -126
  365. package/modern/internals/useTreeView/extractPluginParamsFromProps.d.ts +0 -22
  366. package/modern/internals/useTreeView/extractPluginParamsFromProps.js +0 -46
  367. package/modern/internals/useTreeView/index.d.ts +0 -1
  368. package/modern/internals/useTreeView/index.js +0 -1
  369. package/modern/internals/useTreeView/useTreeView.d.ts +0 -9
  370. package/modern/internals/useTreeView/useTreeView.js +0 -114
  371. package/modern/internals/useTreeView/useTreeView.types.d.ts +0 -23
  372. package/modern/internals/useTreeView/useTreeView.types.js +0 -1
  373. package/modern/internals/useTreeView/useTreeViewBuildContext.d.ts +0 -18
  374. package/modern/internals/useTreeView/useTreeViewBuildContext.js +0 -101
  375. package/modern/internals/useTreeView/useTreeViewModels.d.ts +0 -7
  376. package/modern/internals/useTreeView/useTreeViewModels.js +0 -62
  377. package/modern/internals/useTreeView/useTreeViewPlugins.d.ts +0 -0
  378. package/modern/internals/useTreeView/useTreeViewPlugins.js +0 -0
  379. package/modern/internals/utils/TreeViewStore.d.ts +0 -12
  380. package/modern/internals/utils/TreeViewStore.js +0 -24
  381. package/modern/internals/utils/cleanupTracking/CleanupTracking.d.ts +0 -9
  382. package/modern/internals/utils/cleanupTracking/CleanupTracking.js +0 -1
  383. package/modern/internals/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.d.ts +0 -7
  384. package/modern/internals/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.js +0 -18
  385. package/modern/internals/utils/cleanupTracking/TimerBasedCleanupTracking.d.ts +0 -9
  386. package/modern/internals/utils/cleanupTracking/TimerBasedCleanupTracking.js +0 -38
  387. package/modern/internals/utils/plugins.d.ts +0 -2
  388. package/modern/internals/utils/plugins.js +0 -4
  389. package/modern/internals/utils/publishTreeViewEvent.d.ts +0 -5
  390. package/modern/internals/utils/publishTreeViewEvent.js +0 -3
  391. package/modern/internals/utils/selectors.d.ts +0 -16
  392. package/modern/internals/utils/selectors.js +0 -46
  393. package/modern/internals/utils/tree.d.ts +0 -32
  394. package/modern/internals/utils/tree.js +0 -203
  395. package/modern/internals/utils/utils.d.ts +0 -2
  396. package/modern/internals/utils/utils.js +0 -17
  397. package/modern/internals/zero-styled/index.d.ts +0 -3
  398. package/modern/internals/zero-styled/index.js +0 -7
  399. package/modern/models/events.d.ts +0 -4
  400. package/modern/models/events.js +0 -1
  401. package/modern/models/index.d.ts +0 -3
  402. package/modern/models/index.js +0 -5
  403. package/modern/models/items.d.ts +0 -13
  404. package/modern/models/items.js +0 -1
  405. package/modern/package.json +0 -1
  406. package/modern/themeAugmentation/components.d.ts +0 -21
  407. package/modern/themeAugmentation/index.d.ts +0 -3
  408. package/modern/themeAugmentation/index.js +0 -0
  409. package/modern/themeAugmentation/overrides.d.ts +0 -16
  410. package/modern/themeAugmentation/props.d.ts +0 -14
  411. package/modern/useTreeItem/index.d.ts +0 -2
  412. package/modern/useTreeItem/index.js +0 -1
  413. package/modern/useTreeItem/useTreeItem.d.ts +0 -2
  414. package/modern/useTreeItem/useTreeItem.js +0 -282
  415. package/modern/useTreeItem/useTreeItem.types.d.ts +0 -201
  416. package/modern/useTreeItem/useTreeItem.types.js +0 -1
  417. package/modern/utils/cache.d.ts +0 -38
  418. package/modern/utils/cache.js +0 -31
  419. package/modern/utils/index.d.ts +0 -1
  420. package/modern/utils/index.js +0 -1
  421. package/tsconfig.build.tsbuildinfo +0 -1
package/CHANGELOG.md CHANGED
@@ -5,6 +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
9
+
10
+ _Apr 17, 2025_
11
+
12
+ We're excited to [announce the first v8 stable release](https://mui.com/blog/mui-x-v8/)! 🎉🚀
13
+
14
+ This is now the officially supported major version, where we'll keep rolling out new features, bug fixes, and improvements.
15
+ Migration guides are available with a complete list of the breaking changes:
16
+
17
+ - [Data Grid](https://mui.com/x/migration/migration-data-grid-v7/)
18
+ - [Date and Time Pickers](https://mui.com/x/migration/migration-pickers-v7/)
19
+ - [Tree View](https://mui.com/x/migration/migration-tree-view-v7/)
20
+ - [Charts](https://mui.com/x/migration/migration-charts-v7/)
21
+ - [Material UI v7](https://mui.com/material-ui/migration/upgrade-to-v7/)
22
+
23
+ Here are the highlights from alpha and beta releases included in this stable release:
24
+
25
+ - ⚛️ React 19 support.
26
+ - 🎁 `@mui/material@7` support – see the [Material UI v7 upgrade guide](https://mui.com/material-ui/migration/upgrade-to-v7/).
27
+
28
+ - 🔄 [Pivoting](https://mui.com/x/react-data-grid/pivoting/).
29
+ - 🤖 [AI Assistant](https://mui.com/x/react-data-grid/ai-assistant/).
30
+ - 🛠️ New and improved Data Grid [Toolbar component](https://mui.com/x/react-data-grid/components/toolbar/).
31
+ - 📦 Data Grid [data source](https://mui.com/x/react-data-grid/server-side-data/) is now available in the Community plan.
32
+ - 🚫 Add ["No columns" overlay](https://mui.com/x/react-data-grid/overlays/#no-columns-overlay) to Data Grid.
33
+ - 🍬 Improved design for Data Grid [Header filters](https://mui.com/x/react-data-grid/filtering/header-filters/).
34
+ - 🔄 Add Data Grid [Scroll restoration](https://mui.com/x/react-data-grid/scrolling/#scroll-restoration).
35
+ - 💫 Support [aggregation with server-side data](https://mui.com/x/react-data-grid/server-side-data/aggregation/).
36
+ - 🎁 Support [server-side lazy loading](https://mui.com/x/react-data-grid/server-side-data/lazy-loading/) on the Data Grid.
37
+ - 📝 Support [editing with server-side Data Source](https://mui.com/x/react-data-grid/server-side-data/#updating-data).
38
+ - 🎯 Improved [data caching](https://mui.com/x/react-data-grid/server-side-data/#data-caching).
39
+ - 🏎️ Improved Data Grid aggregation, Excel export serialization, mount, resize and scrolling performance.
40
+ - 🎨 Improved Data Grid theming and add default background color.
41
+
42
+ - 📊 New Pro chart: [Funnel](https://mui.com/x/react-charts/funnel/).
43
+ - 📊 New Community chart: [Radar](https://mui.com/x/react-charts/radar/) is available in preview for testing.
44
+ - 📊 Charts legend is now an HTML element which can be styled more easily.
45
+ - 📊 [Gauge charts](https://mui.com/x/react-charts/gauge/) animation.
46
+ - 📊 Create [custom HTML components](https://mui.com/x/react-charts/components/#html-components) using chart data.
47
+ - 📊 Refactor Charts [Tooltip customization](https://mui.com/x/react-charts/tooltip/#overriding-content).
48
+ - 📊 Improved Charts [composition](https://mui.com/x/react-charts/composition/#overview).
49
+ - 📊 Charts support server-side rendering under [some conditions](https://mui.com/x/react-charts/getting-started/#server-side-rendering).
50
+ - 📊 Add a new API to support multiple axes (decouple `margin` and `axis-size`).
51
+ - 🚫 Removed `react-spring` dependency from `@mui/x-charts`.
52
+
53
+ - 🚀 New [Time Range Picker](https://mui.com/x/react-date-pickers/time-range-picker/) component.
54
+
55
+ - 🔁 Support [automatic parents and children selection](https://mui.com/x/react-tree-view/rich-tree-view/selection/#automatic-parents-and-children-selection) for the Rich Tree View components.
56
+ - 🎛️ New [customization APIs](https://mui.com/x/migration/migration-tree-view-v7/#new-api-to-customize-the-tree-item) for the Tree Item component.
57
+
58
+ Below are the changes since the last beta release:
59
+
60
+ ### Data Grid
61
+
62
+ #### `@mui/x-data-grid@8.0.0`
63
+
64
+ - [DataGrid] Data source with editing (#16045) @MBilalShafi
65
+ - [DataGrid] Deprecate old toolbar components (#17294) @KenanYusuf
66
+ - [DataGrid] Refactor: add typings to icons (#17291) @romgrk
67
+ - [DataGrid] Prevent scrollbars from showing on top (#17405) @romgrk
68
+ - [l10n] Improve Polish (pl-PL) locale (#17336) (#17396) @sofortdagmbh
69
+ - [l10n] Improve Swedish (sv-SE) locale (#17293) @ptuukkan
70
+
71
+ #### `@mui/x-data-grid-pro@8.0.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
72
+
73
+ Same changes as in `@mui/x-data-grid@8.0.0`, plus:
74
+
75
+ - [DataGridPro] Fix row virtualization not working in list view (#17399) @cherniavskii
76
+
77
+ #### `@mui/x-data-grid-premium@8.0.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
78
+
79
+ Same changes as in `@mui/x-data-grid-pro@8.0.0`, plus:
80
+
81
+ - [DataGridPremium] AI Assistant (#16992) @arminmeh
82
+ - [DataGridPremium] Fix aggregated values sorting (#17326) @cherniavskii
83
+ - [DataGridPremium] Fix cell display with custom renderers in pivot mode (#17323) @cherniavskii
84
+ - [DataGridPremium] Fix stale aggregation results after filtering (#17296) @cherniavskii
85
+ - [DataGridPremium] Pivoting (#9877) @cherniavskii
86
+ - [DataGridPremium] Use `groupingValueGetter` for row grouping on the server (#17376) @cherniavskii
87
+
88
+ ### Date and Time Pickers
89
+
90
+ #### Breaking changes
91
+
92
+ - The view selection process has been updated to make it clear across all Pickers.
93
+ Pickers no longer automatically switch between **date** and **time views** or **start** and **end positions**.
94
+ Moving between views and range positions is achieved using the new "Next" action button.
95
+
96
+ #### `@mui/x-date-pickers@8.0.0`
97
+
98
+ - [fields] Fix the error message when a custom field with an `<input />` but the field expects the accessible DOM structure (#17237) @flaviendelangle
99
+ - [fields] Fix to submit a form on `Enter` press with accessible DOM structure (#17328) @LukasTy
100
+ - [fields] Prevent focusing the field or any section when `disabled=true` (#17215) @flaviendelangle
101
+ - [l10n] Improve Czech (cs-CZ) locale (#17387) @lubka272
102
+ - [l10n] Improve Slovak (sk-SK) locale (#17249) @lubka272
103
+ - [pickers] Fix failing proptypes CI (#17413) @romgrk
104
+ - [pickers] Fix to not process default prevented propagated events (#17312) @LukasTy
105
+ - [pickers] Mark active range position field section with underline (#16938) @LukasTy
106
+ - [pickers] Remove automatic switch between date and time or between range positions (#17166) @flaviendelangle
107
+
108
+ #### `@mui/x-date-pickers-pro@8.0.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
109
+
110
+ Same changes as in `@mui/x-date-pickers@8.0.0`, plus:
111
+
112
+ - [DateTimeRangePicker] Fix focused view behavior (#17313) @LukasTy
113
+
114
+ ### Charts
115
+
116
+ #### `@mui/x-charts@8.0.0`
117
+
118
+ - [charts] Add `slotProps.legend.hidden` to migration docs (#17379) @bernardobelchior
119
+ - [charts] Add labels above bars example (#16860) @bernardobelchior
120
+ - [charts] Add tooltip to the radar (#16950) @alexfauquette
121
+ - [charts] Add uncertainty area to line with forecast demo (#17355) @bernardobelchior
122
+ - [charts] Animate gauge chart (#17304) @bernardobelchior
123
+ - [charts] Convert `AnimationContext` into a plugin (#17299) @bernardobelchior
124
+ - [charts] Export 'series' class as part of `barElementClasses` (#17273) @10tacion
125
+ - [charts] Expose axes types (#17309) @bernardobelchior
126
+ - [charts] Expose higher level `useAnimate` hook (#17162) @bernardobelchior
127
+ - [charts] Fix axis types not narrowing (#17321) @bernardobelchior
128
+ - [charts] Fix bar chart with partial data (#17290) @alexfauquette
129
+ - [charts] Fix `useAnimate` test flakiness (#17372) @bernardobelchior
130
+ - [charts] Radar design refinement (#17165) @alexfauquette
131
+ - [charts] Remove unused code (#17310) @bernardobelchior
132
+ - [charts] Remove unused files (#17242) @JCQuintas
133
+ - [charts] Use `useEventCallback` to memoize `onZoomChange` without triggering a re-render (#17233) @JCQuintas
134
+ - [charts] Document series class name (#17362) @bernardobelchior
135
+ - [charts] Add default plugins in `ChartDataProvider` (#17403) @bernardobelchior
136
+ - [charts] Fix chart direction in docs (#17419) @bernardobelchior
137
+
138
+ #### `@mui/x-charts-pro@8.0.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
139
+
140
+ Same changes as in `@mui/x-charts@8.0.0`, plus:
141
+
142
+ - [charts-pro] Update zoom using `requestAnimationFrame` (#17137) @JCQuintas
143
+
144
+ ### Tree View
145
+
146
+ #### `@mui/x-tree-view@8.0.0`
147
+
148
+ - [TreeView] Add React Compiler linting rules (#16357) @flaviendelangle
149
+
150
+ #### `@mui/x-tree-view-pro@8.0.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
151
+
152
+ Same changes as in `@mui/x-tree-view@8.0.0`.
153
+
154
+ ### Docs
155
+
156
+ - [docs] Add intro section for Telemetry (#17244) @prakhargupta1
157
+ - [docs] Add migration guide for the picker's `ownerState` changes (#17151) @flaviendelangle
158
+ - [docs] Add What's new section for MUI X v8 (#17397) @joserodolfofreitas
159
+ - [docs] Fix ESM guide (#17280) @oliviertassinari
160
+ - [docs] Fix Vale errors (#17281) @oliviertassinari
161
+ - [docs] Fix country columns throwing on grouping (#17315) @cherniavskii
162
+ - [docs] Fix paths in `ResponsiveChartContainer` migration guide (#17364) @MonstraG
163
+ - [docs] Mention priority support on MUI X docs (#16467) @prakhargupta1
164
+ - [docs] Match title side nav @oliviertassinari
165
+ - [docs] Fix incorrect mention of PDF export (#17277) @oliviertassinari
166
+ - [docs] Fix row spanning lab icon (#17278) @oliviertassinari
167
+ - [docs] Fix header Sentence case consistency (#17274) @oliviertassinari
168
+ - [docs] Flag experimental API (#17279) @oliviertassinari
169
+ - [docs] Fix some 301 redirections @oliviertassinari
170
+ - [docs] Update supported versions table (#17287) @joserodolfofreitas
171
+
172
+ ### Core
173
+
174
+ - [core] Always use the correct babel runtime (#17241) @alexfauquette
175
+ - [core] Document `TelemetryContextType` (#17282) @oliviertassinari
176
+ - [core] Fix proptypes (#17378) @cherniavskii
177
+ - [core] Remove modern bundles (#17359) @LukasTy
178
+ - [core] Setup testing to work with CSS imports (#17214) @romgrk
179
+ - [core] Testing setup fixes & lints (#17356) @romgrk
180
+ - [core] Simplify the way `__RELEASE_INFO__` is managed (#17416) @LukasTy
181
+ - [code-infra] Align build script with core to handle sideEffects (#17370) @Janpot
182
+ - [code-infra] CI optimization: re-use ffmpeg (#17333) @romgrk
183
+ - [code-infra] Charts `vitest` changes (#17247) @JCQuintas
184
+ - [code-infra] Further datagrid changes for `vitest` (#17251) @JCQuintas
185
+ - [code-infra] Prepare argos script call for required arg (#17371) @Janpot
186
+ - [code-infra] Remove more `clock=fake` from pickers tests (#17225) @JCQuintas
187
+ - [code-infra] Tentative fix for datagrid flaky test (#17289) @JCQuintas
188
+ - [code-infra] Update MUI Internal and slightly cleanup regressions test setup (#17182) @LukasTy
189
+ - [infra] Update support label from 'priority' to 'unknown' (#17288) @michelengelen
190
+ - [release] Major release preparation (#17319) @michelengelen
191
+ - [test] Fix flaky data source aggregation test (#17307, #17311, #17316) @KenanYusuf @cherniavskii @LukasTy
192
+ - [test] Skip flaky aggregation test (#17391) @MBilalShafi
193
+
194
+ ## 8.0.0-beta.3
195
+
196
+ _Apr 3, 2025_
197
+
198
+ We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
199
+
200
+ - 🚫 Removed `react-spring` as a dependency of `@mui/x-charts`
201
+ - 📦 Data Grid list view feature is now stable
202
+ - 💫 Support title in Data Grid
203
+ - 📚 Documentation improvements
204
+ - 🐞 Bugfixes
205
+
206
+ Team members who have contributed to this release:
207
+ @bernardobelchior, @cherniavskii, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy, @MBilalShafi, @michelengelen, @oliviertassinari, @noraleonte, @romgrk, @alexfauquette.
208
+
209
+ <!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->
210
+
211
+ ### Data Grid
212
+
213
+ #### Breaking changes
214
+
215
+ - The list view feature and its related props are now stable.
216
+
217
+ The `unstable_listColumn` prop has been renamed to `listViewColumn`.
218
+
219
+ The `GridListColDef` type has been renamed to `GridListViewColDef`.
220
+
221
+ ```diff
222
+ -const listViewColDef: GridListColDef = {
223
+ +const listViewColDef: GridListViewColDef = {
224
+ field: 'listColumn',
225
+ renderCell: ListViewCell,
226
+ };
227
+
228
+ <DataGridPro
229
+ - unstable_listView
230
+ - unstable_listColumn={listViewColDef}
231
+ + listView
232
+ + listViewColumn={listViewColDef}
233
+ />
234
+ ```
235
+
236
+ - The `useGridApiEventHandler()` hook has been renamed to `useGridEvent()`.
237
+ - The `useGridApiOptionHandler()` hook has been renamed to `useGridEventPriority()`.
238
+
239
+ #### `@mui/x-data-grid@8.0.0-beta.3`
240
+
241
+ - [DataGrid] Fix "is any of" autocomplete rendering (#17226) @KenanYusuf
242
+ - [DataGrid] Rename `useGridApiEventHandler()` to `useGridEvent()` (#17159) @romgrk
243
+ - [DataGrid] Support adding a label to the grid (#17147) @KenanYusuf
244
+ - [DataGrid] Refactor: remove material typings (#17119) @romgrk
245
+
246
+ #### `@mui/x-data-grid-pro@8.0.0-beta.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
247
+
248
+ Same changes as in `@mui/x-data-grid@8.0.0-beta.3`, plus:
249
+
250
+ - [DataGridPro] Make list view feature stable (#17217) @KenanYusuf
251
+ - [DataGridPro] Always refetch lazy-loading rows (#16827) @MBilalShafi
252
+
253
+ #### `@mui/x-data-grid-premium@8.0.0-beta.3` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')
254
+
255
+ Same changes as in `@mui/x-data-grid-pro@8.0.0-beta.3`.
256
+
257
+ ### Date and Time Pickers
258
+
259
+ #### `@mui/x-date-pickers@8.0.0-beta.3`
260
+
261
+ - [pickers] Add new `nextOrAccept` action bar action (#17037) @flaviendelangle
262
+ - [pickers] Improve the Multi Section Digital Clock scrollbar thickness (#16774) @oliviertassinari
263
+ - [TimePicker] Align the Digital Clock scrollbar thickness (#17203) @LukasTy
264
+
265
+ #### `@mui/x-date-pickers-pro@8.0.0-beta.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
266
+
267
+ Same changes as in `@mui/x-date-pickers@8.0.0-beta.3`.
268
+
269
+ ### Charts
270
+
271
+ #### Breaking changes
272
+
273
+ - Removed `react-spring` as a dependency of `@mui/x-charts`.
274
+ A consequence of this change is that the props of some slots have been changed because the `SpringValue` wrapper has been removed. The affected slots and props are:
275
+
276
+ - the type of the `x`, `y`, `width` and `height` props of the `bar` slot are now `number`;
277
+ - the type of `startAngle`, `endAngle`, `innerRadius`, `outerRadius`, `arcLabelRadius`, `cornerRadius` and `paddingAngle` props of `pieArc` and `pieArcLabel` slot are now `number`.
278
+
279
+ Additionally, the `pieArc` slot now receives a `skipAnimation` prop to configure whether animations should be enabled or disabled.
280
+
281
+ - Tick labels in the y-axis of cartesian charts will now have an ellipsis applied to prevent overflow.
282
+ If your tick labels are being clipped sooner than you would like, you can increase the y-axis size by increasing its width property.
283
+
284
+ - The tooltip DOM structure is modified to improve accessibility. If you relied on it to apply some style or run tests, you might be impacted by this modification.
285
+ - The axis tooltip displays a table per axis with the axis value in a caption.
286
+ - Cells containing the series label and the color mark got merged in a th cell.
287
+
288
+ #### `@mui/x-charts@8.0.0-beta.3`
289
+
290
+ - [charts] Adjust color palettes (#17209) @noraleonte
291
+ - [charts] Allow multiple axes in the tooltip (#17058) @alexfauquette
292
+ - [charts] Improve custom legend docs (#17231) @JCQuintas
293
+ - [charts] Fix crash when item shown in tooltip is unmounted (#17169) @bernardobelchior
294
+ - [charts] Migrate some animations from `react-spring` (#16961) @bernardobelchior
295
+ - [charts] Remove `react-spring` (#17123) @bernardobelchior
296
+ - [charts] Fix y-axis tick label overflow (#16846) @bernardobelchior
297
+
298
+ #### `@mui/x-charts-pro@8.0.0-beta.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
299
+
300
+ Same changes as in `@mui/x-charts@8.0.0-beta.3`.
301
+
302
+ ### Tree View
303
+
304
+ #### `@mui/x-tree-view@8.0.0-beta.3`
305
+
306
+ Internal changes.
307
+
308
+ #### `@mui/x-tree-view-pro@8.0.0-beta.3` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')
309
+
310
+ Same changes as in `@mui/x-tree-view@8.0.0-beta.3`.
311
+
312
+ ### `@mui/x-codemod@8.0.0-beta.3`
313
+
314
+ - [codemod] Add `listView` prop rename codemod (#17220) @MBilalShafi
315
+
316
+ ### Docs
317
+
318
+ - [docs] Add "Usage with Material UI v5/v6" guide (#17164) @cherniavskii
319
+ - [docs] Fix 301 link @oliviertassinari
320
+ - [docs] Fix redirection getting-started (#17200) @oliviertassinari
321
+ - [docs] Sync Stack Overflow docs with reality (#17198) @oliviertassinari
322
+ - [docs] Update Localization Provider JSDoc link (#17207) @LukasTy
323
+
324
+ ### Core
325
+
326
+ - [core] Cleanup `@mui` dependency versions (#17160) @LukasTy
327
+ - [core] Sync scorecards.yml across codebase @oliviertassinari
328
+ - [core] Revert upgrade to React 19.1 (#17206) @bernardobelchior
329
+ - [code-infra] Fix `test:unit` warning (#17224) @JCQuintas
330
+ - [code-infra] Fix pickers failing test after clock=fake removal (#17202) @JCQuintas
331
+ - [code-infra] Remove clock=fake from `describeValidation` (#17150) @JCQuintas
332
+ - [code-infra] Remove clock=fake from `describeValue` (#17199) @JCQuintas
333
+ - [infra] Add write permission for actions in issue status label handler (#17161) @michelengelen
334
+
8
335
  ## 8.0.0-beta.2
9
336
 
10
337
  _Mar 27, 2025_
@@ -184,7 +511,7 @@ _Mar 18, 2025_
184
511
 
185
512
  We'd like to offer a big thanks to the 21 contributors who made this release possible. Here are some highlights ✨:
186
513
 
187
- - 🚀 Add [Time Range Picker](https://next.mui.com/x/react-date-pickers/time-range-picker/) component
514
+ - 🚀 Add [Time Range Picker](https://mui.com/x/react-date-pickers/time-range-picker/) component
188
515
  - 🎁 Add support for `@mui/material` version 7 in all X packages
189
516
  - 🐞 Bugfixes
190
517
  - 🌍 Improve Chinese (zh-CN), (zh-HK), (zh-TW), Czech (cs-CZ), Korean (ko-KR) and Slovak (sk-Sk) locales on the Data Grid
@@ -209,27 +536,27 @@ Below are the highlights of the alpha releases leading up to this beta release:
209
536
 
210
537
  - ⚛️ React 19 support.
211
538
 
212
- - 🛠️ New and improved Data Grid [Toolbar component](https://next.mui.com/x/react-data-grid/components/toolbar/).
213
- - 📦 Data Grid [data source](https://next.mui.com/x/react-data-grid/server-side-data/) is now available in the Community plan.
214
- - 🚫 Add ["No columns" overlay](https://next.mui.com/x/react-data-grid/overlays/#no-columns-overlay) to Data Grid.
215
- - 🍬 Improved design for Data Grid [Header filters](https://next.mui.com/x/react-data-grid/filtering/header-filters/).
216
- - 🔄 Add Data Grid [Scroll restoration](https://next.mui.com/x/react-data-grid/scrolling/#scroll-restoration).
217
- - 💫 Support [aggregation with server-side data](https://next.mui.com/x/react-data-grid/server-side-data/aggregation/).
218
- - 🎁 Support [Server-side lazy loading](https://next.mui.com/x/react-data-grid/server-side-data/lazy-loading/) on the Data Grid.
219
- - 🎯 Improved [data caching](https://next.mui.com/x/react-data-grid/server-side-data/#data-caching).
539
+ - 🛠️ New and improved Data Grid [Toolbar component](https://mui.com/x/react-data-grid/components/toolbar/).
540
+ - 📦 Data Grid [data source](https://mui.com/x/react-data-grid/server-side-data/) is now available in the Community plan.
541
+ - 🚫 Add ["No columns" overlay](https://mui.com/x/react-data-grid/overlays/#no-columns-overlay) to Data Grid.
542
+ - 🍬 Improved design for Data Grid [Header filters](https://mui.com/x/react-data-grid/filtering/header-filters/).
543
+ - 🔄 Add Data Grid [Scroll restoration](https://mui.com/x/react-data-grid/scrolling/#scroll-restoration).
544
+ - 💫 Support [aggregation with server-side data](https://mui.com/x/react-data-grid/server-side-data/aggregation/).
545
+ - 🎁 Support [Server-side lazy loading](https://mui.com/x/react-data-grid/server-side-data/lazy-loading/) on the Data Grid.
546
+ - 🎯 Improved [data caching](https://mui.com/x/react-data-grid/server-side-data/#data-caching).
220
547
  - 🏎️ Improve Data Grid aggregation, Excel export serialization, mount, resize and scrolling performance.
221
548
  - 🎨 Improve Data Grid theming and add default background color.
222
549
 
223
- - 📊 New Pro chart: [Funnel](https://next.mui.com/x/react-charts/funnel/).
224
- - 📊 New Community chart: [Radar](https://next.mui.com/x/react-charts/radar/) is available in preview for testing.
550
+ - 📊 New Pro chart: [Funnel](https://mui.com/x/react-charts/funnel/).
551
+ - 📊 New Community chart: [Radar](https://mui.com/x/react-charts/radar/) is available in preview for testing.
225
552
  - 📊 Charts legend is now an HTML element which can be styled more easily.
226
- - 📊 Create [custom HTML components](https://next.mui.com/x/react-charts/components/#html-components) using chart data.
227
- - 📊 Refactor Charts [Tooltip customization](https://next.mui.com/x/react-charts/tooltip/#overriding-content).
228
- - 📊 Improve Charts [composition](https://next.mui.com/x/react-charts/composition/#overview).
229
- - 📊 Charts support server-side rendering under [some conditions](https://next.mui.com/x/react-charts/getting-started/#server-side-rendering).
553
+ - 📊 Create [custom HTML components](https://mui.com/x/react-charts/components/#html-components) using chart data.
554
+ - 📊 Refactor Charts [Tooltip customization](https://mui.com/x/react-charts/tooltip/#overriding-content).
555
+ - 📊 Improve Charts [composition](https://mui.com/x/react-charts/composition/#overview).
556
+ - 📊 Charts support server-side rendering under [some conditions](https://mui.com/x/react-charts/getting-started/#server-side-rendering).
230
557
  - 📊 Add a new API to support multiple axes (decouple `margin` and `axis-size`)
231
558
 
232
- - 🔁 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.
559
+ - 🔁 Support [automatic parents and children selection](https://mui.com/x/react-tree-view/rich-tree-view/selection/#automatic-parents-and-children-selection) for the Rich Tree View components.
233
560
 
234
561
  ### Data Grid
235
562
 
@@ -271,8 +598,8 @@ Same changes as in `@mui/x-data-grid-pro@8.0.0-beta.0`, plus:
271
598
  #### Breaking changes
272
599
 
273
600
  - The `useClearableField` hook has been removed.
274
- The custom field component now receives the `clearable` and `onClear` props — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#useclearablefield).
275
- - The `ExportedUseClearableFieldProps`, `UseClearableFieldSlots`, `UseClearableFieldSlotProps`, and `UseClearableFieldResponse` types have been removed — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#removed-types).
601
+ The custom field component now receives the `clearable` and `onClear` props — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#useclearablefield).
602
+ - The `ExportedUseClearableFieldProps`, `UseClearableFieldSlots`, `UseClearableFieldSlotProps`, and `UseClearableFieldResponse` types have been removed — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#removed-types).
276
603
 
277
604
  #### `@mui/x-date-pickers@8.0.0-beta.0`
278
605
 
@@ -367,7 +694,7 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
367
694
  - 🚀📊 New Pro Chart: It is now possible to create Funnel charts—perfect for visualizing conversions, sales pipelines and more!
368
695
  <img width="418" alt="Screenshot 2025-01-31 at 12 22 31" src="https://github.com/user-attachments/assets/8cd26821-5f11-46bf-a9bb-34d212880a47" />
369
696
  - 🎁 The first iteration of the radar chart is available. Features and refinements will be added in the coming weeks.
370
- - 🛠️ New and improved [Toolbar component](https://next.mui.com/x/react-data-grid/components/toolbar/) for the data grid
697
+ - 🛠️ New and improved [Toolbar component](https://mui.com/x/react-data-grid/components/toolbar/) for the data grid
371
698
  - 🐞 Bugfixes
372
699
 
373
700
  Special thanks go out to the community member for their valuable contributions:
@@ -382,7 +709,7 @@ Following are all team members who have contributed to this release:
382
709
 
383
710
  #### Breaking changes
384
711
 
385
- - 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.
712
+ - 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://mui.com/x/react-data-grid/components/toolbar/#settings-menu) for an example.
386
713
  - The quick filter is now shown in the toolbar by default. Use `slotProps={{ toolbar: { showQuickFilter: false } }}` to hide it.
387
714
  - The `<GridSaveAltIcon />` icon is not exported anymore. Import `SaveAlt` from `@mui/icons-material` instead.
388
715
 
@@ -407,7 +734,7 @@ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.14`.
407
734
  #### Breaking changes
408
735
 
409
736
  - All Date Time Picker variants now use Digital Clock for time editing.
410
- - 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).
737
+ - Stop passing invalid date to `onChange` when the date is partially filled — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#treat-partially-filled-date-as-null-in-onchange).
411
738
 
412
739
  #### `@mui/x-date-pickers@8.0.0-alpha.14`
413
740
 
@@ -794,9 +1121,9 @@ _Feb 17, 2025_
794
1121
 
795
1122
  We'd like to offer a big thanks to the 16 contributors who made this release possible. Here are some highlights ✨:
796
1123
 
797
- - 📦 Data Grid [data source](https://next.mui.com/x/react-data-grid/server-side-data/) is now available in the Community plan
1124
+ - 📦 Data Grid [data source](https://mui.com/x/react-data-grid/server-side-data/) is now available in the Community plan
798
1125
  - ⚡ Improve Data Grid Excel export serialization performance
799
- - 🚫 Add ["No columns" overlay](https://next.mui.com/x/react-data-grid/overlays/#no-columns-overlay) to Data Grid
1126
+ - 🚫 Add ["No columns" overlay](https://mui.com/x/react-data-grid/overlays/#no-columns-overlay) to Data Grid
800
1127
  - 🌍 Improve Polish (pl-PL) and Ukrainian (uk-UA) locales on the Data Grid
801
1128
  - 🐞 Bugfixes
802
1129
 
@@ -897,7 +1224,7 @@ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.12`, plus:
897
1224
 
898
1225
  #### Breaking changes
899
1226
 
900
- - 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-✅)
1227
+ - The `useSeries` hook family has been stabilized and renamed accordingly — [Learn more](https://mui.com/x/migration/migration-charts-v7/#stabilize-useseries-and-usexxxseries-hooks-✅)
901
1228
 
902
1229
  #### `@mui/x-charts@8.0.0-alpha.12`
903
1230
 
@@ -1139,8 +1466,8 @@ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.10`.
1139
1466
 
1140
1467
  #### Breaking changes
1141
1468
 
1142
- - 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)
1143
- - 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)
1469
+ - 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://mui.com/x/migration/migration-pickers-v7/#slot-field)
1470
+ - The `MuiPickersPopper` theme entry have been renamed `MuiPickerPopper` and some of its props have been removed — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#muipickerspopper)
1144
1471
 
1145
1472
  #### `@mui/x-date-pickers@8.0.0-alpha.10`
1146
1473
 
@@ -1293,12 +1620,12 @@ _Jan 16, 2025_
1293
1620
 
1294
1621
  We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
1295
1622
 
1296
- - 🍬 Improved design for Data Grid [Header filters](https://next.mui.com/x/react-data-grid/filtering/header-filters/)
1623
+ - 🍬 Improved design for Data Grid [Header filters](https://mui.com/x/react-data-grid/filtering/header-filters/)
1297
1624
 
1298
1625
  <img width="100%" alt="Data Grid Header filters" src="https://github.com/user-attachments/assets/74a50cd9-7a55-41fc-a2b8-f8a0d5b9120e" />
1299
1626
 
1300
- - 🔄 Data Grid [Scroll restoration](https://next.mui.com/x/react-data-grid/scrolling/#scroll-restoration)
1301
- - 📊 Charts support server-side rendering under [some conditions](https://next.mui.com/x/react-charts/getting-started/#server-side-rendering)
1627
+ - 🔄 Data Grid [Scroll restoration](https://mui.com/x/react-data-grid/scrolling/#scroll-restoration)
1628
+ - 📊 Charts support server-side rendering under [some conditions](https://mui.com/x/react-charts/getting-started/#server-side-rendering)
1302
1629
  - 🐞 Bugfixes
1303
1630
 
1304
1631
  Special thanks go out to the community contributors who have helped make this release possible:
@@ -1336,9 +1663,9 @@ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.8`.
1336
1663
 
1337
1664
  #### Breaking changes
1338
1665
 
1339
- - 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)
1340
- - 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)
1341
- - 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)
1666
+ - The field is now editable if rendered inside a mobile Picker — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#field-editing-on-mobile-pickers)
1667
+ - The `useMultiInputDateRangeField`, `useMultiInputTimeRangeField`, and `useMultiInputDateTimeRangeField` hooks have been removed in favor of the new `useMultiInputRangeField` hook — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#usemultiinputdaterangefield)
1668
+ - 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://mui.com/x/migration/migration-pickers-v7/#slot-field)
1342
1669
 
1343
1670
  #### `@mui/x-date-pickers@8.0.0-alpha.8`
1344
1671
 
@@ -1450,15 +1777,15 @@ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.7`, plus:
1450
1777
 
1451
1778
  #### Breaking changes
1452
1779
 
1453
- - 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)
1454
- - 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)
1455
- - 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).
1456
- - 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).
1457
- - 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).
1458
- - The `PickerShortcutChangeImportance` type has been renamed `PickerChangeImportance` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#renamed-variables-and-types).
1459
- - 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).
1460
- - 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).
1461
- - 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).
1780
+ - 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://mui.com/x/migration/migration-pickers-v7/#✅-rename-date-fns-adapter-imports)
1781
+ - Update default `closeOnSelect` and Action Bar `actions` values - [Learn more](https://mui.com/x/migration/migration-pickers-v7/#update-default-closeonselect-and-action-bar-actions-values)
1782
+ - The component passed to the `layout` slot no longer receives the `value`, `onChange` and `onSelectShortcut` props — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#slot-layout).
1783
+ - The component passed to the `toolbar` slot no longer receives the `value`, `onChange` and `isLandscape` props — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#slot-toolbar).
1784
+ - The component passed to the `shortcuts` slot no longer receives the `onChange`, `isValid` and `isLandscape` props — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#slot-shortcuts).
1785
+ - The `PickerShortcutChangeImportance` type has been renamed `PickerChangeImportance` — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#renamed-variables-and-types).
1786
+ - The component passed to the `layout` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#slot-layout).
1787
+ - The component passed to the `toolbar` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#slot-toolbar).
1788
+ - The component passed to the `tabs` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#slot-tabs).
1462
1789
 
1463
1790
  #### `@mui/x-date-pickers@8.0.0-alpha.7`
1464
1791
 
@@ -1485,11 +1812,11 @@ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.7`.
1485
1812
 
1486
1813
  #### Breaking changes
1487
1814
 
1488
- - Removed `DefaultChartsLegend` component, since it is now easier to create custom legends — [Learn more](https://next.mui.com/x/react-charts/components/#html-components).
1815
+ - Removed `DefaultChartsLegend` component, since it is now easier to create custom legends — [Learn more](https://mui.com/x/react-charts/components/#html-components).
1489
1816
  - The default legend is now an HTML element and can be styled more easily.
1490
1817
  - 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.
1491
- - `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-✅).
1492
- - 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).
1818
+ - `slotProps.legend.direction` now accepts `'horizontal' | 'vertical'` instead of `'row' | 'column'` — [Learn more](https://mui.com/x/migration/migration-charts-v7/#legend-direction-value-change-✅).
1819
+ - The `getSeriesToDisplay` function was removed in favor of the `useLegend` hook. — [Learn more](https://mui.com/x/migration/migration-charts-v7/#the-getseriestodisplay-function-was-removed).
1493
1820
 
1494
1821
  #### `@mui/x-charts@8.0.0-alpha.7`
1495
1822
 
@@ -1671,9 +1998,9 @@ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.5`.
1671
1998
 
1672
1999
  #### Breaking changes
1673
2000
 
1674
- - The `<PickersMonth />` component has been moved inside the Month Calendar component — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#month-calendar).
2001
+ - The `<PickersMonth />` component has been moved inside the Month Calendar component — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#month-calendar).
1675
2002
 
1676
- - The `<PickersYear />` component has been moved inside the Year Calendar component — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#year-calendar).
2003
+ - The `<PickersYear />` component has been moved inside the Year Calendar component — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#year-calendar).
1677
2004
 
1678
2005
  #### `@mui/x-date-pickers@8.0.0-alpha.5`
1679
2006
 
@@ -1894,7 +2221,7 @@ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.3`, plus:
1894
2221
 
1895
2222
  #### Breaking changes
1896
2223
 
1897
- - 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).
2224
+ - The `onOpen()` and `onClose()` methods of the `usePickerContext()` hook have been replaced with a single `setOpen` method — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#usepickercontext).
1898
2225
 
1899
2226
  #### `@mui/x-date-pickers@8.0.0-alpha.3`
1900
2227
 
@@ -1946,8 +2273,8 @@ _Nov 29, 2024_
1946
2273
  We'd like to offer a big thanks to the 17 contributors who made this release possible. Here are some highlights ✨:
1947
2274
 
1948
2275
  - 👨🏽‍💻 Improve resize performance on the Data Gird.
1949
- - `<ChartDataProvider />` and `<ChartsSurface />` components are now fully divided — [Learn more](https://next.mui.com/x/react-charts/composition/#overview).
1950
- - Users can create their own HTML components using chart data — [Learn more](https://next.mui.com/x/react-charts/components/#html-components).
2276
+ - `<ChartDataProvider />` and `<ChartsSurface />` components are now fully divided — [Learn more](https://mui.com/x/react-charts/composition/#overview).
2277
+ - Users can create their own HTML components using chart data — [Learn more](https://mui.com/x/react-charts/components/#html-components).
1951
2278
  - 🌍 Improve Spanish, Portuguese, Chinese locales on the Data Grid component.
1952
2279
  - 🌍 Improve Dutch locale on the Date and Time Pickers components.
1953
2280
  - 🐞 Bugfixes
@@ -2003,9 +2330,9 @@ Same changes as in `@mui/x-data-grid-pro@v8.0.0-alpha.2`.
2003
2330
 
2004
2331
  #### Breaking changes
2005
2332
 
2006
- - 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).
2333
+ - The props received by the `layout` and the `toolbar` slots have been reworked — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#do-not-pass-the-section-type-as-a-generic).
2007
2334
 
2008
- - 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).
2335
+ - The `TSection` generic of the `FieldRef` type has been replaced with the `TValue` generic — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#slots-breaking-changes).
2009
2336
 
2010
2337
  #### `@mui/x-date-pickers@v8.0.0-alpha.2`
2011
2338
 
@@ -2072,7 +2399,7 @@ _Nov 22, 2024_
2072
2399
 
2073
2400
  We'd like to offer a big thanks to the 16 contributors who made this release possible. Here are some highlights ✨:
2074
2401
 
2075
- - 🔧 Refactor Tooltip customisation for charts — [Learn more](https://next.mui.com/x/react-charts/tooltip/#overriding-content).
2402
+ - 🔧 Refactor Tooltip customisation for charts — [Learn more](https://mui.com/x/react-charts/tooltip/#overriding-content).
2076
2403
  - ⚛️ React 19 support
2077
2404
  - 🌍 Improve Chinese, Spanish, and Swedish locale on the Data Grid component
2078
2405
  - 🐞 Bugfixes
@@ -2114,8 +2441,8 @@ Same changes as in `@mui/x-data-grid-pro@v8.0.0-alpha.1`, plus:
2114
2441
 
2115
2442
  #### Breaking change
2116
2443
 
2117
- - The `FieldValueType` type has been renamed to `PickerValueType` — [Learn more](https://next.mui.com/x/migration/migration-pickers-v7/#renamed-variables).
2118
- - 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).
2444
+ - The `FieldValueType` type has been renamed to `PickerValueType` — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#renamed-variables).
2445
+ - The `toolbar` and `layout` slots no longer receive the `disabled` and `readOnly` props — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#slots-breaking-changes).
2119
2446
 
2120
2447
  #### `@mui/x-date-pickers@v8.0.0-alpha.1`
2121
2448
 
@@ -2154,7 +2481,7 @@ Same changes as in `@mui/x-date-pickers@v8.0.0-alpha.1`, plus:
2154
2481
  - The `theme.styleOverride` is removed for `MuiLineElement`, `MuiAreaElement`, and `MuiBarElement` to improve performance.
2155
2482
  You can still target those elements by using the `MuiLinePlot`, `MuiAreaPlot`, and `MuiBarPlot` and target the appropriate classes `lineElementClasses.root`, `areaElementClasses.root`, `barElementClasses.root`
2156
2483
 
2157
- - Removed the `resolveSizeBeforeRender` prop from all chart components — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#remove-resolvesizebeforerender-prop).
2484
+ - Removed the `resolveSizeBeforeRender` prop from all chart components — [Learn more](https://mui.com/x/migration/migration-charts-v7/#remove-resolvesizebeforerender-prop).
2158
2485
  - Removed `width` and `height` props from the `ChartsSurface` component.
2159
2486
  - Removed the `viewport` prop from all charts.
2160
2487
 
@@ -2179,7 +2506,7 @@ Same changes as in `@mui/x-charts@v8.0.0-alpha.1`.
2179
2506
 
2180
2507
  #### Breaking changes
2181
2508
 
2182
- - 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).
2509
+ - The Tree Item component can no longer use `publicAPI` methods in the `render` because they are now memoized — [Learn more](https://mui.com/x/migration/migration-tree-view-v7/#stop-using-publicapi-methods-in-the-render).
2183
2510
 
2184
2511
  #### `@mui/x-tree-view@v8.0.0-alpha.1`
2185
2512
 
@@ -2216,7 +2543,7 @@ _Nov 14, 2024_
2216
2543
 
2217
2544
  We'd like to offer a big thanks to the 22 contributors who made this release possible. Here are some highlights ✨:
2218
2545
 
2219
- - 🔁 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.
2546
+ - 🔁 Support [automatic parents and children selection](https://mui.com/x/react-tree-view/rich-tree-view/selection/#automatic-parents-and-children-selection) for the Rich Tree View components.
2220
2547
  - 🌍 Improve Greek (el-GR) locale on the Date and Time Pickers components
2221
2548
  - 🌍 Improve Polish (pl-PL) locale on the Data Grid component
2222
2549
  - 🐞 Bugfixes
@@ -2257,14 +2584,14 @@ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.0`, plus:
2257
2584
 
2258
2585
  #### Breaking changes
2259
2586
 
2260
- - 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).
2587
+ - The default DOM structure of the field has changed [Learn more](https://mui.com/x/migration/migration-pickers-v7/#new-dom-structure-for-the-field).
2261
2588
 
2262
2589
  - 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.
2263
2590
  - 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.
2264
2591
 
2265
- - 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).
2592
+ - 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://mui.com/x/migration/migration-pickers-v7/#stop-passing-utils-and-the-date-object-to-some-translation-keys).
2266
2593
 
2267
- - 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).
2594
+ - The following types are no longer exported by `@mui/x-date-pickers` and `@mui/x-date-pickers-pro` — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#removed-types).
2268
2595
 
2269
2596
  - `UseDateFieldComponentProps`
2270
2597
  - `UseTimeFieldComponentProps`
@@ -2273,11 +2600,11 @@ Same changes as in `@mui/x-data-grid-pro@8.0.0-alpha.0`, plus:
2273
2600
  - `BaseMultiInputFieldProps`
2274
2601
  - `BasePickersTextFieldProps`
2275
2602
 
2276
- - 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).
2603
+ - 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://mui.com/x/migration/migration-pickers-v7/#remove-tdate-generic).
2277
2604
 
2278
- - 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).
2605
+ - Renamed `usePickersTranslations` and `usePickersContext` hooks to have a coherent `Picker` prefix instead of `Pickers` — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#renamed-variables).
2279
2606
 
2280
- - 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).
2607
+ - The `LicenseInfo` object is no longer exported from the `@mui/x-date-pickers-pro` package — [Learn more](https://mui.com/x/migration/migration-pickers-v7/#stop-using-licenseinfo-from-mui-x-date-pickers-pro).
2281
2608
 
2282
2609
  #### `@mui/x-date-pickers@8.0.0-alpha.0`
2283
2610
 
@@ -2308,17 +2635,17 @@ Same changes as in `@mui/x-date-pickers@8.0.0-alpha.0`.
2308
2635
 
2309
2636
  #### Breaking changes
2310
2637
 
2311
- - 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-✅).
2638
+ - 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://mui.com/x/migration/migration-charts-v7/#legend-props-propagation-✅).
2312
2639
 
2313
2640
  - 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.
2314
2641
 
2315
- - Removed or renamed multiple props from Series — [Learn more](https://next.mui.com/x/migration/migration-charts-v7/#series-properties-renaming).
2642
+ - Removed or renamed multiple props from Series — [Learn more](https://mui.com/x/migration/migration-charts-v7/#series-properties-renaming).
2316
2643
 
2317
2644
  - The `highlighted` and `faded` properties of highlightScope have been deprecated in favor of `highlight` and `fade`.
2318
2645
  The deprecated ones are now removed.
2319
2646
  - The `xAxisKey`, `yAxisKey`, and `zAxisKey` properties have been deprecated in favor of `xAxisId`, `yAxisId`, and `zAxisId`.
2320
2647
 
2321
- - 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).
2648
+ - 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://mui.com/x/migration/migration-charts-v7/#remove-pie-chart-axes).
2322
2649
 
2323
2650
  #### `@mui/x-charts@8.0.0-alpha.0`
2324
2651
 
@@ -2341,15 +2668,15 @@ Same changes as in `@mui/x-charts@8.0.0-alpha.0`.
2341
2668
 
2342
2669
  #### Breaking changes
2343
2670
 
2344
- - 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).
2671
+ - 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://mui.com/x/migration/migration-tree-view-v7/#new-api-to-customize-the-tree-item).
2345
2672
 
2346
- - 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).
2673
+ - The `onClick` and `onMouseDown` callbacks of the Tree Item component are now passed to the root element instead of the content — [Learn more](https://mui.com/x/migration/migration-tree-view-v7/#behavior-change-on-the-onclick-and-onmousedown-props-of-treeitem).
2347
2674
 
2348
- - 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).
2675
+ - Rename the `<TreeItem2 />` component (and related utils) — [Learn more](https://mui.com/x/migration/migration-tree-view-v7/#✅-rename-the-treeitem2-and-related-utils).
2349
2676
 
2350
- - 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).
2677
+ - The `<TreeView />` component has been renamed `<SimpleTreeView />` which has exactly the same API — [Learn more](https://mui.com/x/migration/migration-tree-view-v7/#✅-use-simple-tree-view-instead-of-tree-view).
2351
2678
 
2352
- - 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).
2679
+ - The indentation of nested Tree Items is now applied on the content of the element — [Learn more](https://mui.com/x/migration/migration-tree-view-v7/#apply-the-indentation-on-the-item-content-instead-of-its-parents-group).
2353
2680
 
2354
2681
  #### `@mui/x-tree-view@8.0.0-alpha.0`
2355
2682
 
@@ -2904,7 +3231,7 @@ _Jan 17, 2025_
2904
3231
 
2905
3232
  We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
2906
3233
 
2907
- - 🔄 Data Grid [Scroll restoration](https://next.mui.com/x/react-data-grid/scrolling/#scroll-restoration)
3234
+ - 🔄 Data Grid [Scroll restoration](https://v7.mui.com/x/react-data-grid/scrolling/#scroll-restoration)
2908
3235
  - 🐞 Bugfixes
2909
3236
 
2910
3237
  Special thanks go out to the community contributors who have helped make this release possible:
@@ -6589,7 +6916,7 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-beta.4`.
6589
6916
 
6590
6917
  - The headless field hooks (e.g.: `useDateField`) now returns a new prop called `enableAccessibleFieldDOMStructure`.
6591
6918
  This property is utilized to determine whether the anticipated UI is constructed using an accessible DOM structure.
6592
- Learn more about this new accessible DOM structure in the [v8 migration guide](https://next.mui.com/x/migration/migration-pickers-v7/#new-dom-structure-for-the-field).
6919
+ Learn more about this new accessible DOM structure in the [v8 migration guide](https://v7.mui.com/x/migration/migration-pickers-v7/#new-dom-structure-for-the-field).
6593
6920
 
6594
6921
  When building a custom UI, you are most-likely only supporting one DOM structure, so you can remove `enableAccessibleFieldDOMStructure` before it is passed to the DOM:
6595
6922
 
@@ -6691,11 +7018,11 @@ _Feb 16, 2024_
6691
7018
 
6692
7019
  We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨:
6693
7020
 
6694
- - 🎁 Charts get a [built in grid](https://next.mui.com/x/react-charts/axis/#grid)
7021
+ - 🎁 Charts get a [built in grid](https://v7.mui.com/x/react-charts/axis/#grid)
6695
7022
 
6696
7023
  <img src="https://github.com/mui/mui-x/assets/45398769/74299f54-f020-4135-b38c-dc88a230db30" width="510" alt="Charts Grid" />
6697
7024
 
6698
- - 🎛️ Charts get a [Gauge component](https://next.mui.com/x/react-charts/gauge/).
7025
+ - 🎛️ Charts get a [Gauge component](https://v7.mui.com/x/react-charts/gauge/).
6699
7026
 
6700
7027
  <img src="https://github.com/mui/mui-x/assets/45398769/fb7a94b5-bef6-4fc2-a0cd-d6ff5b60fa8b" width="510" alt="Guage Chart" />
6701
7028
 
@@ -6707,7 +7034,7 @@ We'd like to offer a big thanks to the 8 contributors who made this release poss
6707
7034
 
6708
7035
  #### Breaking changes
6709
7036
 
6710
- - The `rowEditCommit` event and the related prop `onRowEditCommit` was removed. The [`processRowUpdate`](https://next.mui.com/x/react-data-grid/editing/#the-processrowupdate-callback) prop can be used in place.
7037
+ - The `rowEditCommit` event and the related prop `onRowEditCommit` was removed. The [`processRowUpdate`](https://v7.mui.com/x/react-data-grid/editing/#the-processrowupdate-callback) prop can be used in place.
6711
7038
 
6712
7039
  #### `@mui/x-data-grid@7.0.0-beta.3`
6713
7040
 
@@ -6810,7 +7137,7 @@ Same changes as in `@mui/x-date-pickers@7.0.0-beta.2`.
6810
7137
 
6811
7138
  #### Breaking changes
6812
7139
 
6813
- - If you're using the [commercial license](https://next.mui.com/x/introduction/licensing), you need to update the import path:
7140
+ - If you're using the [commercial license](https://v7.mui.com/x/introduction/licensing), you need to update the import path:
6814
7141
 
6815
7142
  ```diff
6816
7143
  -import { LicenseInfo } from '@mui/x-license-pro';
@@ -6862,10 +7189,10 @@ We'd like to offer a big thanks to the 12 contributors who made this release pos
6862
7189
  - 🚀 All charts have click handlers (#11411) @alexfauquette
6863
7190
  Test their respective documentation demonstrations to know more about the data format:
6864
7191
 
6865
- - [Scatter Chart](https://next.mui.com/x/react-charts/scatter/#click-event)
6866
- - [Line Chart](https://next.mui.com/x/react-charts/lines/#click-event)
6867
- - [Bar Chart](https://next.mui.com/x/react-charts/bars/#click-event)
6868
- - [Pie Chart](https://next.mui.com/x/react-charts/pie/#click-event)
7192
+ - [Scatter Chart](https://v7.mui.com/x/react-charts/scatter/#click-event)
7193
+ - [Line Chart](https://v7.mui.com/x/react-charts/lines/#click-event)
7194
+ - [Bar Chart](https://v7.mui.com/x/react-charts/bars/#click-event)
7195
+ - [Pie Chart](https://v7.mui.com/x/react-charts/pie/#click-event)
6869
7196
 
6870
7197
  Big thanks to @giladappsforce and @yaredtsy for their contribution on exploring this feature.
6871
7198
 
@@ -6987,7 +7314,7 @@ Same changes as in `@mui/x-date-pickers@7.0.0-beta.1`.
6987
7314
 
6988
7315
  - The line chart now have animation by default.
6989
7316
  You can disable it with `skipAnimation` prop.
6990
- See [animation documentation](next.mui.com/x/react-charts/lines/#animation) for more information.
7317
+ See [animation documentation](v7.mui.com/x/react-charts/lines/#animation) for more information.
6991
7318
 
6992
7319
  - Pie charts `onClick` get renamed `onItemClick` for consistency with other charts click callback.
6993
7320
 
@@ -7022,7 +7349,7 @@ We are glad to announce MUI X v7 beta!
7022
7349
  This version has several improvements, bug fixes, and exciting features 🎉.
7023
7350
  We want to offer a big thanks to the 7 contributors who made this release possible ✨:
7024
7351
 
7025
- - 🚀 Release the [Date Time Range Picker](https://next.mui.com/x/react-date-pickers/date-time-range-picker/) component (#9528) @LukasTy
7352
+ - 🚀 Release the [Date Time Range Picker](https://v7.mui.com/x/react-date-pickers/date-time-range-picker/) component (#9528) @LukasTy
7026
7353
 
7027
7354
  <img src="https://github.com/mui/mui-x/assets/4941090/122bb7bc-5e72-4e11-a8e5-96f3026de922" width="510" height="652" alt="Date Time Range Picker example" />
7028
7355
 
@@ -7037,7 +7364,7 @@ We want to offer a big thanks to the 7 contributors who made this release possib
7037
7364
 
7038
7365
  #### Breaking changes
7039
7366
 
7040
- - The columns management component has been redesigned and the component was extracted from the `ColumnsPanel` which now only serves as a wrapper to display the component above the headers as a panel. As a result, a new slot `columnsManagement` and the related prop `slotProps.columnsManagement` have been introduced. The props corresponding to the columns management component which were previously passed to the prop `slotProps.columnsPanel` should now be passed to `slotProps.columnsManagement`. `slotProps.columnsPanel` could still be used to override props corresponding to the `Panel` component used in `ColumnsPanel` which uses [`Popper`](https://next.mui.com/material-ui/react-popper/) component under the hood.
7367
+ - The columns management component has been redesigned and the component was extracted from the `ColumnsPanel` which now only serves as a wrapper to display the component above the headers as a panel. As a result, a new slot `columnsManagement` and the related prop `slotProps.columnsManagement` have been introduced. The props corresponding to the columns management component which were previously passed to the prop `slotProps.columnsPanel` should now be passed to `slotProps.columnsManagement`. `slotProps.columnsPanel` could still be used to override props corresponding to the `Panel` component used in `ColumnsPanel` which uses [`Popper`](https://v7.mui.com/material-ui/react-popper/) component under the hood.
7041
7368
 
7042
7369
  ```diff
7043
7370
  <DataGrid
@@ -7121,7 +7448,7 @@ _Jan 19, 2024_
7121
7448
  We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
7122
7449
 
7123
7450
  - 🎁 The Data Grid headers have been refactored to bring immense improvements to scrolling, state management, and overall performance of the grid.
7124
- - ⚙️ The Data Grid disabled column-specific features like filtering, sorting, grouping, etc. could now be accessed programmatically. See the related [docs](https://next.mui.com/x/react-data-grid/api-object/#access-the-disabled-column-features) section.
7451
+ - ⚙️ The Data Grid disabled column-specific features like filtering, sorting, grouping, etc. could now be accessed programmatically. See the related [docs](https://v7.mui.com/x/react-data-grid/api-object/#access-the-disabled-column-features) section.
7125
7452
  - 🚀 Uplift the Simple Tree View customization examples (#11424) @noraleonte
7126
7453
  - 🌍 Add Croatian (hr-HR), Portuguese (pt-PT), and Chinese (Hong Kong) (zh-HK) locales (#11668) on the Data Grid @BCaspari
7127
7454
  - 🐞 Bugfixes
@@ -7154,10 +7481,10 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
7154
7481
  </div>
7155
7482
  ```
7156
7483
 
7157
- - When the [Tree data](https://next.mui.com/x/react-data-grid/tree-data/) feature is used, the grid role is now `role="treegrid"` instead of `role="grid"`.
7484
+ - When the [Tree data](https://v7.mui.com/x/react-data-grid/tree-data/) feature is used, the grid role is now `role="treegrid"` instead of `role="grid"`.
7158
7485
  - The Data Grid cells now have `role="gridcell"` instead of `role="cell"`.
7159
7486
 
7160
- - The buttons in toolbar composable components `GridToolbarColumnsButton`, `GridToolbarFilterButton`, `GridToolbarDensity`, and `GridToolbarExport` are now wrapped with a tooltip component and have a consistent interface. To override some props corresponding to the toolbar buttons or their corresponding tooltips, you can use the `slotProps` prop. Following is an example diff. See [Toolbar section](https://next.mui.com/x/react-data-grid/components/#toolbar) for more details.
7487
+ - The buttons in toolbar composable components `GridToolbarColumnsButton`, `GridToolbarFilterButton`, `GridToolbarDensity`, and `GridToolbarExport` are now wrapped with a tooltip component and have a consistent interface. To override some props corresponding to the toolbar buttons or their corresponding tooltips, you can use the `slotProps` prop. Following is an example diff. See [Toolbar section](https://v7.mui.com/x/react-data-grid/components/#toolbar) for more details.
7161
7488
 
7162
7489
  ```diff
7163
7490
  function CustomToolbar() {
@@ -7188,7 +7515,7 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
7188
7515
 
7189
7516
  - The column grouping selectors `gridFocusColumnGroupHeaderSelector` and `gridTabIndexColumnGroupHeaderSelector` are no longer prefixed with `unstable_`.
7190
7517
 
7191
- - The disabled column specific features like `hiding`, `sorting`, `filtering`, `pinning`, `row grouping`, etc could now be controlled programmatically using `initialState`, respective controlled models, or the [API object](https://next.mui.com/x/react-data-grid/api-object/). See the related [docs](https://next.mui.com/x/react-data-grid/api-object/#access-the-disabled-column-features) section.
7518
+ - The disabled column specific features like `hiding`, `sorting`, `filtering`, `pinning`, `row grouping`, etc could now be controlled programmatically using `initialState`, respective controlled models, or the [API object](https://v7.mui.com/x/react-data-grid/api-object/). See the related [docs](https://v7.mui.com/x/react-data-grid/api-object/#access-the-disabled-column-features) section.
7192
7519
 
7193
7520
  #### `@mui/x-data-grid@7.0.0-alpha.9`
7194
7521
 
@@ -7783,7 +8110,7 @@ We'd like to offer a big thanks to the 9 contributors who made this release poss
7783
8110
 
7784
8111
  - The `instanceId` prop is now required for state selectors.
7785
8112
  This prop is used to distinguish between multiple Data Grid instances on the same page.
7786
- See [migration docs](https://next.mui.com/x/migration/migration-data-grid-v6/#instanceid-prop-is-required-for-state-selectors) for more details.
8113
+ See [migration docs](https://v7.mui.com/x/migration/migration-data-grid-v6/#instanceid-prop-is-required-for-state-selectors) for more details.
7787
8114
 
7788
8115
  #### `@mui/x-data-grid@7.0.0-alpha.5`
7789
8116
 
@@ -7937,9 +8264,9 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
7937
8264
  - 🚀 The scatter charts now use voronoi to trigger items
7938
8265
 
7939
8266
  Users needed to hover the item to highlight the scatter item or show the tooltip.
7940
- Now they can interact with data by triggering the closest element. See the [docs page](https://next.mui.com/x/react-charts/scatter/#interaction) for more info.
8267
+ Now they can interact with data by triggering the closest element. See the [docs page](https://v7.mui.com/x/react-charts/scatter/#interaction) for more info.
7941
8268
 
7942
- - 📚 Add [Pickers FAQ page](https://next.mui.com/x/react-date-pickers/faq/)
8269
+ - 📚 Add [Pickers FAQ page](https://v7.mui.com/x/react-date-pickers/faq/)
7943
8270
  - 🎉 The Data Grid Header filters feature is now stable
7944
8271
  - 🌍 Improve Danish (da-DK) locale on Data Grid
7945
8272
  - 🐞 Bugfixes
@@ -7949,7 +8276,7 @@ We'd like to offer a big thanks to the 11 contributors who made this release pos
7949
8276
  #### Breaking changes
7950
8277
 
7951
8278
  - The header filters feature is now stable. `unstable_` prefix is removed from prop `headerFilters` and related exports.
7952
- See [migration docs](https://next.mui.com/x/migration/migration-data-grid-v6/#filtering) for more details.
8279
+ See [migration docs](https://v7.mui.com/x/migration/migration-data-grid-v6/#filtering) for more details.
7953
8280
 
7954
8281
  - The `GridColDef['type']` has been narrowed down to only accept the built-in column types.
7955
8282
  TypeScript users need to use the `GridColDef` interface when defining columns:
@@ -8019,7 +8346,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
8019
8346
 
8020
8347
  - 🚀 Support localized start of the week on pickers' `AdapterLuxon`
8021
8348
 
8022
- When using Luxon 3.4.4 or higher, the start of the week will be defined by the date locale (e.g.: Sunday for `en-US`, Monday for `fr-FR`).
8349
+ When using Luxon 3.4.4 or higher, the start of the week will be defined by the date locale (for example: Sunday for `en-US`, Monday for `fr-FR`).
8023
8350
 
8024
8351
  - 📈 Fix a lot of Charts package issues
8025
8352
  - 🎉 The Data Grid features Cell selection and Clipboard paste are now stable
@@ -8035,7 +8362,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
8035
8362
 
8036
8363
  - The clipboard related exports `ignoreValueFormatterDuringExport` and `splitClipboardPastedText` are no longer prefixed with `unstable_`.
8037
8364
 
8038
- - The deprecated constants `SUBMIT_FILTER_STROKE_TIME` and `SUBMIT_FILTER_DATE_STROKE_TIME` have been removed from the Data Grid exports. Use the [`filterDebounceMs`](https://next.mui.com/x/api/data-grid/data-grid/#data-grid-prop-filterDebounceMs) prop to customize filter debounce time.
8365
+ - The deprecated constants `SUBMIT_FILTER_STROKE_TIME` and `SUBMIT_FILTER_DATE_STROKE_TIME` have been removed from the Data Grid exports. Use the [`filterDebounceMs`](https://v7.mui.com/x/api/data-grid/data-grid/#data-grid-prop-filterDebounceMs) prop to customize filter debounce time.
8039
8366
 
8040
8367
  - The `slots.preferencesPanel` slot and the `slotProps.preferencesPanel` prop were removed. Use `slots.panel` and `slotProps.panel` instead.
8041
8368
 
@@ -8060,7 +8387,7 @@ We'd like to offer a big thanks to the 15 contributors who made this release pos
8060
8387
  | `unstable_setCellSelectionModel` | `setCellSelectionModel` |
8061
8388
 
8062
8389
  - The Quick Filter now ignores hidden columns by default.
8063
- See [including hidden columns](https://next.mui.com/x/react-data-grid/filtering/quick-filter/#including-hidden-columns) section for more details.
8390
+ See [including hidden columns](https://v7.mui.com/x/react-data-grid/filtering/quick-filter/#including-hidden-columns) section for more details.
8064
8391
 
8065
8392
  #### `@mui/x-data-grid@7.0.0-alpha.3`
8066
8393
 
@@ -8229,7 +8556,7 @@ Same changes as in `@mui/x-data-grid-pro@7.0.0-alpha.2`.
8229
8556
  The `shouldDisableClock` prop received `value` as a `number` of hours, minutes, or seconds.
8230
8557
  Instead, the `shouldDisableTime` prop receives the date object (based on the used adapter).
8231
8558
 
8232
- You can read more about the deprecation of this prop in [v6 migration guide](https://next.mui.com//x/migration/migration-pickers-v5/#%E2%9C%85-rename-or-refactor-shoulddisabletime-prop).
8559
+ You can read more about the deprecation of this prop in [v6 migration guide](https://v7.mui.com/x/migration/migration-pickers-v5/#%E2%9C%85-rename-or-refactor-shoulddisabletime-prop).
8233
8560
 
8234
8561
  ```diff
8235
8562
  <DateTimePicker