github mui/mui-x v6.0.0-alpha.2

latest releases: v7.17.0, v7.16.0, v7.15.0...
pre-release23 months ago

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

  • 🚀 Further progress on stabilizing new date field components
  • 🎁 Improve support for theme augmentation in the DataGrid (#6269) @cherniavskii
  • 🌍 Add Japanese (ja-JP) locale to pickers (#6365) @sho918
  • 📚 Documentation improvements
  • 🐞 Bugfixes

@mui/x-data-grid@v6.0.0-alpha.2 / @mui/x-data-grid-pro@v6.0.0-alpha.2 / @mui/x-data-grid-premium@v6.0.0-alpha.2

Breaking changes

  • 🎁 The aggregation is no longer experimental.

    You can now use the aggregation without the experimentalFeatures.aggregation flag enabled.

    <DataGridPremium
    -  experimentalFeatures={{ aggregation: true }}
    />

    The aggregation of the columns through the column menu is now enabled by default on DataGridPremium. You can set disableAggregation={true} to disable it.

Changes

@mui/x-date-pickers@v6.0.0-alpha.2 / @mui/x-date-pickers-pro@v6.0.0-alpha.2

Breaking changes

  • The renderDay prop has been replaced by a Day component slot.
    You can find more information about this pattern in the MUI Base documentation.

    // Same for any other date, date time or date range picker.
    <DatePicker
    -  renderDay={(_, dayProps) => <CustomDay {...dayProps} />}
    +  components={{ Day: CustomDay }}
    />

Changes

Docs

Core

Don't miss a new mui-x release

NewReleases is sending notifications on new releases.