-
-
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.
- Loading branch information
1 parent
fcc236b
commit e7085c0
Showing
9 changed files
with
139 additions
and
16 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,89 @@ | |
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## 7.0.0-alpha.4 | ||
|
||
_Dec 8, 2023_ | ||
|
||
We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨: | ||
|
||
- 🚀 The scatter charts now use voronoi to trigger items | ||
|
||
Users needed to hover the item to highlight the scatter item or show the tooltip. | ||
Now they can interact with data by triggering the closest element. See the [docs page](https://next.mui.com/x/react-charts/scatter/#interaction) for more info. | ||
|
||
- 📚 Add [Pickers FAQ page](https://next.mui.com/x/react-date-pickers/faq/) | ||
- 🎉 The Data Grid Header filters feature is now stable | ||
- 🌍 Improve Danish (da-DK) locale on Data Grid | ||
- 🐞 Bugfixes | ||
|
||
### Data Grid | ||
|
||
#### Breaking changes | ||
|
||
- The header filters feature is now stable. `unstable_` prefix is removed from prop `headerFilters` and related exports. | ||
See [migration docs](https://next.mui.com/x/migration/migration-data-grid-v6/#filtering) for more details. | ||
|
||
- The `GridColDef['type']` has been narrowed down to only accept the built-in column types. | ||
TypeScript users need to use the `GridColDef` interface when defining columns: | ||
|
||
```tsx | ||
// 🛑 `type` is inferred as `string` and is too wide | ||
const columns = [{ type: 'number', field: 'id' }]; | ||
<DataGrid columns={columns} />; | ||
|
||
// ✅ `type` is `'number'` | ||
const columns: GridColDef[] = [{ type: 'number', field: 'id' }]; | ||
<DataGrid columns={columns} />; | ||
|
||
// ✅ Alternalively, `as const` can be used to narrow down the type | ||
const columns = [{ type: 'number' as const, field: 'id' }]; | ||
<DataGrid columns={columns} />; | ||
``` | ||
|
||
#### `@mui/[email protected]` | ||
|
||
- [DataGrid] Added a guard for reorder cells (#11159) @michelengelen | ||
- [DataGrid] Narrow down `GridColDef['type']` (#11270) @cherniavskii | ||
- [l10n] Improve Danish (da-DK) locale (#11304) @goibon | ||
|
||
#### `@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: | ||
|
||
- [DataGridPro] Make header filters feature stable (#11243) @MBilalShafi | ||
|
||
#### `@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]` | ||
|
||
- [fields] Rework `PickersTextField` (#11258) @flaviendelangle | ||
- [pickers] Fix `MultiSectionDigitalClock` issues (#11305) @LukasTy | ||
- [pickers] Fix views height consistency (#11337) @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]`. | ||
|
||
### Charts / `@mui/[email protected]` | ||
|
||
- [charts] Remove animation on sparkline (#11311) @oliviertassinari | ||
- [charts] Use voronoi cells to trigger interaction with scatter items (#10981) @alexfauquette | ||
- [charts] Add `@mui/utils` as a dependency (#11351) @michelengelen | ||
|
||
### Docs | ||
|
||
- [docs] Add FAQ page (#11271) @noraleonte | ||
- [docs] Add a doc section on how to override the start of the week with each adapter (#11223) @flaviendelangle | ||
- [docs] Added params to `onPaginationModelChange` docs (#10191) @JFBenzs | ||
- [docs] Fix typo (#11324) @cadam11 | ||
- [docs] Improve `DemoContainer` styling coverage (#11315) @LukasTy | ||
- [docs] General revision of the Charts docs (#11249) @danilo-leal | ||
|
||
## 7.0.0-alpha.3 | ||
|
||
_Dec 4, 2023_ | ||
|
@@ -866,6 +949,46 @@ Here is an example of the renaming for the `<ChartsTooltip />` component. | |
- [core] Update release instructions as per v7 configuration (#10962) @MBilalShafi | ||
- [license] Correctly throw errors (#10924) @oliviertassinari | ||
|
||
## 6.18.4 | ||
|
||
_Dec 8, 2023_ | ||
|
||
We'd like to offer a big thanks to the 6 contributors who made this release possible. Here are some highlights ✨: | ||
|
||
- 📚 Add [Pickers FAQ page](https://mui.com/x/react-date-pickers/faq/) | ||
- 🌍 Improve Danish (da-DK) locale on Data Grid | ||
- 🐞 Bugfixes | ||
|
||
### Data Grid | ||
|
||
#### `@mui/[email protected]` | ||
|
||
- [DataGrid] Fix cell slot style override (#11215) @oliviertassinari | ||
- [l10n] Improve Danish (da-DK) locale (#11346) @goibon | ||
|
||
#### `@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] Fix `MultiSectionDigitalClock` issues (#11308) @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]`. | ||
|
||
### Docs | ||
|
||
- [docs] Fix typo (#11323) @cadam11 | ||
- [docs] Add FAQ page (#11347) @noraleonte | ||
|
||
## 6.18.3 | ||
|
||
_Dec 4, 2023_ | ||
|
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