@mui/x-date-pickers
Advanced tools
Changelog
7.5.0
May 17, 2024
We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
Changelog
7.4.0
May 10, 2024
We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨:
id
attribute on shortcut items of the Date and Time Pickersdate-fns-jalali
v3 in the Date and Time PickersBarChart
@mui/x-data-grid@7.4.0
svg
element (#13028) @oukunan@mui/x-data-grid-pro@7.4.0
Same changes as in @mui/x-data-grid@7.4.0
.
@mui/x-data-grid-premium@7.4.0
Same changes as in @mui/x-data-grid-pro@7.4.0
.
@mui/x-date-pickers@7.4.0
AdapterDateFnsJalaliV3
adapter (#12891) @smmoosaviid
attribute on shortcut items (#12976) @noraleonte@mui/x-date-pickers-pro@7.4.0
Same changes as in @mui/x-date-pickers@7.4.0
.
@mui/x-charts@7.4.0
ChartsGrid
to themeAugmentation
(#13026) @noraleonteBarChart
(#12834) @JCQuintas@mui/x-tree-view@7.4.0
<TreeItem2 />
(#12889) @flaviendelangleChangelog
7.3.2
May 2, 2024
We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
id
attribute.
It should not affect you, but if you were relying on the gradient id
attribute, please update your usage.Changelog
7.3.1
Apr 26, 2024
We'd like to offer a big thanks to the 13 contributors who made this release possible. Here are some highlights ✨:
Changelog
7.2.0
Apr 12, 2024
We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
Changelog
7.1.1
Apr 5, 2024
We'd like to offer a big thanks to the 19 contributors who made this release possible. Here are some highlights ✨:
setItemExpansion
Tree View API method (#12595) @flaviendelangleChangelog
7.1.0
Mar 28, 2024
We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:
resizeThrottleMs
prop (#12556) @romgrk@mui/x-data-grid@7.1.0
resizeThrottleMs
prop (#12556) @romgrkrowEditStop
event if row has fields with errors (#11383) @cherniavskiiGridToolbarQuickFilter
component (#12484) @jhawkins11@mui/x-data-grid-pro@7.1.0
Same changes as in @mui/x-data-grid@7.1.0
.
@mui/x-data-grid-premium@7.1.0
Same changes as in @mui/x-data-grid-pro@7.1.0
.
@mui/x-date-pickers@7.1.0
@mui/zero-runtime
(stop using ownerState
in styled
) (#12003) @flaviendelangle@mui/x-date-pickers-pro@7.1.0
Same changes as in @mui/x-date-pickers@7.1.0
, plus:
readOnly
(#12593) @LukasTy@mui/x-charts@7.1.0
@mui/x-tree-view@7.1.0
l10n
script on Windows (#12550) @LukasTyDateTimeRangePicker
tag in releaseChangelog
(#12526) @LukasTyChangelog
7.0.0
Mar 22, 2024
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 ✨:
viewRenderers
on DateTimePicker
(#12441) @LukasTydensity
for the Data Grid (#12332) @MBilalShafiThe density
is a controlled prop now, if you were previously passing the density
prop to the Data Grid, you will need to do one of the following:
initialState.density
to initialize it. <DataGrid
- density="compact"
+ initialState={{ density: "compact" }}
/>
onDensityChange
callback to update the density
prop accordingly for it to work as expected.+ const [density, setDensity] = React.useState<GridDensity>('compact');
<DataGrid
- density="compact"
+ density={density}
+ onDensityChange={(newDensity) => setDensity(newDensity)}
/>
The selector gridDensityValueSelector
was removed, use the gridDensitySelector
instead.
The props rowBuffer
and columnBuffer
were renamed to rowBufferPx
and columnBufferPx
.
Their value is now a pixel value rather than a number of items. Their default value is now 150
.
The props rowThreshold
and columnThreshold
have been removed.
If you had the rowThreshold
prop set to 0
to force new rows to be rendered more often – this is no longer necessary.