We're excited to announce the first v7 stable release! đđ
This is now the officially supported major version, where we'll keep rolling out new features, bug fixes, and improvements.
Migration guides are available with a complete list of the breaking changes:
We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights â¨:
- đ Improve the usage of custom
viewRenderers
onDateTimePicker
(#12441) @LukasTy - ⨠Set focus on the focused Tree Item instead of the Tree View (#12226) @flaviendelangle
- đšī¸ Support controlled
density
for the Data Grid (#12332) @MBilalShafi - đ Dynamic virtualization range for the Data Grid (#12353) @romgrk
- đ Bugfixes
- đ Documentation improvements
Data Grid
Breaking changes
-
The
density
is a controlled prop now, if you were previously passing thedensity
prop to the Data Grid, you will need to do one of the following:- Move it to the
initialState.density
to initialize it.
<DataGrid - density="compact" + initialState={{ density: "compact" }} />
- Move it to the state and use
onDensityChange
callback to update thedensity
prop accordingly for it to work as expected.
+ const [density, setDensity] = React.useState<GridDensity>('compact'); <DataGrid - density="compact" + density={density} + onDensityChange={(newDensity) => setDensity(newDensity)} />
- Move it to the
-
The selector
gridDensityValueSelector
was removed, use thegridDensitySelector
instead. -
The props
rowBuffer
andcolumnBuffer
were renamed torowBufferPx
andcolumnBufferPx
.
Their value is now a pixel value rather than a number of items. Their default value is now150
. -
The props
rowThreshold
andcolumnThreshold
have been removed.
If you had therowThreshold
prop set to0
to force new rows to be rendered more often â this is no longer necessary.
@mui/x-data-grid@7.0.0
- [DataGrid] Allow to control the grid density (#12332) @MBilalShafi
- [DataGrid] Dynamic virtualization range (#12353) @romgrk
- [DataGrid] Fix
ElementType
usage (#12479) @cherniavskii - [DataGrid] Fix cell value formatting on copy (#12357) @sai6855
- [DataGrid] Fix checkbox selection is keeping selection when filtering (#11751) @g1mishra
- [DataGrid] Make
rows
an optional prop (#12478) @MBilalShafi
@mui/x-data-grid-pro@7.0.0
Same changes as in @mui/x-data-grid@7.0.0
.
@mui/x-data-grid-premium@7.0.0
Same changes as in @mui/x-data-grid-pro@7.0.0
, plus:
- [DataGridPremium] Add support for confirmation before clipboard paste (#12225) @cherniavskii
- [DataGridPremium] Fix single grouping column sorting (#9679) @cherniavskii
- [DataGridPremium] Fix boolean cell not rendered in group rows (#12492) @sai6855
Date and Time Pickers
Breaking changes
- The
DesktopDateTimePicker
view rendering has been optimized by using the same technique as forDesktopDateTimeRangePicker
.- The
dateTimeViewRenderers
have been removed in favor of reusing existing time view renderers (renderTimeViewClock
,renderDigitalClockTimeView
andrenderMultiSectionDigitalClockTimeView
) and date view renderer (renderDateViewCalendar
). - Passing
renderTimeViewClock
to time view renderers will no longer revert to the old behavior of rendering only date or time view.
- The
@mui/x-date-pickers@7.0.0
- [fields] Allow to override the separator between the start and the end date in all range fields (#12174) @flaviendelangle
- [fields] Support format without separator (#12489) @flaviendelangle
- [pickers] Use renderer interceptor on
DesktopDateTimePicker
(#12441) @LukasTy
@mui/x-date-pickers-pro@7.0.0
Same changes as in @mui/x-date-pickers@7.0.0
, plus:
- [DateTimeRangePicker] Add component
JSDoc
(#12518) @LukasTy - [DateTimeRangePicker] Fix views behavior regression (#12529) @LukasTy
Charts
@mui/x-charts@7.0.0
Tree View
Breaking changes
- The required
nodeId
prop used by theTreeItem
has been renamed toitemId
for consistency:
<TreeView>
- <TreeItem label="Item 1" nodeId="one">
+ <TreeItem label="Item 1" itemId="one">
</TreeView>
-
The focus is now applied to the Tree Item root element instead of the Tree View root element.
This change will allow new features that require the focus to be on the Tree Item,
like the drag and drop reordering of items.
It also solves several issues with focus management,
like the inability to scroll to the focused item when a lot of items are rendered.This will mostly impact how you write tests to interact with the Tree View:
For example, if you were writing a test with
react-testing-library
, here is what the changes could look like:it('test example on first item', () => { - const { getByRole } = render( + const { getAllByRole } = render( <SimpleTreeView> <TreeItem nodeId="one" /> <TreeItem nodeId="two" /> </SimpleTreeView> ); - const tree = getByRole('tree'); + const firstTreeItem = getAllByRole('treeitem')[0]; act(() => { - tree.focus(); + firstTreeItem.focus(); }); - fireEvent.keyDown(tree, { key: 'ArrowDown' }); + fireEvent.keyDown(firstTreeItem, { key: 'ArrowDown' }); })
@mui/x-tree-view@7.0.0
- [TreeView] Rename
nodeId
toitemId
(#12418) @noraleonte - [TreeView] Set focus on the focused Tree Item instead of the Tree View (#12226) @flaviendelangle
- [TreeView] Update JSDoc of the
ContentComponent
prop to avoid using the word "node" (#12476) @flaviendelangle
@mui/x-codemod@7.0.0
- [codemod] Add a codemod and update the grid migration guide (#12488) @MBilalShafi
Docs
- [docs] Finalize migration guide (#12501) @noraleonte
- [docs] Fix nested cells alignment in the popular features demo (#12450) @cherniavskii
- [docs] Fix some Vale errors (#12469) @oliviertassinari
- [docs] Remove mentions of pre release (#12513) @noraleonte
- [docs] Update branch name and tags (#12498) @cherniavskii
- [docs] Update links to v6 (#12496) @cherniavskii
- [docs] Update links to v7 docs (#12500) @noraleonte
- [docs] Update supported versions (#12508) @joserodolfofreitas
- [docs] Update "What's new in MUI X" page #12527 @cherniavskii
Core
- [core] Bump
@mui/material
peer dependency for all packages (#12516) @LukasTy - [core] Fix
no-restricted-imports
ESLint rule not working for Data Grid packages (#12477) @cherniavskii - [core] Lower the frequency of
no-response
action runs (#12491) @michaldudak - [core] Remove leftover
legacy
browserlistrc
entry (#12415) @LukasTy - [core] Update NPM tag (#12511) @cherniavskii
- [core] Update supported browsers (browserlistrc) (#12521) @LukasTy
- [core] Use Circle CI context @oliviertassinari
- [license] Fix grammar on expired license error message (#12460) @joserodolfofreitas