v7.0.0-alpha.6
Pre-releaseWe'd like to offer a big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:
- 🎁 Data Grid now supports
Dateobjects in thefilterModel - 🌍 Improve Russian (ru-RU) locale on the Data Grid
- 🐞 Bugfixes
Data Grid
Breaking changes
-
The filter panel no longer uses the native version of the
Selectcomponent for all components. -
The
getOptionValueandgetOptionLabelprops were removed from the following components:GridEditSingleSelectCellGridFilterInputSingleSelectGridFilterInputMultipleSingleSelect
Use the
getOptionValueandgetOptionLabelproperties on thesingleSelectcolumn definition instead:const column: GridColDef = { type: 'singleSelect', field: 'country', valueOptions: [ { code: 'BR', name: 'Brazil' }, { code: 'FR', name: 'France' }, ], getOptionValue: (value: any) => value.code, getOptionLabel: (value: any) => value.name, };
-
The
filterModelnow supportsDateobjects as values fordateanddateTimecolumn types.
ThefilterModelstill accepts strings as values fordateanddateTimecolumn types,
but all updates to thefilterModelcoming from the UI (e.g. filter panel) will set the value as aDateobject.
@mui/x-data-grid@7.0.0-alpha.6
- [DataGrid] Fix typos in the JSDoc (#11451) @flaviendelangle
- [DataGrid] Make
checkboxSelectionrespect thedisableMultipleRowSelectionprop (#11448) @cherniavskii - [DataGrid] Support
Dateobjects in filter model (#7069) @cherniavskii - [DataGrid] Use non-native
Selects by default (#11330) @cherniavskii - [l10n] Improve Russian (ru-RU) locale (#11441) @wensiet
@mui/x-data-grid-pro@7.0.0-alpha.6 
Same changes as in @mui/x-data-grid@7.0.0-alpha.6.
@mui/x-data-grid-premium@7.0.0-alpha.6 
Same changes as in @mui/x-data-grid-pro@7.0.0-alpha.6.
Date Pickers
@mui/x-date-pickers@7.0.0-alpha.6
- [fields] Adjust
PickersInputsizing styles (#11392) @noraleonte - [fields] Fix section pasting (#11447) @LukasTy
- [pickers] Add
PickersTextFieldstandardandfilledvariants (#11250) @noraleonte - [pickers] Cleanup error messages in
PickersSectionList(#11449) @flaviendelangle - [pickers] Create new component
PickersSectionList(#11352) @flaviendelangle
@mui/x-date-pickers-pro@7.0.0-alpha.6 
Same changes as in @mui/x-date-pickers@7.0.0-alpha.6.
Charts / @mui/x-charts@7.0.0-alpha.5
- [charts] Allow percentage values for pie chart center and radius (#11464) @alexfauquette
- [charts] Improve dataset typing (#11372) @alexfauquette
- [charts] Make error message more explicit (#11457) @alexfauquette
- [charts] Make the helper
ChartsTextcomponent public (#11370) @alexfauquette
Docs
- [docs] Document
falsedefault values for boolean props (#11477) @cherniavskii - [docs] Improve Pickers
nameprop examples (#11422) @LukasTy - [docs] Limit
date-fnspackage to v2 in codesandbox (#11463) @LukasTy
Core
- [core] Add missing breaking changes to changelog (#11420) @MBilalShafi
- [core] Cherry pick follow up (#11469) @LukasTy
- [core] Fix
cherry-pickaction (#11446) @LukasTy - [core] Fix security regressions in cherry-pick-next-to-master.yml (#11482) @MBilalShafi
- [test] Reload the page if its blank and there are no links to the remaining tests (#11466) @cherniavskii