Skip to content

v7.0.0-alpha.8

Compare
Choose a tag to compare
@alexfauquette alexfauquette released this 11 Jan 18:49
· 395 commits to next since this release
a247004

We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:

  • ⏰ Support date-fns v3 (#11659) @LukasTy
    Pickers support both v2 and v3 of date-fns. For v3 use AdapterDateFnsV3.
    // with date-fns v2.x
    import { AdapterDateFns } from '@mui/x-date-pickers/AdapterDateFns';
    import de from 'date-fns/locale/de';
    // with date-fns v3.x
    import { AdapterDateFns } from '@mui/x-date-pickers/AdapterDateFnsV3';
    import { de } from 'date-fns/locale/de';

Data Grid

Breaking changes

  • The import path for locales has been changed:

    -import { enUS } from '@mui/x-data-grid';
    +import { enUS } from '@mui/x-data-grid/locales';
    
    -import { enUS } from '@mui/x-data-grid-pro';
    +import { enUS } from '@mui/x-data-grid-pro/locales';
    
    -import { enUS } from '@mui/x-data-grid-premium';
    +import { enUS } from '@mui/x-data-grid-premium/locales';

@mui/x-data-grid@7.0.0-alpha.8

@mui/x-data-grid-pro@7.0.0-alpha.8 pro

Same changes as in @mui/x-data-grid@7.0.0-alpha.8.

@mui/x-data-grid-premium@7.0.0-alpha.8 premium

Same changes as in @mui/x-data-grid-pro@7.0.0-alpha.8.

Date Pickers

@mui/x-date-pickers@7.0.0-alpha.8

@mui/x-date-pickers-pro@7.0.0-alpha.8 pro

Same changes as in @mui/x-date-pickers@7.0.0-alpha.8.

Tree View / @mui/x-tree-view@7.0.0-alpha.8

Docs

Core