@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.
- package/CHANGELOG.md +423 -96
- package/RichTreeView/RichTreeView.js +11 -6
- package/RichTreeView/RichTreeView.plugins.d.ts +3 -6
- package/RichTreeView/RichTreeView.plugins.js +1 -2
- package/RichTreeView/RichTreeView.types.d.ts +4 -3
- package/RichTreeView/index.d.ts +1 -1
- package/SimpleTreeView/SimpleTreeView.js +12 -8
- package/SimpleTreeView/SimpleTreeView.plugins.d.ts +3 -6
- package/SimpleTreeView/SimpleTreeView.plugins.js +1 -2
- package/SimpleTreeView/SimpleTreeView.types.d.ts +4 -3
- package/TreeItemIcon/TreeItemIcon.js +15 -11
- package/esm/RichTreeView/RichTreeView.js +10 -5
- package/esm/RichTreeView/RichTreeView.plugins.d.ts +3 -6
- package/esm/RichTreeView/RichTreeView.plugins.js +1 -2
- package/esm/RichTreeView/RichTreeView.types.d.ts +4 -3
- package/esm/RichTreeView/index.d.ts +1 -1
- package/esm/SimpleTreeView/SimpleTreeView.js +11 -7
- package/esm/SimpleTreeView/SimpleTreeView.plugins.d.ts +3 -6
- package/esm/SimpleTreeView/SimpleTreeView.plugins.js +1 -2
- package/esm/SimpleTreeView/SimpleTreeView.types.d.ts +4 -3
- package/esm/TreeItemIcon/TreeItemIcon.js +15 -11
- package/esm/hooks/useTreeItemUtils/useTreeItemUtils.js +1 -1
- package/esm/index.js +1 -1
- package/esm/internals/TreeViewProvider/TreeViewContext.d.ts +1 -1
- package/esm/internals/TreeViewProvider/TreeViewProvider.js +14 -4
- package/esm/internals/TreeViewProvider/TreeViewProvider.types.d.ts +6 -5
- package/esm/internals/TreeViewProvider/TreeViewStyleContext.d.ts +23 -0
- package/esm/internals/TreeViewProvider/TreeViewStyleContext.js +3 -1
- package/esm/internals/hooks/useSelector.js +1 -4
- package/esm/internals/index.d.ts +2 -3
- package/esm/internals/index.js +1 -1
- package/esm/internals/models/events.d.ts +2 -6
- package/esm/internals/models/plugin.d.ts +63 -38
- package/esm/internals/models/treeView.d.ts +0 -5
- package/esm/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.js +35 -21
- package/esm/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.selectors.d.ts +144 -10
- package/esm/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.selectors.js +21 -1
- package/esm/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.types.d.ts +1 -1
- package/esm/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.utils.d.ts +0 -1
- package/esm/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.utils.js +0 -7
- package/esm/internals/plugins/useTreeViewFocus/useTreeViewFocus.js +3 -30
- package/esm/internals/plugins/useTreeViewFocus/useTreeViewFocus.selectors.d.ts +476 -28
- package/esm/internals/plugins/useTreeViewFocus/useTreeViewFocus.selectors.js +21 -1
- package/esm/internals/plugins/useTreeViewFocus/useTreeViewFocus.types.d.ts +0 -1
- package/esm/internals/plugins/useTreeViewItems/useTreeViewItems.selectors.d.ts +90 -4
- package/esm/internals/plugins/useTreeViewItems/useTreeViewItems.selectors.js +12 -25
- package/esm/internals/plugins/useTreeViewItems/useTreeViewItems.utils.d.ts +12 -1
- package/esm/internals/plugins/useTreeViewItems/useTreeViewItems.utils.js +31 -0
- package/esm/internals/plugins/useTreeViewLabel/useTreeViewLabel.js +3 -6
- package/esm/internals/plugins/useTreeViewLabel/useTreeViewLabel.selectors.d.ts +43 -9
- package/esm/internals/plugins/useTreeViewLabel/useTreeViewLabel.selectors.js +12 -2
- package/esm/internals/plugins/useTreeViewLabel/useTreeViewLabel.types.d.ts +1 -1
- package/esm/internals/plugins/useTreeViewSelection/useTreeViewSelection.itemPlugin.js +2 -2
- package/esm/internals/plugins/useTreeViewSelection/useTreeViewSelection.js +39 -40
- package/esm/internals/plugins/useTreeViewSelection/useTreeViewSelection.selectors.d.ts +186 -30
- package/esm/internals/plugins/useTreeViewSelection/useTreeViewSelection.selectors.js +36 -1
- package/esm/internals/plugins/useTreeViewSelection/useTreeViewSelection.types.d.ts +3 -6
- package/esm/internals/plugins/useTreeViewSelection/useTreeViewSelection.utils.d.ts +0 -7
- package/esm/internals/plugins/useTreeViewSelection/useTreeViewSelection.utils.js +5 -24
- package/esm/internals/useTreeView/extractPluginParamsFromProps.d.ts +0 -2
- package/esm/internals/useTreeView/extractPluginParamsFromProps.js +1 -5
- package/esm/internals/useTreeView/useTreeView.d.ts +10 -1
- package/esm/internals/useTreeView/useTreeView.js +22 -25
- package/esm/internals/useTreeView/useTreeView.types.d.ts +1 -3
- package/esm/internals/useTreeView/useTreeViewBuildContext.js +9 -11
- package/esm/internals/utils/models.d.ts +7 -0
- package/esm/internals/utils/models.js +23 -0
- package/esm/internals/utils/selectors.d.ts +1 -1
- package/esm/utils/cache.d.ts +1 -1
- package/esm/utils/cache.js +1 -1
- package/hooks/useTreeItemUtils/useTreeItemUtils.js +1 -1
- package/index.js +1 -1
- package/internals/TreeViewProvider/TreeViewContext.d.ts +1 -1
- package/internals/TreeViewProvider/TreeViewProvider.js +14 -4
- package/internals/TreeViewProvider/TreeViewProvider.types.d.ts +6 -5
- package/internals/TreeViewProvider/TreeViewStyleContext.d.ts +23 -0
- package/internals/TreeViewProvider/TreeViewStyleContext.js +3 -1
- package/internals/hooks/useSelector.js +1 -5
- package/internals/index.d.ts +2 -3
- package/internals/index.js +13 -7
- package/internals/models/events.d.ts +2 -6
- package/internals/models/plugin.d.ts +63 -38
- package/internals/models/treeView.d.ts +0 -5
- package/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.js +33 -19
- package/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.selectors.d.ts +144 -10
- package/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.selectors.js +22 -2
- package/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.types.d.ts +1 -1
- package/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.utils.d.ts +0 -1
- package/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.utils.js +1 -9
- package/internals/plugins/useTreeViewFocus/useTreeViewFocus.js +2 -30
- package/internals/plugins/useTreeViewFocus/useTreeViewFocus.selectors.d.ts +476 -28
- package/internals/plugins/useTreeViewFocus/useTreeViewFocus.selectors.js +21 -1
- package/internals/plugins/useTreeViewFocus/useTreeViewFocus.types.d.ts +0 -1
- package/internals/plugins/useTreeViewItems/useTreeViewItems.selectors.d.ts +90 -4
- package/internals/plugins/useTreeViewItems/useTreeViewItems.selectors.js +12 -25
- package/internals/plugins/useTreeViewItems/useTreeViewItems.utils.d.ts +12 -1
- package/internals/plugins/useTreeViewItems/useTreeViewItems.utils.js +34 -2
- package/internals/plugins/useTreeViewLabel/useTreeViewLabel.js +3 -6
- package/internals/plugins/useTreeViewLabel/useTreeViewLabel.selectors.d.ts +43 -9
- package/internals/plugins/useTreeViewLabel/useTreeViewLabel.selectors.js +13 -3
- package/internals/plugins/useTreeViewLabel/useTreeViewLabel.types.d.ts +1 -1
- package/internals/plugins/useTreeViewSelection/useTreeViewSelection.itemPlugin.js +2 -2
- package/internals/plugins/useTreeViewSelection/useTreeViewSelection.js +37 -38
- package/internals/plugins/useTreeViewSelection/useTreeViewSelection.selectors.d.ts +186 -30
- package/internals/plugins/useTreeViewSelection/useTreeViewSelection.selectors.js +37 -2
- package/internals/plugins/useTreeViewSelection/useTreeViewSelection.types.d.ts +3 -6
- package/internals/plugins/useTreeViewSelection/useTreeViewSelection.utils.d.ts +0 -7
- package/internals/plugins/useTreeViewSelection/useTreeViewSelection.utils.js +6 -26
- package/internals/useTreeView/extractPluginParamsFromProps.d.ts +0 -2
- package/internals/useTreeView/extractPluginParamsFromProps.js +1 -5
- package/internals/useTreeView/useTreeView.d.ts +10 -1
- package/internals/useTreeView/useTreeView.js +22 -25
- package/internals/useTreeView/useTreeView.types.d.ts +1 -3
- package/internals/useTreeView/useTreeViewBuildContext.js +9 -11
- package/internals/utils/models.d.ts +7 -0
- package/internals/utils/models.js +30 -0
- package/internals/utils/selectors.d.ts +1 -1
- package/package.json +7 -15
- package/utils/cache.d.ts +1 -1
- package/utils/cache.js +1 -1
- package/esm/internals/plugins/useTreeViewIcons/index.d.ts +0 -2
- package/esm/internals/plugins/useTreeViewIcons/index.js +0 -1
- package/esm/internals/plugins/useTreeViewIcons/useTreeViewIcons.d.ts +0 -3
- package/esm/internals/plugins/useTreeViewIcons/useTreeViewIcons.js +0 -24
- package/esm/internals/plugins/useTreeViewIcons/useTreeViewIcons.types.d.ts +0 -42
- package/esm/internals/plugins/useTreeViewIcons/useTreeViewIcons.types.js +0 -1
- package/esm/internals/plugins/useTreeViewItemCustomization/index.d.ts +0 -2
- package/esm/internals/plugins/useTreeViewItemCustomization/index.js +0 -1
- package/esm/internals/plugins/useTreeViewItemCustomization/useTreeViewItemCustomization.d.ts +0 -3
- package/esm/internals/plugins/useTreeViewItemCustomization/useTreeViewItemCustomization.js +0 -24
- package/esm/internals/plugins/useTreeViewItemCustomization/useTreeViewItemCustomization.types.d.ts +0 -42
- package/esm/internals/plugins/useTreeViewItemCustomization/useTreeViewItemCustomization.types.js +0 -1
- package/esm/internals/useTreeView/useTreeViewModels.d.ts +0 -7
- package/esm/internals/useTreeView/useTreeViewModels.js +0 -62
- package/internals/plugins/useTreeViewIcons/index.d.ts +0 -2
- package/internals/plugins/useTreeViewIcons/index.js +0 -12
- package/internals/plugins/useTreeViewIcons/useTreeViewIcons.d.ts +0 -3
- package/internals/plugins/useTreeViewIcons/useTreeViewIcons.js +0 -32
- package/internals/plugins/useTreeViewIcons/useTreeViewIcons.types.d.ts +0 -42
- package/internals/plugins/useTreeViewIcons/useTreeViewIcons.types.js +0 -5
- package/internals/plugins/useTreeViewItemCustomization/index.d.ts +0 -2
- package/internals/plugins/useTreeViewItemCustomization/index.js +0 -12
- package/internals/plugins/useTreeViewItemCustomization/useTreeViewItemCustomization.d.ts +0 -3
- package/internals/plugins/useTreeViewItemCustomization/useTreeViewItemCustomization.js +0 -32
- package/internals/plugins/useTreeViewItemCustomization/useTreeViewItemCustomization.types.d.ts +0 -42
- package/internals/plugins/useTreeViewItemCustomization/useTreeViewItemCustomization.types.js +0 -5
- package/internals/useTreeView/useTreeViewModels.d.ts +0 -7
- package/internals/useTreeView/useTreeViewModels.js +0 -71
- package/modern/RichTreeView/RichTreeView.d.ts +0 -18
- package/modern/RichTreeView/RichTreeView.js +0 -322
- package/modern/RichTreeView/RichTreeView.plugins.d.ts +0 -13
- package/modern/RichTreeView/RichTreeView.plugins.js +0 -10
- package/modern/RichTreeView/RichTreeView.types.d.ts +0 -52
- package/modern/RichTreeView/RichTreeView.types.js +0 -1
- package/modern/RichTreeView/index.d.ts +0 -5
- package/modern/RichTreeView/index.js +0 -3
- package/modern/RichTreeView/richTreeViewClasses.d.ts +0 -5
- package/modern/RichTreeView/richTreeViewClasses.js +0 -6
- package/modern/SimpleTreeView/SimpleTreeView.d.ts +0 -20
- package/modern/SimpleTreeView/SimpleTreeView.js +0 -265
- package/modern/SimpleTreeView/SimpleTreeView.plugins.d.ts +0 -12
- package/modern/SimpleTreeView/SimpleTreeView.plugins.js +0 -10
- package/modern/SimpleTreeView/SimpleTreeView.types.d.ts +0 -51
- package/modern/SimpleTreeView/SimpleTreeView.types.js +0 -1
- package/modern/SimpleTreeView/index.d.ts +0 -3
- package/modern/SimpleTreeView/index.js +0 -3
- package/modern/SimpleTreeView/simpleTreeViewClasses.d.ts +0 -5
- package/modern/SimpleTreeView/simpleTreeViewClasses.js +0 -6
- package/modern/TreeItem/TreeItem.d.ts +0 -33
- package/modern/TreeItem/TreeItem.js +0 -408
- package/modern/TreeItem/TreeItem.types.d.ts +0 -107
- package/modern/TreeItem/TreeItem.types.js +0 -1
- package/modern/TreeItem/index.d.ts +0 -4
- package/modern/TreeItem/index.js +0 -2
- package/modern/TreeItem/treeItemClasses.d.ts +0 -55
- package/modern/TreeItem/treeItemClasses.js +0 -8
- package/modern/TreeItemDragAndDropOverlay/TreeItemDragAndDropOverlay.d.ts +0 -7
- package/modern/TreeItemDragAndDropOverlay/TreeItemDragAndDropOverlay.js +0 -74
- package/modern/TreeItemDragAndDropOverlay/TreeItemDragAndDropOverlay.types.d.ts +0 -6
- package/modern/TreeItemDragAndDropOverlay/TreeItemDragAndDropOverlay.types.js +0 -1
- package/modern/TreeItemDragAndDropOverlay/index.d.ts +0 -2
- package/modern/TreeItemDragAndDropOverlay/index.js +0 -1
- package/modern/TreeItemIcon/TreeItemIcon.d.ts +0 -7
- package/modern/TreeItemIcon/TreeItemIcon.js +0 -74
- package/modern/TreeItemIcon/TreeItemIcon.types.d.ts +0 -40
- package/modern/TreeItemIcon/TreeItemIcon.types.js +0 -1
- package/modern/TreeItemIcon/index.d.ts +0 -2
- package/modern/TreeItemIcon/index.js +0 -1
- package/modern/TreeItemLabelInput/TreeItemLabelInput.d.ts +0 -5
- package/modern/TreeItemLabelInput/TreeItemLabelInput.js +0 -24
- package/modern/TreeItemLabelInput/TreeItemLabelInput.types.d.ts +0 -14
- package/modern/TreeItemLabelInput/TreeItemLabelInput.types.js +0 -1
- package/modern/TreeItemLabelInput/index.d.ts +0 -2
- package/modern/TreeItemLabelInput/index.js +0 -1
- package/modern/TreeItemProvider/TreeItemProvider.d.ts +0 -7
- package/modern/TreeItemProvider/TreeItemProvider.js +0 -45
- package/modern/TreeItemProvider/TreeItemProvider.types.d.ts +0 -7
- package/modern/TreeItemProvider/TreeItemProvider.types.js +0 -1
- package/modern/TreeItemProvider/index.d.ts +0 -2
- package/modern/TreeItemProvider/index.js +0 -1
- package/modern/hooks/index.d.ts +0 -3
- package/modern/hooks/index.js +0 -3
- package/modern/hooks/useTreeItemModel.d.ts +0 -2
- package/modern/hooks/useTreeItemModel.js +0 -11
- package/modern/hooks/useTreeItemUtils/index.d.ts +0 -1
- package/modern/hooks/useTreeItemUtils/index.js +0 -1
- package/modern/hooks/useTreeItemUtils/useTreeItemUtils.d.ts +0 -42
- package/modern/hooks/useTreeItemUtils/useTreeItemUtils.js +0 -165
- package/modern/hooks/useTreeViewApiRef.d.ts +0 -7
- package/modern/hooks/useTreeViewApiRef.js +0 -7
- package/modern/icons/icons.d.ts +0 -6
- package/modern/icons/icons.js +0 -9
- package/modern/icons/index.d.ts +0 -1
- package/modern/icons/index.js +0 -1
- package/modern/index.d.ts +0 -12
- package/modern/index.js +0 -22
- package/modern/internals/TreeViewItemDepthContext/TreeViewItemDepthContext.d.ts +0 -5
- package/modern/internals/TreeViewItemDepthContext/TreeViewItemDepthContext.js +0 -5
- package/modern/internals/TreeViewItemDepthContext/index.d.ts +0 -1
- package/modern/internals/TreeViewItemDepthContext/index.js +0 -1
- package/modern/internals/TreeViewProvider/TreeViewChildrenItemProvider.d.ts +0 -17
- package/modern/internals/TreeViewProvider/TreeViewChildrenItemProvider.js +0 -49
- package/modern/internals/TreeViewProvider/TreeViewContext.d.ts +0 -8
- package/modern/internals/TreeViewProvider/TreeViewContext.js +0 -15
- package/modern/internals/TreeViewProvider/TreeViewProvider.d.ts +0 -9
- package/modern/internals/TreeViewProvider/TreeViewProvider.js +0 -32
- package/modern/internals/TreeViewProvider/TreeViewProvider.types.d.ts +0 -21
- package/modern/internals/TreeViewProvider/TreeViewProvider.types.js +0 -1
- package/modern/internals/TreeViewProvider/TreeViewStyleContext.d.ts +0 -33
- package/modern/internals/TreeViewProvider/TreeViewStyleContext.js +0 -13
- package/modern/internals/TreeViewProvider/index.d.ts +0 -3
- package/modern/internals/TreeViewProvider/index.js +0 -2
- package/modern/internals/components/RichTreeViewItems.d.ts +0 -32
- package/modern/internals/components/RichTreeViewItems.js +0 -68
- package/modern/internals/corePlugins/corePlugins.d.ts +0 -9
- package/modern/internals/corePlugins/corePlugins.js +0 -8
- package/modern/internals/corePlugins/index.d.ts +0 -2
- package/modern/internals/corePlugins/index.js +0 -1
- package/modern/internals/corePlugins/useTreeViewId/index.d.ts +0 -2
- package/modern/internals/corePlugins/useTreeViewId/index.js +0 -1
- package/modern/internals/corePlugins/useTreeViewId/useTreeViewId.d.ts +0 -3
- package/modern/internals/corePlugins/useTreeViewId/useTreeViewId.js +0 -39
- package/modern/internals/corePlugins/useTreeViewId/useTreeViewId.selectors.d.ts +0 -36
- package/modern/internals/corePlugins/useTreeViewId/useTreeViewId.selectors.js +0 -9
- package/modern/internals/corePlugins/useTreeViewId/useTreeViewId.types.d.ts +0 -20
- package/modern/internals/corePlugins/useTreeViewId/useTreeViewId.types.js +0 -1
- package/modern/internals/corePlugins/useTreeViewId/useTreeViewId.utils.d.ts +0 -21
- package/modern/internals/corePlugins/useTreeViewId/useTreeViewId.utils.js +0 -26
- package/modern/internals/corePlugins/useTreeViewInstanceEvents/index.d.ts +0 -2
- package/modern/internals/corePlugins/useTreeViewInstanceEvents/index.js +0 -1
- package/modern/internals/corePlugins/useTreeViewInstanceEvents/useTreeViewInstanceEvents.d.ts +0 -3
- package/modern/internals/corePlugins/useTreeViewInstanceEvents/useTreeViewInstanceEvents.js +0 -29
- package/modern/internals/corePlugins/useTreeViewInstanceEvents/useTreeViewInstanceEvents.types.d.ts +0 -22
- package/modern/internals/corePlugins/useTreeViewInstanceEvents/useTreeViewInstanceEvents.types.js +0 -1
- package/modern/internals/corePlugins/useTreeViewOptionalPlugins/index.d.ts +0 -2
- package/modern/internals/corePlugins/useTreeViewOptionalPlugins/index.js +0 -1
- package/modern/internals/corePlugins/useTreeViewOptionalPlugins/useTreeViewOptionalPlugins.d.ts +0 -3
- package/modern/internals/corePlugins/useTreeViewOptionalPlugins/useTreeViewOptionalPlugins.js +0 -12
- package/modern/internals/corePlugins/useTreeViewOptionalPlugins/useTreeViewOptionalPlugins.types.d.ts +0 -8
- package/modern/internals/corePlugins/useTreeViewOptionalPlugins/useTreeViewOptionalPlugins.types.js +0 -1
- package/modern/internals/hooks/useInstanceEventHandler.d.ts +0 -15
- package/modern/internals/hooks/useInstanceEventHandler.js +0 -77
- package/modern/internals/hooks/useLazyRef.d.ts +0 -1
- package/modern/internals/hooks/useLazyRef.js +0 -1
- package/modern/internals/hooks/useOnMount.d.ts +0 -1
- package/modern/internals/hooks/useOnMount.js +0 -1
- package/modern/internals/hooks/useSelector.d.ts +0 -4
- package/modern/internals/hooks/useSelector.js +0 -9
- package/modern/internals/hooks/useTimeout.d.ts +0 -1
- package/modern/internals/hooks/useTimeout.js +0 -1
- package/modern/internals/index.d.ts +0 -34
- package/modern/internals/index.js +0 -24
- package/modern/internals/models/events.d.ts +0 -9
- package/modern/internals/models/events.js +0 -1
- package/modern/internals/models/helpers.d.ts +0 -7
- package/modern/internals/models/helpers.js +0 -1
- package/modern/internals/models/index.d.ts +0 -4
- package/modern/internals/models/index.js +0 -4
- package/modern/internals/models/itemPlugin.d.ts +0 -43
- package/modern/internals/models/itemPlugin.js +0 -1
- package/modern/internals/models/plugin.d.ts +0 -151
- package/modern/internals/models/plugin.js +0 -1
- package/modern/internals/models/treeView.d.ts +0 -32
- package/modern/internals/models/treeView.js +0 -1
- package/modern/internals/plugins/useTreeViewExpansion/index.d.ts +0 -2
- package/modern/internals/plugins/useTreeViewExpansion/index.js +0 -1
- package/modern/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.d.ts +0 -3
- package/modern/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.js +0 -134
- package/modern/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.selectors.d.ts +0 -184
- package/modern/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.selectors.js +0 -24
- package/modern/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.types.d.ts +0 -102
- package/modern/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.types.js +0 -1
- package/modern/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.utils.d.ts +0 -7
- package/modern/internals/plugins/useTreeViewExpansion/useTreeViewExpansion.utils.js +0 -19
- package/modern/internals/plugins/useTreeViewFocus/index.d.ts +0 -2
- package/modern/internals/plugins/useTreeViewFocus/index.js +0 -1
- package/modern/internals/plugins/useTreeViewFocus/useTreeViewFocus.d.ts +0 -3
- package/modern/internals/plugins/useTreeViewFocus/useTreeViewFocus.js +0 -135
- package/modern/internals/plugins/useTreeViewFocus/useTreeViewFocus.selectors.d.ts +0 -182
- package/modern/internals/plugins/useTreeViewFocus/useTreeViewFocus.selectors.js +0 -34
- package/modern/internals/plugins/useTreeViewFocus/useTreeViewFocus.types.d.ts +0 -45
- package/modern/internals/plugins/useTreeViewFocus/useTreeViewFocus.types.js +0 -1
- package/modern/internals/plugins/useTreeViewIcons/index.d.ts +0 -2
- package/modern/internals/plugins/useTreeViewIcons/index.js +0 -1
- package/modern/internals/plugins/useTreeViewIcons/useTreeViewIcons.d.ts +0 -3
- package/modern/internals/plugins/useTreeViewIcons/useTreeViewIcons.js +0 -24
- package/modern/internals/plugins/useTreeViewIcons/useTreeViewIcons.types.d.ts +0 -42
- package/modern/internals/plugins/useTreeViewIcons/useTreeViewIcons.types.js +0 -1
- package/modern/internals/plugins/useTreeViewItemCustomization/index.d.ts +0 -2
- package/modern/internals/plugins/useTreeViewItemCustomization/index.js +0 -1
- package/modern/internals/plugins/useTreeViewItemCustomization/useTreeViewItemCustomization.d.ts +0 -3
- package/modern/internals/plugins/useTreeViewItemCustomization/useTreeViewItemCustomization.js +0 -24
- package/modern/internals/plugins/useTreeViewItemCustomization/useTreeViewItemCustomization.types.d.ts +0 -42
- package/modern/internals/plugins/useTreeViewItemCustomization/useTreeViewItemCustomization.types.js +0 -1
- package/modern/internals/plugins/useTreeViewItems/index.d.ts +0 -3
- package/modern/internals/plugins/useTreeViewItems/index.js +0 -2
- package/modern/internals/plugins/useTreeViewItems/useTreeViewItems.d.ts +0 -3
- package/modern/internals/plugins/useTreeViewItems/useTreeViewItems.js +0 -325
- package/modern/internals/plugins/useTreeViewItems/useTreeViewItems.selectors.d.ts +0 -1058
- package/modern/internals/plugins/useTreeViewItems/useTreeViewItems.selectors.js +0 -113
- package/modern/internals/plugins/useTreeViewItems/useTreeViewItems.types.d.ts +0 -205
- package/modern/internals/plugins/useTreeViewItems/useTreeViewItems.types.js +0 -1
- package/modern/internals/plugins/useTreeViewItems/useTreeViewItems.utils.d.ts +0 -4
- package/modern/internals/plugins/useTreeViewItems/useTreeViewItems.utils.js +0 -8
- package/modern/internals/plugins/useTreeViewJSXItems/index.d.ts +0 -2
- package/modern/internals/plugins/useTreeViewJSXItems/index.js +0 -1
- package/modern/internals/plugins/useTreeViewJSXItems/useTreeViewJSXItems.d.ts +0 -3
- package/modern/internals/plugins/useTreeViewJSXItems/useTreeViewJSXItems.js +0 -183
- package/modern/internals/plugins/useTreeViewJSXItems/useTreeViewJSXItems.types.d.ts +0 -35
- package/modern/internals/plugins/useTreeViewJSXItems/useTreeViewJSXItems.types.js +0 -1
- package/modern/internals/plugins/useTreeViewKeyboardNavigation/index.d.ts +0 -2
- package/modern/internals/plugins/useTreeViewKeyboardNavigation/index.js +0 -1
- package/modern/internals/plugins/useTreeViewKeyboardNavigation/useTreeViewKeyboardNavigation.d.ts +0 -3
- package/modern/internals/plugins/useTreeViewKeyboardNavigation/useTreeViewKeyboardNavigation.js +0 -273
- package/modern/internals/plugins/useTreeViewKeyboardNavigation/useTreeViewKeyboardNavigation.types.d.ts +0 -30
- package/modern/internals/plugins/useTreeViewKeyboardNavigation/useTreeViewKeyboardNavigation.types.js +0 -1
- package/modern/internals/plugins/useTreeViewLabel/index.d.ts +0 -2
- package/modern/internals/plugins/useTreeViewLabel/index.js +0 -1
- package/modern/internals/plugins/useTreeViewLabel/useTreeViewLabel.d.ts +0 -3
- package/modern/internals/plugins/useTreeViewLabel/useTreeViewLabel.itemPlugin.d.ts +0 -2
- package/modern/internals/plugins/useTreeViewLabel/useTreeViewLabel.itemPlugin.js +0 -72
- package/modern/internals/plugins/useTreeViewLabel/useTreeViewLabel.js +0 -73
- package/modern/internals/plugins/useTreeViewLabel/useTreeViewLabel.selectors.d.ts +0 -68
- package/modern/internals/plugins/useTreeViewLabel/useTreeViewLabel.selectors.js +0 -24
- package/modern/internals/plugins/useTreeViewLabel/useTreeViewLabel.types.d.ts +0 -60
- package/modern/internals/plugins/useTreeViewLabel/useTreeViewLabel.types.js +0 -1
- package/modern/internals/plugins/useTreeViewLazyLoading/index.d.ts +0 -1
- package/modern/internals/plugins/useTreeViewLazyLoading/index.js +0 -1
- package/modern/internals/plugins/useTreeViewLazyLoading/useTreeViewLazyLoading.selectors.d.ts +0 -247
- package/modern/internals/plugins/useTreeViewLazyLoading/useTreeViewLazyLoading.selectors.js +0 -27
- package/modern/internals/plugins/useTreeViewLazyLoading/useTreeViewLazyLoading.types.d.ts +0 -82
- package/modern/internals/plugins/useTreeViewLazyLoading/useTreeViewLazyLoading.types.js +0 -1
- package/modern/internals/plugins/useTreeViewSelection/index.d.ts +0 -2
- package/modern/internals/plugins/useTreeViewSelection/index.js +0 -1
- package/modern/internals/plugins/useTreeViewSelection/useTreeViewSelection.d.ts +0 -3
- package/modern/internals/plugins/useTreeViewSelection/useTreeViewSelection.itemPlugin.d.ts +0 -2
- package/modern/internals/plugins/useTreeViewSelection/useTreeViewSelection.itemPlugin.js +0 -80
- package/modern/internals/plugins/useTreeViewSelection/useTreeViewSelection.js +0 -234
- package/modern/internals/plugins/useTreeViewSelection/useTreeViewSelection.selectors.d.ts +0 -363
- package/modern/internals/plugins/useTreeViewSelection/useTreeViewSelection.selectors.js +0 -46
- package/modern/internals/plugins/useTreeViewSelection/useTreeViewSelection.types.d.ts +0 -145
- package/modern/internals/plugins/useTreeViewSelection/useTreeViewSelection.types.js +0 -1
- package/modern/internals/plugins/useTreeViewSelection/useTreeViewSelection.utils.d.ts +0 -38
- package/modern/internals/plugins/useTreeViewSelection/useTreeViewSelection.utils.js +0 -126
- package/modern/internals/useTreeView/extractPluginParamsFromProps.d.ts +0 -22
- package/modern/internals/useTreeView/extractPluginParamsFromProps.js +0 -46
- package/modern/internals/useTreeView/index.d.ts +0 -1
- package/modern/internals/useTreeView/index.js +0 -1
- package/modern/internals/useTreeView/useTreeView.d.ts +0 -9
- package/modern/internals/useTreeView/useTreeView.js +0 -114
- package/modern/internals/useTreeView/useTreeView.types.d.ts +0 -23
- package/modern/internals/useTreeView/useTreeView.types.js +0 -1
- package/modern/internals/useTreeView/useTreeViewBuildContext.d.ts +0 -18
- package/modern/internals/useTreeView/useTreeViewBuildContext.js +0 -101
- package/modern/internals/useTreeView/useTreeViewModels.d.ts +0 -7
- package/modern/internals/useTreeView/useTreeViewModels.js +0 -62
- package/modern/internals/useTreeView/useTreeViewPlugins.d.ts +0 -0
- package/modern/internals/useTreeView/useTreeViewPlugins.js +0 -0
- package/modern/internals/utils/TreeViewStore.d.ts +0 -12
- package/modern/internals/utils/TreeViewStore.js +0 -24
- package/modern/internals/utils/cleanupTracking/CleanupTracking.d.ts +0 -9
- package/modern/internals/utils/cleanupTracking/CleanupTracking.js +0 -1
- package/modern/internals/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.d.ts +0 -7
- package/modern/internals/utils/cleanupTracking/FinalizationRegistryBasedCleanupTracking.js +0 -18
- package/modern/internals/utils/cleanupTracking/TimerBasedCleanupTracking.d.ts +0 -9
- package/modern/internals/utils/cleanupTracking/TimerBasedCleanupTracking.js +0 -38
- package/modern/internals/utils/plugins.d.ts +0 -2
- package/modern/internals/utils/plugins.js +0 -4
- package/modern/internals/utils/publishTreeViewEvent.d.ts +0 -5
- package/modern/internals/utils/publishTreeViewEvent.js +0 -3
- package/modern/internals/utils/selectors.d.ts +0 -16
- package/modern/internals/utils/selectors.js +0 -46
- package/modern/internals/utils/tree.d.ts +0 -32
- package/modern/internals/utils/tree.js +0 -203
- package/modern/internals/utils/utils.d.ts +0 -2
- package/modern/internals/utils/utils.js +0 -17
- package/modern/internals/zero-styled/index.d.ts +0 -3
- package/modern/internals/zero-styled/index.js +0 -7
- package/modern/models/events.d.ts +0 -4
- package/modern/models/events.js +0 -1
- package/modern/models/index.d.ts +0 -3
- package/modern/models/index.js +0 -5
- package/modern/models/items.d.ts +0 -13
- package/modern/models/items.js +0 -1
- package/modern/package.json +0 -1
- package/modern/themeAugmentation/components.d.ts +0 -21
- package/modern/themeAugmentation/index.d.ts +0 -3
- package/modern/themeAugmentation/index.js +0 -0
- package/modern/themeAugmentation/overrides.d.ts +0 -16
- package/modern/themeAugmentation/props.d.ts +0 -14
- package/modern/useTreeItem/index.d.ts +0 -2
- package/modern/useTreeItem/index.js +0 -1
- package/modern/useTreeItem/useTreeItem.d.ts +0 -2
- package/modern/useTreeItem/useTreeItem.js +0 -282
- package/modern/useTreeItem/useTreeItem.types.d.ts +0 -201
- package/modern/useTreeItem/useTreeItem.types.js +0 -1
- package/modern/utils/cache.d.ts +0 -38
- package/modern/utils/cache.js +0 -31
- package/modern/utils/index.d.ts +0 -1
- package/modern/utils/index.js +0 -1
- 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` [](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` [](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` [](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` [](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` [](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` [](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` [](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` [](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` [](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` [](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://
|
|
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://
|
|
213
|
-
- 📦 Data Grid [data source](https://
|
|
214
|
-
- 🚫 Add ["No columns" overlay](https://
|
|
215
|
-
- 🍬 Improved design for Data Grid [Header filters](https://
|
|
216
|
-
- 🔄 Add Data Grid [Scroll restoration](https://
|
|
217
|
-
- 💫 Support [aggregation with server-side data](https://
|
|
218
|
-
- 🎁 Support [Server-side lazy loading](https://
|
|
219
|
-
- 🎯 Improved [data caching](https://
|
|
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://
|
|
224
|
-
- 📊 New Community chart: [Radar](https://
|
|
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://
|
|
227
|
-
- 📊 Refactor Charts [Tooltip customization](https://
|
|
228
|
-
- 📊 Improve Charts [composition](https://
|
|
229
|
-
- 📊 Charts support server-side rendering under [some conditions](https://
|
|
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://
|
|
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://
|
|
275
|
-
- The `ExportedUseClearableFieldProps`, `UseClearableFieldSlots`, `UseClearableFieldSlotProps`, and `UseClearableFieldResponse` types have been removed — [Learn more](https://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
1143
|
-
- The `MuiPickersPopper` theme entry have been renamed `MuiPickerPopper` and some of its props have been removed — [Learn more](https://
|
|
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://
|
|
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://
|
|
1301
|
-
- 📊 Charts support server-side rendering under [some conditions](https://
|
|
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://
|
|
1340
|
-
- The `useMultiInputDateRangeField`, `useMultiInputTimeRangeField`, and `useMultiInputDateTimeRangeField` hooks have been removed in favor of the new `useMultiInputRangeField` hook — [Learn more](https://
|
|
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://
|
|
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://
|
|
1454
|
-
- Update default `closeOnSelect` and Action Bar `actions` values - [Learn more](https://
|
|
1455
|
-
- The component passed to the `layout` slot no longer receives the `value`, `onChange` and `onSelectShortcut` props — [Learn more](https://
|
|
1456
|
-
- The component passed to the `toolbar` slot no longer receives the `value`, `onChange` and `isLandscape` props — [Learn more](https://
|
|
1457
|
-
- The component passed to the `shortcuts` slot no longer receives the `onChange`, `isValid` and `isLandscape` props — [Learn more](https://
|
|
1458
|
-
- The `PickerShortcutChangeImportance` type has been renamed `PickerChangeImportance` — [Learn more](https://
|
|
1459
|
-
- The component passed to the `layout` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://
|
|
1460
|
-
- The component passed to the `toolbar` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://
|
|
1461
|
-
- The component passed to the `tabs` slot no longer receives the `rangePosition` and `onRangePositionChange` on range pickers — [Learn more](https://
|
|
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://
|
|
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://
|
|
1492
|
-
- The `getSeriesToDisplay` function was removed in favor of the `useLegend` hook. — [Learn more](https://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
1950
|
-
- Users can create their own HTML components using chart data — [Learn more](https://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
2118
|
-
- The `toolbar` and `layout` slots no longer receive the `disabled` and `readOnly` props — [Learn more](https://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
6866
|
-
- [Line Chart](https://
|
|
6867
|
-
- [Bar Chart](https://
|
|
6868
|
-
- [Pie Chart](https://
|
|
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](
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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 (
|
|
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://
|
|
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://
|
|
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://
|
|
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
|