Migration from v6 to v7
This guide describes the changes needed to migrate the Date and Time Pickers from v6 to v7.
Introduction
TBD
Start using the new release
In package.json
, change the version of the date pickers package to next
.
-"@mui/x-date-pickers": "6.x.x",
+"@mui/x-date-pickers": "next",
Breaking changes
Since v7
is a major release, it contains changes that affect the public API.
These changes were done for consistency, improved stability and to make room for new features.
Rename components
to slots
The components
and componentsProps
props are renamed to slots
and slotProps
props respectively.
This is a slow and ongoing effort between the different MUI libraries.
To smooth the transition, they were deprecated during the v6.
And are removed from the v7.
If not already done, this modification can be handled by the codemod
npx @mui/x-codemod v7.0.0/pickers/ <path>
Take a look at the RFC for more information.