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

latest releases: v7.18.0, v6.20.5, v7.17.0...
21 months ago

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

  • 🌍 Improve Ukrainian (uk-UA) and add Urdu (ur-PK) locales
  • 📚 Documentation improvements
  • 🐞 Bugfixes

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

Breaking changes

  • [DataGrid] Removes GridCell fallback to valueToRender on null children (#7023) @MBilalShafi

    Returning null in column.renderCell or column.renderEditCell now renders an empty cell instead of the default formatted value.

  • [DataGrid] Refactor GridFilterItem props (#6985) @MBilalShafi

    Properties columnField and operatorValue of GridFilterItem are renamed field and operator. And operator property is now required.

     filterModel: {
       items: [{
    -    columnField: 'rating',
    +    field: 'rating',
    -    operatorValue: '>',
    +    operator: '>', // required
        value: '2.5'
        }],
      },

Changes

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

Breaking changes

  • Rename dateRangeIcon to dateIcon (#7024) @LukasTy

    The dateRangeIcon prop has been renamed to dateIcon:

     // Same on all other Date Time Picker variations
     <DateTimePicker
         componentsProps={{
           tabs: {
    -        dateRangeIcon: <LightModeIcon />,
    +        dateIcon: <LightModeIcon />,
          }
        }}
     />

Changes

Docs

Core

Don't miss a new mui-x release

NewReleases is sending notifications on new releases.