-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Nora <[email protected]> Co-authored-by: Bilal Shafi <[email protected]> Co-authored-by: Michel Engelen <[email protected]> Co-authored-by: Alexandre Fauquette <[email protected]> Co-authored-by: Andrew Cherniavskyi <[email protected]> Co-authored-by: Lukas <[email protected]>
- Loading branch information
1 parent
1a4b417
commit 8fcf3e8
Showing
12 changed files
with
119 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,106 @@ | |
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## 7.0.0-beta.0 | ||
|
||
_Jan 26, 2024_ | ||
|
||
We are glad to announce MUI X v7 beta! | ||
This version has several improvements, bug fixes, and exciting features 🎉. | ||
We want to offer a big thanks to the 7 contributors who made this release possible ✨: | ||
|
||
- 🚀 Release the [Date Time Range Picker](https://next.mui.com/x/react-date-pickers/date-time-range-picker/) component (#9528) @LukasTy | ||
|
||
<img src="https://github.com/mui/mui-x/assets/4941090/122bb7bc-5e72-4e11-a8e5-96f3026de922" width="510" height="652" alt="Date Time Range Picker example" /> | ||
|
||
- 🎁 New column management panel design for the Data Grid (#11770) @MBilalShafi | ||
|
||
<img width="310" alt="image" src="https://github.com/mui/mui-x/assets/12609561/a79dac8b-d54d-4e69-a63a-ef78f3993f37"> | ||
|
||
- 🐞 Bugfixes | ||
- 📚 Documentation improvements | ||
|
||
### Data Grid | ||
|
||
#### Breaking changes | ||
|
||
- The columns management component has been redesigned and the component was extracted from the `ColumnsPanel` which now only serves as a wrapper to display the component above the headers as a panel. As a result, a new slot `columnsManagement` and the related prop `slotProps.columnsManagement` have been introduced. The props corresponding to the columns management component which were previously passed to the prop `slotProps.columnsPanel` should now be passed to `slotProps.columnsManagement`. `slotProps.columnsPanel` could still be used to override props corresponding to the `Panel` component used in `ColumnsPanel` which uses [`Popper`](https://next.mui.com/material-ui/react-popper/) component under the hood. | ||
|
||
```diff | ||
<DataGrid | ||
slotProps={{ | ||
- columnsPanel: { | ||
+ columnsManagement: { | ||
sort: 'asc', | ||
autoFocusSearchField: false, | ||
}, | ||
}} | ||
/> | ||
``` | ||
|
||
- `Show all` and `Hide all` buttons in the `ColumnsPanel` have been combined into one `Show/Hide All` toggle in the new columns management component. The related props `disableShowAllButton` and `disableHideAllButton` have been replaced with a new prop `disableShowHideToggle`. | ||
|
||
```diff | ||
<DataGrid | ||
- disableShowAllButton | ||
- disableHideAllButton | ||
+ disableShowHideToggle | ||
/> | ||
``` | ||
|
||
#### `@mui/[email protected]` | ||
|
||
- [DataGrid] Export `GridColumnTypes` interface for custom column types (#11742) @cherniavskii | ||
- [DataGrid] Initialize `apiRef` early (#11792) @cherniavskii | ||
- [DataGrid] New column management panel design (#11770) @MBilalShafi | ||
- [DataGrid] Fix support for tree with more than 50,000 children (#11757) @zenazn | ||
|
||
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') | ||
|
||
Same changes as in `@mui/[email protected]`. | ||
|
||
#### `@mui/[email protected]` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan') | ||
|
||
Same changes as in `@mui/[email protected]`. | ||
|
||
### Date Pickers | ||
|
||
#### `@mui/[email protected]` | ||
|
||
- [pickers] Apply the `layout.tabs` class to `Tabs` slot (#11781) @LukasTy | ||
- [pickers] Avoid deep imports (#11794) @LukasTy | ||
- [pickers] Fields typing optimization (#11779) @LukasTy | ||
|
||
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') | ||
|
||
Same changes as in `@mui/[email protected]`, plus: | ||
|
||
- [pickers] Add `DateTimeRangePicker` component (#9528) @LukasTy | ||
- [pickers] Add `DateTimeRangePicker` theme augmentation (#11814) @LukasTy | ||
- [DateRangePicker] Remove `calendars` prop on `Mobile` (#11752) @LukasTy | ||
|
||
### Tree View / `@mui/[email protected]` | ||
|
||
- [TreeView] Remove unused props from prop-types and typing (#11778) @flaviendelangle | ||
- [TreeView] Throw an error when two items have the same id (#11715) @flaviendelangle | ||
|
||
### Docs | ||
|
||
- [docs] Add `contextValue` to the headless tree view doc (#11705) @flaviendelangle | ||
- [docs] Add section for the `disableSelection` prop (#11821) @flaviendelangle | ||
- [docs] Fix brand name non-breaking space (#11758) @oliviertassinari | ||
- [docs] Fix typo in Data Grid components page (#11775) @flaviendelangle | ||
- [docs] Fix use of quote, should use callout (#11759) @oliviertassinari | ||
- [docs] Improve error message for MUI Vale rule @oliviertassinari | ||
- [docs] Include `DateTimeRangePicker` in relevant demos (#11815) @LukasTy | ||
- [docs] Add recipe for sorting row groups by the number of child rows (#11164) @cherniavskii | ||
|
||
### Core | ||
|
||
- [core] Cleanup script and alias setup (#11749) @LukasTy | ||
- [core] Polish issue templates @oliviertassinari | ||
- [code-infra] Update prettier and pretty-quick (#11735) @Janpot | ||
|
||
## 7.0.0-alpha.9 | ||
|
||
_Jan 19, 2024_ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters